diff --git a/Makefile b/Makefile index b60eb491..1f6f56a5 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ ASSETS_DIR = assets TREE_SITTER_DIR = $(ASSETS_DIR)/tree-sitter-c3 TREE_SITTER_GIT = git@github.com:c3lang/tree-sitter-c3.git -TREE_SITTER_COMMIT = ef09c89e498b70e4dfbf81d00e8f4086fa8d1c0a +TREE_SITTER_COMMIT = 10a78fbf8d3095369d32bc99840487396d899899 C3C_DIR = $(ASSETS_DIR)/c3c C3C_GIT = git@github.com:c3lang/c3c.git diff --git a/server/internal/lsp/ast/convert.go b/server/internal/lsp/ast/convert.go index cff68d20..3a04c95b 100644 --- a/server/internal/lsp/ast/convert.go +++ b/server/internal/lsp/ast/convert.go @@ -257,13 +257,26 @@ func convert_enum_declaration(node *sitter.Node, sourceCode []byte) EnumDecl { compositeLiteral := CompositeLiteral{} args := enumeratorNode.ChildByFieldName("args") - if args != nil { - for a := 0; a < int(args.ChildCount()); a++ { - arg := args.Child(a) - if arg.Type() == "arg" { - compositeLiteral.Values = append(compositeLiteral.Values, - convert_literal(arg.Child(0), sourceCode), - ) + if args != nil && args.ChildCount() > 0 { + args := args.Child(int(args.ChildCount()) - 1) + if is_literal(args) { + compositeLiteral.Values = append(compositeLiteral.Values, + convert_literal(args, sourceCode), + ) + } else if args.Type() == "initializer_list" { + for a := 0; a < int(args.ChildCount()); a++ { + arg := args.Child(a) + if arg.Type() == "arg" { + if !is_literal(arg.Child(0)) { + // Exit early to ensure correspondence between + // index of each value and index of each predefined + // enum parameter + break + } + compositeLiteral.Values = append(compositeLiteral.Values, + convert_literal(arg.Child(0), sourceCode), + ) + } } } } @@ -444,6 +457,9 @@ func convert_bitstruct_declaration(node *sitter.Node, sourceCode []byte) StructD StructType: StructTypeBitStruct, } + membersNode := node.ChildByFieldName("body") + structDecl.Members = convert_bitstruct_members(membersNode, sourceCode) + for i := 0; i < int(node.ChildCount()); i++ { child := node.Child(i) //fmt.Println("type:", child.Type(), child.Content(sourceCode)) @@ -463,9 +479,6 @@ func convert_bitstruct_declaration(node *sitter.Node, sourceCode []byte) StructD case "type": structDecl.BackingType = option.Some(typeNodeToType(child, sourceCode)) - - case "bitstruct_body": - structDecl.Members = convert_bitstruct_members(child, sourceCode) } } @@ -483,7 +496,7 @@ func convert_bitstruct_members(node *sitter.Node, sourceCode []byte) []StructMem Build(), } - if bType == "bitstruct_def" { + if bType == "bitstruct_member_declaration" { for x := 0; x < int(bdefnode.ChildCount()); x++ { xNode := bdefnode.Child(x) //fmt.Println(xNode.Type()) @@ -503,8 +516,11 @@ func convert_bitstruct_members(node *sitter.Node, sourceCode []byte) []StructMem } bitRanges := [2]uint{} - lowBit, _ := strconv.ParseInt(bdefnode.Child(3).Content(sourceCode), 10, 32) - bitRanges[0] = uint(lowBit) + + if bdefnode.ChildCount() >= 4 { + lowBit, _ := strconv.ParseInt(bdefnode.Child(3).Content(sourceCode), 10, 32) + bitRanges[0] = uint(lowBit) + } if bdefnode.ChildCount() >= 6 { highBit, _ := strconv.ParseInt(bdefnode.Child(5).Content(sourceCode), 10, 32) @@ -521,8 +537,6 @@ func convert_bitstruct_members(node *sitter.Node, sourceCode []byte) []StructMem idx.NewRangeFromTreeSitterPositions(bdefnode.Child(1).StartPoint(), bdefnode.Child(1).EndPoint()), )*/ members = append(members, member) - } else if bType == "_bitstruct_simple_defs" { - // Could not make examples with these to parse. } } @@ -906,18 +920,6 @@ func convert_literal(node *sitter.Node, sourceCode []byte) Expression { } func typeNodeToType(node *sitter.Node, sourceCode []byte) TypeInfo { - if node.Type() == "optional_type" { - return extTypeNodeToType(node.Child(0), true, sourceCode) - } - - return extTypeNodeToType(node, false, sourceCode) -} - -func extTypeNodeToType( - node *sitter.Node, - isOptional bool, - sourceCode []byte, -) TypeInfo { /* baseTypeLanguage := false baseType := "" @@ -925,6 +927,9 @@ func extTypeNodeToType( generic_arguments := []TypeInfo{} pointerCount := 0*/ + tailChild := node.Child(int(node.ChildCount()) - 1) + isOptional := !tailChild.IsNamed() && tailChild.Content(sourceCode) == "!" + typeInfo := TypeInfo{ Optional: isOptional, ASTNodeBase: NewBaseNodeBuilder(). diff --git a/server/internal/lsp/cst/parser.c b/server/internal/lsp/cst/parser.c index 5034e2a1..509eaf0d 100644 --- a/server/internal/lsp/cst/parser.c +++ b/server/internal/lsp/cst/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2241 -#define LARGE_STATE_COUNT 804 -#define SYMBOL_COUNT 405 +#define STATE_COUNT 2281 +#define LARGE_STATE_COUNT 831 +#define SYMBOL_COUNT 411 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 189 -#define EXTERNAL_TOKEN_COUNT 3 -#define FIELD_COUNT 27 +#define TOKEN_COUNT 196 +#define EXTERNAL_TOKEN_COUNT 4 +#define FIELD_COUNT 28 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 64 +#define PRODUCTION_ID_COUNT 102 enum ts_symbol_identifiers { sym_ident = 1, @@ -35,399 +35,405 @@ enum ts_symbol_identifiers { aux_sym_raw_string_literal_token1 = 9, sym_bytes_literal = 10, aux_sym_line_comment_token1 = 11, - anon_sym_SLASH_STAR_STAR = 12, - anon_sym_STAR_SLASH = 13, + anon_sym_LT_STAR = 12, + anon_sym_STAR_GT = 13, anon_sym_SLASH_STAR = 14, - sym_ct_ident = 15, - sym_at_ident = 16, - sym_hash_ident = 17, - sym_type_ident = 18, - sym_ct_type_ident = 19, - sym_at_type_ident = 20, - sym_const_ident = 21, - sym_ct_const_ident = 22, - sym_builtin = 23, - anon_sym_COLON_COLON = 24, - anon_sym_COMMA = 25, - anon_sym_LPAREN_LT = 26, - anon_sym_GT_RPAREN = 27, - anon_sym_EQ = 28, - anon_sym_LPAREN = 29, - anon_sym_RPAREN = 30, - anon_sym_DOT_DOT_DOT = 31, - anon_sym_AMP = 32, - anon_sym_LBRACK = 33, - anon_sym_RBRACK = 34, - anon_sym_static = 35, - anon_sym_tlocal = 36, - anon_sym_extern = 37, - anon_sym_module = 38, - anon_sym_SEMI = 39, - anon_sym_import = 40, - anon_sym_fn = 41, - anon_sym_LBRACE = 42, - anon_sym_RBRACE = 43, - anon_sym_def = 44, - anon_sym_distinct = 45, - anon_sym_inline = 46, - anon_sym_const = 47, - anon_sym_struct = 48, - anon_sym_union = 49, - anon_sym_bitstruct = 50, - anon_sym_COLON = 51, - anon_sym_DOT_DOT = 52, - anon_sym_fault = 53, - anon_sym_enum = 54, - anon_sym_interface = 55, - anon_sym_DOT = 56, - anon_sym_EQ_GT = 57, - anon_sym_macro = 58, - anon_sym_var = 59, - anon_sym_return = 60, - anon_sym_continue = 61, - anon_sym_break = 62, - anon_sym_defer = 63, - anon_sym_try = 64, - anon_sym_catch = 65, - anon_sym_assert = 66, - anon_sym_case = 67, - anon_sym_default = 68, - anon_sym_nextcase = 69, - anon_sym_switch = 70, - anon_sym_AMP_AMP = 71, - anon_sym_if = 72, - anon_sym_else = 73, - anon_sym_for = 74, - anon_sym_foreach = 75, - anon_sym_foreach_r = 76, - anon_sym_while = 77, - anon_sym_do = 78, - anon_sym_int = 79, - anon_sym_PLUS = 80, - anon_sym_DASH = 81, - anon_sym_LT_LT = 82, - anon_sym_GT_GT = 83, - anon_sym_STAR = 84, - anon_sym_asm = 85, - anon_sym_DOLLARassert = 86, - anon_sym_DOLLARerror = 87, - anon_sym_DOLLARinclude = 88, - anon_sym_DOLLARexec = 89, - anon_sym_DOLLARecho = 90, - anon_sym_DOLLARif = 91, - anon_sym_DOLLARendif = 92, - anon_sym_DOLLARelse = 93, - anon_sym_DOLLARcase = 94, - anon_sym_DOLLARdefault = 95, - anon_sym_DOLLARswitch = 96, - anon_sym_DOLLARendswitch = 97, - anon_sym_DOLLARfor = 98, - anon_sym_DOLLARendfor = 99, - anon_sym_DOLLARforeach = 100, - anon_sym_DOLLARendforeach = 101, - anon_sym_DOLLARalignof = 102, - anon_sym_DOLLARextnameof = 103, - anon_sym_DOLLARnameof = 104, - anon_sym_DOLLARoffsetof = 105, - anon_sym_DOLLARqnameof = 106, - anon_sym_DOLLAReval = 107, - anon_sym_DOLLARdefined = 108, - anon_sym_DOLLARsizeof = 109, - anon_sym_DOLLARstringify = 110, - anon_sym_DOLLARis_const = 111, - anon_sym_DOLLARvaconst = 112, - anon_sym_DOLLARvaarg = 113, - anon_sym_DOLLARvaref = 114, - anon_sym_DOLLARvaexpr = 115, - anon_sym_true = 116, - anon_sym_false = 117, - anon_sym_null = 118, - anon_sym_DOLLARvacount = 119, - anon_sym_DOLLARfeature = 120, - anon_sym_DOLLARand = 121, - anon_sym_DOLLARor = 122, - anon_sym_DOLLARassignable = 123, - anon_sym_DOLLARembed = 124, - anon_sym_PLUS_EQ = 125, - anon_sym_DASH_EQ = 126, - anon_sym_STAR_EQ = 127, - anon_sym_SLASH_EQ = 128, - anon_sym_PERCENT_EQ = 129, - anon_sym_LT_LT_EQ = 130, - anon_sym_GT_GT_EQ = 131, - anon_sym_AMP_EQ = 132, - anon_sym_CARET_EQ = 133, - anon_sym_PIPE_EQ = 134, - anon_sym_QMARK = 135, - anon_sym_QMARK_COLON = 136, - anon_sym_QMARK_QMARK = 137, - anon_sym_BANG = 138, - anon_sym_TILDE = 139, - anon_sym_PLUS_PLUS = 140, - anon_sym_DASH_DASH = 141, - anon_sym_SLASH = 142, - anon_sym_PERCENT = 143, - anon_sym_PIPE = 144, - anon_sym_CARET = 145, - anon_sym_EQ_EQ = 146, - anon_sym_BANG_EQ = 147, - anon_sym_GT = 148, - anon_sym_GT_EQ = 149, - anon_sym_LT_EQ = 150, - anon_sym_LT = 151, - anon_sym_PIPE_PIPE = 152, - anon_sym_DOLLARvasplat = 153, - anon_sym_BANG_BANG = 154, - anon_sym_typeid = 155, - anon_sym_LBRACE_PIPE = 156, - anon_sym_PIPE_RBRACE = 157, - anon_sym_void = 158, - anon_sym_bool = 159, - anon_sym_char = 160, - anon_sym_ichar = 161, - anon_sym_short = 162, - anon_sym_ushort = 163, - anon_sym_uint = 164, - anon_sym_long = 165, - anon_sym_ulong = 166, - anon_sym_int128 = 167, - anon_sym_uint128 = 168, - anon_sym_float = 169, - anon_sym_double = 170, - anon_sym_float16 = 171, - anon_sym_bfloat16 = 172, - anon_sym_float128 = 173, - anon_sym_iptr = 174, - anon_sym_uptr = 175, - anon_sym_isz = 176, - anon_sym_usz = 177, - anon_sym_anyfault = 178, - anon_sym_any = 179, - anon_sym_DOLLARtypeof = 180, - anon_sym_DOLLARtypefrom = 181, - anon_sym_DOLLARvatype = 182, - anon_sym_DOLLARevaltype = 183, - anon_sym_LBRACK_LT = 184, - anon_sym_GT_RBRACK = 185, - sym_block_comment_text = 186, - sym_doc_comment_text = 187, - sym_real_literal = 188, - sym_source_file = 189, - sym_char_literal = 190, - sym_string_literal = 191, - sym_raw_string_literal = 192, - sym_line_comment = 193, - sym_doc_comment = 194, - sym_block_comment = 195, - sym_module_resolution = 196, - aux_sym__module_path = 197, - sym_path_ident = 198, - sym_path_type_ident = 199, - sym_path_const_ident = 200, - sym_path_at_ident = 201, - sym_path_at_type_ident = 202, - sym__generic_arg_list = 203, - sym_generic_arguments = 204, - sym__assign_right_expr = 205, - sym__assign_right_constant_expr = 206, - sym__cond = 207, - sym_paren_cond = 208, - sym__parameter = 209, - sym_parameter_default = 210, - sym_parameter = 211, - sym__parameters = 212, - sym__attribute_name = 213, - sym__attribute_operator_expr = 214, - sym_attr_param = 215, - sym_attribute = 216, - sym_attributes = 217, - sym_local_decl_storage = 218, - sym_global_storage = 219, - sym__module_param = 220, - sym_generic_module_parameters = 221, - sym_module = 222, - sym_import_declaration = 223, - sym_func_typedef = 224, - sym_typedef_type = 225, - sym_define_attribute = 226, - sym_define_ident = 227, - sym_define_declaration = 228, - sym_distinct_declaration = 229, - sym_const_declaration = 230, - sym_multi_declaration = 231, - sym_global_declaration = 232, - sym__struct_or_union = 233, - sym_interface = 234, - sym_interface_impl = 235, - sym_identifier_list = 236, - sym_struct_member_declaration = 237, - sym_struct_body = 238, - sym_struct_declaration = 239, - sym_bitstruct_def = 240, - aux_sym__bitstruct_defs = 241, - aux_sym__bitstruct_simple_defs = 242, - sym_bitstruct_body = 243, - sym_bitstruct_declaration = 244, - sym_fault_body = 245, - sym_fault_declaration = 246, - sym_enum_arg = 247, - sym_enum_constant = 248, - sym_enum_param_declaration = 249, - sym_enum_param_list = 250, - sym_enum_spec = 251, - sym_enum_body = 252, - sym_enum_declaration = 253, - sym_interface_body = 254, - sym_interface_declaration = 255, - sym__func_macro_name = 256, - sym_fn_parameter_list = 257, - sym_func_header = 258, - sym_macro_header = 259, - sym_implies_body = 260, - sym_macro_func_body = 261, - sym_func_declaration = 262, - sym_func_definition = 263, - sym_trailing_block_param = 264, - sym_macro_parameter_list = 265, - sym_macro_declaration = 266, - sym_lambda_declaration = 267, - sym_label = 268, - sym_label_target = 269, - sym_compound_stmt = 270, - sym_expr_stmt = 271, - sym_var_decl = 272, - sym_var_stmt = 273, - sym_return_stmt = 274, - sym_continue_stmt = 275, - sym_break_stmt = 276, - sym_defer_stmt = 277, - sym_assert_stmt = 278, - sym_local_decl_after_type = 279, - sym__decl_statement_after_type = 280, - sym_declaration_stmt = 281, - sym_case_range = 282, - sym_case_stmt = 283, - sym_default_stmt = 284, - sym_nextcase_stmt = 285, - sym_switch_body = 286, - sym_switch_stmt = 287, - sym_catch_unwrap_list = 288, - sym_catch_unwrap = 289, - sym__rel_or_lambda_expr = 290, - sym_try_unwrap = 291, - sym__try_unwrap_chain = 292, - sym__if_body = 293, - sym_if_stmt = 294, - sym_else_part = 295, - sym__decl_or_expr = 296, - sym_comma_decl_or_expr = 297, - sym_for_cond = 298, - sym_for_stmt = 299, - sym_foreach_var = 300, - sym_foreach_cond = 301, - sym_foreach_stmt = 302, - sym_while_stmt = 303, - sym_do_stmt = 304, - sym_asm_instr = 305, - sym__additive_op = 306, - sym__shift_op = 307, - sym_asm_addr = 308, - sym_asm_expr = 309, - sym_asm_stmt = 310, - sym_asm_block_stmt = 311, - sym_ct_stmt_body = 312, - sym_ct_assert_stmt = 313, - sym_ct_include_stmt = 314, - sym_ct_exec_stmt = 315, - sym_ct_echo_stmt = 316, - sym_ct_if_cond = 317, - sym_ct_if_stmt = 318, - sym_ct_case_stmt = 319, - sym_ct_switch_cond = 320, - sym__ct_switch = 321, - aux_sym__ct_switch_body = 322, - sym_ct_switch_stmt = 323, - sym_ct_for_stmt = 324, - sym_ct_foreach_cond = 325, - sym_ct_foreach_stmt = 326, - sym__expr = 327, - sym__constant_expr = 328, - sym__relational_expr = 329, - sym__trailing_expr = 330, - sym__ident_expr = 331, - sym__local_ident_expr = 332, - sym_flat_path = 333, - sym_string_expr = 334, - sym_bytes_expr = 335, - sym_paren_expr = 336, - sym__base_expr = 337, - sym_module_ident_expr = 338, - sym_module_type_ident = 339, - sym_initializer_list = 340, - sym__assignment_op = 341, - sym_assignment_expr = 342, - sym_ternary_expr = 343, - sym_lambda_expr = 344, - sym_elvis_orelse_expr = 345, - sym_suffix_expr = 346, - sym_cast_expr = 347, - sym__unary_op = 348, - sym_unary_expr = 349, - sym_binary_expr = 350, - sym_param_path_element = 351, - sym_param_path = 352, - sym_arg = 353, - sym__call_arg_list = 354, - sym_call_inline_attributes = 355, - sym_call_invocation = 356, - sym_call_expr = 357, - sym_update_expr = 358, - sym_rethrow_expr = 359, - sym_trailing_generic_expr = 360, - sym__range_loc = 361, - sym_range_expr = 362, - sym_subscript_expr = 363, - sym_field_expr = 364, - sym_access_ident = 365, - sym_type_access_expr = 366, - sym_expr_block = 367, - sym_base_type_name = 368, - sym_base_type = 369, - sym_type_suffix = 370, - sym_type = 371, - sym__type_or_optional_type = 372, - sym_optional_type = 373, - aux_sym_source_file_repeat1 = 374, - aux_sym_string_literal_repeat1 = 375, - aux_sym__generic_arg_list_repeat1 = 376, - aux_sym__cond_repeat1 = 377, - aux_sym__parameters_repeat1 = 378, - aux_sym_attribute_repeat1 = 379, - aux_sym_attributes_repeat1 = 380, - aux_sym_generic_module_parameters_repeat1 = 381, - aux_sym_import_declaration_repeat1 = 382, - aux_sym_multi_declaration_repeat1 = 383, - aux_sym_interface_impl_repeat1 = 384, - aux_sym_struct_body_repeat1 = 385, - aux_sym_fault_body_repeat1 = 386, - aux_sym_enum_arg_repeat1 = 387, - aux_sym_enum_param_list_repeat1 = 388, - aux_sym_enum_body_repeat1 = 389, - aux_sym_interface_body_repeat1 = 390, - aux_sym_compound_stmt_repeat1 = 391, - aux_sym_assert_stmt_repeat1 = 392, - aux_sym__decl_statement_after_type_repeat1 = 393, - aux_sym_switch_body_repeat1 = 394, - aux_sym_catch_unwrap_list_repeat1 = 395, - aux_sym__try_unwrap_chain_repeat1 = 396, - aux_sym_asm_stmt_repeat1 = 397, - aux_sym_asm_block_stmt_repeat1 = 398, - aux_sym_ct_exec_stmt_repeat1 = 399, - aux_sym_string_expr_repeat1 = 400, - aux_sym_bytes_expr_repeat1 = 401, - aux_sym_param_path_repeat1 = 402, - aux_sym_call_inline_attributes_repeat1 = 403, - aux_sym_type_repeat1 = 404, + anon_sym_STAR_SLASH = 15, + sym_ct_ident = 16, + sym_at_ident = 17, + sym_hash_ident = 18, + sym_type_ident = 19, + sym_ct_type_ident = 20, + sym_at_type_ident = 21, + sym_const_ident = 22, + sym_ct_const_ident = 23, + sym_builtin = 24, + anon_sym_COLON_COLON = 25, + anon_sym_DOT = 26, + anon_sym_COMMA = 27, + anon_sym_LPAREN_LT = 28, + anon_sym_GT_RPAREN = 29, + anon_sym_EQ = 30, + anon_sym_LPAREN = 31, + anon_sym_RPAREN = 32, + anon_sym_DOT_DOT_DOT = 33, + anon_sym_AMP = 34, + anon_sym_LBRACK = 35, + anon_sym_RBRACK = 36, + anon_sym_static = 37, + anon_sym_tlocal = 38, + anon_sym_extern = 39, + anon_sym_module = 40, + anon_sym_SEMI = 41, + anon_sym_import = 42, + anon_sym_fn = 43, + anon_sym_LBRACE = 44, + anon_sym_RBRACE = 45, + anon_sym_def = 46, + anon_sym_distinct = 47, + anon_sym_inline = 48, + anon_sym_const = 49, + anon_sym_struct = 50, + anon_sym_union = 51, + anon_sym_bitstruct = 52, + anon_sym_COLON = 53, + anon_sym_DOT_DOT = 54, + anon_sym_fault = 55, + anon_sym_enum = 56, + anon_sym_interface = 57, + anon_sym_EQ_GT = 58, + anon_sym_macro = 59, + anon_sym_var = 60, + anon_sym_return = 61, + anon_sym_continue = 62, + anon_sym_break = 63, + anon_sym_defer = 64, + anon_sym_try = 65, + anon_sym_catch = 66, + anon_sym_assert = 67, + anon_sym_case = 68, + anon_sym_default = 69, + anon_sym_nextcase = 70, + anon_sym_switch = 71, + anon_sym_AMP_AMP = 72, + anon_sym_if = 73, + anon_sym_else = 74, + anon_sym_for = 75, + anon_sym_foreach = 76, + anon_sym_foreach_r = 77, + anon_sym_while = 78, + anon_sym_do = 79, + anon_sym_int = 80, + anon_sym_PLUS = 81, + anon_sym_DASH = 82, + anon_sym_LT_LT = 83, + anon_sym_GT_GT = 84, + anon_sym_STAR = 85, + anon_sym_asm = 86, + anon_sym_DOLLARassert = 87, + anon_sym_DOLLARerror = 88, + anon_sym_DOLLARinclude = 89, + anon_sym_DOLLARexec = 90, + anon_sym_DOLLARecho = 91, + anon_sym_DOLLARif = 92, + anon_sym_DOLLARendif = 93, + anon_sym_DOLLARelse = 94, + anon_sym_DOLLARcase = 95, + anon_sym_DOLLARdefault = 96, + anon_sym_DOLLARswitch = 97, + anon_sym_DOLLARendswitch = 98, + anon_sym_DOLLARfor = 99, + anon_sym_DOLLARendfor = 100, + anon_sym_DOLLARforeach = 101, + anon_sym_DOLLARendforeach = 102, + anon_sym_DOLLARalignof = 103, + anon_sym_DOLLARextnameof = 104, + anon_sym_DOLLARnameof = 105, + anon_sym_DOLLARoffsetof = 106, + anon_sym_DOLLARqnameof = 107, + anon_sym_DOLLARvaconst = 108, + anon_sym_DOLLARvaarg = 109, + anon_sym_DOLLARvaref = 110, + anon_sym_DOLLARvaexpr = 111, + anon_sym_true = 112, + anon_sym_false = 113, + anon_sym_null = 114, + anon_sym_DOLLARvacount = 115, + anon_sym_DOLLAReval = 116, + anon_sym_DOLLARis_const = 117, + anon_sym_DOLLARsizeof = 118, + anon_sym_DOLLARstringify = 119, + anon_sym_DOLLARappend = 120, + anon_sym_DOLLARconcat = 121, + anon_sym_DOLLARdefined = 122, + anon_sym_DOLLARembed = 123, + anon_sym_DOLLARand = 124, + anon_sym_DOLLARor = 125, + anon_sym_DOLLARfeature = 126, + anon_sym_DOLLARassignable = 127, + anon_sym_PLUS_EQ = 128, + anon_sym_DASH_EQ = 129, + anon_sym_STAR_EQ = 130, + anon_sym_SLASH_EQ = 131, + anon_sym_PERCENT_EQ = 132, + anon_sym_LT_LT_EQ = 133, + anon_sym_GT_GT_EQ = 134, + anon_sym_AMP_EQ = 135, + anon_sym_CARET_EQ = 136, + anon_sym_PIPE_EQ = 137, + anon_sym_QMARK = 138, + anon_sym_QMARK_COLON = 139, + anon_sym_QMARK_QMARK = 140, + anon_sym_BANG = 141, + anon_sym_TILDE = 142, + anon_sym_PLUS_PLUS = 143, + anon_sym_DASH_DASH = 144, + anon_sym_SLASH = 145, + anon_sym_PERCENT = 146, + anon_sym_PIPE = 147, + anon_sym_CARET = 148, + anon_sym_EQ_EQ = 149, + anon_sym_BANG_EQ = 150, + anon_sym_GT = 151, + anon_sym_GT_EQ = 152, + anon_sym_LT_EQ = 153, + anon_sym_LT = 154, + anon_sym_PIPE_PIPE = 155, + anon_sym_PIPE_PIPE_PIPE = 156, + anon_sym_AMP_AMP_AMP = 157, + anon_sym_PLUS_PLUS_PLUS = 158, + anon_sym_DOLLARvasplat = 159, + anon_sym_BANG_BANG = 160, + anon_sym_typeid = 161, + anon_sym_LBRACE_PIPE = 162, + anon_sym_PIPE_RBRACE = 163, + anon_sym_void = 164, + anon_sym_bool = 165, + anon_sym_char = 166, + anon_sym_ichar = 167, + anon_sym_short = 168, + anon_sym_ushort = 169, + anon_sym_uint = 170, + anon_sym_long = 171, + anon_sym_ulong = 172, + anon_sym_int128 = 173, + anon_sym_uint128 = 174, + anon_sym_float = 175, + anon_sym_double = 176, + anon_sym_float16 = 177, + anon_sym_bfloat16 = 178, + anon_sym_float128 = 179, + anon_sym_iptr = 180, + anon_sym_uptr = 181, + anon_sym_isz = 182, + anon_sym_usz = 183, + anon_sym_anyfault = 184, + anon_sym_any = 185, + anon_sym_DOLLARtypeof = 186, + anon_sym_DOLLARtypefrom = 187, + anon_sym_DOLLARevaltype = 188, + anon_sym_DOLLARvatype = 189, + anon_sym_LBRACK_LT = 190, + anon_sym_GT_RBRACK = 191, + sym_block_comment_text = 192, + sym_doc_comment_text = 193, + sym_doc_comment_contract_text = 194, + sym_real_literal = 195, + sym_source_file = 196, + sym_char_literal = 197, + sym_string_literal = 198, + sym_raw_string_literal = 199, + sym_line_comment = 200, + sym_doc_comment_contract = 201, + sym_doc_comment = 202, + sym_block_comment = 203, + sym_module_resolution = 204, + aux_sym__module_path = 205, + sym_path_ident = 206, + sym_path_type_ident = 207, + sym_path_const_ident = 208, + sym_path_at_type_ident = 209, + sym_define_path_ident = 210, + sym_define_path_at_ident = 211, + sym__generic_arg_list = 212, + sym_generic_arguments = 213, + sym__assign_right_expr = 214, + sym__cond = 215, + sym_paren_cond = 216, + sym__parameter = 217, + sym_parameter_default = 218, + sym_parameter = 219, + sym__parameters = 220, + sym__attribute_name = 221, + sym__attribute_operator_expr = 222, + sym_attr_param = 223, + sym_attribute_param_list = 224, + sym_attribute = 225, + sym_attributes = 226, + sym_local_decl_storage = 227, + sym_global_storage = 228, + sym__module_param = 229, + sym_generic_module_parameters = 230, + sym_module = 231, + sym_import_declaration = 232, + sym_func_typedef = 233, + sym_typedef_type = 234, + sym_define_attribute = 235, + sym_define_ident = 236, + sym_define_declaration = 237, + sym_distinct_declaration = 238, + sym_const_declaration = 239, + sym__multi_declaration = 240, + sym_global_declaration = 241, + sym__struct_or_union = 242, + sym_interface = 243, + sym_interface_impl = 244, + sym_identifier_list = 245, + sym_struct_member_declaration = 246, + sym_struct_body = 247, + sym_struct_declaration = 248, + sym_bitstruct_member_declaration = 249, + sym_bitstruct_body = 250, + sym_bitstruct_declaration = 251, + sym_fault_body = 252, + sym_fault_declaration = 253, + sym_enum_arg = 254, + sym_enum_constant = 255, + sym_enum_param_declaration = 256, + sym_enum_param_list = 257, + sym_enum_spec = 258, + sym_enum_body = 259, + sym_enum_declaration = 260, + sym_interface_body = 261, + sym_interface_declaration = 262, + sym__func_macro_name = 263, + sym_fn_parameter_list = 264, + sym_func_header = 265, + sym_macro_header = 266, + sym_implies_body = 267, + sym_macro_func_body = 268, + sym_func_declaration = 269, + sym_func_definition = 270, + sym_trailing_block_param = 271, + sym_macro_parameter_list = 272, + sym_macro_declaration = 273, + sym_lambda_declaration = 274, + sym_label = 275, + sym_label_target = 276, + sym_compound_stmt = 277, + sym_expr_stmt = 278, + sym_var_decl = 279, + sym_var_stmt = 280, + sym_return_stmt = 281, + sym_continue_stmt = 282, + sym_break_stmt = 283, + sym_defer_stmt = 284, + sym_assert_stmt = 285, + sym_local_decl_after_type = 286, + sym__decl_statement_after_type = 287, + sym_declaration_stmt = 288, + sym_case_range = 289, + sym_case_stmt = 290, + sym_default_stmt = 291, + sym_nextcase_stmt = 292, + sym_switch_body = 293, + sym_switch_stmt = 294, + sym_catch_unwrap_list = 295, + sym_catch_unwrap = 296, + sym_try_unwrap = 297, + sym__try_unwrap_chain = 298, + sym__if_body = 299, + sym_if_stmt = 300, + sym_else_part = 301, + sym__decl_or_expr = 302, + sym_comma_decl_or_expr = 303, + sym_for_cond = 304, + sym_for_stmt = 305, + sym_foreach_var = 306, + sym_foreach_cond = 307, + sym_foreach_stmt = 308, + sym_while_stmt = 309, + sym_do_stmt = 310, + sym_asm_instr = 311, + sym__additive_op = 312, + sym__shift_op = 313, + sym_asm_addr = 314, + sym_asm_expr = 315, + sym_asm_stmt = 316, + sym_asm_block_stmt = 317, + sym_ct_stmt_body = 318, + sym_ct_assert_stmt = 319, + sym_ct_include_stmt = 320, + sym_ct_exec_stmt = 321, + sym_ct_echo_stmt = 322, + sym_ct_if_cond = 323, + sym_ct_if_stmt = 324, + sym_ct_case_stmt = 325, + sym_ct_switch_cond = 326, + sym__ct_switch = 327, + aux_sym__ct_switch_body = 328, + sym_ct_switch_stmt = 329, + sym_ct_for_stmt = 330, + sym_ct_foreach_cond = 331, + sym_ct_foreach_stmt = 332, + sym__expr = 333, + sym__constant_expr = 334, + sym__ident_expr = 335, + sym__local_ident_expr = 336, + sym_flat_path = 337, + sym_string_expr = 338, + sym_bytes_expr = 339, + sym_paren_expr = 340, + sym__base_expr = 341, + sym_module_ident_expr = 342, + sym_module_type_ident = 343, + sym_initializer_list = 344, + sym__assignment_op = 345, + sym_assignment_expr = 346, + sym_ternary_expr = 347, + sym_lambda_expr = 348, + sym_elvis_orelse_expr = 349, + sym_optional_expr = 350, + sym_cast_expr = 351, + sym__unary_op = 352, + sym_unary_expr = 353, + sym_binary_expr = 354, + sym_param_path_element = 355, + sym_param_path = 356, + sym_arg = 357, + sym_call_arg = 358, + sym__call_arg_list = 359, + sym_call_inline_attributes = 360, + sym_call_invocation = 361, + sym_call_expr = 362, + sym_update_expr = 363, + sym_rethrow_expr = 364, + sym_trailing_generic_expr = 365, + sym__range_loc = 366, + sym_range_expr = 367, + sym_subscript_expr = 368, + sym_field_expr = 369, + sym_access_eval = 370, + sym_access_ident = 371, + sym_type_access_expr = 372, + sym_expr_block = 373, + sym_base_type_name = 374, + sym_base_type = 375, + sym_type_suffix = 376, + sym_type = 377, + aux_sym_source_file_repeat1 = 378, + aux_sym_string_literal_repeat1 = 379, + aux_sym_doc_comment_repeat1 = 380, + aux_sym__generic_arg_list_repeat1 = 381, + aux_sym__cond_repeat1 = 382, + aux_sym__parameters_repeat1 = 383, + aux_sym_attribute_param_list_repeat1 = 384, + aux_sym_attributes_repeat1 = 385, + aux_sym_generic_module_parameters_repeat1 = 386, + aux_sym_import_declaration_repeat1 = 387, + aux_sym__multi_declaration_repeat1 = 388, + aux_sym_interface_impl_repeat1 = 389, + aux_sym_struct_body_repeat1 = 390, + aux_sym_bitstruct_body_repeat1 = 391, + aux_sym_fault_body_repeat1 = 392, + aux_sym_enum_param_list_repeat1 = 393, + aux_sym_enum_body_repeat1 = 394, + aux_sym_interface_body_repeat1 = 395, + aux_sym_compound_stmt_repeat1 = 396, + aux_sym_assert_stmt_repeat1 = 397, + aux_sym__decl_statement_after_type_repeat1 = 398, + aux_sym_switch_body_repeat1 = 399, + aux_sym__try_unwrap_chain_repeat1 = 400, + aux_sym_asm_stmt_repeat1 = 401, + aux_sym_asm_block_stmt_repeat1 = 402, + aux_sym_ct_exec_stmt_repeat1 = 403, + aux_sym_string_expr_repeat1 = 404, + aux_sym_bytes_expr_repeat1 = 405, + aux_sym_initializer_list_repeat1 = 406, + aux_sym_param_path_repeat1 = 407, + aux_sym__call_arg_list_repeat1 = 408, + aux_sym_call_inline_attributes_repeat1 = 409, + aux_sym_type_repeat1 = 410, }; static const char * const ts_symbol_names[] = { @@ -443,9 +449,10 @@ static const char * const ts_symbol_names[] = { [aux_sym_raw_string_literal_token1] = "raw_string_content", [sym_bytes_literal] = "bytes_literal", [aux_sym_line_comment_token1] = "line_comment_token1", - [anon_sym_SLASH_STAR_STAR] = "/**", - [anon_sym_STAR_SLASH] = "*/", + [anon_sym_LT_STAR] = "<*", + [anon_sym_STAR_GT] = "*>", [anon_sym_SLASH_STAR] = "/*", + [anon_sym_STAR_SLASH] = "*/", [sym_ct_ident] = "ct_ident", [sym_at_ident] = "at_ident", [sym_hash_ident] = "hash_ident", @@ -456,6 +463,7 @@ static const char * const ts_symbol_names[] = { [sym_ct_const_ident] = "ct_const_ident", [sym_builtin] = "builtin", [anon_sym_COLON_COLON] = "::", + [anon_sym_DOT] = ".", [anon_sym_COMMA] = ",", [anon_sym_LPAREN_LT] = "(<", [anon_sym_GT_RPAREN] = ">)", @@ -487,7 +495,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_fault] = "fault", [anon_sym_enum] = "enum", [anon_sym_interface] = "interface", - [anon_sym_DOT] = ".", [anon_sym_EQ_GT] = "=>", [anon_sym_macro] = "macro", [anon_sym_var] = "var", @@ -538,11 +545,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_DOLLARnameof] = "$nameof", [anon_sym_DOLLARoffsetof] = "$offsetof", [anon_sym_DOLLARqnameof] = "$qnameof", - [anon_sym_DOLLAReval] = "$eval", - [anon_sym_DOLLARdefined] = "$defined", - [anon_sym_DOLLARsizeof] = "$sizeof", - [anon_sym_DOLLARstringify] = "$stringify", - [anon_sym_DOLLARis_const] = "$is_const", [anon_sym_DOLLARvaconst] = "$vaconst", [anon_sym_DOLLARvaarg] = "$vaarg", [anon_sym_DOLLARvaref] = "$varef", @@ -551,11 +553,18 @@ static const char * const ts_symbol_names[] = { [anon_sym_false] = "false", [anon_sym_null] = "null", [anon_sym_DOLLARvacount] = "$vacount", - [anon_sym_DOLLARfeature] = "$feature", + [anon_sym_DOLLAReval] = "$eval", + [anon_sym_DOLLARis_const] = "$is_const", + [anon_sym_DOLLARsizeof] = "$sizeof", + [anon_sym_DOLLARstringify] = "$stringify", + [anon_sym_DOLLARappend] = "$append", + [anon_sym_DOLLARconcat] = "$concat", + [anon_sym_DOLLARdefined] = "$defined", + [anon_sym_DOLLARembed] = "$embed", [anon_sym_DOLLARand] = "$and", [anon_sym_DOLLARor] = "$or", + [anon_sym_DOLLARfeature] = "$feature", [anon_sym_DOLLARassignable] = "$assignable", - [anon_sym_DOLLARembed] = "$embed", [anon_sym_PLUS_EQ] = "+=", [anon_sym_DASH_EQ] = "-=", [anon_sym_STAR_EQ] = "*=", @@ -584,6 +593,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_LT_EQ] = "<=", [anon_sym_LT] = "<", [anon_sym_PIPE_PIPE] = "||", + [anon_sym_PIPE_PIPE_PIPE] = "|||", + [anon_sym_AMP_AMP_AMP] = "&&&", + [anon_sym_PLUS_PLUS_PLUS] = "+++", [anon_sym_DOLLARvasplat] = "$vasplat", [anon_sym_BANG_BANG] = "!!", [anon_sym_typeid] = "typeid", @@ -613,18 +625,20 @@ static const char * const ts_symbol_names[] = { [anon_sym_any] = "any", [anon_sym_DOLLARtypeof] = "$typeof", [anon_sym_DOLLARtypefrom] = "$typefrom", - [anon_sym_DOLLARvatype] = "$vatype", [anon_sym_DOLLARevaltype] = "$evaltype", + [anon_sym_DOLLARvatype] = "$vatype", [anon_sym_LBRACK_LT] = "[<", [anon_sym_GT_RBRACK] = ">]", [sym_block_comment_text] = "block_comment_text", [sym_doc_comment_text] = "doc_comment_text", + [sym_doc_comment_contract_text] = "doc_comment_contract_text", [sym_real_literal] = "real_literal", [sym_source_file] = "source_file", [sym_char_literal] = "char_literal", [sym_string_literal] = "string_literal", [sym_raw_string_literal] = "raw_string_literal", [sym_line_comment] = "line_comment", + [sym_doc_comment_contract] = "doc_comment_contract", [sym_doc_comment] = "doc_comment", [sym_block_comment] = "block_comment", [sym_module_resolution] = "module_resolution", @@ -632,12 +646,12 @@ static const char * const ts_symbol_names[] = { [sym_path_ident] = "path_ident", [sym_path_type_ident] = "path_type_ident", [sym_path_const_ident] = "path_const_ident", - [sym_path_at_ident] = "path_at_ident", [sym_path_at_type_ident] = "path_at_type_ident", + [sym_define_path_ident] = "define_path_ident", + [sym_define_path_at_ident] = "define_path_at_ident", [sym__generic_arg_list] = "_generic_arg_list", [sym_generic_arguments] = "generic_arguments", [sym__assign_right_expr] = "_assign_right_expr", - [sym__assign_right_constant_expr] = "_assign_right_constant_expr", [sym__cond] = "_cond", [sym_paren_cond] = "paren_cond", [sym__parameter] = "_parameter", @@ -647,6 +661,7 @@ static const char * const ts_symbol_names[] = { [sym__attribute_name] = "_attribute_name", [sym__attribute_operator_expr] = "_attribute_operator_expr", [sym_attr_param] = "attr_param", + [sym_attribute_param_list] = "attribute_param_list", [sym_attribute] = "attribute", [sym_attributes] = "attributes", [sym_local_decl_storage] = "local_decl_storage", @@ -662,7 +677,7 @@ static const char * const ts_symbol_names[] = { [sym_define_declaration] = "define_declaration", [sym_distinct_declaration] = "distinct_declaration", [sym_const_declaration] = "const_declaration", - [sym_multi_declaration] = "multi_declaration", + [sym__multi_declaration] = "_multi_declaration", [sym_global_declaration] = "global_declaration", [sym__struct_or_union] = "_struct_or_union", [sym_interface] = "interface", @@ -671,9 +686,7 @@ static const char * const ts_symbol_names[] = { [sym_struct_member_declaration] = "struct_member_declaration", [sym_struct_body] = "struct_body", [sym_struct_declaration] = "struct_declaration", - [sym_bitstruct_def] = "bitstruct_def", - [aux_sym__bitstruct_defs] = "_bitstruct_defs", - [aux_sym__bitstruct_simple_defs] = "_bitstruct_simple_defs", + [sym_bitstruct_member_declaration] = "bitstruct_member_declaration", [sym_bitstruct_body] = "bitstruct_body", [sym_bitstruct_declaration] = "bitstruct_declaration", [sym_fault_body] = "fault_body", @@ -721,7 +734,6 @@ static const char * const ts_symbol_names[] = { [sym_switch_stmt] = "switch_stmt", [sym_catch_unwrap_list] = "catch_unwrap_list", [sym_catch_unwrap] = "catch_unwrap", - [sym__rel_or_lambda_expr] = "_rel_or_lambda_expr", [sym_try_unwrap] = "try_unwrap", [sym__try_unwrap_chain] = "_try_unwrap_chain", [sym__if_body] = "_if_body", @@ -760,8 +772,6 @@ static const char * const ts_symbol_names[] = { [sym_ct_foreach_stmt] = "ct_foreach_stmt", [sym__expr] = "_expr", [sym__constant_expr] = "_constant_expr", - [sym__relational_expr] = "_relational_expr", - [sym__trailing_expr] = "_trailing_expr", [sym__ident_expr] = "_ident_expr", [sym__local_ident_expr] = "_local_ident_expr", [sym_flat_path] = "flat_path", @@ -777,7 +787,7 @@ static const char * const ts_symbol_names[] = { [sym_ternary_expr] = "ternary_expr", [sym_lambda_expr] = "lambda_expr", [sym_elvis_orelse_expr] = "elvis_orelse_expr", - [sym_suffix_expr] = "suffix_expr", + [sym_optional_expr] = "optional_expr", [sym_cast_expr] = "cast_expr", [sym__unary_op] = "_unary_op", [sym_unary_expr] = "unary_expr", @@ -785,6 +795,7 @@ static const char * const ts_symbol_names[] = { [sym_param_path_element] = "param_path_element", [sym_param_path] = "param_path", [sym_arg] = "arg", + [sym_call_arg] = "call_arg", [sym__call_arg_list] = "_call_arg_list", [sym_call_inline_attributes] = "call_inline_attributes", [sym_call_invocation] = "call_invocation", @@ -796,6 +807,7 @@ static const char * const ts_symbol_names[] = { [sym_range_expr] = "range_expr", [sym_subscript_expr] = "subscript_expr", [sym_field_expr] = "field_expr", + [sym_access_eval] = "access_eval", [sym_access_ident] = "access_ident", [sym_type_access_expr] = "type_access_expr", [sym_expr_block] = "expr_block", @@ -803,22 +815,21 @@ static const char * const ts_symbol_names[] = { [sym_base_type] = "base_type", [sym_type_suffix] = "type_suffix", [sym_type] = "type", - [sym__type_or_optional_type] = "_type_or_optional_type", - [sym_optional_type] = "optional_type", [aux_sym_source_file_repeat1] = "source_file_repeat1", [aux_sym_string_literal_repeat1] = "string_literal_repeat1", + [aux_sym_doc_comment_repeat1] = "doc_comment_repeat1", [aux_sym__generic_arg_list_repeat1] = "_generic_arg_list_repeat1", [aux_sym__cond_repeat1] = "_cond_repeat1", [aux_sym__parameters_repeat1] = "_parameters_repeat1", - [aux_sym_attribute_repeat1] = "attribute_repeat1", + [aux_sym_attribute_param_list_repeat1] = "attribute_param_list_repeat1", [aux_sym_attributes_repeat1] = "attributes_repeat1", [aux_sym_generic_module_parameters_repeat1] = "generic_module_parameters_repeat1", [aux_sym_import_declaration_repeat1] = "import_declaration_repeat1", - [aux_sym_multi_declaration_repeat1] = "multi_declaration_repeat1", + [aux_sym__multi_declaration_repeat1] = "_multi_declaration_repeat1", [aux_sym_interface_impl_repeat1] = "interface_impl_repeat1", [aux_sym_struct_body_repeat1] = "struct_body_repeat1", + [aux_sym_bitstruct_body_repeat1] = "bitstruct_body_repeat1", [aux_sym_fault_body_repeat1] = "fault_body_repeat1", - [aux_sym_enum_arg_repeat1] = "enum_arg_repeat1", [aux_sym_enum_param_list_repeat1] = "enum_param_list_repeat1", [aux_sym_enum_body_repeat1] = "enum_body_repeat1", [aux_sym_interface_body_repeat1] = "interface_body_repeat1", @@ -826,14 +837,15 @@ static const char * const ts_symbol_names[] = { [aux_sym_assert_stmt_repeat1] = "assert_stmt_repeat1", [aux_sym__decl_statement_after_type_repeat1] = "_decl_statement_after_type_repeat1", [aux_sym_switch_body_repeat1] = "switch_body_repeat1", - [aux_sym_catch_unwrap_list_repeat1] = "catch_unwrap_list_repeat1", [aux_sym__try_unwrap_chain_repeat1] = "_try_unwrap_chain_repeat1", [aux_sym_asm_stmt_repeat1] = "asm_stmt_repeat1", [aux_sym_asm_block_stmt_repeat1] = "asm_block_stmt_repeat1", [aux_sym_ct_exec_stmt_repeat1] = "ct_exec_stmt_repeat1", [aux_sym_string_expr_repeat1] = "string_expr_repeat1", [aux_sym_bytes_expr_repeat1] = "bytes_expr_repeat1", + [aux_sym_initializer_list_repeat1] = "initializer_list_repeat1", [aux_sym_param_path_repeat1] = "param_path_repeat1", + [aux_sym__call_arg_list_repeat1] = "_call_arg_list_repeat1", [aux_sym_call_inline_attributes_repeat1] = "call_inline_attributes_repeat1", [aux_sym_type_repeat1] = "type_repeat1", }; @@ -851,9 +863,10 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_raw_string_literal_token1] = aux_sym_raw_string_literal_token1, [sym_bytes_literal] = sym_bytes_literal, [aux_sym_line_comment_token1] = aux_sym_line_comment_token1, - [anon_sym_SLASH_STAR_STAR] = anon_sym_SLASH_STAR_STAR, - [anon_sym_STAR_SLASH] = anon_sym_STAR_SLASH, + [anon_sym_LT_STAR] = anon_sym_LT_STAR, + [anon_sym_STAR_GT] = anon_sym_STAR_GT, [anon_sym_SLASH_STAR] = anon_sym_SLASH_STAR, + [anon_sym_STAR_SLASH] = anon_sym_STAR_SLASH, [sym_ct_ident] = sym_ct_ident, [sym_at_ident] = sym_at_ident, [sym_hash_ident] = sym_hash_ident, @@ -864,6 +877,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_ct_const_ident] = sym_ct_const_ident, [sym_builtin] = sym_builtin, [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, + [anon_sym_DOT] = anon_sym_DOT, [anon_sym_COMMA] = anon_sym_COMMA, [anon_sym_LPAREN_LT] = anon_sym_LPAREN_LT, [anon_sym_GT_RPAREN] = anon_sym_GT_RPAREN, @@ -895,7 +909,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_fault] = anon_sym_fault, [anon_sym_enum] = anon_sym_enum, [anon_sym_interface] = anon_sym_interface, - [anon_sym_DOT] = anon_sym_DOT, [anon_sym_EQ_GT] = anon_sym_EQ_GT, [anon_sym_macro] = anon_sym_macro, [anon_sym_var] = anon_sym_var, @@ -946,11 +959,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DOLLARnameof] = anon_sym_DOLLARnameof, [anon_sym_DOLLARoffsetof] = anon_sym_DOLLARoffsetof, [anon_sym_DOLLARqnameof] = anon_sym_DOLLARqnameof, - [anon_sym_DOLLAReval] = anon_sym_DOLLAReval, - [anon_sym_DOLLARdefined] = anon_sym_DOLLARdefined, - [anon_sym_DOLLARsizeof] = anon_sym_DOLLARsizeof, - [anon_sym_DOLLARstringify] = anon_sym_DOLLARstringify, - [anon_sym_DOLLARis_const] = anon_sym_DOLLARis_const, [anon_sym_DOLLARvaconst] = anon_sym_DOLLARvaconst, [anon_sym_DOLLARvaarg] = anon_sym_DOLLARvaarg, [anon_sym_DOLLARvaref] = anon_sym_DOLLARvaref, @@ -959,11 +967,18 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_false] = anon_sym_false, [anon_sym_null] = anon_sym_null, [anon_sym_DOLLARvacount] = anon_sym_DOLLARvacount, - [anon_sym_DOLLARfeature] = anon_sym_DOLLARfeature, + [anon_sym_DOLLAReval] = anon_sym_DOLLAReval, + [anon_sym_DOLLARis_const] = anon_sym_DOLLARis_const, + [anon_sym_DOLLARsizeof] = anon_sym_DOLLARsizeof, + [anon_sym_DOLLARstringify] = anon_sym_DOLLARstringify, + [anon_sym_DOLLARappend] = anon_sym_DOLLARappend, + [anon_sym_DOLLARconcat] = anon_sym_DOLLARconcat, + [anon_sym_DOLLARdefined] = anon_sym_DOLLARdefined, + [anon_sym_DOLLARembed] = anon_sym_DOLLARembed, [anon_sym_DOLLARand] = anon_sym_DOLLARand, [anon_sym_DOLLARor] = anon_sym_DOLLARor, + [anon_sym_DOLLARfeature] = anon_sym_DOLLARfeature, [anon_sym_DOLLARassignable] = anon_sym_DOLLARassignable, - [anon_sym_DOLLARembed] = anon_sym_DOLLARembed, [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, @@ -992,6 +1007,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LT_EQ] = anon_sym_LT_EQ, [anon_sym_LT] = anon_sym_LT, [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, + [anon_sym_PIPE_PIPE_PIPE] = anon_sym_PIPE_PIPE_PIPE, + [anon_sym_AMP_AMP_AMP] = anon_sym_AMP_AMP_AMP, + [anon_sym_PLUS_PLUS_PLUS] = anon_sym_PLUS_PLUS_PLUS, [anon_sym_DOLLARvasplat] = anon_sym_DOLLARvasplat, [anon_sym_BANG_BANG] = anon_sym_BANG_BANG, [anon_sym_typeid] = anon_sym_typeid, @@ -1021,18 +1039,20 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_any] = anon_sym_any, [anon_sym_DOLLARtypeof] = anon_sym_DOLLARtypeof, [anon_sym_DOLLARtypefrom] = anon_sym_DOLLARtypefrom, - [anon_sym_DOLLARvatype] = anon_sym_DOLLARvatype, [anon_sym_DOLLARevaltype] = anon_sym_DOLLARevaltype, + [anon_sym_DOLLARvatype] = anon_sym_DOLLARvatype, [anon_sym_LBRACK_LT] = anon_sym_LBRACK_LT, [anon_sym_GT_RBRACK] = anon_sym_GT_RBRACK, [sym_block_comment_text] = sym_block_comment_text, [sym_doc_comment_text] = sym_doc_comment_text, + [sym_doc_comment_contract_text] = sym_doc_comment_contract_text, [sym_real_literal] = sym_real_literal, [sym_source_file] = sym_source_file, [sym_char_literal] = sym_char_literal, [sym_string_literal] = sym_string_literal, [sym_raw_string_literal] = sym_raw_string_literal, [sym_line_comment] = sym_line_comment, + [sym_doc_comment_contract] = sym_doc_comment_contract, [sym_doc_comment] = sym_doc_comment, [sym_block_comment] = sym_block_comment, [sym_module_resolution] = sym_module_resolution, @@ -1040,12 +1060,12 @@ static const TSSymbol ts_symbol_map[] = { [sym_path_ident] = sym_path_ident, [sym_path_type_ident] = sym_path_type_ident, [sym_path_const_ident] = sym_path_const_ident, - [sym_path_at_ident] = sym_path_at_ident, [sym_path_at_type_ident] = sym_path_at_type_ident, + [sym_define_path_ident] = sym_define_path_ident, + [sym_define_path_at_ident] = sym_define_path_at_ident, [sym__generic_arg_list] = sym__generic_arg_list, [sym_generic_arguments] = sym_generic_arguments, [sym__assign_right_expr] = sym__assign_right_expr, - [sym__assign_right_constant_expr] = sym__assign_right_constant_expr, [sym__cond] = sym__cond, [sym_paren_cond] = sym_paren_cond, [sym__parameter] = sym__parameter, @@ -1055,6 +1075,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__attribute_name] = sym__attribute_name, [sym__attribute_operator_expr] = sym__attribute_operator_expr, [sym_attr_param] = sym_attr_param, + [sym_attribute_param_list] = sym_attribute_param_list, [sym_attribute] = sym_attribute, [sym_attributes] = sym_attributes, [sym_local_decl_storage] = sym_local_decl_storage, @@ -1070,7 +1091,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_define_declaration] = sym_define_declaration, [sym_distinct_declaration] = sym_distinct_declaration, [sym_const_declaration] = sym_const_declaration, - [sym_multi_declaration] = sym_multi_declaration, + [sym__multi_declaration] = sym__multi_declaration, [sym_global_declaration] = sym_global_declaration, [sym__struct_or_union] = sym__struct_or_union, [sym_interface] = sym_interface, @@ -1079,9 +1100,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_struct_member_declaration] = sym_struct_member_declaration, [sym_struct_body] = sym_struct_body, [sym_struct_declaration] = sym_struct_declaration, - [sym_bitstruct_def] = sym_bitstruct_def, - [aux_sym__bitstruct_defs] = aux_sym__bitstruct_defs, - [aux_sym__bitstruct_simple_defs] = aux_sym__bitstruct_simple_defs, + [sym_bitstruct_member_declaration] = sym_bitstruct_member_declaration, [sym_bitstruct_body] = sym_bitstruct_body, [sym_bitstruct_declaration] = sym_bitstruct_declaration, [sym_fault_body] = sym_fault_body, @@ -1129,7 +1148,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_switch_stmt] = sym_switch_stmt, [sym_catch_unwrap_list] = sym_catch_unwrap_list, [sym_catch_unwrap] = sym_catch_unwrap, - [sym__rel_or_lambda_expr] = sym__rel_or_lambda_expr, [sym_try_unwrap] = sym_try_unwrap, [sym__try_unwrap_chain] = sym__try_unwrap_chain, [sym__if_body] = sym__if_body, @@ -1168,8 +1186,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_ct_foreach_stmt] = sym_ct_foreach_stmt, [sym__expr] = sym__expr, [sym__constant_expr] = sym__constant_expr, - [sym__relational_expr] = sym__relational_expr, - [sym__trailing_expr] = sym__trailing_expr, [sym__ident_expr] = sym__ident_expr, [sym__local_ident_expr] = sym__local_ident_expr, [sym_flat_path] = sym_flat_path, @@ -1185,7 +1201,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_ternary_expr] = sym_ternary_expr, [sym_lambda_expr] = sym_lambda_expr, [sym_elvis_orelse_expr] = sym_elvis_orelse_expr, - [sym_suffix_expr] = sym_suffix_expr, + [sym_optional_expr] = sym_optional_expr, [sym_cast_expr] = sym_cast_expr, [sym__unary_op] = sym__unary_op, [sym_unary_expr] = sym_unary_expr, @@ -1193,6 +1209,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_param_path_element] = sym_param_path_element, [sym_param_path] = sym_param_path, [sym_arg] = sym_arg, + [sym_call_arg] = sym_call_arg, [sym__call_arg_list] = sym__call_arg_list, [sym_call_inline_attributes] = sym_call_inline_attributes, [sym_call_invocation] = sym_call_invocation, @@ -1204,6 +1221,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_range_expr] = sym_range_expr, [sym_subscript_expr] = sym_subscript_expr, [sym_field_expr] = sym_field_expr, + [sym_access_eval] = sym_access_eval, [sym_access_ident] = sym_access_ident, [sym_type_access_expr] = sym_type_access_expr, [sym_expr_block] = sym_expr_block, @@ -1211,22 +1229,21 @@ static const TSSymbol ts_symbol_map[] = { [sym_base_type] = sym_base_type, [sym_type_suffix] = sym_type_suffix, [sym_type] = sym_type, - [sym__type_or_optional_type] = sym__type_or_optional_type, - [sym_optional_type] = sym_optional_type, [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, [aux_sym_string_literal_repeat1] = aux_sym_string_literal_repeat1, + [aux_sym_doc_comment_repeat1] = aux_sym_doc_comment_repeat1, [aux_sym__generic_arg_list_repeat1] = aux_sym__generic_arg_list_repeat1, [aux_sym__cond_repeat1] = aux_sym__cond_repeat1, [aux_sym__parameters_repeat1] = aux_sym__parameters_repeat1, - [aux_sym_attribute_repeat1] = aux_sym_attribute_repeat1, + [aux_sym_attribute_param_list_repeat1] = aux_sym_attribute_param_list_repeat1, [aux_sym_attributes_repeat1] = aux_sym_attributes_repeat1, [aux_sym_generic_module_parameters_repeat1] = aux_sym_generic_module_parameters_repeat1, [aux_sym_import_declaration_repeat1] = aux_sym_import_declaration_repeat1, - [aux_sym_multi_declaration_repeat1] = aux_sym_multi_declaration_repeat1, + [aux_sym__multi_declaration_repeat1] = aux_sym__multi_declaration_repeat1, [aux_sym_interface_impl_repeat1] = aux_sym_interface_impl_repeat1, [aux_sym_struct_body_repeat1] = aux_sym_struct_body_repeat1, + [aux_sym_bitstruct_body_repeat1] = aux_sym_bitstruct_body_repeat1, [aux_sym_fault_body_repeat1] = aux_sym_fault_body_repeat1, - [aux_sym_enum_arg_repeat1] = aux_sym_enum_arg_repeat1, [aux_sym_enum_param_list_repeat1] = aux_sym_enum_param_list_repeat1, [aux_sym_enum_body_repeat1] = aux_sym_enum_body_repeat1, [aux_sym_interface_body_repeat1] = aux_sym_interface_body_repeat1, @@ -1234,14 +1251,15 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_assert_stmt_repeat1] = aux_sym_assert_stmt_repeat1, [aux_sym__decl_statement_after_type_repeat1] = aux_sym__decl_statement_after_type_repeat1, [aux_sym_switch_body_repeat1] = aux_sym_switch_body_repeat1, - [aux_sym_catch_unwrap_list_repeat1] = aux_sym_catch_unwrap_list_repeat1, [aux_sym__try_unwrap_chain_repeat1] = aux_sym__try_unwrap_chain_repeat1, [aux_sym_asm_stmt_repeat1] = aux_sym_asm_stmt_repeat1, [aux_sym_asm_block_stmt_repeat1] = aux_sym_asm_block_stmt_repeat1, [aux_sym_ct_exec_stmt_repeat1] = aux_sym_ct_exec_stmt_repeat1, [aux_sym_string_expr_repeat1] = aux_sym_string_expr_repeat1, [aux_sym_bytes_expr_repeat1] = aux_sym_bytes_expr_repeat1, + [aux_sym_initializer_list_repeat1] = aux_sym_initializer_list_repeat1, [aux_sym_param_path_repeat1] = aux_sym_param_path_repeat1, + [aux_sym__call_arg_list_repeat1] = aux_sym__call_arg_list_repeat1, [aux_sym_call_inline_attributes_repeat1] = aux_sym_call_inline_attributes_repeat1, [aux_sym_type_repeat1] = aux_sym_type_repeat1, }; @@ -1295,11 +1313,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [anon_sym_SLASH_STAR_STAR] = { + [anon_sym_LT_STAR] = { .visible = true, .named = false, }, - [anon_sym_STAR_SLASH] = { + [anon_sym_STAR_GT] = { .visible = true, .named = false, }, @@ -1307,6 +1325,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_STAR_SLASH] = { + .visible = true, + .named = false, + }, [sym_ct_ident] = { .visible = true, .named = true, @@ -1347,6 +1369,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, [anon_sym_COMMA] = { .visible = true, .named = false, @@ -1471,10 +1497,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_DOT] = { - .visible = true, - .named = false, - }, [anon_sym_EQ_GT] = { .visible = true, .named = false, @@ -1675,59 +1697,67 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_DOLLAReval] = { + [anon_sym_DOLLARvaconst] = { .visible = true, .named = false, }, - [anon_sym_DOLLARdefined] = { + [anon_sym_DOLLARvaarg] = { .visible = true, .named = false, }, - [anon_sym_DOLLARsizeof] = { + [anon_sym_DOLLARvaref] = { .visible = true, .named = false, }, - [anon_sym_DOLLARstringify] = { + [anon_sym_DOLLARvaexpr] = { .visible = true, .named = false, }, - [anon_sym_DOLLARis_const] = { + [anon_sym_true] = { .visible = true, .named = false, }, - [anon_sym_DOLLARvaconst] = { + [anon_sym_false] = { .visible = true, .named = false, }, - [anon_sym_DOLLARvaarg] = { + [anon_sym_null] = { .visible = true, .named = false, }, - [anon_sym_DOLLARvaref] = { + [anon_sym_DOLLARvacount] = { .visible = true, .named = false, }, - [anon_sym_DOLLARvaexpr] = { + [anon_sym_DOLLAReval] = { .visible = true, .named = false, }, - [anon_sym_true] = { + [anon_sym_DOLLARis_const] = { .visible = true, .named = false, }, - [anon_sym_false] = { + [anon_sym_DOLLARsizeof] = { .visible = true, .named = false, }, - [anon_sym_null] = { + [anon_sym_DOLLARstringify] = { .visible = true, .named = false, }, - [anon_sym_DOLLARvacount] = { + [anon_sym_DOLLARappend] = { .visible = true, .named = false, }, - [anon_sym_DOLLARfeature] = { + [anon_sym_DOLLARconcat] = { + .visible = true, + .named = false, + }, + [anon_sym_DOLLARdefined] = { + .visible = true, + .named = false, + }, + [anon_sym_DOLLARembed] = { .visible = true, .named = false, }, @@ -1739,11 +1769,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_DOLLARassignable] = { + [anon_sym_DOLLARfeature] = { .visible = true, .named = false, }, - [anon_sym_DOLLARembed] = { + [anon_sym_DOLLARassignable] = { .visible = true, .named = false, }, @@ -1859,6 +1889,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_PIPE_PIPE_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_AMP_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_PLUS_PLUS] = { + .visible = true, + .named = false, + }, [anon_sym_DOLLARvasplat] = { .visible = true, .named = false, @@ -1975,11 +2017,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_DOLLARvatype] = { + [anon_sym_DOLLARevaltype] = { .visible = true, .named = false, }, - [anon_sym_DOLLARevaltype] = { + [anon_sym_DOLLARvatype] = { .visible = true, .named = false, }, @@ -1999,6 +2041,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_doc_comment_contract_text] = { + .visible = true, + .named = true, + }, [sym_real_literal] = { .visible = true, .named = true, @@ -2023,6 +2069,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_doc_comment_contract] = { + .visible = true, + .named = true, + }, [sym_doc_comment] = { .visible = true, .named = true, @@ -2051,11 +2101,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_path_at_ident] = { + [sym_path_at_type_ident] = { .visible = true, .named = true, }, - [sym_path_at_type_ident] = { + [sym_define_path_ident] = { + .visible = true, + .named = true, + }, + [sym_define_path_at_ident] = { .visible = true, .named = true, }, @@ -2071,10 +2125,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__assign_right_constant_expr] = { - .visible = false, - .named = true, - }, [sym__cond] = { .visible = false, .named = true, @@ -2111,6 +2161,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_attribute_param_list] = { + .visible = true, + .named = true, + }, [sym_attribute] = { .visible = true, .named = true, @@ -2171,8 +2225,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_multi_declaration] = { - .visible = true, + [sym__multi_declaration] = { + .visible = false, .named = true, }, [sym_global_declaration] = { @@ -2207,18 +2261,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_bitstruct_def] = { + [sym_bitstruct_member_declaration] = { .visible = true, .named = true, }, - [aux_sym__bitstruct_defs] = { - .visible = false, - .named = false, - }, - [aux_sym__bitstruct_simple_defs] = { - .visible = false, - .named = false, - }, [sym_bitstruct_body] = { .visible = true, .named = true, @@ -2407,10 +2453,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__rel_or_lambda_expr] = { - .visible = false, - .named = true, - }, [sym_try_unwrap] = { .visible = true, .named = true, @@ -2563,14 +2605,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__relational_expr] = { - .visible = false, - .named = true, - }, - [sym__trailing_expr] = { - .visible = false, - .named = true, - }, [sym__ident_expr] = { .visible = false, .named = true, @@ -2631,7 +2665,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_suffix_expr] = { + [sym_optional_expr] = { .visible = true, .named = true, }, @@ -2663,6 +2697,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_call_arg] = { + .visible = true, + .named = true, + }, [sym__call_arg_list] = { .visible = false, .named = true, @@ -2707,6 +2745,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_access_eval] = { + .visible = true, + .named = true, + }, [sym_access_ident] = { .visible = true, .named = true, @@ -2735,14 +2777,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__type_or_optional_type] = { - .visible = false, - .named = true, - }, - [sym_optional_type] = { - .visible = true, - .named = true, - }, [aux_sym_source_file_repeat1] = { .visible = false, .named = false, @@ -2751,6 +2785,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_doc_comment_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym__generic_arg_list_repeat1] = { .visible = false, .named = false, @@ -2763,7 +2801,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_attribute_repeat1] = { + [aux_sym_attribute_param_list_repeat1] = { .visible = false, .named = false, }, @@ -2779,7 +2817,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_multi_declaration_repeat1] = { + [aux_sym__multi_declaration_repeat1] = { .visible = false, .named = false, }, @@ -2791,11 +2829,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_fault_body_repeat1] = { + [aux_sym_bitstruct_body_repeat1] = { .visible = false, .named = false, }, - [aux_sym_enum_arg_repeat1] = { + [aux_sym_fault_body_repeat1] = { .visible = false, .named = false, }, @@ -2827,10 +2865,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_catch_unwrap_list_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym__try_unwrap_chain_repeat1] = { .visible = false, .named = false, @@ -2855,10 +2889,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_initializer_list_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_param_path_repeat1] = { .visible = false, .named = false, }, + [aux_sym__call_arg_list_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_call_inline_attributes_repeat1] = { .visible = false, .named = false, @@ -2884,19 +2926,20 @@ enum ts_field_identifiers { field_index = 12, field_initializer = 13, field_label = 14, - field_left = 15, - field_method_type = 16, - field_name = 17, - field_operator = 18, - field_path = 19, - field_range = 20, - field_return_type = 21, - field_right = 22, - field_target = 23, - field_trailing = 24, - field_type = 25, - field_update = 26, - field_value = 27, + field_lambda_body = 15, + field_left = 16, + field_method_type = 17, + field_name = 18, + field_operator = 19, + field_path = 20, + field_range = 21, + field_return_type = 22, + field_right = 23, + field_target = 24, + field_trailing = 25, + field_type = 26, + field_update = 27, + field_value = 28, }; static const char * const ts_field_names[] = { @@ -2915,6 +2958,7 @@ static const char * const ts_field_names[] = { [field_index] = "index", [field_initializer] = "initializer", [field_label] = "label", + [field_lambda_body] = "lambda_body", [field_left] = "left", [field_method_type] = "method_type", [field_name] = "name", @@ -2934,241 +2978,435 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 1}, [2] = {.index = 1, .length = 1}, [3] = {.index = 2, .length = 1}, - [4] = {.index = 3, .length = 1}, - [5] = {.index = 4, .length = 2}, - [6] = {.index = 6, .length = 2}, - [7] = {.index = 8, .length = 1}, - [8] = {.index = 9, .length = 2}, - [9] = {.index = 11, .length = 2}, - [10] = {.index = 13, .length = 2}, - [11] = {.index = 15, .length = 1}, - [12] = {.index = 16, .length = 1}, - [13] = {.index = 17, .length = 2}, - [14] = {.index = 19, .length = 1}, - [15] = {.index = 20, .length = 1}, - [16] = {.index = 21, .length = 2}, - [17] = {.index = 23, .length = 2}, - [18] = {.index = 25, .length = 3}, - [19] = {.index = 28, .length = 1}, - [20] = {.index = 29, .length = 2}, - [21] = {.index = 31, .length = 3}, - [22] = {.index = 34, .length = 3}, - [23] = {.index = 37, .length = 2}, - [24] = {.index = 39, .length = 1}, - [25] = {.index = 40, .length = 1}, - [26] = {.index = 41, .length = 3}, - [27] = {.index = 44, .length = 1}, - [28] = {.index = 45, .length = 2}, - [29] = {.index = 47, .length = 1}, - [30] = {.index = 48, .length = 2}, - [31] = {.index = 50, .length = 2}, - [32] = {.index = 52, .length = 2}, - [33] = {.index = 54, .length = 1}, - [34] = {.index = 55, .length = 2}, - [35] = {.index = 57, .length = 2}, - [36] = {.index = 59, .length = 1}, - [37] = {.index = 60, .length = 2}, - [38] = {.index = 62, .length = 1}, - [39] = {.index = 63, .length = 2}, - [40] = {.index = 65, .length = 2}, - [41] = {.index = 67, .length = 2}, - [42] = {.index = 69, .length = 2}, - [43] = {.index = 71, .length = 2}, - [44] = {.index = 73, .length = 2}, - [45] = {.index = 75, .length = 3}, - [46] = {.index = 78, .length = 2}, - [47] = {.index = 80, .length = 2}, - [48] = {.index = 82, .length = 2}, - [49] = {.index = 84, .length = 3}, - [50] = {.index = 87, .length = 1}, - [51] = {.index = 88, .length = 1}, - [52] = {.index = 89, .length = 1}, - [53] = {.index = 90, .length = 1}, - [54] = {.index = 91, .length = 1}, - [55] = {.index = 92, .length = 1}, - [56] = {.index = 93, .length = 2}, - [57] = {.index = 95, .length = 1}, - [58] = {.index = 96, .length = 2}, - [59] = {.index = 98, .length = 2}, - [60] = {.index = 100, .length = 2}, - [61] = {.index = 102, .length = 1}, - [62] = {.index = 103, .length = 3}, - [63] = {.index = 106, .length = 3}, + [4] = {.index = 3, .length = 2}, + [5] = {.index = 5, .length = 3}, + [6] = {.index = 8, .length = 2}, + [7] = {.index = 10, .length = 1}, + [8] = {.index = 11, .length = 2}, + [9] = {.index = 13, .length = 2}, + [10] = {.index = 15, .length = 1}, + [11] = {.index = 16, .length = 1}, + [12] = {.index = 17, .length = 3}, + [13] = {.index = 20, .length = 3}, + [14] = {.index = 23, .length = 1}, + [15] = {.index = 24, .length = 3}, + [16] = {.index = 27, .length = 2}, + [17] = {.index = 29, .length = 2}, + [18] = {.index = 31, .length = 3}, + [19] = {.index = 34, .length = 2}, + [20] = {.index = 36, .length = 2}, + [21] = {.index = 38, .length = 2}, + [22] = {.index = 40, .length = 1}, + [23] = {.index = 41, .length = 1}, + [24] = {.index = 42, .length = 3}, + [25] = {.index = 45, .length = 2}, + [26] = {.index = 47, .length = 2}, + [27] = {.index = 49, .length = 1}, + [28] = {.index = 50, .length = 2}, + [29] = {.index = 52, .length = 3}, + [30] = {.index = 55, .length = 1}, + [31] = {.index = 56, .length = 1}, + [32] = {.index = 57, .length = 2}, + [33] = {.index = 59, .length = 3}, + [34] = {.index = 62, .length = 5}, + [35] = {.index = 67, .length = 4}, + [36] = {.index = 71, .length = 5}, + [37] = {.index = 76, .length = 4}, + [38] = {.index = 80, .length = 2}, + [39] = {.index = 82, .length = 1}, + [40] = {.index = 83, .length = 2}, + [41] = {.index = 85, .length = 4}, + [42] = {.index = 89, .length = 3}, + [43] = {.index = 92, .length = 2}, + [44] = {.index = 94, .length = 1}, + [45] = {.index = 95, .length = 3}, + [46] = {.index = 98, .length = 3}, + [47] = {.index = 101, .length = 4}, + [48] = {.index = 105, .length = 2}, + [49] = {.index = 107, .length = 2}, + [50] = {.index = 109, .length = 3}, + [51] = {.index = 112, .length = 1}, + [52] = {.index = 113, .length = 2}, + [53] = {.index = 115, .length = 2}, + [54] = {.index = 117, .length = 1}, + [55] = {.index = 118, .length = 2}, + [56] = {.index = 120, .length = 1}, + [57] = {.index = 121, .length = 2}, + [58] = {.index = 123, .length = 3}, + [59] = {.index = 126, .length = 4}, + [60] = {.index = 130, .length = 3}, + [61] = {.index = 133, .length = 3}, + [62] = {.index = 136, .length = 2}, + [63] = {.index = 138, .length = 3}, + [64] = {.index = 141, .length = 4}, + [65] = {.index = 145, .length = 2}, + [66] = {.index = 147, .length = 4}, + [67] = {.index = 151, .length = 2}, + [68] = {.index = 153, .length = 2}, + [69] = {.index = 155, .length = 2}, + [70] = {.index = 157, .length = 2}, + [71] = {.index = 159, .length = 3}, + [72] = {.index = 162, .length = 2}, + [73] = {.index = 164, .length = 2}, + [74] = {.index = 166, .length = 2}, + [75] = {.index = 168, .length = 2}, + [76] = {.index = 170, .length = 6}, + [77] = {.index = 176, .length = 2}, + [78] = {.index = 178, .length = 1}, + [79] = {.index = 179, .length = 2}, + [80] = {.index = 181, .length = 2}, + [81] = {.index = 183, .length = 1}, + [82] = {.index = 184, .length = 2}, + [83] = {.index = 186, .length = 3}, + [84] = {.index = 189, .length = 1}, + [85] = {.index = 190, .length = 2}, + [86] = {.index = 192, .length = 1}, + [87] = {.index = 193, .length = 3}, + [88] = {.index = 196, .length = 1}, + [89] = {.index = 197, .length = 2}, + [90] = {.index = 199, .length = 1}, + [91] = {.index = 200, .length = 3}, + [92] = {.index = 203, .length = 1}, + [93] = {.index = 204, .length = 1}, + [94] = {.index = 205, .length = 3}, + [95] = {.index = 208, .length = 2}, + [96] = {.index = 210, .length = 3}, + [97] = {.index = 213, .length = 1}, + [98] = {.index = 214, .length = 2}, + [99] = {.index = 216, .length = 4}, + [100] = {.index = 220, .length = 4}, + [101] = {.index = 224, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { [0] = {field_name, 0}, [1] = - {field_right, 1}, + {field_lambda_body, 0, .inherited = true}, [2] = - {field_right, 1, .inherited = true}, + {field_name, 1}, [3] = + {field_lambda_body, 1, .inherited = true}, + {field_right, 1}, + [5] = + {field_lambda_body, 1, .inherited = true}, + {field_name, 0}, + {field_right, 1, .inherited = true}, + [8] = + {field_name, 0}, + {field_name, 1, .inherited = true}, + [10] = {field_path, 1}, - [4] = + [11] = {field_name, 1}, {field_return_type, 0}, - [6] = + [13] = {field_body, 2}, {field_name, 1}, - [8] = + [15] = {field_ident, 1}, - [9] = + [16] = + {field_lambda_body, 1}, + [17] = {field_argument, 0}, + {field_lambda_body, 0, .inherited = true}, {field_operator, 1}, - [11] = + [20] = {field_arguments, 1}, {field_function, 0}, - [13] = + {field_lambda_body, 0, .inherited = true}, + [23] = + {field_lambda_body, 1, .inherited = true}, + [24] = {field_argument, 1}, + {field_lambda_body, 1, .inherited = true}, {field_operator, 0}, - [15] = + [27] = + {field_name, 1}, {field_type, 0}, - [16] = + [29] = + {field_name, 1}, + {field_name, 2}, + [31] = + {field_lambda_body, 2, .inherited = true}, + {field_name, 0}, {field_right, 2, .inherited = true}, - [17] = + [34] = + {field_lambda_body, 0, .inherited = true}, + {field_lambda_body, 1, .inherited = true}, + [36] = {field_path, 1}, {field_path, 2}, - [19] = + [38] = + {field_name, 0, .inherited = true}, + {field_type, 0, .inherited = true}, + [40] = + {field_type, 0}, + [41] = {field_body, 3}, - [20] = + [42] = + {field_lambda_body, 2, .inherited = true}, + {field_name, 1}, + {field_right, 2, .inherited = true}, + [45] = + {field_name, 2}, {field_type, 1}, - [21] = + [47] = {field_body, 3}, {field_name, 1}, - [23] = + [49] = + {field_type, 1}, + [50] = {field_method_type, 0}, {field_name, 2}, - [25] = + [52] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [28] = + [55] = + {field_return_type, 1}, + [56] = {field_body, 1}, - [29] = + [57] = + {field_body, 1}, + {field_lambda_body, 1, .inherited = true}, + [59] = {field_argument, 0}, {field_field, 2}, - [31] = + {field_lambda_body, 0, .inherited = true}, + [62] = + {field_lambda_body, 0, .inherited = true}, + {field_lambda_body, 2, .inherited = true}, + {field_left, 0}, + {field_operator, 1}, + {field_right, 2}, + [67] = {field_argument, 0}, + {field_lambda_body, 0, .inherited = true}, {field_operator, 1}, {field_operator, 2}, - [34] = + [71] = + {field_alternative, 2}, + {field_condition, 0}, + {field_lambda_body, 0, .inherited = true}, + {field_lambda_body, 2, .inherited = true}, + {field_operator, 1}, + [76] = {field_arguments, 1}, {field_function, 0}, + {field_lambda_body, 0, .inherited = true}, {field_trailing, 2}, - [37] = + [80] = + {field_argument, 0}, + {field_field, 2}, + [82] = + {field_lambda_body, 2, .inherited = true}, + [83] = + {field_name, 1}, + {field_name, 2, .inherited = true}, + [85] = + {field_lambda_body, 2, .inherited = true}, + {field_name, 1}, {field_right, 2, .inherited = true}, {field_type, 0}, - [39] = + [89] = + {field_name, 1}, + {field_name, 2, .inherited = true}, + {field_type, 0}, + [92] = + {field_lambda_body, 0, .inherited = true}, {field_right, 0, .inherited = true}, - [40] = + [94] = {field_body, 4}, - [41] = + [95] = {field_method_type, 1}, {field_name, 3}, {field_return_type, 0}, - [44] = + [98] = + {field_lambda_body, 3, .inherited = true}, + {field_name, 1}, {field_right, 3, .inherited = true}, - [45] = + [101] = + {field_lambda_body, 3, .inherited = true}, + {field_name, 2}, {field_right, 3, .inherited = true}, {field_type, 1}, - [47] = - {field_name, 1}, - [48] = + [105] = {field_body, 4}, {field_name, 1}, - [50] = + [107] = {field_args, 1}, {field_name, 0}, - [52] = + [109] = + {field_lambda_body, 3, .inherited = true}, {field_type, 1}, {field_value, 3}, - [54] = + [112] = {field_target, 1}, - [55] = + [113] = + {field_lambda_body, 1, .inherited = true}, + {field_target, 1}, + [115] = {field_body, 2}, {field_condition, 1}, - [57] = + [117] = + {field_body, 2}, + [118] = {field_body, 2}, {field_label, 1}, - [59] = + [120] = {field_body, 0}, - [60] = + [121] = {field_body, 2, .inherited = true}, {field_condition, 1}, - [62] = - {field_body, 2}, - [63] = - {field_name, 0}, - {field_right, 1, .inherited = true}, - [65] = + [123] = + {field_lambda_body, 1, .inherited = true}, + {field_operator, 0}, + {field_right, 1}, + [126] = {field_argument, 0}, {field_index, 2}, - [67] = + {field_lambda_body, 0, .inherited = true}, + {field_lambda_body, 2, .inherited = true}, + [130] = + {field_lambda_body, 0, .inherited = true}, + {field_left, 0}, + {field_operator, 1}, + [133] = {field_argument, 0}, + {field_lambda_body, 0, .inherited = true}, {field_range, 2}, - [69] = + [136] = + {field_lambda_body, 1, .inherited = true}, + {field_lambda_body, 3, .inherited = true}, + [138] = + {field_name, 2}, + {field_name, 3, .inherited = true}, + {field_type, 1}, + [141] = + {field_lambda_body, 3, .inherited = true}, + {field_name, 1}, {field_right, 3, .inherited = true}, {field_type, 0}, - [71] = + [145] = + {field_name, 2}, + {field_type, 0}, + [147] = + {field_lambda_body, 4, .inherited = true}, + {field_name, 2}, {field_right, 4, .inherited = true}, {field_type, 1}, - [73] = + [151] = {field_body, 5}, {field_name, 1}, - [75] = + [153] = + {field_args, 2}, + {field_name, 0}, + [155] = + {field_lambda_body, 2, .inherited = true}, + {field_lambda_body, 3, .inherited = true}, + [157] = + {field_body, 3}, + {field_condition, 1}, + [159] = {field_body, 3}, {field_condition, 2}, {field_label, 1}, - [78] = + [162] = + {field_body, 3}, + {field_label, 1}, + [164] = {field_body, 3, .inherited = true}, {field_condition, 2}, - [80] = + [166] = {field_body, 3}, {field_condition, 2}, - [82] = + [168] = + {field_lambda_body, 2, .inherited = true}, {field_name, 0}, - {field_right, 2, .inherited = true}, - [84] = + [170] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [87] = + {field_lambda_body, 0, .inherited = true}, + {field_lambda_body, 2, .inherited = true}, + {field_lambda_body, 4, .inherited = true}, + [176] = + {field_body, 6}, + {field_name, 1}, + [178] = {field_target, 3}, - [88] = + [179] = + {field_lambda_body, 3, .inherited = true}, + {field_target, 3}, + [181] = + {field_lambda_body, 0, .inherited = true}, + {field_lambda_body, 2, .inherited = true}, + [183] = {field_value, 1}, - [89] = + [184] = + {field_lambda_body, 1, .inherited = true}, + {field_value, 1}, + [186] = + {field_body, 4}, + {field_condition, 2}, + {field_label, 1}, + [189] = {field_condition, 3}, - [90] = + [190] = + {field_lambda_body, 3, .inherited = true}, + {field_name, 1}, + [192] = + {field_lambda_body, 3, .inherited = true}, + [193] = + {field_lambda_body, 0, .inherited = true}, + {field_lambda_body, 1, .inherited = true}, + {field_lambda_body, 3, .inherited = true}, + [196] = {field_update, 3}, - [91] = + [197] = {field_condition, 2}, - [92] = + {field_lambda_body, 2, .inherited = true}, + [199] = {field_initializer, 1}, - [93] = + [200] = {field_collection, 3}, + {field_lambda_body, 3, .inherited = true}, {field_value, 1}, - [95] = + [203] = {field_condition, 4}, - [96] = + [204] = + {field_lambda_body, 4, .inherited = true}, + [205] = {field_condition, 2}, + {field_lambda_body, 2, .inherited = true}, {field_update, 4}, - [98] = + [208] = {field_initializer, 1}, {field_update, 4}, - [100] = + [210] = {field_condition, 3}, {field_initializer, 1}, - [102] = + {field_lambda_body, 3, .inherited = true}, + [213] = {field_body, 5}, - [103] = + [214] = + {field_lambda_body, 3, .inherited = true}, + {field_type, 0}, + [216] = {field_condition, 3}, {field_initializer, 1}, + {field_lambda_body, 3, .inherited = true}, {field_update, 5}, - [106] = + [220] = {field_collection, 5}, {field_index, 1}, + {field_lambda_body, 5, .inherited = true}, {field_value, 3}, + [224] = + {field_lambda_body, 3, .inherited = true}, + {field_lambda_body, 5, .inherited = true}, + {field_type, 0}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -3200,149 +3438,149 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [17] = 17, [18] = 18, [19] = 19, - [20] = 19, - [21] = 19, + [20] = 20, + [21] = 21, [22] = 22, [23] = 23, [24] = 24, - [25] = 19, - [26] = 19, - [27] = 19, - [28] = 16, - [29] = 29, - [30] = 30, - [31] = 31, - [32] = 30, - [33] = 29, - [34] = 34, - [35] = 31, - [36] = 16, - [37] = 34, - [38] = 30, - [39] = 29, - [40] = 30, - [41] = 31, - [42] = 34, - [43] = 17, - [44] = 30, - [45] = 29, - [46] = 30, - [47] = 34, - [48] = 29, - [49] = 31, - [50] = 34, - [51] = 31, - [52] = 31, - [53] = 34, - [54] = 29, - [55] = 55, - [56] = 55, - [57] = 17, + [25] = 25, + [26] = 18, + [27] = 18, + [28] = 18, + [29] = 18, + [30] = 15, + [31] = 18, + [32] = 32, + [33] = 33, + [34] = 33, + [35] = 35, + [36] = 35, + [37] = 37, + [38] = 33, + [39] = 32, + [40] = 35, + [41] = 32, + [42] = 37, + [43] = 33, + [44] = 37, + [45] = 32, + [46] = 15, + [47] = 37, + [48] = 33, + [49] = 35, + [50] = 32, + [51] = 37, + [52] = 33, + [53] = 25, + [54] = 35, + [55] = 32, + [56] = 37, + [57] = 35, [58] = 58, [59] = 59, - [60] = 60, - [61] = 59, + [60] = 59, + [61] = 61, [62] = 62, - [63] = 58, - [64] = 62, - [65] = 55, - [66] = 55, - [67] = 60, - [68] = 60, - [69] = 59, - [70] = 16, - [71] = 55, + [63] = 63, + [64] = 59, + [65] = 61, + [66] = 58, + [67] = 58, + [68] = 68, + [69] = 63, + [70] = 15, + [71] = 61, [72] = 62, - [73] = 58, - [74] = 74, - [75] = 62, - [76] = 17, - [77] = 16, - [78] = 62, - [79] = 79, - [80] = 62, - [81] = 58, - [82] = 55, - [83] = 60, - [84] = 55, - [85] = 59, - [86] = 60, - [87] = 58, - [88] = 17, - [89] = 60, - [90] = 16, - [91] = 59, - [92] = 59, - [93] = 58, - [94] = 60, - [95] = 95, - [96] = 96, - [97] = 97, + [73] = 62, + [74] = 63, + [75] = 59, + [76] = 61, + [77] = 62, + [78] = 25, + [79] = 61, + [80] = 58, + [81] = 15, + [82] = 62, + [83] = 63, + [84] = 62, + [85] = 25, + [86] = 63, + [87] = 59, + [88] = 61, + [89] = 58, + [90] = 59, + [91] = 61, + [92] = 58, + [93] = 15, + [94] = 94, + [95] = 25, + [96] = 59, + [97] = 63, [98] = 98, [99] = 99, - [100] = 95, - [101] = 97, - [102] = 102, + [100] = 100, + [101] = 98, + [102] = 99, [103] = 103, - [104] = 96, - [105] = 102, - [106] = 95, - [107] = 98, - [108] = 99, - [109] = 95, - [110] = 103, - [111] = 97, - [112] = 102, - [113] = 103, - [114] = 96, - [115] = 99, - [116] = 98, - [117] = 98, + [104] = 104, + [105] = 105, + [106] = 106, + [107] = 104, + [108] = 105, + [109] = 106, + [110] = 100, + [111] = 99, + [112] = 103, + [113] = 104, + [114] = 105, + [115] = 106, + [116] = 100, + [117] = 103, [118] = 99, - [119] = 95, - [120] = 96, - [121] = 97, - [122] = 102, - [123] = 103, - [124] = 103, - [125] = 102, - [126] = 97, - [127] = 96, - [128] = 96, - [129] = 99, - [130] = 98, - [131] = 103, - [132] = 102, - [133] = 97, - [134] = 95, - [135] = 99, - [136] = 98, - [137] = 137, - [138] = 137, - [139] = 139, + [119] = 103, + [120] = 104, + [121] = 105, + [122] = 106, + [123] = 100, + [124] = 98, + [125] = 99, + [126] = 103, + [127] = 104, + [128] = 105, + [129] = 106, + [130] = 100, + [131] = 100, + [132] = 98, + [133] = 99, + [134] = 103, + [135] = 98, + [136] = 104, + [137] = 105, + [138] = 106, + [139] = 98, [140] = 140, - [141] = 139, - [142] = 139, - [143] = 140, - [144] = 139, - [145] = 139, - [146] = 139, - [147] = 140, - [148] = 140, - [149] = 140, - [150] = 140, - [151] = 151, - [152] = 152, - [153] = 151, - [154] = 152, + [141] = 141, + [142] = 142, + [143] = 141, + [144] = 142, + [145] = 141, + [146] = 141, + [147] = 141, + [148] = 142, + [149] = 141, + [150] = 142, + [151] = 142, + [152] = 142, + [153] = 153, + [154] = 153, [155] = 155, - [156] = 156, - [157] = 155, - [158] = 158, + [156] = 155, + [157] = 157, + [158] = 157, [159] = 159, [160] = 160, - [161] = 160, - [162] = 158, + [161] = 161, + [162] = 162, [163] = 163, [164] = 164, [165] = 165, @@ -3352,101 +3590,101 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [169] = 169, [170] = 170, [171] = 171, - [172] = 171, + [172] = 172, [173] = 173, [174] = 174, - [175] = 175, + [175] = 170, [176] = 176, - [177] = 177, - [178] = 178, + [177] = 169, + [178] = 171, [179] = 179, - [180] = 179, - [181] = 175, - [182] = 178, - [183] = 177, - [184] = 176, + [180] = 172, + [181] = 176, + [182] = 182, + [183] = 183, + [184] = 184, [185] = 185, [186] = 186, [187] = 187, [188] = 188, - [189] = 187, - [190] = 190, - [191] = 191, - [192] = 192, - [193] = 191, - [194] = 190, + [189] = 189, + [190] = 188, + [191] = 188, + [192] = 188, + [193] = 188, + [194] = 188, [195] = 195, - [196] = 190, - [197] = 190, + [196] = 196, + [197] = 197, [198] = 198, - [199] = 190, - [200] = 200, - [201] = 190, - [202] = 200, + [199] = 195, + [200] = 195, + [201] = 195, + [202] = 195, [203] = 195, [204] = 204, - [205] = 204, + [205] = 205, [206] = 206, - [207] = 207, + [207] = 204, [208] = 208, [209] = 209, [210] = 210, [211] = 211, - [212] = 208, - [213] = 207, + [212] = 212, + [213] = 213, [214] = 214, [215] = 215, - [216] = 208, + [216] = 206, [217] = 217, - [218] = 208, - [219] = 207, - [220] = 217, - [221] = 206, - [222] = 207, + [218] = 215, + [219] = 219, + [220] = 220, + [221] = 221, + [222] = 211, [223] = 223, - [224] = 224, - [225] = 208, - [226] = 226, - [227] = 227, - [228] = 210, - [229] = 229, - [230] = 214, - [231] = 211, - [232] = 215, - [233] = 207, - [234] = 217, - [235] = 206, - [236] = 209, - [237] = 217, - [238] = 207, - [239] = 209, - [240] = 208, - [241] = 217, - [242] = 227, + [224] = 204, + [225] = 212, + [226] = 221, + [227] = 209, + [228] = 206, + [229] = 213, + [230] = 230, + [231] = 215, + [232] = 206, + [233] = 223, + [234] = 204, + [235] = 212, + [236] = 206, + [237] = 209, + [238] = 213, + [239] = 211, + [240] = 223, + [241] = 204, + [242] = 242, [243] = 209, - [244] = 226, - [245] = 245, - [246] = 217, - [247] = 247, - [248] = 247, - [249] = 249, - [250] = 250, - [251] = 251, - [252] = 252, - [253] = 249, - [254] = 250, - [255] = 255, - [256] = 249, - [257] = 250, - [258] = 258, - [259] = 249, - [260] = 250, + [244] = 213, + [245] = 211, + [246] = 223, + [247] = 204, + [248] = 206, + [249] = 209, + [250] = 213, + [251] = 211, + [252] = 223, + [253] = 223, + [254] = 254, + [255] = 209, + [256] = 213, + [257] = 211, + [258] = 223, + [259] = 204, + [260] = 209, [261] = 261, - [262] = 249, - [263] = 263, - [264] = 264, - [265] = 265, - [266] = 266, + [262] = 221, + [263] = 221, + [264] = 221, + [265] = 221, + [266] = 211, [267] = 267, [268] = 268, [269] = 269, @@ -3456,94 +3694,94 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [273] = 273, [274] = 274, [275] = 275, - [276] = 267, + [276] = 276, [277] = 277, [278] = 278, [279] = 279, [280] = 280, - [281] = 267, - [282] = 250, - [283] = 273, - [284] = 275, - [285] = 280, - [286] = 278, - [287] = 278, - [288] = 280, - [289] = 275, - [290] = 267, - [291] = 275, - [292] = 278, - [293] = 280, - [294] = 267, - [295] = 275, - [296] = 278, - [297] = 249, - [298] = 280, - [299] = 267, + [281] = 281, + [282] = 282, + [283] = 283, + [284] = 284, + [285] = 285, + [286] = 286, + [287] = 287, + [288] = 288, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 297, + [298] = 298, + [299] = 299, [300] = 300, - [301] = 301, + [301] = 287, [302] = 302, - [303] = 303, - [304] = 304, + [303] = 302, + [304] = 278, [305] = 305, - [306] = 272, + [306] = 306, [307] = 307, - [308] = 275, - [309] = 278, + [308] = 308, + [309] = 309, [310] = 310, - [311] = 280, - [312] = 267, - [313] = 304, + [311] = 311, + [312] = 312, + [313] = 313, [314] = 314, - [315] = 305, - [316] = 247, - [317] = 275, + [315] = 315, + [316] = 316, + [317] = 317, [318] = 318, - [319] = 278, - [320] = 258, - [321] = 280, + [319] = 319, + [320] = 320, + [321] = 321, [322] = 322, - [323] = 323, - [324] = 314, - [325] = 264, + [323] = 321, + [324] = 296, + [325] = 298, [326] = 326, - [327] = 327, - [328] = 277, - [329] = 305, - [330] = 250, + [327] = 321, + [328] = 296, + [329] = 298, + [330] = 330, [331] = 331, - [332] = 332, - [333] = 333, - [334] = 261, - [335] = 307, - [336] = 327, + [332] = 302, + [333] = 302, + [334] = 334, + [335] = 302, + [336] = 302, [337] = 337, [338] = 338, - [339] = 338, + [339] = 339, [340] = 340, - [341] = 340, + [341] = 338, [342] = 342, - [343] = 337, - [344] = 261, - [345] = 332, - [346] = 346, - [347] = 322, - [348] = 266, - [349] = 268, - [350] = 303, - [351] = 300, + [343] = 343, + [344] = 340, + [345] = 345, + [346] = 339, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 351, [352] = 352, - [353] = 251, - [354] = 304, - [355] = 269, - [356] = 270, - [357] = 271, + [353] = 353, + [354] = 354, + [355] = 355, + [356] = 356, + [357] = 357, [358] = 358, - [359] = 274, + [359] = 359, [360] = 360, [361] = 361, [362] = 362, - [363] = 361, + [363] = 363, [364] = 364, [365] = 365, [366] = 366, @@ -3566,7 +3804,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [383] = 383, [384] = 384, [385] = 385, - [386] = 361, + [386] = 386, [387] = 387, [388] = 388, [389] = 389, @@ -3581,7 +3819,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [398] = 398, [399] = 399, [400] = 400, - [401] = 364, + [401] = 401, [402] = 402, [403] = 403, [404] = 404, @@ -3593,443 +3831,443 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [410] = 410, [411] = 411, [412] = 412, - [413] = 362, + [413] = 413, [414] = 414, [415] = 415, - [416] = 416, + [416] = 338, [417] = 417, - [418] = 418, - [419] = 419, - [420] = 420, - [421] = 421, - [422] = 422, - [423] = 423, - [424] = 424, - [425] = 425, - [426] = 426, - [427] = 427, - [428] = 428, - [429] = 429, - [430] = 430, - [431] = 431, - [432] = 432, - [433] = 407, - [434] = 432, - [435] = 411, - [436] = 372, - [437] = 412, - [438] = 373, - [439] = 398, - [440] = 393, - [441] = 366, - [442] = 392, - [443] = 414, - [444] = 416, - [445] = 391, - [446] = 390, - [447] = 389, - [448] = 420, - [449] = 422, - [450] = 377, - [451] = 396, - [452] = 423, - [453] = 403, - [454] = 424, - [455] = 417, - [456] = 426, - [457] = 425, - [458] = 428, - [459] = 427, - [460] = 430, - [461] = 365, - [462] = 429, - [463] = 431, - [464] = 421, - [465] = 367, - [466] = 419, - [467] = 418, - [468] = 405, - [469] = 415, - [470] = 410, - [471] = 409, - [472] = 408, - [473] = 378, - [474] = 368, - [475] = 376, - [476] = 369, - [477] = 397, - [478] = 370, - [479] = 406, - [480] = 382, - [481] = 404, - [482] = 383, - [483] = 402, - [484] = 400, - [485] = 361, - [486] = 399, - [487] = 387, - [488] = 388, - [489] = 361, - [490] = 361, - [491] = 371, - [492] = 364, - [493] = 395, - [494] = 394, - [495] = 385, - [496] = 384, - [497] = 381, - [498] = 380, - [499] = 362, - [500] = 379, - [501] = 375, - [502] = 374, - [503] = 428, - [504] = 364, - [505] = 397, - [506] = 376, - [507] = 432, - [508] = 431, - [509] = 429, - [510] = 426, - [511] = 417, - [512] = 403, - [513] = 396, - [514] = 389, - [515] = 390, - [516] = 391, - [517] = 392, - [518] = 393, - [519] = 398, - [520] = 405, - [521] = 407, - [522] = 411, - [523] = 412, - [524] = 414, - [525] = 416, - [526] = 420, - [527] = 422, - [528] = 423, - [529] = 424, - [530] = 425, - [531] = 427, - [532] = 430, - [533] = 365, - [534] = 421, - [535] = 419, - [536] = 418, - [537] = 415, - [538] = 410, - [539] = 409, - [540] = 408, - [541] = 406, - [542] = 404, - [543] = 402, - [544] = 400, - [545] = 399, - [546] = 395, - [547] = 394, - [548] = 385, - [549] = 384, - [550] = 381, - [551] = 380, - [552] = 379, - [553] = 375, - [554] = 374, - [555] = 373, - [556] = 372, + [418] = 365, + [419] = 357, + [420] = 358, + [421] = 359, + [422] = 339, + [423] = 400, + [424] = 362, + [425] = 363, + [426] = 364, + [427] = 411, + [428] = 366, + [429] = 367, + [430] = 370, + [431] = 338, + [432] = 371, + [433] = 372, + [434] = 373, + [435] = 374, + [436] = 375, + [437] = 376, + [438] = 377, + [439] = 378, + [440] = 381, + [441] = 417, + [442] = 383, + [443] = 387, + [444] = 388, + [445] = 389, + [446] = 391, + [447] = 392, + [448] = 338, + [449] = 393, + [450] = 394, + [451] = 397, + [452] = 401, + [453] = 402, + [454] = 403, + [455] = 404, + [456] = 405, + [457] = 406, + [458] = 395, + [459] = 408, + [460] = 409, + [461] = 410, + [462] = 338, + [463] = 412, + [464] = 413, + [465] = 414, + [466] = 415, + [467] = 343, + [468] = 342, + [469] = 382, + [470] = 345, + [471] = 347, + [472] = 348, + [473] = 349, + [474] = 396, + [475] = 360, + [476] = 384, + [477] = 350, + [478] = 361, + [479] = 351, + [480] = 352, + [481] = 353, + [482] = 354, + [483] = 390, + [484] = 368, + [485] = 369, + [486] = 355, + [487] = 379, + [488] = 380, + [489] = 356, + [490] = 340, + [491] = 398, + [492] = 399, + [493] = 385, + [494] = 386, + [495] = 407, + [496] = 356, + [497] = 339, + [498] = 375, + [499] = 409, + [500] = 392, + [501] = 342, + [502] = 410, + [503] = 382, + [504] = 372, + [505] = 417, + [506] = 340, + [507] = 373, + [508] = 360, + [509] = 384, + [510] = 412, + [511] = 340, + [512] = 376, + [513] = 413, + [514] = 414, + [515] = 415, + [516] = 383, + [517] = 361, + [518] = 365, + [519] = 368, + [520] = 369, + [521] = 379, + [522] = 380, + [523] = 398, + [524] = 402, + [525] = 377, + [526] = 389, + [527] = 399, + [528] = 378, + [529] = 393, + [530] = 339, + [531] = 394, + [532] = 403, + [533] = 385, + [534] = 386, + [535] = 390, + [536] = 381, + [537] = 404, + [538] = 538, + [539] = 397, + [540] = 396, + [541] = 400, + [542] = 411, + [543] = 343, + [544] = 345, + [545] = 347, + [546] = 348, + [547] = 388, + [548] = 349, + [549] = 340, + [550] = 350, + [551] = 351, + [552] = 352, + [553] = 353, + [554] = 354, + [555] = 355, + [556] = 405, [557] = 371, - [558] = 370, - [559] = 369, - [560] = 368, - [561] = 367, - [562] = 366, - [563] = 377, - [564] = 378, - [565] = 382, - [566] = 383, - [567] = 387, - [568] = 388, - [569] = 362, - [570] = 364, - [571] = 362, - [572] = 572, - [573] = 364, - [574] = 362, - [575] = 396, - [576] = 394, - [577] = 383, - [578] = 382, + [558] = 357, + [559] = 358, + [560] = 359, + [561] = 370, + [562] = 406, + [563] = 401, + [564] = 362, + [565] = 374, + [566] = 363, + [567] = 364, + [568] = 391, + [569] = 387, + [570] = 339, + [571] = 366, + [572] = 407, + [573] = 367, + [574] = 408, + [575] = 395, + [576] = 387, + [577] = 577, + [578] = 578, [579] = 579, - [580] = 378, - [581] = 377, + [580] = 580, + [581] = 581, [582] = 582, [583] = 583, [584] = 584, [585] = 585, - [586] = 586, - [587] = 388, - [588] = 588, - [589] = 589, - [590] = 366, - [591] = 367, - [592] = 368, - [593] = 369, - [594] = 370, - [595] = 371, - [596] = 596, - [597] = 597, - [598] = 387, - [599] = 397, - [600] = 376, - [601] = 372, - [602] = 432, - [603] = 373, - [604] = 374, - [605] = 431, - [606] = 375, - [607] = 429, - [608] = 379, - [609] = 380, - [610] = 381, - [611] = 384, - [612] = 385, - [613] = 428, - [614] = 394, - [615] = 426, - [616] = 395, - [617] = 417, - [618] = 399, - [619] = 403, - [620] = 396, - [621] = 400, - [622] = 389, - [623] = 402, - [624] = 404, - [625] = 406, - [626] = 390, - [627] = 391, - [628] = 408, - [629] = 409, - [630] = 392, - [631] = 410, - [632] = 393, - [633] = 415, - [634] = 418, - [635] = 419, - [636] = 398, - [637] = 421, - [638] = 405, - [639] = 388, - [640] = 407, - [641] = 387, - [642] = 411, - [643] = 365, - [644] = 430, - [645] = 427, - [646] = 425, - [647] = 412, - [648] = 414, - [649] = 424, - [650] = 423, - [651] = 416, - [652] = 420, - [653] = 422, - [654] = 422, - [655] = 420, - [656] = 423, - [657] = 416, - [658] = 414, - [659] = 412, - [660] = 411, - [661] = 407, - [662] = 405, - [663] = 398, - [664] = 393, - [665] = 392, - [666] = 391, - [667] = 390, - [668] = 389, - [669] = 424, - [670] = 383, - [671] = 382, - [672] = 378, - [673] = 377, - [674] = 425, - [675] = 396, - [676] = 427, - [677] = 403, - [678] = 417, - [679] = 426, - [680] = 428, - [681] = 429, - [682] = 430, - [683] = 431, - [684] = 365, - [685] = 432, - [686] = 421, - [687] = 419, - [688] = 366, - [689] = 367, - [690] = 368, - [691] = 369, - [692] = 370, - [693] = 376, - [694] = 397, - [695] = 371, - [696] = 418, + [586] = 360, + [587] = 384, + [588] = 361, + [589] = 365, + [590] = 368, + [591] = 369, + [592] = 379, + [593] = 380, + [594] = 398, + [595] = 399, + [596] = 385, + [597] = 386, + [598] = 390, + [599] = 395, + [600] = 396, + [601] = 400, + [602] = 411, + [603] = 343, + [604] = 345, + [605] = 347, + [606] = 348, + [607] = 349, + [608] = 350, + [609] = 351, + [610] = 352, + [611] = 353, + [612] = 354, + [613] = 355, + [614] = 356, + [615] = 357, + [616] = 358, + [617] = 359, + [618] = 362, + [619] = 363, + [620] = 364, + [621] = 366, + [622] = 367, + [623] = 370, + [624] = 371, + [625] = 372, + [626] = 373, + [627] = 374, + [628] = 375, + [629] = 376, + [630] = 377, + [631] = 378, + [632] = 381, + [633] = 417, + [634] = 383, + [635] = 388, + [636] = 389, + [637] = 391, + [638] = 392, + [639] = 393, + [640] = 394, + [641] = 397, + [642] = 401, + [643] = 402, + [644] = 403, + [645] = 404, + [646] = 360, + [647] = 384, + [648] = 405, + [649] = 406, + [650] = 407, + [651] = 408, + [652] = 409, + [653] = 410, + [654] = 361, + [655] = 365, + [656] = 368, + [657] = 369, + [658] = 379, + [659] = 380, + [660] = 398, + [661] = 399, + [662] = 412, + [663] = 413, + [664] = 414, + [665] = 415, + [666] = 385, + [667] = 386, + [668] = 390, + [669] = 395, + [670] = 396, + [671] = 400, + [672] = 411, + [673] = 343, + [674] = 345, + [675] = 347, + [676] = 348, + [677] = 349, + [678] = 350, + [679] = 351, + [680] = 352, + [681] = 353, + [682] = 354, + [683] = 355, + [684] = 356, + [685] = 357, + [686] = 358, + [687] = 359, + [688] = 342, + [689] = 382, + [690] = 362, + [691] = 363, + [692] = 364, + [693] = 366, + [694] = 367, + [695] = 370, + [696] = 371, [697] = 372, [698] = 373, [699] = 374, - [700] = 415, - [701] = 375, - [702] = 379, - [703] = 380, - [704] = 410, - [705] = 381, - [706] = 384, - [707] = 409, - [708] = 385, - [709] = 394, - [710] = 408, - [711] = 395, - [712] = 399, - [713] = 400, - [714] = 402, - [715] = 406, - [716] = 404, - [717] = 406, - [718] = 408, - [719] = 409, - [720] = 410, - [721] = 415, - [722] = 418, - [723] = 419, - [724] = 421, - [725] = 404, - [726] = 402, - [727] = 388, - [728] = 400, - [729] = 399, - [730] = 395, - [731] = 387, - [732] = 365, - [733] = 385, - [734] = 430, - [735] = 384, - [736] = 427, - [737] = 425, - [738] = 381, - [739] = 424, - [740] = 380, - [741] = 423, - [742] = 379, - [743] = 375, - [744] = 422, - [745] = 374, - [746] = 373, - [747] = 372, - [748] = 371, - [749] = 420, - [750] = 416, - [751] = 414, - [752] = 412, - [753] = 411, - [754] = 407, - [755] = 405, - [756] = 398, - [757] = 393, - [758] = 392, - [759] = 397, - [760] = 376, - [761] = 370, - [762] = 369, - [763] = 368, - [764] = 391, - [765] = 390, - [766] = 389, + [700] = 375, + [701] = 376, + [702] = 377, + [703] = 378, + [704] = 381, + [705] = 417, + [706] = 383, + [707] = 387, + [708] = 388, + [709] = 389, + [710] = 391, + [711] = 392, + [712] = 393, + [713] = 394, + [714] = 397, + [715] = 401, + [716] = 716, + [717] = 403, + [718] = 404, + [719] = 360, + [720] = 384, + [721] = 405, + [722] = 406, + [723] = 407, + [724] = 408, + [725] = 409, + [726] = 410, + [727] = 361, + [728] = 365, + [729] = 368, + [730] = 369, + [731] = 379, + [732] = 380, + [733] = 398, + [734] = 399, + [735] = 412, + [736] = 413, + [737] = 414, + [738] = 415, + [739] = 385, + [740] = 386, + [741] = 390, + [742] = 395, + [743] = 396, + [744] = 400, + [745] = 411, + [746] = 343, + [747] = 345, + [748] = 347, + [749] = 348, + [750] = 349, + [751] = 350, + [752] = 351, + [753] = 352, + [754] = 353, + [755] = 354, + [756] = 355, + [757] = 356, + [758] = 357, + [759] = 358, + [760] = 359, + [761] = 342, + [762] = 382, + [763] = 362, + [764] = 363, + [765] = 364, + [766] = 366, [767] = 367, - [768] = 383, - [769] = 382, - [770] = 378, - [771] = 377, - [772] = 366, - [773] = 432, - [774] = 403, - [775] = 417, - [776] = 426, - [777] = 428, - [778] = 431, - [779] = 429, - [780] = 589, - [781] = 583, - [782] = 782, - [783] = 783, - [784] = 584, - [785] = 585, - [786] = 586, - [787] = 588, - [788] = 597, - [789] = 789, - [790] = 596, - [791] = 377, - [792] = 364, - [793] = 793, - [794] = 794, - [795] = 795, - [796] = 796, - [797] = 797, - [798] = 797, - [799] = 796, - [800] = 796, - [801] = 797, - [802] = 802, - [803] = 803, - [804] = 804, + [768] = 370, + [769] = 371, + [770] = 372, + [771] = 373, + [772] = 374, + [773] = 375, + [774] = 376, + [775] = 377, + [776] = 378, + [777] = 381, + [778] = 417, + [779] = 383, + [780] = 387, + [781] = 388, + [782] = 389, + [783] = 391, + [784] = 392, + [785] = 393, + [786] = 394, + [787] = 397, + [788] = 401, + [789] = 402, + [790] = 403, + [791] = 404, + [792] = 405, + [793] = 406, + [794] = 407, + [795] = 408, + [796] = 409, + [797] = 410, + [798] = 412, + [799] = 413, + [800] = 414, + [801] = 415, + [802] = 342, + [803] = 382, + [804] = 402, [805] = 805, - [806] = 806, - [807] = 807, - [808] = 808, - [809] = 809, - [810] = 810, - [811] = 811, - [812] = 812, + [806] = 584, + [807] = 582, + [808] = 581, + [809] = 580, + [810] = 578, + [811] = 579, + [812] = 583, [813] = 813, - [814] = 814, + [814] = 585, [815] = 815, - [816] = 816, - [817] = 817, + [816] = 412, + [817] = 339, [818] = 818, [819] = 819, [820] = 820, [821] = 821, - [822] = 822, - [823] = 823, - [824] = 824, - [825] = 825, + [822] = 821, + [823] = 820, + [824] = 820, + [825] = 821, [826] = 826, [827] = 827, - [828] = 387, + [828] = 828, [829] = 829, [830] = 830, [831] = 831, [832] = 832, [833] = 833, [834] = 834, - [835] = 368, + [835] = 835, [836] = 836, [837] = 837, [838] = 838, [839] = 839, [840] = 840, - [841] = 367, + [841] = 841, [842] = 842, [843] = 843, - [844] = 371, + [844] = 844, [845] = 845, [846] = 846, [847] = 847, [848] = 848, - [849] = 366, + [849] = 849, [850] = 850, [851] = 851, [852] = 852, @@ -4043,7 +4281,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [860] = 860, [861] = 861, [862] = 862, - [863] = 370, + [863] = 863, [864] = 864, [865] = 865, [866] = 866, @@ -4060,19 +4298,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [877] = 877, [878] = 878, [879] = 879, - [880] = 369, + [880] = 880, [881] = 881, [882] = 882, [883] = 883, [884] = 884, [885] = 885, - [886] = 383, + [886] = 886, [887] = 887, [888] = 888, [889] = 889, - [890] = 388, - [891] = 382, - [892] = 378, + [890] = 890, + [891] = 891, + [892] = 892, [893] = 893, [894] = 894, [895] = 895, @@ -4104,17 +4342,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [921] = 921, [922] = 922, [923] = 923, - [924] = 924, + [924] = 404, [925] = 925, [926] = 926, [927] = 927, - [928] = 928, + [928] = 342, [929] = 929, [930] = 930, [931] = 931, [932] = 932, [933] = 933, - [934] = 923, + [934] = 934, [935] = 935, [936] = 936, [937] = 937, @@ -4123,8 +4361,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [940] = 940, [941] = 941, [942] = 942, - [943] = 923, - [944] = 944, + [943] = 943, + [944] = 382, [945] = 945, [946] = 946, [947] = 947, @@ -4134,71 +4372,71 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [951] = 951, [952] = 952, [953] = 953, - [954] = 925, - [955] = 912, - [956] = 932, - [957] = 930, + [954] = 954, + [955] = 955, + [956] = 405, + [957] = 413, [958] = 958, - [959] = 929, + [959] = 959, [960] = 960, [961] = 961, - [962] = 962, + [962] = 406, [963] = 963, - [964] = 964, + [964] = 407, [965] = 965, [966] = 966, - [967] = 944, - [968] = 965, - [969] = 966, + [967] = 967, + [968] = 968, + [969] = 969, [970] = 970, [971] = 971, [972] = 972, - [973] = 953, - [974] = 974, - [975] = 960, - [976] = 951, - [977] = 948, - [978] = 949, - [979] = 945, + [973] = 973, + [974] = 414, + [975] = 415, + [976] = 976, + [977] = 977, + [978] = 978, + [979] = 979, [980] = 980, - [981] = 972, - [982] = 925, - [983] = 947, - [984] = 946, - [985] = 952, + [981] = 981, + [982] = 982, + [983] = 983, + [984] = 984, + [985] = 985, [986] = 986, [987] = 987, [988] = 988, - [989] = 923, - [990] = 986, - [991] = 988, - [992] = 923, + [989] = 989, + [990] = 990, + [991] = 991, + [992] = 992, [993] = 993, [994] = 994, [995] = 995, - [996] = 996, - [997] = 997, - [998] = 997, + [996] = 408, + [997] = 409, + [998] = 410, [999] = 999, [1000] = 1000, [1001] = 1001, [1002] = 1002, [1003] = 1003, [1004] = 1004, - [1005] = 1004, + [1005] = 1005, [1006] = 1006, [1007] = 1007, [1008] = 1008, [1009] = 1009, [1010] = 1010, - [1011] = 993, - [1012] = 923, + [1011] = 1011, + [1012] = 1012, [1013] = 1013, [1014] = 1014, [1015] = 1015, [1016] = 1016, - [1017] = 993, - [1018] = 1004, + [1017] = 1017, + [1018] = 1018, [1019] = 1019, [1020] = 1020, [1021] = 1021, @@ -4207,222 +4445,222 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1024] = 1024, [1025] = 1025, [1026] = 1026, - [1027] = 1022, - [1028] = 1024, + [1027] = 1027, + [1028] = 1028, [1029] = 1029, [1030] = 1030, [1031] = 1031, [1032] = 1032, [1033] = 1033, - [1034] = 1033, - [1035] = 1033, + [1034] = 1034, + [1035] = 1035, [1036] = 1036, [1037] = 1037, - [1038] = 1033, + [1038] = 1038, [1039] = 1033, [1040] = 1040, - [1041] = 1036, - [1042] = 1033, - [1043] = 1043, - [1044] = 1044, + [1041] = 1041, + [1042] = 1042, + [1043] = 1033, + [1044] = 1033, [1045] = 1045, - [1046] = 1046, - [1047] = 1007, - [1048] = 1006, - [1049] = 1045, - [1050] = 1001, + [1046] = 1033, + [1047] = 1033, + [1048] = 1048, + [1049] = 1049, + [1050] = 1050, [1051] = 1051, - [1052] = 1046, - [1053] = 1008, - [1054] = 1054, - [1055] = 994, + [1052] = 1052, + [1053] = 1053, + [1054] = 847, + [1055] = 1055, [1056] = 1056, - [1057] = 1045, - [1058] = 1045, - [1059] = 999, - [1060] = 1045, - [1061] = 1045, - [1062] = 1010, - [1063] = 1045, - [1064] = 1000, - [1065] = 1013, - [1066] = 1002, - [1067] = 1014, - [1068] = 1068, - [1069] = 1021, + [1057] = 1057, + [1058] = 1058, + [1059] = 1059, + [1060] = 1060, + [1061] = 1061, + [1062] = 1062, + [1063] = 871, + [1064] = 1064, + [1065] = 1065, + [1066] = 1066, + [1067] = 1067, + [1068] = 866, + [1069] = 1069, [1070] = 1070, [1071] = 1071, [1072] = 1072, [1073] = 1073, [1074] = 1074, - [1075] = 1015, + [1075] = 1075, [1076] = 1076, [1077] = 1077, - [1078] = 1078, - [1079] = 1079, - [1080] = 1080, + [1078] = 1065, + [1079] = 1066, + [1080] = 843, [1081] = 1081, - [1082] = 888, - [1083] = 840, - [1084] = 993, - [1085] = 1085, - [1086] = 1086, - [1087] = 1087, - [1088] = 1088, - [1089] = 1089, - [1090] = 1090, + [1082] = 1067, + [1083] = 1083, + [1084] = 1066, + [1085] = 1070, + [1086] = 1077, + [1087] = 1072, + [1088] = 1065, + [1089] = 1073, + [1090] = 1075, [1091] = 1091, - [1092] = 1092, + [1092] = 1066, [1093] = 1093, - [1094] = 1094, - [1095] = 1095, - [1096] = 993, - [1097] = 881, - [1098] = 893, - [1099] = 1004, - [1100] = 1100, - [1101] = 993, - [1102] = 1102, - [1103] = 1103, - [1104] = 1102, + [1094] = 1070, + [1095] = 1077, + [1096] = 1065, + [1097] = 1066, + [1098] = 1070, + [1099] = 1070, + [1100] = 1077, + [1101] = 1070, + [1102] = 1065, + [1103] = 1072, + [1104] = 1073, [1105] = 1105, - [1106] = 1106, - [1107] = 1102, - [1108] = 1102, - [1109] = 1109, - [1110] = 1110, - [1111] = 1111, - [1112] = 1112, - [1113] = 1105, - [1114] = 1114, + [1106] = 1066, + [1107] = 1107, + [1108] = 1108, + [1109] = 1075, + [1110] = 1076, + [1111] = 1077, + [1112] = 1077, + [1113] = 1113, + [1114] = 1065, [1115] = 1115, - [1116] = 1102, + [1116] = 893, [1117] = 1117, [1118] = 1118, - [1119] = 1115, - [1120] = 1102, - [1121] = 1117, - [1122] = 994, - [1123] = 1123, - [1124] = 1124, - [1125] = 1123, - [1126] = 1126, - [1127] = 1118, - [1128] = 1128, + [1119] = 1076, + [1120] = 1120, + [1121] = 892, + [1122] = 882, + [1123] = 896, + [1124] = 878, + [1125] = 891, + [1126] = 883, + [1127] = 880, + [1128] = 894, [1129] = 1129, [1130] = 1130, - [1131] = 1131, - [1132] = 1132, - [1133] = 1133, - [1134] = 1134, - [1135] = 1134, + [1131] = 879, + [1132] = 895, + [1133] = 884, + [1134] = 888, + [1135] = 1135, [1136] = 1136, [1137] = 1137, - [1138] = 1138, + [1138] = 1137, [1139] = 1139, - [1140] = 1130, + [1140] = 1140, [1141] = 1141, - [1142] = 1138, - [1143] = 1143, - [1144] = 1143, - [1145] = 1136, + [1142] = 1142, + [1143] = 1139, + [1144] = 1144, + [1145] = 1145, [1146] = 1146, [1147] = 1147, [1148] = 1148, - [1149] = 1130, - [1150] = 1134, - [1151] = 1114, - [1152] = 1133, - [1153] = 1130, + [1149] = 1149, + [1150] = 1150, + [1151] = 1148, + [1152] = 1152, + [1153] = 1153, [1154] = 1154, - [1155] = 1130, - [1156] = 1138, + [1155] = 1155, + [1156] = 1156, [1157] = 1157, - [1158] = 1143, - [1159] = 1143, - [1160] = 1130, - [1161] = 1161, - [1162] = 1134, + [1158] = 1158, + [1159] = 1159, + [1160] = 1160, + [1161] = 1158, + [1162] = 1162, [1163] = 1163, - [1164] = 1138, + [1164] = 1164, [1165] = 1165, - [1166] = 1112, + [1166] = 1165, [1167] = 1167, - [1168] = 1143, - [1169] = 1134, - [1170] = 1138, - [1171] = 994, - [1172] = 1133, - [1173] = 1163, - [1174] = 1134, - [1175] = 1143, - [1176] = 1138, - [1177] = 1177, + [1168] = 1168, + [1169] = 1169, + [1170] = 1170, + [1171] = 1169, + [1172] = 1172, + [1173] = 1169, + [1174] = 1174, + [1175] = 1169, + [1176] = 1169, + [1177] = 1169, [1178] = 1178, - [1179] = 1179, - [1180] = 1178, - [1181] = 929, - [1182] = 930, - [1183] = 912, - [1184] = 932, - [1185] = 944, - [1186] = 925, - [1187] = 948, - [1188] = 949, - [1189] = 947, - [1190] = 952, - [1191] = 946, - [1192] = 953, - [1193] = 945, - [1194] = 951, + [1179] = 1169, + [1180] = 1180, + [1181] = 1181, + [1182] = 1182, + [1183] = 1183, + [1184] = 1184, + [1185] = 1185, + [1186] = 1186, + [1187] = 1187, + [1188] = 1188, + [1189] = 1189, + [1190] = 1186, + [1191] = 1186, + [1192] = 1192, + [1193] = 1186, + [1194] = 1186, [1195] = 1195, [1196] = 1196, - [1197] = 1197, + [1197] = 1186, [1198] = 1198, [1199] = 1199, [1200] = 1200, [1201] = 1201, [1202] = 1202, - [1203] = 1203, + [1203] = 938, [1204] = 1204, [1205] = 1205, [1206] = 1206, - [1207] = 1207, + [1207] = 983, [1208] = 1208, [1209] = 1209, - [1210] = 1210, + [1210] = 968, [1211] = 1211, [1212] = 1212, - [1213] = 1213, + [1213] = 945, [1214] = 1214, [1215] = 1215, [1216] = 1216, - [1217] = 1211, + [1217] = 1217, [1218] = 1218, [1219] = 1219, [1220] = 1220, - [1221] = 1220, - [1222] = 1222, - [1223] = 1220, - [1224] = 1224, - [1225] = 1225, - [1226] = 1226, - [1227] = 1222, - [1228] = 1228, - [1229] = 1220, - [1230] = 1220, - [1231] = 1222, - [1232] = 1220, - [1233] = 1233, - [1234] = 1220, - [1235] = 1222, - [1236] = 1222, - [1237] = 1222, - [1238] = 1222, + [1221] = 843, + [1222] = 871, + [1223] = 847, + [1224] = 866, + [1225] = 893, + [1226] = 879, + [1227] = 883, + [1228] = 878, + [1229] = 1229, + [1230] = 894, + [1231] = 892, + [1232] = 1232, + [1233] = 895, + [1234] = 1234, + [1235] = 882, + [1236] = 884, + [1237] = 896, + [1238] = 880, [1239] = 1239, - [1240] = 1240, + [1240] = 888, [1241] = 1241, - [1242] = 1242, + [1242] = 891, [1243] = 1243, [1244] = 1244, [1245] = 1245, @@ -4432,715 +4670,715 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1249] = 1249, [1250] = 1250, [1251] = 1251, - [1252] = 1252, + [1252] = 1249, [1253] = 1253, [1254] = 1254, [1255] = 1255, - [1256] = 1256, - [1257] = 1257, + [1256] = 1249, + [1257] = 1249, [1258] = 1258, [1259] = 1259, [1260] = 1260, [1261] = 1261, - [1262] = 1262, + [1262] = 1249, [1263] = 1263, - [1264] = 1264, + [1264] = 1249, [1265] = 1265, [1266] = 1266, [1267] = 1267, [1268] = 1268, - [1269] = 1269, - [1270] = 1270, - [1271] = 1271, - [1272] = 1272, - [1273] = 1273, - [1274] = 1274, - [1275] = 1275, - [1276] = 1276, + [1269] = 1265, + [1270] = 1266, + [1271] = 1265, + [1272] = 1266, + [1273] = 1265, + [1274] = 1266, + [1275] = 1265, + [1276] = 1266, [1277] = 1277, [1278] = 1278, - [1279] = 1279, - [1280] = 1280, - [1281] = 1281, + [1279] = 1266, + [1280] = 1265, + [1281] = 1266, [1282] = 1282, [1283] = 1283, - [1284] = 1284, + [1284] = 1265, [1285] = 1285, [1286] = 1286, [1287] = 1287, [1288] = 1288, [1289] = 1289, [1290] = 1290, - [1291] = 1291, + [1291] = 1287, [1292] = 1292, [1293] = 1293, - [1294] = 1294, - [1295] = 1295, + [1294] = 1287, + [1295] = 1287, [1296] = 1296, [1297] = 1297, [1298] = 1298, - [1299] = 1299, - [1300] = 1300, + [1299] = 1287, + [1300] = 818, [1301] = 1301, - [1302] = 1294, + [1302] = 1287, [1303] = 1303, - [1304] = 1304, + [1304] = 819, [1305] = 1305, [1306] = 1306, [1307] = 1307, [1308] = 1308, - [1309] = 1307, + [1309] = 1309, [1310] = 1310, [1311] = 1311, - [1312] = 1305, + [1312] = 1312, [1313] = 1313, [1314] = 1314, [1315] = 1315, [1316] = 1316, - [1317] = 1311, - [1318] = 1307, - [1319] = 1310, - [1320] = 1310, - [1321] = 1316, + [1317] = 1317, + [1318] = 1318, + [1319] = 1319, + [1320] = 1320, + [1321] = 1321, [1322] = 1322, [1323] = 1323, - [1324] = 919, + [1324] = 1324, [1325] = 1325, - [1326] = 1313, + [1326] = 1326, [1327] = 1327, - [1328] = 1315, + [1328] = 1328, [1329] = 1329, - [1330] = 1311, - [1331] = 1305, - [1332] = 1313, + [1330] = 1330, + [1331] = 1331, + [1332] = 1332, [1333] = 1333, - [1334] = 1310, + [1334] = 1334, [1335] = 1335, - [1336] = 1315, - [1337] = 1307, - [1338] = 1307, - [1339] = 1339, - [1340] = 1340, - [1341] = 1315, - [1342] = 1315, + [1336] = 1336, + [1337] = 1336, + [1338] = 1338, + [1339] = 1336, + [1340] = 1338, + [1341] = 1338, + [1342] = 1336, [1343] = 1343, - [1344] = 1316, - [1345] = 1311, + [1344] = 1338, + [1345] = 1345, [1346] = 1346, - [1347] = 1347, - [1348] = 1348, - [1349] = 1316, - [1350] = 1350, - [1351] = 1305, + [1347] = 1336, + [1348] = 1336, + [1349] = 1338, + [1350] = 1338, + [1351] = 1351, [1352] = 1352, - [1353] = 1305, - [1354] = 1311, - [1355] = 1307, - [1356] = 1316, - [1357] = 1310, - [1358] = 1305, - [1359] = 1310, + [1353] = 1353, + [1354] = 1354, + [1355] = 1355, + [1356] = 1356, + [1357] = 843, + [1358] = 1358, + [1359] = 1359, [1360] = 1360, - [1361] = 1316, - [1362] = 1313, - [1363] = 1313, - [1364] = 1313, + [1361] = 866, + [1362] = 1362, + [1363] = 1363, + [1364] = 1364, [1365] = 1365, - [1366] = 1315, - [1367] = 1311, + [1366] = 1366, + [1367] = 1367, [1368] = 1368, [1369] = 1369, [1370] = 1370, [1371] = 1371, - [1372] = 1368, - [1373] = 1373, - [1374] = 1374, + [1372] = 1369, + [1373] = 1369, + [1374] = 1369, [1375] = 1375, - [1376] = 1376, - [1377] = 1377, - [1378] = 1376, - [1379] = 1368, - [1380] = 1380, + [1376] = 1369, + [1377] = 1369, + [1378] = 1378, + [1379] = 1379, + [1380] = 1366, [1381] = 1381, [1382] = 1382, [1383] = 1383, [1384] = 1384, [1385] = 1385, - [1386] = 1370, + [1386] = 1386, [1387] = 1387, [1388] = 1388, [1389] = 1389, [1390] = 1390, - [1391] = 1368, - [1392] = 1368, - [1393] = 1393, - [1394] = 1394, + [1391] = 1384, + [1392] = 1392, + [1393] = 1387, + [1394] = 1390, [1395] = 1395, - [1396] = 1308, + [1396] = 1396, [1397] = 1397, [1398] = 1398, [1399] = 1399, - [1400] = 1400, + [1400] = 1389, [1401] = 1401, - [1402] = 1402, - [1403] = 1403, - [1404] = 1368, - [1405] = 1405, - [1406] = 1406, + [1402] = 1384, + [1403] = 1392, + [1404] = 1387, + [1405] = 1390, + [1406] = 1395, [1407] = 1407, [1408] = 1408, - [1409] = 1409, + [1409] = 1389, [1410] = 1410, - [1411] = 1411, + [1411] = 1384, [1412] = 1412, - [1413] = 1413, - [1414] = 1414, - [1415] = 1405, - [1416] = 1410, - [1417] = 1417, - [1418] = 1417, - [1419] = 1419, - [1420] = 1420, + [1413] = 1392, + [1414] = 1387, + [1415] = 1390, + [1416] = 1395, + [1417] = 1389, + [1418] = 1418, + [1419] = 1384, + [1420] = 1392, [1421] = 1421, - [1422] = 1408, - [1423] = 1409, - [1424] = 1411, - [1425] = 1425, - [1426] = 1412, - [1427] = 1413, - [1428] = 1428, - [1429] = 1429, - [1430] = 1414, + [1422] = 1387, + [1423] = 1390, + [1424] = 1395, + [1425] = 1389, + [1426] = 1384, + [1427] = 1392, + [1428] = 1392, + [1429] = 1387, + [1430] = 1390, [1431] = 1431, - [1432] = 1405, - [1433] = 1405, - [1434] = 1434, + [1432] = 1395, + [1433] = 1433, + [1434] = 1016, [1435] = 1435, - [1436] = 1410, + [1436] = 1436, [1437] = 1437, - [1438] = 1409, + [1438] = 1395, [1439] = 1439, [1440] = 1440, [1441] = 1441, - [1442] = 1408, - [1443] = 1409, + [1442] = 1389, + [1443] = 1443, [1444] = 1444, - [1445] = 1411, - [1446] = 1412, - [1447] = 1413, - [1448] = 1414, + [1445] = 1445, + [1446] = 1446, + [1447] = 1447, + [1448] = 1448, [1449] = 1449, - [1450] = 1417, - [1451] = 1410, + [1450] = 1450, + [1451] = 1451, [1452] = 1452, - [1453] = 1453, - [1454] = 1444, - [1455] = 1408, - [1456] = 1437, - [1457] = 1408, + [1453] = 1370, + [1454] = 1454, + [1455] = 1455, + [1456] = 1455, + [1457] = 1457, [1458] = 1458, - [1459] = 1459, - [1460] = 1409, + [1459] = 1375, + [1460] = 1455, [1461] = 1461, [1462] = 1462, [1463] = 1463, - [1464] = 1411, - [1465] = 1412, + [1464] = 1464, + [1465] = 1465, [1466] = 1466, [1467] = 1467, [1468] = 1468, - [1469] = 1413, + [1469] = 1469, [1470] = 1470, - [1471] = 1411, + [1471] = 1471, [1472] = 1472, [1473] = 1473, - [1474] = 1414, - [1475] = 1405, + [1474] = 1474, + [1475] = 1475, [1476] = 1476, - [1477] = 1417, + [1477] = 1477, [1478] = 1478, - [1479] = 1479, - [1480] = 1466, - [1481] = 1481, - [1482] = 1425, - [1483] = 1428, + [1479] = 1455, + [1480] = 1480, + [1481] = 1455, + [1482] = 1455, + [1483] = 1483, [1484] = 1484, [1485] = 1485, - [1486] = 1479, - [1487] = 1410, + [1486] = 1486, + [1487] = 1487, [1488] = 1488, - [1489] = 1406, + [1489] = 1489, [1490] = 1490, [1491] = 1491, [1492] = 1492, [1493] = 1493, [1494] = 1494, [1495] = 1495, - [1496] = 1492, - [1497] = 1466, - [1498] = 1417, - [1499] = 1444, - [1500] = 1428, - [1501] = 1429, + [1496] = 1496, + [1497] = 1497, + [1498] = 1498, + [1499] = 1499, + [1500] = 1500, + [1501] = 1501, [1502] = 1502, - [1503] = 1493, + [1503] = 1503, [1504] = 1504, [1505] = 1505, - [1506] = 1419, - [1507] = 1507, - [1508] = 1414, + [1506] = 1496, + [1507] = 1496, + [1508] = 1508, [1509] = 1509, - [1510] = 1481, - [1511] = 1428, - [1512] = 1444, - [1513] = 1444, - [1514] = 1514, - [1515] = 1293, - [1516] = 1413, - [1517] = 1412, - [1518] = 1411, - [1519] = 1409, - [1520] = 1408, - [1521] = 1425, + [1510] = 1510, + [1511] = 1511, + [1512] = 1512, + [1513] = 1487, + [1514] = 1488, + [1515] = 1515, + [1516] = 1516, + [1517] = 1517, + [1518] = 1518, + [1519] = 1519, + [1520] = 1520, + [1521] = 1496, [1522] = 1522, [1523] = 1523, - [1524] = 1466, - [1525] = 1425, - [1526] = 1526, - [1527] = 1440, + [1524] = 1524, + [1525] = 1525, + [1526] = 1371, + [1527] = 1527, [1528] = 1528, - [1529] = 1428, - [1530] = 1530, - [1531] = 1428, - [1532] = 1417, - [1533] = 1425, + [1529] = 1529, + [1530] = 1487, + [1531] = 1531, + [1532] = 1532, + [1533] = 1533, [1534] = 1534, - [1535] = 1444, - [1536] = 1536, - [1537] = 1417, - [1538] = 1538, + [1535] = 1487, + [1536] = 1488, + [1537] = 1487, + [1538] = 1488, [1539] = 1539, - [1540] = 1540, - [1541] = 1410, - [1542] = 1425, - [1543] = 1473, - [1544] = 1466, + [1540] = 805, + [1541] = 1522, + [1542] = 1542, + [1543] = 1543, + [1544] = 1544, [1545] = 1545, [1546] = 1546, - [1547] = 1547, - [1548] = 1421, - [1549] = 1466, - [1550] = 1550, + [1547] = 1500, + [1548] = 1525, + [1549] = 1532, + [1550] = 1545, [1551] = 1551, [1552] = 1552, - [1553] = 1405, + [1553] = 1528, [1554] = 1554, - [1555] = 1555, - [1556] = 1459, + [1555] = 1511, + [1556] = 1556, [1557] = 1557, [1558] = 1558, - [1559] = 1414, - [1560] = 1560, - [1561] = 1413, - [1562] = 1562, - [1563] = 1412, - [1564] = 1564, - [1565] = 1565, - [1566] = 1440, - [1567] = 1567, - [1568] = 1568, + [1559] = 1559, + [1560] = 1500, + [1561] = 1525, + [1562] = 1532, + [1563] = 1545, + [1564] = 1551, + [1565] = 1496, + [1566] = 1528, + [1567] = 1488, + [1568] = 1511, [1569] = 1569, [1570] = 1570, [1571] = 1571, - [1572] = 1572, - [1573] = 1573, - [1574] = 1574, - [1575] = 1575, - [1576] = 1576, + [1572] = 1500, + [1573] = 1525, + [1574] = 1532, + [1575] = 1545, + [1576] = 1551, [1577] = 1577, - [1578] = 1578, + [1578] = 1528, [1579] = 1579, [1580] = 1580, - [1581] = 1581, + [1581] = 1511, [1582] = 1582, - [1583] = 1583, + [1583] = 1487, [1584] = 1584, - [1585] = 1585, - [1586] = 1586, - [1587] = 1587, - [1588] = 1588, - [1589] = 1589, + [1585] = 1500, + [1586] = 1525, + [1587] = 1532, + [1588] = 1545, + [1589] = 1551, [1590] = 1590, - [1591] = 1591, - [1592] = 1569, - [1593] = 1505, - [1594] = 1594, - [1595] = 1595, + [1591] = 1528, + [1592] = 1592, + [1593] = 1511, + [1594] = 1488, + [1595] = 1496, [1596] = 1596, - [1597] = 1597, - [1598] = 1598, - [1599] = 1586, - [1600] = 1588, - [1601] = 1601, - [1602] = 1602, - [1603] = 1594, - [1604] = 1573, - [1605] = 1574, + [1597] = 1500, + [1598] = 1525, + [1599] = 1532, + [1600] = 1545, + [1601] = 1551, + [1602] = 1528, + [1603] = 1551, + [1604] = 1604, + [1605] = 1511, [1606] = 1606, [1607] = 1607, - [1608] = 1594, + [1608] = 1608, [1609] = 1609, - [1610] = 1586, - [1611] = 1588, + [1610] = 1610, + [1611] = 1611, [1612] = 1612, - [1613] = 1582, + [1613] = 1613, [1614] = 1614, - [1615] = 1615, - [1616] = 1594, - [1617] = 1612, - [1618] = 1583, - [1619] = 1584, + [1615] = 1522, + [1616] = 1616, + [1617] = 1617, + [1618] = 1618, + [1619] = 1619, [1620] = 1620, [1621] = 1621, [1622] = 1622, [1623] = 1623, [1624] = 1624, [1625] = 1625, - [1626] = 1586, + [1626] = 1626, [1627] = 1627, [1628] = 1628, - [1629] = 1588, - [1630] = 1614, + [1629] = 1629, + [1630] = 1630, [1631] = 1631, [1632] = 1632, - [1633] = 1594, + [1633] = 1633, [1634] = 1634, [1635] = 1635, - [1636] = 1570, - [1637] = 1637, + [1636] = 1636, + [1637] = 1635, [1638] = 1638, - [1639] = 1586, - [1640] = 1588, - [1641] = 1551, + [1639] = 1639, + [1640] = 1640, + [1641] = 1641, [1642] = 1642, - [1643] = 1631, + [1643] = 1643, [1644] = 1644, - [1645] = 1588, + [1645] = 1645, [1646] = 1646, [1647] = 1647, - [1648] = 1648, - [1649] = 1649, - [1650] = 1594, + [1648] = 1630, + [1649] = 1632, + [1650] = 1633, [1651] = 1651, [1652] = 1652, - [1653] = 1602, + [1653] = 1653, [1654] = 1654, - [1655] = 1655, + [1655] = 1635, [1656] = 1656, [1657] = 1657, [1658] = 1658, [1659] = 1659, - [1660] = 1612, - [1661] = 1100, - [1662] = 1587, - [1663] = 1663, - [1664] = 1570, - [1665] = 1665, - [1666] = 1595, - [1667] = 1569, - [1668] = 1644, + [1660] = 1660, + [1661] = 1661, + [1662] = 1662, + [1663] = 1630, + [1664] = 1632, + [1665] = 1633, + [1666] = 1635, + [1667] = 1667, + [1668] = 1668, [1669] = 1669, [1670] = 1670, [1671] = 1671, - [1672] = 1495, - [1673] = 1612, + [1672] = 1672, + [1673] = 1673, [1674] = 1674, - [1675] = 1675, - [1676] = 1676, - [1677] = 1677, + [1675] = 1630, + [1676] = 1632, + [1677] = 1633, [1678] = 1678, - [1679] = 1679, + [1679] = 1635, [1680] = 1680, - [1681] = 1587, + [1681] = 1681, [1682] = 1682, [1683] = 1683, [1684] = 1684, [1685] = 1685, [1686] = 1686, - [1687] = 1574, - [1688] = 1573, - [1689] = 1570, - [1690] = 1595, - [1691] = 1691, - [1692] = 1692, - [1693] = 1569, + [1687] = 1687, + [1688] = 1630, + [1689] = 1689, + [1690] = 1632, + [1691] = 1633, + [1692] = 1635, + [1693] = 1693, [1694] = 1694, - [1695] = 1657, - [1696] = 1696, - [1697] = 1586, + [1695] = 1695, + [1696] = 1630, + [1697] = 1697, [1698] = 1698, - [1699] = 1663, + [1699] = 1699, [1700] = 1700, - [1701] = 1569, - [1702] = 1595, - [1703] = 1703, - [1704] = 1665, - [1705] = 1648, - [1706] = 1570, - [1707] = 1612, - [1708] = 1708, - [1709] = 1649, - [1710] = 1573, - [1711] = 1574, - [1712] = 1712, + [1701] = 1701, + [1702] = 1630, + [1703] = 1635, + [1704] = 1704, + [1705] = 1629, + [1706] = 1706, + [1707] = 1707, + [1708] = 1687, + [1709] = 1709, + [1710] = 1710, + [1711] = 1711, + [1712] = 1629, [1713] = 1713, [1714] = 1714, - [1715] = 1587, + [1715] = 1715, [1716] = 1716, [1717] = 1717, - [1718] = 1574, - [1719] = 1692, - [1720] = 1582, - [1721] = 1573, - [1722] = 1583, + [1718] = 1687, + [1719] = 1719, + [1720] = 1720, + [1721] = 1629, + [1722] = 1722, [1723] = 1723, - [1724] = 1584, - [1725] = 1570, - [1726] = 1595, - [1727] = 1587, - [1728] = 1569, + [1724] = 1724, + [1725] = 1725, + [1726] = 1687, + [1727] = 1727, + [1728] = 1728, [1729] = 1729, - [1730] = 1730, - [1731] = 1731, + [1730] = 1629, + [1731] = 1632, [1732] = 1732, - [1733] = 1573, - [1734] = 1574, + [1733] = 1687, + [1734] = 1633, [1735] = 1735, [1736] = 1736, - [1737] = 1683, - [1738] = 1587, + [1737] = 1629, + [1738] = 1687, [1739] = 1739, [1740] = 1740, [1741] = 1741, [1742] = 1742, [1743] = 1743, [1744] = 1744, - [1745] = 1595, - [1746] = 1746, - [1747] = 1569, - [1748] = 1595, - [1749] = 1682, - [1750] = 1612, - [1751] = 1570, - [1752] = 1612, + [1745] = 1745, + [1746] = 1742, + [1747] = 1747, + [1748] = 1748, + [1749] = 1749, + [1750] = 1750, + [1751] = 1751, + [1752] = 1752, [1753] = 1753, - [1754] = 1754, - [1755] = 1587, + [1754] = 1748, + [1755] = 1755, [1756] = 1756, [1757] = 1757, - [1758] = 1758, + [1758] = 1751, [1759] = 1759, [1760] = 1760, [1761] = 1761, [1762] = 1762, [1763] = 1763, [1764] = 1764, - [1765] = 1765, + [1765] = 1753, [1766] = 1766, [1767] = 1767, [1768] = 1768, [1769] = 1769, [1770] = 1770, - [1771] = 1771, + [1771] = 1741, [1772] = 1772, [1773] = 1773, [1774] = 1774, [1775] = 1775, - [1776] = 1760, + [1776] = 1776, [1777] = 1777, [1778] = 1778, [1779] = 1779, - [1780] = 1780, - [1781] = 1761, - [1782] = 1782, - [1783] = 1783, + [1780] = 1743, + [1781] = 1781, + [1782] = 1742, + [1783] = 1748, [1784] = 1784, - [1785] = 1766, - [1786] = 1765, - [1787] = 1787, - [1788] = 1770, + [1785] = 1751, + [1786] = 1786, + [1787] = 1753, + [1788] = 1788, [1789] = 1789, [1790] = 1790, - [1791] = 1791, - [1792] = 1771, - [1793] = 1772, - [1794] = 1773, - [1795] = 1775, - [1796] = 1796, + [1791] = 1768, + [1792] = 1792, + [1793] = 1793, + [1794] = 1794, + [1795] = 1795, + [1796] = 1461, [1797] = 1797, - [1798] = 1777, - [1799] = 1778, - [1800] = 1800, - [1801] = 1778, - [1802] = 1802, - [1803] = 1803, + [1798] = 1798, + [1799] = 1799, + [1800] = 1768, + [1801] = 1801, + [1802] = 1478, + [1803] = 1774, [1804] = 1804, [1805] = 1805, - [1806] = 1777, - [1807] = 1807, - [1808] = 1766, + [1806] = 1806, + [1807] = 1768, + [1808] = 1776, [1809] = 1809, - [1810] = 1770, + [1810] = 1778, [1811] = 1811, - [1812] = 1812, - [1813] = 1813, - [1814] = 1771, + [1812] = 1743, + [1813] = 1742, + [1814] = 1741, [1815] = 1815, - [1816] = 1772, - [1817] = 1760, - [1818] = 1773, - [1819] = 1761, - [1820] = 1820, - [1821] = 1775, - [1822] = 1765, - [1823] = 1777, + [1816] = 1748, + [1817] = 1743, + [1818] = 1818, + [1819] = 1751, + [1820] = 1748, + [1821] = 1821, + [1822] = 1753, + [1823] = 1774, [1824] = 1824, - [1825] = 1778, + [1825] = 1825, [1826] = 1826, [1827] = 1827, [1828] = 1828, - [1829] = 1774, + [1829] = 1829, [1830] = 1830, - [1831] = 1766, - [1832] = 1770, + [1831] = 1741, + [1832] = 1832, [1833] = 1833, - [1834] = 1779, - [1835] = 1835, - [1836] = 1771, - [1837] = 1837, - [1838] = 1780, - [1839] = 1772, - [1840] = 1773, - [1841] = 1775, - [1842] = 1777, - [1843] = 1778, - [1844] = 1774, - [1845] = 1774, - [1846] = 1846, - [1847] = 1765, - [1848] = 1771, - [1849] = 1791, - [1850] = 1772, - [1851] = 1766, - [1852] = 1773, - [1853] = 1853, - [1854] = 1854, - [1855] = 1779, - [1856] = 1775, - [1857] = 1770, - [1858] = 1780, - [1859] = 1761, - [1860] = 1779, - [1861] = 1760, + [1834] = 1763, + [1835] = 1781, + [1836] = 1753, + [1837] = 1776, + [1838] = 1838, + [1839] = 1839, + [1840] = 1840, + [1841] = 1841, + [1842] = 1826, + [1843] = 1843, + [1844] = 1844, + [1845] = 1845, + [1846] = 1778, + [1847] = 1844, + [1848] = 1848, + [1849] = 1849, + [1850] = 1751, + [1851] = 1851, + [1852] = 1774, + [1853] = 1763, + [1854] = 1781, + [1855] = 1855, + [1856] = 1838, + [1857] = 1839, + [1858] = 1840, + [1859] = 1841, + [1860] = 1742, + [1861] = 1748, [1862] = 1862, - [1863] = 1770, - [1864] = 1864, - [1865] = 1780, + [1863] = 1826, + [1864] = 1751, + [1865] = 1844, [1866] = 1866, - [1867] = 1771, - [1868] = 1772, + [1867] = 1867, + [1868] = 1868, [1869] = 1869, - [1870] = 1773, - [1871] = 1775, - [1872] = 1872, - [1873] = 1777, - [1874] = 1778, - [1875] = 1875, - [1876] = 1791, - [1877] = 1111, - [1878] = 1393, - [1879] = 1769, - [1880] = 1766, - [1881] = 1881, - [1882] = 1767, - [1883] = 1883, - [1884] = 1884, - [1885] = 1760, - [1886] = 1106, - [1887] = 1399, - [1888] = 1761, + [1870] = 1753, + [1871] = 1763, + [1872] = 1781, + [1873] = 1753, + [1874] = 1742, + [1875] = 1838, + [1876] = 1839, + [1877] = 1840, + [1878] = 1841, + [1879] = 1879, + [1880] = 1776, + [1881] = 1778, + [1882] = 1826, + [1883] = 1776, + [1884] = 1844, + [1885] = 1885, + [1886] = 1768, + [1887] = 1887, + [1888] = 1768, [1889] = 1889, [1890] = 1890, - [1891] = 1791, - [1892] = 1765, + [1891] = 1891, + [1892] = 1741, [1893] = 1893, - [1894] = 1791, - [1895] = 1780, - [1896] = 1896, - [1897] = 1779, - [1898] = 1898, - [1899] = 1774, - [1900] = 1900, - [1901] = 1901, - [1902] = 1774, - [1903] = 1765, + [1894] = 1763, + [1895] = 1781, + [1896] = 1741, + [1897] = 1774, + [1898] = 1838, + [1899] = 1839, + [1900] = 1840, + [1901] = 1841, + [1902] = 1902, + [1903] = 1826, [1904] = 1904, - [1905] = 1791, - [1906] = 1906, - [1907] = 1779, - [1908] = 1908, + [1905] = 1844, + [1906] = 1743, + [1907] = 1907, + [1908] = 1838, [1909] = 1909, - [1910] = 1910, - [1911] = 1780, - [1912] = 1760, + [1910] = 1776, + [1911] = 1763, + [1912] = 1781, [1913] = 1913, [1914] = 1914, - [1915] = 1915, - [1916] = 1916, - [1917] = 1917, - [1918] = 1918, - [1919] = 1761, + [1915] = 1838, + [1916] = 1839, + [1917] = 1840, + [1918] = 1841, + [1919] = 1839, [1920] = 1920, - [1921] = 1921, - [1922] = 1922, - [1923] = 782, + [1921] = 1826, + [1922] = 1778, + [1923] = 1844, [1924] = 1924, - [1925] = 1925, - [1926] = 1926, + [1925] = 1775, + [1926] = 1840, [1927] = 1927, - [1928] = 1928, - [1929] = 1929, - [1930] = 1925, - [1931] = 1929, - [1932] = 1932, + [1928] = 1841, + [1929] = 1775, + [1930] = 1778, + [1931] = 1931, + [1932] = 1774, [1933] = 1933, - [1934] = 1934, - [1935] = 1921, + [1934] = 1743, + [1935] = 1935, [1936] = 1936, [1937] = 1937, - [1938] = 1920, + [1938] = 1938, [1939] = 1939, [1940] = 1940, - [1941] = 1941, + [1941] = 1935, [1942] = 1942, - [1943] = 1943, + [1943] = 1939, [1944] = 1944, [1945] = 1945, - [1946] = 1940, - [1947] = 1947, + [1946] = 1946, + [1947] = 1940, [1948] = 1948, [1949] = 1949, - [1950] = 1939, - [1951] = 1920, - [1952] = 1932, - [1953] = 1953, + [1950] = 1950, + [1951] = 1951, + [1952] = 1952, + [1953] = 1935, [1954] = 1954, [1955] = 1955, [1956] = 1956, [1957] = 1957, [1958] = 1958, - [1959] = 1959, - [1960] = 1960, + [1959] = 1950, + [1960] = 1956, [1961] = 1961, [1962] = 1962, [1963] = 1963, @@ -5149,278 +5387,318 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1966] = 1966, [1967] = 1967, [1968] = 1968, - [1969] = 1937, + [1969] = 1969, [1970] = 1970, [1971] = 1971, [1972] = 1972, [1973] = 1973, [1974] = 1974, - [1975] = 1973, + [1975] = 1975, [1976] = 1976, [1977] = 1977, [1978] = 1978, [1979] = 1979, - [1980] = 1971, - [1981] = 1981, + [1980] = 1980, + [1981] = 1978, [1982] = 1982, - [1983] = 1983, + [1983] = 1939, [1984] = 1984, - [1985] = 1926, - [1986] = 1927, - [1987] = 1928, - [1988] = 1929, - [1989] = 1925, - [1990] = 1921, + [1985] = 1979, + [1986] = 1940, + [1987] = 1987, + [1988] = 1944, + [1989] = 1989, + [1990] = 1990, [1991] = 1991, - [1992] = 1992, - [1993] = 1933, - [1994] = 1994, - [1995] = 1941, - [1996] = 1921, - [1997] = 1997, - [1998] = 1937, - [1999] = 1961, - [2000] = 1939, - [2001] = 1940, - [2002] = 1933, + [1992] = 1936, + [1993] = 1993, + [1994] = 1935, + [1995] = 1995, + [1996] = 1938, + [1997] = 1944, + [1998] = 1998, + [1999] = 1353, + [2000] = 2000, + [2001] = 2001, + [2002] = 1989, [2003] = 2003, [2004] = 2004, [2005] = 2005, - [2006] = 1945, + [2006] = 1948, [2007] = 2007, - [2008] = 2008, - [2009] = 2009, - [2010] = 1955, - [2011] = 1956, + [2008] = 1966, + [2009] = 1966, + [2010] = 1970, + [2011] = 1948, [2012] = 2012, [2013] = 2013, - [2014] = 2014, - [2015] = 1973, + [2014] = 1939, + [2015] = 1940, [2016] = 2016, - [2017] = 2017, + [2017] = 1961, [2018] = 2018, [2019] = 2019, [2020] = 2020, - [2021] = 1976, - [2022] = 1953, + [2021] = 2021, + [2022] = 2022, [2023] = 2023, [2024] = 2024, - [2025] = 1925, - [2026] = 2026, - [2027] = 1929, - [2028] = 1961, - [2029] = 1960, - [2030] = 1959, - [2031] = 2031, + [2025] = 2025, + [2026] = 1995, + [2027] = 2027, + [2028] = 2028, + [2029] = 2029, + [2030] = 1950, + [2031] = 1950, [2032] = 2032, - [2033] = 1959, + [2033] = 1956, [2034] = 2034, - [2035] = 1960, - [2036] = 2036, - [2037] = 1928, - [2038] = 1933, - [2039] = 1927, - [2040] = 1943, - [2041] = 1956, - [2042] = 1961, - [2043] = 1955, - [2044] = 1926, + [2035] = 1950, + [2036] = 1956, + [2037] = 1961, + [2038] = 1961, + [2039] = 1956, + [2040] = 2040, + [2041] = 1961, + [2042] = 2042, + [2043] = 2043, + [2044] = 2044, [2045] = 2045, - [2046] = 2046, - [2047] = 1283, + [2046] = 1951, + [2047] = 2047, [2048] = 2048, [2049] = 2049, - [2050] = 2050, - [2051] = 1953, - [2052] = 1955, - [2053] = 2053, - [2054] = 2054, - [2055] = 1928, - [2056] = 1927, - [2057] = 1955, - [2058] = 1921, - [2059] = 1956, - [2060] = 1945, - [2061] = 1926, - [2062] = 2062, - [2063] = 2063, - [2064] = 1956, - [2065] = 2065, - [2066] = 2066, - [2067] = 2067, - [2068] = 1940, - [2069] = 1939, - [2070] = 2070, - [2071] = 2071, - [2072] = 1965, - [2073] = 1920, - [2074] = 1937, - [2075] = 2075, - [2076] = 2076, - [2077] = 2077, - [2078] = 1959, - [2079] = 2079, - [2080] = 2080, - [2081] = 1945, + [2050] = 1975, + [2051] = 1976, + [2052] = 1977, + [2053] = 1978, + [2054] = 1979, + [2055] = 2055, + [2056] = 2056, + [2057] = 2057, + [2058] = 2058, + [2059] = 1984, + [2060] = 2060, + [2061] = 2061, + [2062] = 1987, + [2063] = 1970, + [2064] = 1989, + [2065] = 1990, + [2066] = 1991, + [2067] = 1936, + [2068] = 1975, + [2069] = 1976, + [2070] = 1995, + [2071] = 1938, + [2072] = 1944, + [2073] = 1977, + [2074] = 2074, + [2075] = 1978, + [2076] = 1966, + [2077] = 1970, + [2078] = 1979, + [2079] = 1938, + [2080] = 1956, + [2081] = 1961, [2082] = 2082, - [2083] = 1976, + [2083] = 1974, [2084] = 2084, - [2085] = 2053, - [2086] = 1945, - [2087] = 1933, - [2088] = 2088, - [2089] = 2082, + [2085] = 2085, + [2086] = 2086, + [2087] = 2087, + [2088] = 1990, + [2089] = 2089, [2090] = 2090, - [2091] = 2091, + [2091] = 1984, [2092] = 2092, - [2093] = 2093, - [2094] = 1945, - [2095] = 1925, - [2096] = 2096, - [2097] = 2097, + [2093] = 1939, + [2094] = 2094, + [2095] = 1948, + [2096] = 1987, + [2097] = 1940, [2098] = 2098, - [2099] = 1929, - [2100] = 1928, - [2101] = 1927, - [2102] = 1926, - [2103] = 2053, - [2104] = 2104, + [2099] = 1989, + [2100] = 2100, + [2101] = 2101, + [2102] = 1990, + [2103] = 1991, + [2104] = 1936, [2105] = 2105, [2106] = 2106, - [2107] = 2107, - [2108] = 2031, + [2107] = 1995, + [2108] = 2108, [2109] = 2109, [2110] = 2110, - [2111] = 2096, + [2111] = 2111, [2112] = 2112, - [2113] = 1960, - [2114] = 2114, - [2115] = 2115, - [2116] = 1976, - [2117] = 1971, - [2118] = 1973, - [2119] = 2119, + [2113] = 1938, + [2114] = 2085, + [2115] = 1944, + [2116] = 2090, + [2117] = 2117, + [2118] = 2118, + [2119] = 2040, [2120] = 2120, [2121] = 2121, [2122] = 2122, - [2123] = 1973, - [2124] = 1971, - [2125] = 2125, + [2123] = 2123, + [2124] = 1976, + [2125] = 2087, [2126] = 2126, - [2127] = 2127, + [2127] = 1975, [2128] = 2128, - [2129] = 2129, - [2130] = 2130, - [2131] = 2131, - [2132] = 1937, - [2133] = 2053, - [2134] = 1961, - [2135] = 1960, - [2136] = 2136, - [2137] = 1959, + [2129] = 1984, + [2130] = 1935, + [2131] = 1976, + [2132] = 2132, + [2133] = 2133, + [2134] = 1977, + [2135] = 2135, + [2136] = 1948, + [2137] = 2137, [2138] = 2138, - [2139] = 1953, - [2140] = 2075, - [2141] = 1956, - [2142] = 2142, - [2143] = 1955, - [2144] = 2076, - [2145] = 1976, - [2146] = 1953, - [2147] = 2147, - [2148] = 1971, - [2149] = 1954, - [2150] = 2150, - [2151] = 2112, + [2139] = 2139, + [2140] = 2140, + [2141] = 1966, + [2142] = 1970, + [2143] = 1991, + [2144] = 2144, + [2145] = 2108, + [2146] = 2146, + [2147] = 1939, + [2148] = 1940, + [2149] = 2149, + [2150] = 2085, + [2151] = 1935, [2152] = 2152, - [2153] = 1945, - [2154] = 2082, - [2155] = 2077, - [2156] = 1940, - [2157] = 2157, - [2158] = 1939, - [2159] = 1920, - [2160] = 1937, - [2161] = 2161, - [2162] = 2053, - [2163] = 1921, - [2164] = 1973, - [2165] = 2165, - [2166] = 1933, - [2167] = 2098, - [2168] = 1920, - [2169] = 1939, - [2170] = 1925, - [2171] = 2171, + [2153] = 2153, + [2154] = 2154, + [2155] = 2155, + [2156] = 2156, + [2157] = 2087, + [2158] = 1987, + [2159] = 2159, + [2160] = 2160, + [2161] = 1978, + [2162] = 2162, + [2163] = 2163, + [2164] = 2164, + [2165] = 1979, + [2166] = 1977, + [2167] = 2167, + [2168] = 2168, + [2169] = 2169, + [2170] = 2170, + [2171] = 1945, [2172] = 2172, - [2173] = 1929, - [2174] = 1976, + [2173] = 2173, + [2174] = 2108, [2175] = 2175, [2176] = 2176, - [2177] = 2177, - [2178] = 2178, - [2179] = 1928, - [2180] = 1927, - [2181] = 2181, - [2182] = 1926, - [2183] = 2112, + [2177] = 1984, + [2178] = 1950, + [2179] = 2085, + [2180] = 1956, + [2181] = 1961, + [2182] = 2182, + [2183] = 2183, [2184] = 2184, - [2185] = 2082, - [2186] = 2112, - [2187] = 1940, - [2188] = 2188, - [2189] = 1973, + [2185] = 1987, + [2186] = 2087, + [2187] = 2187, + [2188] = 1989, + [2189] = 2189, [2190] = 2190, - [2191] = 2053, - [2192] = 1961, - [2193] = 1960, + [2191] = 2191, + [2192] = 2192, + [2193] = 2019, [2194] = 2194, - [2195] = 1971, - [2196] = 1959, - [2197] = 2197, + [2195] = 2195, + [2196] = 1966, + [2197] = 1990, [2198] = 2198, - [2199] = 1956, - [2200] = 2200, - [2201] = 2201, - [2202] = 2202, - [2203] = 1976, - [2204] = 1955, - [2205] = 2171, - [2206] = 2165, + [2199] = 1975, + [2200] = 1976, + [2201] = 1977, + [2202] = 1978, + [2203] = 2108, + [2204] = 1979, + [2205] = 2205, + [2206] = 2206, [2207] = 2207, - [2208] = 2208, - [2209] = 2209, - [2210] = 2210, - [2211] = 2045, + [2208] = 2085, + [2209] = 1991, + [2210] = 1936, + [2211] = 2211, [2212] = 2212, [2213] = 2213, - [2214] = 2079, - [2215] = 2215, - [2216] = 2216, - [2217] = 2171, - [2218] = 2165, - [2219] = 2219, + [2214] = 2140, + [2215] = 2087, + [2216] = 1984, + [2217] = 2217, + [2218] = 2146, + [2219] = 1970, [2220] = 2220, - [2221] = 2045, + [2221] = 1987, [2222] = 2222, [2223] = 2223, - [2224] = 2224, - [2225] = 2045, - [2226] = 1953, + [2224] = 1989, + [2225] = 1990, + [2226] = 1991, [2227] = 2227, - [2228] = 2228, - [2229] = 2045, - [2230] = 2230, - [2231] = 2231, - [2232] = 2232, - [2233] = 2045, - [2234] = 2234, - [2235] = 2054, - [2236] = 2112, - [2237] = 2112, - [2238] = 2238, + [2228] = 1936, + [2229] = 1942, + [2230] = 1995, + [2231] = 2108, + [2232] = 1938, + [2233] = 2233, + [2234] = 1944, + [2235] = 2235, + [2236] = 2085, + [2237] = 2237, + [2238] = 1995, [2239] = 2239, [2240] = 2240, + [2241] = 2241, + [2242] = 2087, + [2243] = 1975, + [2244] = 1949, + [2245] = 1938, + [2246] = 2246, + [2247] = 2247, + [2248] = 2156, + [2249] = 1974, + [2250] = 2250, + [2251] = 2003, + [2252] = 1949, + [2253] = 1944, + [2254] = 2254, + [2255] = 2255, + [2256] = 2156, + [2257] = 2257, + [2258] = 1948, + [2259] = 2259, + [2260] = 2156, + [2261] = 1995, + [2262] = 2262, + [2263] = 1966, + [2264] = 2156, + [2265] = 2265, + [2266] = 1970, + [2267] = 2108, + [2268] = 2156, + [2269] = 2087, + [2270] = 2227, + [2271] = 2227, + [2272] = 2227, + [2273] = 2227, + [2274] = 2227, + [2275] = 2275, + [2276] = 2276, + [2277] = 2277, + [2278] = 2278, + [2279] = 2279, + [2280] = 2280, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -5428,2184 +5706,2152 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(180); + if (eof) ADVANCE(175); if (lookahead == '\r') SKIP(0); - if (lookahead == '!') ADVANCE(529); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '$') ADVANCE(27); - if (lookahead == '%') ADVANCE(535); - if (lookahead == '&') ADVANCE(432); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(427); - if (lookahead == ')') ADVANCE(428); - if (lookahead == '*') ADVANCE(463); - if (lookahead == '+') ADVANCE(452); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(456); - if (lookahead == '.') ADVANCE(445); - if (lookahead == '/') ADVANCE(534); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ':') ADVANCE(441); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(546); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(542); - if (lookahead == '?') ADVANCE(524); - if (lookahead == '@') ADVANCE(60); - if (lookahead == '[') ADVANCE(434); - if (lookahead == '\\') ADVANCE(57); - if (lookahead == ']') ADVANCE(435); - if (lookahead == '^') ADVANCE(539); - if (lookahead == '_') ADVANCE(64); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(438); - if (lookahead == '|') ADVANCE(537); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(531); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(26); + if (lookahead == '%') ADVANCE(541); + if (lookahead == '&') ADVANCE(442); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(438); + if (lookahead == ')') ADVANCE(439); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(459); + if (lookahead == ',') ADVANCE(431); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(428); + if (lookahead == '/') ADVANCE(540); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ':') ADVANCE(452); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(552); + if (lookahead == '=') ADVANCE(436); + if (lookahead == '>') ADVANCE(548); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(54); + if (lookahead == '[') ADVANCE(445); + if (lookahead == '\\') ADVANCE(51); + if (lookahead == ']') ADVANCE(446); + if (lookahead == '^') ADVANCE(545); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '|') ADVANCE(543); + if (lookahead == '}') ADVANCE(450); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(0); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 1: - if (lookahead == '\n') SKIP(16); - if (lookahead == '\r') ADVANCE(196); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '/') ADVANCE(198); - if (lookahead == '\\') ADVANCE(57); + if (lookahead == '\n') SKIP(14); + if (lookahead == '\r') ADVANCE(192); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '/') ADVANCE(193); + if (lookahead == '<') ADVANCE(194); + if (lookahead == '\\') ADVANCE(51); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(196); - if (lookahead != 0) ADVANCE(199); + lookahead == ' ') ADVANCE(192); + if (lookahead != 0) ADVANCE(195); END_STATE(); case 2: - if (lookahead == '\n') SKIP(17); - if (lookahead == '\r') ADVANCE(194); - if (lookahead == '/') ADVANCE(192); - if (lookahead == '\\') ADVANCE(193); + if (lookahead == '\n') SKIP(16); + if (lookahead == '\r') ADVANCE(190); + if (lookahead == '/') ADVANCE(187); + if (lookahead == '<') ADVANCE(188); + if (lookahead == '\\') ADVANCE(189); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(194); + lookahead == ' ') ADVANCE(190); if (lookahead != 0 && - lookahead != '\'') ADVANCE(191); + lookahead != '\'') ADVANCE(186); END_STATE(); case 3: if (lookahead == '\r') SKIP(3); - if (lookahead == '!') ADVANCE(527); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '$') ADVANCE(29); - if (lookahead == '&') ADVANCE(431); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(426); - if (lookahead == ')') ADVANCE(428); - if (lookahead == '*') ADVANCE(462); - if (lookahead == '+') ADVANCE(451); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(455); - if (lookahead == '.') ADVANCE(447); - if (lookahead == '/') ADVANCE(41); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ':') ADVANCE(52); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '=') ADVANCE(423); - if (lookahead == '?') ADVANCE(523); - if (lookahead == '@') ADVANCE(60); - if (lookahead == '[') ADVANCE(433); - if (lookahead == '_') ADVANCE(64); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(438); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(531); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(28); + if (lookahead == '&') ADVANCE(443); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(437); + if (lookahead == ')') ADVANCE(439); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(460); + if (lookahead == ',') ADVANCE(431); + if (lookahead == '-') ADVANCE(462); + if (lookahead == '.') ADVANCE(430); + if (lookahead == '/') ADVANCE(39); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ':') ADVANCE(452); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(40); + if (lookahead == '=') ADVANCE(434); + if (lookahead == '>') ADVANCE(37); + if (lookahead == '@') ADVANCE(54); + if (lookahead == '[') ADVANCE(445); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '|') ADVANCE(140); + if (lookahead == '}') ADVANCE(450); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(3); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 4: if (lookahead == '\r') SKIP(4); - if (lookahead == '!') ADVANCE(527); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '$') ADVANCE(28); - if (lookahead == '&') ADVANCE(431); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(426); - if (lookahead == ')') ADVANCE(428); - if (lookahead == '*') ADVANCE(462); - if (lookahead == '+') ADVANCE(451); - if (lookahead == '-') ADVANCE(455); - if (lookahead == '/') ADVANCE(41); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '=') ADVANCE(56); - if (lookahead == '@') ADVANCE(60); - if (lookahead == '_') ADVANCE(64); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(438); - if (lookahead == '~') ADVANCE(531); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(27); + if (lookahead == '&') ADVANCE(443); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(437); + if (lookahead == ')') ADVANCE(439); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(460); + if (lookahead == '-') ADVANCE(462); + if (lookahead == '/') ADVANCE(39); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(40); + if (lookahead == '=') ADVANCE(50); + if (lookahead == '@') ADVANCE(54); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(4); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 5: if (lookahead == '\r') SKIP(5); - if (lookahead == '!') ADVANCE(527); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '$') ADVANCE(30); - if (lookahead == '&') ADVANCE(431); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(426); - if (lookahead == '*') ADVANCE(462); - if (lookahead == '+') ADVANCE(451); - if (lookahead == '-') ADVANCE(455); - if (lookahead == '/') ADVANCE(41); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '@') ADVANCE(63); - if (lookahead == '_') ADVANCE(64); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(438); - if (lookahead == '|') ADVANCE(145); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(531); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(29); + if (lookahead == '&') ADVANCE(443); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(437); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(460); + if (lookahead == '-') ADVANCE(462); + if (lookahead == '/') ADVANCE(39); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(40); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(5); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 6: if (lookahead == '\r') SKIP(6); - if (lookahead == '!') ADVANCE(527); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '$') ADVANCE(31); - if (lookahead == '&') ADVANCE(431); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(426); - if (lookahead == '*') ADVANCE(462); - if (lookahead == '+') ADVANCE(451); - if (lookahead == '-') ADVANCE(455); - if (lookahead == '/') ADVANCE(41); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '@') ADVANCE(63); - if (lookahead == '_') ADVANCE(64); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(438); - if (lookahead == '~') ADVANCE(531); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(34); + if (lookahead == '%') ADVANCE(541); + if (lookahead == '&') ADVANCE(442); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(438); + if (lookahead == ')') ADVANCE(439); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(459); + if (lookahead == ',') ADVANCE(431); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(429); + if (lookahead == '/') ADVANCE(540); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(552); + if (lookahead == '=') ADVANCE(435); + if (lookahead == '>') ADVANCE(548); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '[') ADVANCE(444); + if (lookahead == ']') ADVANCE(446); + if (lookahead == '^') ADVANCE(545); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '|') ADVANCE(542); + if (lookahead == '}') ADVANCE(450); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(6); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 7: if (lookahead == '\r') SKIP(7); - if (lookahead == '!') ADVANCE(530); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '$') ADVANCE(36); - if (lookahead == '%') ADVANCE(535); - if (lookahead == '&') ADVANCE(432); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(426); - if (lookahead == ')') ADVANCE(428); - if (lookahead == '*') ADVANCE(463); - if (lookahead == '+') ADVANCE(452); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(456); - if (lookahead == '.') ADVANCE(446); - if (lookahead == '/') ADVANCE(534); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(546); - if (lookahead == '=') ADVANCE(424); - if (lookahead == '>') ADVANCE(542); - if (lookahead == '?') ADVANCE(524); - if (lookahead == '@') ADVANCE(63); - if (lookahead == ']') ADVANCE(435); - if (lookahead == '^') ADVANCE(539); - if (lookahead == '_') ADVANCE(64); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(438); - if (lookahead == '|') ADVANCE(536); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(531); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(28); + if (lookahead == '%') ADVANCE(541); + if (lookahead == '&') ADVANCE(442); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(438); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(459); + if (lookahead == ',') ADVANCE(431); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(427); + if (lookahead == '/') ADVANCE(540); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(552); + if (lookahead == '=') ADVANCE(435); + if (lookahead == '>') ADVANCE(549); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '[') ADVANCE(444); + if (lookahead == '^') ADVANCE(545); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '|') ADVANCE(543); + if (lookahead == '}') ADVANCE(450); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(7); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 8: if (lookahead == '\r') SKIP(8); - if (lookahead == '!') ADVANCE(529); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '$') ADVANCE(30); - if (lookahead == '%') ADVANCE(535); - if (lookahead == '&') ADVANCE(432); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(427); - if (lookahead == '*') ADVANCE(463); - if (lookahead == '+') ADVANCE(452); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(456); - if (lookahead == '.') ADVANCE(444); - if (lookahead == '/') ADVANCE(534); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(546); - if (lookahead == '=') ADVANCE(424); - if (lookahead == '>') ADVANCE(543); - if (lookahead == '?') ADVANCE(524); - if (lookahead == '@') ADVANCE(63); - if (lookahead == '[') ADVANCE(433); - if (lookahead == '^') ADVANCE(539); - if (lookahead == '_') ADVANCE(64); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(438); - if (lookahead == '|') ADVANCE(537); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(531); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(27); + if (lookahead == '%') ADVANCE(541); + if (lookahead == '&') ADVANCE(442); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(438); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(459); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(427); + if (lookahead == '/') ADVANCE(540); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(552); + if (lookahead == '=') ADVANCE(435); + if (lookahead == '>') ADVANCE(549); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '[') ADVANCE(444); + if (lookahead == '^') ADVANCE(545); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '|') ADVANCE(542); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(8); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 9: if (lookahead == '\r') SKIP(9); - if (lookahead == '!') ADVANCE(529); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '$') ADVANCE(28); - if (lookahead == '%') ADVANCE(535); - if (lookahead == '&') ADVANCE(432); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(427); - if (lookahead == '*') ADVANCE(463); - if (lookahead == '+') ADVANCE(452); - if (lookahead == '-') ADVANCE(456); - if (lookahead == '.') ADVANCE(444); - if (lookahead == '/') ADVANCE(534); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(546); - if (lookahead == '=') ADVANCE(424); - if (lookahead == '>') ADVANCE(543); - if (lookahead == '?') ADVANCE(524); - if (lookahead == '@') ADVANCE(63); - if (lookahead == '[') ADVANCE(433); - if (lookahead == '^') ADVANCE(539); - if (lookahead == '_') ADVANCE(64); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(438); - if (lookahead == '|') ADVANCE(536); - if (lookahead == '~') ADVANCE(531); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(34); + if (lookahead == '&') ADVANCE(443); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(437); + if (lookahead == ')') ADVANCE(439); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(460); + if (lookahead == '-') ADVANCE(462); + if (lookahead == '.') ADVANCE(429); + if (lookahead == '/') ADVANCE(39); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(40); + if (lookahead == '>') ADVANCE(52); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '[') ADVANCE(444); + if (lookahead == ']') ADVANCE(446); + if (lookahead == '^') ADVANCE(544); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '}') ADVANCE(450); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(9); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 10: if (lookahead == '\r') SKIP(10); - if (lookahead == '!') ADVANCE(527); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '$') ADVANCE(36); - if (lookahead == '&') ADVANCE(431); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(426); - if (lookahead == ')') ADVANCE(428); - if (lookahead == '*') ADVANCE(462); - if (lookahead == '+') ADVANCE(451); - if (lookahead == '-') ADVANCE(455); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '/') ADVANCE(41); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '>') ADVANCE(58); - if (lookahead == '@') ADVANCE(63); - if (lookahead == '[') ADVANCE(433); - if (lookahead == ']') ADVANCE(435); - if (lookahead == '^') ADVANCE(538); - if (lookahead == '_') ADVANCE(64); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(438); - if (lookahead == '~') ADVANCE(531); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(33); + if (lookahead == '&') ADVANCE(443); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(437); + if (lookahead == ')') ADVANCE(439); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(460); + if (lookahead == '-') ADVANCE(462); + if (lookahead == '.') ADVANCE(430); + if (lookahead == '/') ADVANCE(39); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(40); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(10); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 11: if (lookahead == '\r') SKIP(11); - if (lookahead == '!') ADVANCE(527); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '$') ADVANCE(35); - if (lookahead == '&') ADVANCE(431); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(426); - if (lookahead == ')') ADVANCE(428); - if (lookahead == '*') ADVANCE(462); - if (lookahead == '+') ADVANCE(451); - if (lookahead == '-') ADVANCE(455); - if (lookahead == '.') ADVANCE(447); - if (lookahead == '/') ADVANCE(41); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '@') ADVANCE(63); - if (lookahead == '[') ADVANCE(433); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(62); + if (lookahead == '&') ADVANCE(441); + if (lookahead == '(') ADVANCE(438); + if (lookahead == ')') ADVANCE(439); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(458); + if (lookahead == ',') ADVANCE(431); + if (lookahead == '-') ADVANCE(461); + if (lookahead == '.') ADVANCE(430); + if (lookahead == '/') ADVANCE(39); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(41); + if (lookahead == '>') ADVANCE(38); + if (lookahead == '@') ADVANCE(54); + if (lookahead == '[') ADVANCE(445); + if (lookahead == ']') ADVANCE(446); if (lookahead == '_') ADVANCE(64); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(438); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(531); + if (lookahead == '{') ADVANCE(448); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(11); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(413); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(162); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 12: if (lookahead == '\r') SKIP(12); - if (lookahead == '!') ADVANCE(527); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '$') ADVANCE(67); - if (lookahead == '&') ADVANCE(430); - if (lookahead == '(') ADVANCE(427); - if (lookahead == ')') ADVANCE(428); - if (lookahead == '*') ADVANCE(462); - if (lookahead == '+') ADVANCE(450); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(454); - if (lookahead == '.') ADVANCE(447); - if (lookahead == '/') ADVANCE(41); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(53); - if (lookahead == '>') ADVANCE(40); - if (lookahead == '@') ADVANCE(60); - if (lookahead == '[') ADVANCE(434); - if (lookahead == ']') ADVANCE(435); - if (lookahead == '_') ADVANCE(69); - if (lookahead == '{') ADVANCE(437); - if (lookahead == '}') ADVANCE(439); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(65); + if (lookahead == '&') ADVANCE(441); + if (lookahead == '(') ADVANCE(438); + if (lookahead == ')') ADVANCE(439); + if (lookahead == '*') ADVANCE(468); + if (lookahead == ',') ADVANCE(431); + if (lookahead == '.') ADVANCE(430); + if (lookahead == '/') ADVANCE(39); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ':') ADVANCE(451); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(40); + if (lookahead == '=') ADVANCE(434); + if (lookahead == '>') ADVANCE(37); + if (lookahead == '@') ADVANCE(54); + if (lookahead == '[') ADVANCE(445); + if (lookahead == '_') ADVANCE(66); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '}') ADVANCE(450); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(12); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(167); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 13: if (lookahead == '\r') SKIP(13); - if (lookahead == '!') ADVANCE(54); - if (lookahead == '$') ADVANCE(68); - if (lookahead == '%') ADVANCE(535); - if (lookahead == '&') ADVANCE(432); - if (lookahead == '(') ADVANCE(427); - if (lookahead == ')') ADVANCE(428); - if (lookahead == '*') ADVANCE(463); - if (lookahead == '+') ADVANCE(453); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(457); - if (lookahead == '.') ADVANCE(446); - if (lookahead == '/') ADVANCE(534); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(546); - if (lookahead == '=') ADVANCE(424); - if (lookahead == '>') ADVANCE(542); - if (lookahead == '?') ADVANCE(524); - if (lookahead == '@') ADVANCE(60); - if (lookahead == '[') ADVANCE(434); - if (lookahead == ']') ADVANCE(435); - if (lookahead == '^') ADVANCE(539); - if (lookahead == '_') ADVANCE(70); - if (lookahead == '{') ADVANCE(437); - if (lookahead == '|') ADVANCE(536); - if (lookahead == '}') ADVANCE(439); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(90); + if (lookahead == '*') ADVANCE(43); + if (lookahead == '/') ADVANCE(39); + if (lookahead == '<') ADVANCE(40); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '_') ADVANCE(66); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(13); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(414); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 14: if (lookahead == '\r') SKIP(14); - if (lookahead == '!') ADVANCE(527); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '$') ADVANCE(71); - if (lookahead == '&') ADVANCE(430); - if (lookahead == '(') ADVANCE(427); - if (lookahead == ')') ADVANCE(428); - if (lookahead == '*') ADVANCE(462); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '.') ADVANCE(447); - if (lookahead == '/') ADVANCE(41); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '=') ADVANCE(423); - if (lookahead == '>') ADVANCE(39); - if (lookahead == '@') ADVANCE(60); - if (lookahead == '[') ADVANCE(434); - if (lookahead == '_') ADVANCE(70); - if (lookahead == '{') ADVANCE(437); - if (lookahead == '}') ADVANCE(439); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '/') ADVANCE(39); + if (lookahead == '<') ADVANCE(40); + if (lookahead == '\\') ADVANCE(51); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(14); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(414); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); END_STATE(); case 15: if (lookahead == '\r') SKIP(15); - if (lookahead == '!') ADVANCE(528); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '$') ADVANCE(95); - if (lookahead == '(') ADVANCE(427); - if (lookahead == '*') ADVANCE(46); - if (lookahead == '+') ADVANCE(42); - if (lookahead == '-') ADVANCE(43); - if (lookahead == '/') ADVANCE(41); - if (lookahead == '@') ADVANCE(63); - if (lookahead == '[') ADVANCE(433); - if (lookahead == '_') ADVANCE(70); + if (lookahead == '$') ADVANCE(63); + if (lookahead == '/') ADVANCE(39); + if (lookahead == '<') ADVANCE(40); + if (lookahead == '_') ADVANCE(59); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(15); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(414); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 16: if (lookahead == '\r') SKIP(16); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '/') ADVANCE(41); - if (lookahead == '\\') ADVANCE(57); + if (lookahead == '/') ADVANCE(39); + if (lookahead == '<') ADVANCE(40); + if (lookahead == '\\') ADVANCE(51); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(16); END_STATE(); case 17: if (lookahead == '\r') SKIP(17); - if (lookahead == '/') ADVANCE(41); - if (lookahead == '\\') ADVANCE(57); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(30); + if (lookahead == '&') ADVANCE(443); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(437); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(460); + if (lookahead == '-') ADVANCE(462); + if (lookahead == '/') ADVANCE(39); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(40); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(17); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 18: if (lookahead == '\r') SKIP(18); - if (lookahead == '!') ADVANCE(529); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '$') ADVANCE(31); - if (lookahead == '%') ADVANCE(535); - if (lookahead == '&') ADVANCE(432); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(427); - if (lookahead == '*') ADVANCE(463); - if (lookahead == '+') ADVANCE(452); - if (lookahead == '-') ADVANCE(456); - if (lookahead == '.') ADVANCE(444); - if (lookahead == '/') ADVANCE(534); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(546); - if (lookahead == '=') ADVANCE(424); - if (lookahead == '>') ADVANCE(543); - if (lookahead == '?') ADVANCE(524); - if (lookahead == '@') ADVANCE(63); - if (lookahead == '[') ADVANCE(433); - if (lookahead == '^') ADVANCE(539); - if (lookahead == '_') ADVANCE(64); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(438); - if (lookahead == '|') ADVANCE(536); - if (lookahead == '~') ADVANCE(531); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(29); + if (lookahead == '%') ADVANCE(541); + if (lookahead == '&') ADVANCE(442); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(438); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(459); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(427); + if (lookahead == '/') ADVANCE(540); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(552); + if (lookahead == '=') ADVANCE(435); + if (lookahead == '>') ADVANCE(549); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '[') ADVANCE(444); + if (lookahead == '^') ADVANCE(545); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '|') ADVANCE(542); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(18); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 19: if (lookahead == '\r') SKIP(19); - if (lookahead == '!') ADVANCE(529); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '$') ADVANCE(33); - if (lookahead == '%') ADVANCE(535); - if (lookahead == '&') ADVANCE(432); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(427); - if (lookahead == '*') ADVANCE(463); - if (lookahead == '+') ADVANCE(452); - if (lookahead == '-') ADVANCE(456); - if (lookahead == '.') ADVANCE(444); - if (lookahead == '/') ADVANCE(534); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(546); - if (lookahead == '=') ADVANCE(424); - if (lookahead == '>') ADVANCE(543); - if (lookahead == '?') ADVANCE(524); - if (lookahead == '@') ADVANCE(63); - if (lookahead == '[') ADVANCE(433); - if (lookahead == '^') ADVANCE(539); - if (lookahead == '_') ADVANCE(64); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(438); - if (lookahead == '|') ADVANCE(536); - if (lookahead == '~') ADVANCE(531); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(30); + if (lookahead == '%') ADVANCE(541); + if (lookahead == '&') ADVANCE(442); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(438); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(459); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(427); + if (lookahead == '/') ADVANCE(540); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(552); + if (lookahead == '=') ADVANCE(435); + if (lookahead == '>') ADVANCE(549); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '[') ADVANCE(444); + if (lookahead == '^') ADVANCE(545); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '|') ADVANCE(542); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(19); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 20: if (lookahead == '\r') SKIP(20); - if (lookahead == '!') ADVANCE(527); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '$') ADVANCE(32); - if (lookahead == '&') ADVANCE(431); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(426); - if (lookahead == '*') ADVANCE(462); - if (lookahead == '+') ADVANCE(451); - if (lookahead == '-') ADVANCE(455); - if (lookahead == '/') ADVANCE(41); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '@') ADVANCE(63); - if (lookahead == '_') ADVANCE(64); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(438); - if (lookahead == '~') ADVANCE(531); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(31); + if (lookahead == '&') ADVANCE(443); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(437); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(460); + if (lookahead == '-') ADVANCE(462); + if (lookahead == '/') ADVANCE(39); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(40); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(20); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 21: if (lookahead == '\r') SKIP(21); - if (lookahead == '!') ADVANCE(529); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '$') ADVANCE(32); - if (lookahead == '%') ADVANCE(535); - if (lookahead == '&') ADVANCE(432); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(427); - if (lookahead == '*') ADVANCE(463); - if (lookahead == '+') ADVANCE(452); - if (lookahead == '-') ADVANCE(456); - if (lookahead == '.') ADVANCE(444); - if (lookahead == '/') ADVANCE(534); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(546); - if (lookahead == '=') ADVANCE(424); - if (lookahead == '>') ADVANCE(543); - if (lookahead == '?') ADVANCE(524); - if (lookahead == '@') ADVANCE(63); - if (lookahead == '[') ADVANCE(433); - if (lookahead == '^') ADVANCE(539); - if (lookahead == '_') ADVANCE(64); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(438); - if (lookahead == '|') ADVANCE(536); - if (lookahead == '~') ADVANCE(531); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(31); + if (lookahead == '%') ADVANCE(541); + if (lookahead == '&') ADVANCE(442); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(438); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(459); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(427); + if (lookahead == '/') ADVANCE(540); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(552); + if (lookahead == '=') ADVANCE(435); + if (lookahead == '>') ADVANCE(549); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '[') ADVANCE(444); + if (lookahead == '^') ADVANCE(545); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '|') ADVANCE(542); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(21); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 22: if (lookahead == '\r') SKIP(22); - if (lookahead == '!') ADVANCE(527); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '$') ADVANCE(33); - if (lookahead == '&') ADVANCE(431); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(426); - if (lookahead == '*') ADVANCE(462); - if (lookahead == '+') ADVANCE(451); - if (lookahead == '-') ADVANCE(455); - if (lookahead == '/') ADVANCE(41); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '@') ADVANCE(63); - if (lookahead == '_') ADVANCE(64); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(438); - if (lookahead == '~') ADVANCE(531); + if (lookahead == '!') ADVANCE(534); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(32); + if (lookahead == '&') ADVANCE(443); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(437); + if (lookahead == '*') ADVANCE(468); + if (lookahead == '+') ADVANCE(460); + if (lookahead == '-') ADVANCE(462); + if (lookahead == '/') ADVANCE(39); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(40); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(22); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 23: if (lookahead == '\r') SKIP(23); - if (lookahead == '!') ADVANCE(527); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '$') ADVANCE(34); - if (lookahead == '&') ADVANCE(431); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(426); - if (lookahead == '*') ADVANCE(462); - if (lookahead == '+') ADVANCE(451); - if (lookahead == '-') ADVANCE(455); - if (lookahead == '/') ADVANCE(41); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '@') ADVANCE(63); - if (lookahead == '_') ADVANCE(64); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(438); - if (lookahead == '~') ADVANCE(531); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '#') ADVANCE(53); + if (lookahead == '$') ADVANCE(32); + if (lookahead == '%') ADVANCE(541); + if (lookahead == '&') ADVANCE(442); + if (lookahead == '\'') ADVANCE(185); + if (lookahead == '(') ADVANCE(438); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(459); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(427); + if (lookahead == '/') ADVANCE(540); + if (lookahead == '0') ADVANCE(178); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(552); + if (lookahead == '=') ADVANCE(435); + if (lookahead == '>') ADVANCE(549); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(57); + if (lookahead == '[') ADVANCE(444); + if (lookahead == '^') ADVANCE(545); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(449); + if (lookahead == '|') ADVANCE(542); + if (lookahead == '~') ADVANCE(536); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(23); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(179); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); case 24: - if (lookahead == '\r') SKIP(24); - if (lookahead == '!') ADVANCE(529); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(59); - if (lookahead == '$') ADVANCE(34); - if (lookahead == '%') ADVANCE(535); - if (lookahead == '&') ADVANCE(432); - if (lookahead == '\'') ADVANCE(190); - if (lookahead == '(') ADVANCE(427); - if (lookahead == '*') ADVANCE(463); - if (lookahead == '+') ADVANCE(452); - if (lookahead == '-') ADVANCE(456); - if (lookahead == '.') ADVANCE(444); - if (lookahead == '/') ADVANCE(534); - if (lookahead == '0') ADVANCE(183); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(546); - if (lookahead == '=') ADVANCE(424); - if (lookahead == '>') ADVANCE(543); - if (lookahead == '?') ADVANCE(524); - if (lookahead == '@') ADVANCE(63); - if (lookahead == '[') ADVANCE(433); - if (lookahead == '^') ADVANCE(539); - if (lookahead == '_') ADVANCE(64); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(438); - if (lookahead == '|') ADVANCE(536); - if (lookahead == '~') ADVANCE(531); + if (lookahead == '"') ADVANCE(202); + if (lookahead == '=') ADVANCE(24); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(24); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(413); - END_STATE(); - case 25: - if (lookahead == '"') ADVANCE(205); - if (lookahead == '=') ADVANCE(25); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(25); + lookahead == ' ') ADVANCE(24); if (lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(25); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); - case 26: - if (lookahead == '"') ADVANCE(205); + case 25: + if (lookahead == '"') ADVANCE(202); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(26); + lookahead == ' ') ADVANCE(25); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(26); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(25); + END_STATE(); + case 26: + ADVANCE_MAP( + '$', 60, + '_', 61, + 'a', 325, + 'c', 223, + 'd', 262, + 'e', 237, + 'f', 273, + 'i', 286, + 'n', 217, + 'o', 299, + 'q', 347, + 's', 315, + 't', 410, + 'v', 218, + ); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); END_STATE(); case 27: ADVANCE_MAP( - '$', 65, - '_', 66, - 'a', 323, - 'c', 225, - 'd', 261, - 'e', 238, - 'f', 274, - 'i', 284, - 'n', 219, - 'o', 297, - 'q', 343, - 's', 313, - 't', 402, - 'v', 220, + '$', 60, + '_', 63, + 'a', 325, + 'c', 223, + 'd', 262, + 'e', 239, + 'f', 273, + 'i', 287, + 'n', 217, + 'o', 299, + 'q', 347, + 's', 315, + 't', 410, + 'v', 222, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(415); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 28: ADVANCE_MAP( - '$', 65, - '_', 68, - 'a', 323, - 'c', 225, - 'd', 261, - 'e', 240, - 'f', 274, - 'i', 285, - 'n', 219, - 'o', 297, - 'q', 343, - 's', 313, - 't', 402, - 'v', 224, + '$', 60, + '_', 63, + 'a', 325, + 'c', 351, + 'd', 282, + 'e', 243, + 'f', 273, + 'i', 287, + 'n', 217, + 'o', 299, + 'q', 347, + 's', 315, + 't', 410, + 'v', 222, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 29: ADVANCE_MAP( - '$', 65, - '_', 68, - 'a', 323, - 'd', 281, - 'e', 244, - 'f', 274, - 'i', 285, - 'n', 219, - 'o', 297, - 'q', 343, - 's', 313, - 't', 402, - 'v', 220, + '$', 60, + '_', 63, + 'a', 325, + 'c', 351, + 'd', 282, + 'e', 238, + 'f', 273, + 'i', 287, + 'n', 217, + 'o', 299, + 'q', 347, + 's', 315, + 't', 410, + 'v', 222, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 30: ADVANCE_MAP( - '$', 65, - '_', 68, - 'a', 323, - 'd', 281, - 'e', 244, - 'f', 274, - 'i', 285, - 'n', 219, - 'o', 297, - 'q', 343, - 's', 313, - 't', 402, - 'v', 224, + '$', 60, + '_', 63, + 'a', 325, + 'c', 351, + 'd', 282, + 'e', 241, + 'f', 273, + 'i', 287, + 'n', 217, + 'o', 299, + 'q', 347, + 's', 315, + 't', 410, + 'v', 222, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 31: ADVANCE_MAP( - '$', 65, - '_', 68, - 'a', 323, - 'd', 281, - 'e', 239, - 'f', 274, - 'i', 285, - 'n', 219, - 'o', 297, - 'q', 343, - 's', 313, - 't', 402, - 'v', 224, + '$', 60, + '_', 63, + 'a', 325, + 'c', 351, + 'd', 282, + 'e', 240, + 'f', 273, + 'i', 287, + 'n', 217, + 'o', 299, + 'q', 347, + 's', 315, + 't', 410, + 'v', 222, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 32: ADVANCE_MAP( - '$', 65, - '_', 68, - 'a', 323, - 'd', 281, - 'e', 241, - 'f', 274, - 'i', 285, - 'n', 219, - 'o', 297, - 'q', 343, - 's', 313, - 't', 402, - 'v', 224, + '$', 60, + '_', 63, + 'a', 325, + 'c', 351, + 'd', 282, + 'e', 242, + 'f', 273, + 'i', 287, + 'n', 217, + 'o', 299, + 'q', 347, + 's', 315, + 't', 410, + 'v', 222, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 33: ADVANCE_MAP( - '$', 65, - '_', 68, - 'a', 323, - 'd', 281, - 'e', 242, + '$', 60, + '_', 63, + 'a', 326, + 'c', 351, + 'd', 282, + 'e', 333, 'f', 274, - 'i', 285, - 'n', 219, - 'o', 297, - 'q', 343, - 's', 313, - 't', 402, - 'v', 224, + 'i', 380, + 'n', 217, + 'o', 299, + 'q', 347, + 's', 316, + 't', 410, + 'v', 218, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 34: ADVANCE_MAP( - '$', 65, - '_', 68, - 'a', 323, - 'd', 281, - 'e', 243, + '$', 60, + '_', 63, + 'a', 326, + 'c', 351, + 'd', 282, + 'e', 333, 'f', 274, - 'i', 285, - 'n', 219, - 'o', 297, - 'q', 343, - 's', 313, - 't', 402, - 'v', 224, + 'i', 380, + 'n', 217, + 'o', 299, + 'q', 347, + 's', 316, + 't', 410, + 'v', 222, ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 35: - ADVANCE_MAP( - '$', 65, - '_', 68, - 'a', 324, - 'd', 281, - 'e', 331, - 'f', 275, - 'i', 374, - 'n', 219, - 'o', 297, - 'q', 343, - 's', 314, - 't', 402, - 'v', 220, - ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); - END_STATE(); - case 36: - ADVANCE_MAP( - '$', 65, - '_', 68, - 'a', 324, - 'd', 281, - 'e', 331, - 'f', 275, - 'i', 374, - 'n', 219, - 'o', 297, - 'q', 343, - 's', 314, - 't', 402, - 'v', 224, - ); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); - END_STATE(); - case 37: - if (lookahead == '\'') ADVANCE(205); - if (lookahead == '=') ADVANCE(37); + if (lookahead == '\'') ADVANCE(202); + if (lookahead == '=') ADVANCE(35); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(37); + lookahead == ' ') ADVANCE(35); if (lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(37); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(35); END_STATE(); - case 38: - if (lookahead == '\'') ADVANCE(205); + case 36: + if (lookahead == '\'') ADVANCE(202); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(38); + lookahead == ' ') ADVANCE(36); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(38); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36); + END_STATE(); + case 37: + if (lookahead == ')') ADVANCE(433); + END_STATE(); + case 38: + if (lookahead == ')') ADVANCE(433); + if (lookahead == '>') ADVANCE(466); END_STATE(); case 39: - if (lookahead == ')') ADVANCE(422); + if (lookahead == '*') ADVANCE(208); + if (lookahead == '/') ADVANCE(204); END_STATE(); case 40: - if (lookahead == ')') ADVANCE(422); - if (lookahead == '>') ADVANCE(460); + if (lookahead == '*') ADVANCE(205); END_STATE(); case 41: - if (lookahead == '*') ADVANCE(211); - if (lookahead == '/') ADVANCE(207); + if (lookahead == '*') ADVANCE(205); + if (lookahead == '<') ADVANCE(464); END_STATE(); case 42: - if (lookahead == '+') ADVANCE(532); + if (lookahead == '.') ADVANCE(440); END_STATE(); case 43: - if (lookahead == '-') ADVANCE(533); + if (lookahead == '/') ADVANCE(210); + if (lookahead == '>') ADVANCE(207); END_STATE(); case 44: - if (lookahead == '.') ADVANCE(429); + if (lookahead == '1') ADVANCE(46); + if (lookahead == '3') ADVANCE(45); + if (lookahead == '6') ADVANCE(47); + if (lookahead == '8') ADVANCE(176); END_STATE(); case 45: - if (lookahead == '.') ADVANCE(442); + if (lookahead == '2') ADVANCE(176); END_STATE(); case 46: - if (lookahead == '/') ADVANCE(210); + if (lookahead == '2') ADVANCE(48); + if (lookahead == '6') ADVANCE(176); END_STATE(); case 47: - if (lookahead == '1') ADVANCE(49); - if (lookahead == '3') ADVANCE(48); - if (lookahead == '6') ADVANCE(50); - if (lookahead == '8') ADVANCE(181); + if (lookahead == '4') ADVANCE(176); END_STATE(); case 48: - if (lookahead == '2') ADVANCE(181); + if (lookahead == '8') ADVANCE(176); END_STATE(); case 49: - if (lookahead == '2') ADVANCE(51); - if (lookahead == '6') ADVANCE(181); + if (lookahead == '=') ADVANCE(49); + if (lookahead == '`') ADVANCE(202); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(49); + if (lookahead == '+' || + ('/' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 50: - if (lookahead == '4') ADVANCE(181); + if (lookahead == '>') ADVANCE(455); END_STATE(); case 51: - if (lookahead == '8') ADVANCE(181); + ADVANCE_MAP( + 'U', 161, + 'u', 157, + 'x', 154, + '"', 184, + '\'', 184, + '0', 184, + '\\', 184, + 'a', 184, + 'b', 184, + 'e', 184, + 'f', 184, + 'n', 184, + 'r', 184, + 't', 184, + 'v', 184, + ); END_STATE(); case 52: - if (lookahead == ':') ADVANCE(419); + if (lookahead == ']') ADVANCE(570); END_STATE(); case 53: - if (lookahead == '<') ADVANCE(458); + if (lookahead == '_') ADVANCE(53); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); END_STATE(); case 54: - if (lookahead == '=') ADVANCE(541); + if (lookahead == '_') ADVANCE(54); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(164); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 55: - if (lookahead == '=') ADVANCE(55); - if (lookahead == '`') ADVANCE(205); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(55); - if (lookahead == '+' || - ('/' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(55); + ADVANCE_MAP( + '_', 56, + 'a', 125, + 'c', 74, + 'd', 83, + 'e', 75, + 'i', 109, + 't', 137, + 'v', 69, + ); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 56: - if (lookahead == '>') ADVANCE(448); + if (lookahead == '_') ADVANCE(56); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 57: - ADVANCE_MAP( - 'U', 166, - 'u', 162, - 'x', 159, - '"', 189, - '\'', 189, - '0', 189, - '\\', 189, - 'a', 189, - 'b', 189, - 'e', 189, - 'f', 189, - 'n', 189, - 'r', 189, - 't', 189, - 'v', 189, - ); + if (lookahead == '_') ADVANCE(57); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 58: - if (lookahead == ']') ADVANCE(561); + if (lookahead == '_') ADVANCE(58); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 59: if (lookahead == '_') ADVANCE(59); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 60: if (lookahead == '_') ADVANCE(60); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(169); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(424); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); END_STATE(); case 61: - ADVANCE_MAP( - '_', 62, - 'a', 130, - 'c', 79, - 'd', 88, - 'e', 80, - 'i', 114, - 't', 142, - 'v', 74, - ); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (lookahead == '_') ADVANCE(61); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(422); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 62: - if (lookahead == '_') ADVANCE(62); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (lookahead == '_') ADVANCE(63); + if (lookahead == 'e') ADVANCE(406); + if (lookahead == 't') ADVANCE(410); + if (lookahead == 'v') ADVANCE(231); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); END_STATE(); case 63: if (lookahead == '_') ADVANCE(63); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(163); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 64: if (lookahead == '_') ADVANCE(64); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(413); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(162); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 65: if (lookahead == '_') ADVANCE(65); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(417); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(418); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(423); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 66: if (lookahead == '_') ADVANCE(66); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(415); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(421); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 67: - if (lookahead == '_') ADVANCE(68); - if (lookahead == 'e') ADVANCE(399); - if (lookahead == 't') ADVANCE(402); - if (lookahead == 'v') ADVANCE(232); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); + if (lookahead == '`') ADVANCE(202); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(67); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); END_STATE(); case 68: - if (lookahead == '_') ADVANCE(68); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(168); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + if (lookahead == '`') ADVANCE(201); END_STATE(); case 69: - if (lookahead == '_') ADVANCE(69); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(167); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + if (lookahead == 'a') ADVANCE(132); END_STATE(); case 70: - if (lookahead == '_') ADVANCE(70); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(414); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + if (lookahead == 'a') ADVANCE(107); END_STATE(); case 71: - if (lookahead == '_') ADVANCE(71); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(416); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + if (lookahead == 'a') ADVANCE(135); END_STATE(); case 72: - if (lookahead == '`') ADVANCE(205); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(72); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(72); + if (lookahead == 'a') ADVANCE(79); END_STATE(); case 73: - if (lookahead == '`') ADVANCE(204); + if (lookahead == 'a') ADVANCE(104); END_STATE(); case 74: - if (lookahead == 'a') ADVANCE(137); + if (lookahead == 'a') ADVANCE(127); END_STATE(); case 75: - if (lookahead == 'a') ADVANCE(112); + if (lookahead == 'c') ADVANCE(100); + if (lookahead == 'l') ADVANCE(128); + if (lookahead == 'n') ADVANCE(80); + if (lookahead == 'r') ADVANCE(122); + if (lookahead == 'v') ADVANCE(70); + if (lookahead == 'x') ADVANCE(92); END_STATE(); case 76: - if (lookahead == 'a') ADVANCE(140); + if (lookahead == 'c') ADVANCE(476); END_STATE(); case 77: - if (lookahead == 'a') ADVANCE(84); + if (lookahead == 'c') ADVANCE(101); END_STATE(); case 78: - if (lookahead == 'a') ADVANCE(109); + if (lookahead == 'c') ADVANCE(105); END_STATE(); case 79: - if (lookahead == 'a') ADVANCE(132); + if (lookahead == 'c') ADVANCE(102); END_STATE(); case 80: - if (lookahead == 'c') ADVANCE(105); - if (lookahead == 'l') ADVANCE(133); - if (lookahead == 'n') ADVANCE(85); - if (lookahead == 'r') ADVANCE(127); - if (lookahead == 'v') ADVANCE(75); - if (lookahead == 'x') ADVANCE(97); + if (lookahead == 'd') ADVANCE(98); END_STATE(); case 81: - if (lookahead == 'c') ADVANCE(470); + if (lookahead == 'd') ADVANCE(99); END_STATE(); case 82: - if (lookahead == 'c') ADVANCE(106); + if (lookahead == 'd') ADVANCE(88); END_STATE(); case 83: - if (lookahead == 'c') ADVANCE(110); + if (lookahead == 'e') ADVANCE(96); END_STATE(); case 84: - if (lookahead == 'c') ADVANCE(107); + if (lookahead == 'e') ADVANCE(485); END_STATE(); case 85: - if (lookahead == 'd') ADVANCE(103); + if (lookahead == 'e') ADVANCE(483); END_STATE(); case 86: - if (lookahead == 'd') ADVANCE(104); + if (lookahead == 'e') ADVANCE(97); END_STATE(); case 87: - if (lookahead == 'd') ADVANCE(93); + if (lookahead == 'e') ADVANCE(567); END_STATE(); case 88: - if (lookahead == 'e') ADVANCE(101); + if (lookahead == 'e') ADVANCE(474); END_STATE(); case 89: - if (lookahead == 'e') ADVANCE(479); + if (lookahead == 'e') ADVANCE(565); END_STATE(); case 90: - if (lookahead == 'e') ADVANCE(477); + if (lookahead == 'e') ADVANCE(110); END_STATE(); case 91: - if (lookahead == 'e') ADVANCE(102); + if (lookahead == 'e') ADVANCE(121); END_STATE(); case 92: - if (lookahead == 'e') ADVANCE(556); + if (lookahead == 'e') ADVANCE(76); END_STATE(); case 93: - if (lookahead == 'e') ADVANCE(468); + if (lookahead == 'e') ADVANCE(72); END_STATE(); case 94: - if (lookahead == 'e') ADVANCE(558); + if (lookahead == 'f') ADVANCE(481); END_STATE(); case 95: - if (lookahead == 'e') ADVANCE(115); + if (lookahead == 'f') ADVANCE(561); END_STATE(); case 96: - if (lookahead == 'e') ADVANCE(126); + if (lookahead == 'f') ADVANCE(71); END_STATE(); case 97: - if (lookahead == 'e') ADVANCE(81); + if (lookahead == 'f') ADVANCE(123); + if (lookahead == 'o') ADVANCE(95); END_STATE(); case 98: - if (lookahead == 'e') ADVANCE(77); + if (lookahead == 'f') ADVANCE(114); + if (lookahead == 'i') ADVANCE(94); + if (lookahead == 's') ADVANCE(136); END_STATE(); case 99: - if (lookahead == 'f') ADVANCE(475); + if (lookahead == 'f') ADVANCE(115); END_STATE(); case 100: - if (lookahead == 'f') ADVANCE(552); + if (lookahead == 'h') ADVANCE(111); END_STATE(); case 101: - if (lookahead == 'f') ADVANCE(76); + if (lookahead == 'h') ADVANCE(490); END_STATE(); case 102: - if (lookahead == 'f') ADVANCE(128); - if (lookahead == 'o') ADVANCE(100); + if (lookahead == 'h') ADVANCE(496); END_STATE(); case 103: - if (lookahead == 'f') ADVANCE(119); - if (lookahead == 'i') ADVANCE(99); - if (lookahead == 's') ADVANCE(141); + if (lookahead == 'i') ADVANCE(131); END_STATE(); case 104: - if (lookahead == 'f') ADVANCE(120); + if (lookahead == 'l') ADVANCE(508); END_STATE(); case 105: - if (lookahead == 'h') ADVANCE(116); + if (lookahead == 'l') ADVANCE(134); END_STATE(); case 106: - if (lookahead == 'h') ADVANCE(484); + if (lookahead == 'l') ADVANCE(130); END_STATE(); case 107: - if (lookahead == 'h') ADVANCE(490); + if (lookahead == 'l') ADVANCE(133); END_STATE(); case 108: - if (lookahead == 'i') ADVANCE(136); + if (lookahead == 'm') ADVANCE(563); END_STATE(); case 109: - if (lookahead == 'l') ADVANCE(497); + if (lookahead == 'n') ADVANCE(78); END_STATE(); case 110: - if (lookahead == 'l') ADVANCE(139); + if (lookahead == 'n') ADVANCE(81); + if (lookahead == 'v') ADVANCE(73); END_STATE(); case 111: - if (lookahead == 'l') ADVANCE(135); + if (lookahead == 'o') ADVANCE(478); END_STATE(); case 112: - if (lookahead == 'l') ADVANCE(138); + if (lookahead == 'o') ADVANCE(108); END_STATE(); case 113: - if (lookahead == 'm') ADVANCE(554); + if (lookahead == 'o') ADVANCE(119); END_STATE(); case 114: - if (lookahead == 'n') ADVANCE(83); + if (lookahead == 'o') ADVANCE(120); END_STATE(); case 115: - if (lookahead == 'n') ADVANCE(86); - if (lookahead == 'v') ADVANCE(78); + if (lookahead == 'o') ADVANCE(124); END_STATE(); case 116: - if (lookahead == 'o') ADVANCE(472); + if (lookahead == 'p') ADVANCE(86); END_STATE(); case 117: - if (lookahead == 'o') ADVANCE(113); + if (lookahead == 'p') ADVANCE(87); END_STATE(); case 118: - if (lookahead == 'o') ADVANCE(124); + if (lookahead == 'p') ADVANCE(89); END_STATE(); case 119: - if (lookahead == 'o') ADVANCE(125); + if (lookahead == 'r') ADVANCE(472); END_STATE(); case 120: - if (lookahead == 'o') ADVANCE(129); + if (lookahead == 'r') ADVANCE(493); END_STATE(); case 121: - if (lookahead == 'p') ADVANCE(91); + if (lookahead == 'r') ADVANCE(129); END_STATE(); case 122: - if (lookahead == 'p') ADVANCE(92); + if (lookahead == 'r') ADVANCE(113); END_STATE(); case 123: - if (lookahead == 'p') ADVANCE(94); + if (lookahead == 'r') ADVANCE(112); END_STATE(); case 124: - if (lookahead == 'r') ADVANCE(466); + if (lookahead == 'r') ADVANCE(93); END_STATE(); case 125: - if (lookahead == 'r') ADVANCE(487); + if (lookahead == 's') ADVANCE(126); END_STATE(); case 126: - if (lookahead == 'r') ADVANCE(134); + if (lookahead == 's') ADVANCE(91); END_STATE(); case 127: - if (lookahead == 'r') ADVANCE(118); + if (lookahead == 's') ADVANCE(84); END_STATE(); case 128: - if (lookahead == 'r') ADVANCE(117); + if (lookahead == 's') ADVANCE(85); END_STATE(); case 129: - if (lookahead == 'r') ADVANCE(98); + if (lookahead == 't') ADVANCE(470); END_STATE(); case 130: - if (lookahead == 's') ADVANCE(131); + if (lookahead == 't') ADVANCE(487); END_STATE(); case 131: - if (lookahead == 's') ADVANCE(96); + if (lookahead == 't') ADVANCE(77); END_STATE(); case 132: - if (lookahead == 's') ADVANCE(89); + if (lookahead == 't') ADVANCE(138); END_STATE(); case 133: - if (lookahead == 's') ADVANCE(90); + if (lookahead == 't') ADVANCE(139); END_STATE(); case 134: - if (lookahead == 't') ADVANCE(464); + if (lookahead == 'u') ADVANCE(82); END_STATE(); case 135: - if (lookahead == 't') ADVANCE(481); + if (lookahead == 'u') ADVANCE(106); END_STATE(); case 136: - if (lookahead == 't') ADVANCE(82); + if (lookahead == 'w') ADVANCE(103); END_STATE(); case 137: - if (lookahead == 't') ADVANCE(143); + if (lookahead == 'y') ADVANCE(116); END_STATE(); case 138: - if (lookahead == 't') ADVANCE(144); + if (lookahead == 'y') ADVANCE(117); END_STATE(); case 139: - if (lookahead == 'u') ADVANCE(87); + if (lookahead == 'y') ADVANCE(118); END_STATE(); case 140: - if (lookahead == 'u') ADVANCE(111); + if (lookahead == '}') ADVANCE(560); END_STATE(); case 141: - if (lookahead == 'w') ADVANCE(108); - END_STATE(); - case 142: - if (lookahead == 'y') ADVANCE(121); - END_STATE(); - case 143: - if (lookahead == 'y') ADVANCE(122); - END_STATE(); - case 144: - if (lookahead == 'y') ADVANCE(123); - END_STATE(); - case 145: - if (lookahead == '}') ADVANCE(551); - END_STATE(); - case 146: if (lookahead == '0' || - lookahead == '1') ADVANCE(185); + lookahead == '1') ADVANCE(180); END_STATE(); - case 147: + case 142: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(173); + lookahead == ' ') ADVANCE(168); if (lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(176); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(171); END_STATE(); - case 148: + case 143: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(157); + lookahead == ' ') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(170); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(165); END_STATE(); - case 149: + case 144: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(158); + lookahead == ' ') ADVANCE(153); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(171); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(166); END_STATE(); - case 150: + case 145: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(160); + lookahead == ' ') ADVANCE(155); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(172); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(167); END_STATE(); - case 151: + case 146: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(174); + lookahead == ' ') ADVANCE(169); if (lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(172); END_STATE(); - case 152: + case 147: if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(175); + lookahead == ' ') ADVANCE(170); if (lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(173); END_STATE(); - case 153: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(186); + case 148: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(181); END_STATE(); - case 154: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(184); + case 149: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(179); END_STATE(); - case 155: + case 150: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(189); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(184); END_STATE(); - case 156: + case 151: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(187); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(182); END_STATE(); - case 157: + case 152: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(170); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(165); END_STATE(); - case 158: + case 153: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(171); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(166); END_STATE(); - case 159: + case 154: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(155); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(150); END_STATE(); - case 160: + case 155: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(172); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(167); END_STATE(); - case 161: + case 156: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(159); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(154); END_STATE(); - case 162: + case 157: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(161); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(156); END_STATE(); - case 163: + case 158: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(162); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(157); END_STATE(); - case 164: + case 159: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(163); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(158); END_STATE(); - case 165: + case 160: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(164); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(159); END_STATE(); - case 166: + case 161: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(165); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(160); END_STATE(); - case 167: - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); + case 162: + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(417); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(167); + lookahead == '_') ADVANCE(162); END_STATE(); - case 168: - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(411); + case 163: + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(418); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(168); + lookahead == '_') ADVANCE(163); END_STATE(); - case 169: - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); + case 164: + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(419); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(169); + lookahead == '_') ADVANCE(164); END_STATE(); - case 170: + case 165: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(26); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(25); END_STATE(); - case 171: + case 166: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(38); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36); END_STATE(); - case 172: + case 167: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(72); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(67); END_STATE(); - case 173: + case 168: if (lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(176); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(171); END_STATE(); - case 174: + case 169: if (lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(172); END_STATE(); - case 175: + case 170: if (lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(173); END_STATE(); - case 176: + case 171: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || lookahead == '=' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(25); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(24); END_STATE(); - case 177: + case 172: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || lookahead == '=' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(37); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(35); END_STATE(); - case 178: + case 173: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == '+' || ('/' <= lookahead && lookahead <= '9') || lookahead == '=' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(55); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); - case 179: - if (eof) ADVANCE(180); - if (lookahead == '\r') SKIP(179); - if (lookahead == '!') ADVANCE(529); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '$') ADVANCE(61); - if (lookahead == '%') ADVANCE(535); - if (lookahead == '&') ADVANCE(432); - if (lookahead == '(') ADVANCE(427); - if (lookahead == ')') ADVANCE(428); - if (lookahead == '*') ADVANCE(463); - if (lookahead == '+') ADVANCE(452); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(456); - if (lookahead == '.') ADVANCE(446); - if (lookahead == '/') ADVANCE(534); - if (lookahead == ':') ADVANCE(441); - if (lookahead == ';') ADVANCE(436); - if (lookahead == '<') ADVANCE(546); - if (lookahead == '=') ADVANCE(424); - if (lookahead == '>') ADVANCE(542); - if (lookahead == '?') ADVANCE(524); - if (lookahead == '@') ADVANCE(60); - if (lookahead == '[') ADVANCE(433); - if (lookahead == ']') ADVANCE(435); - if (lookahead == '^') ADVANCE(539); - if (lookahead == '_') ADVANCE(64); - if (lookahead == '`') ADVANCE(200); - if (lookahead == 'b') ADVANCE(216); - if (lookahead == 'x') ADVANCE(213); - if (lookahead == '{') ADVANCE(437); - if (lookahead == '|') ADVANCE(536); - if (lookahead == '}') ADVANCE(439); + case 174: + if (eof) ADVANCE(175); + if (lookahead == '\r') SKIP(174); + if (lookahead == '!') ADVANCE(535); + if (lookahead == '"') ADVANCE(191); + if (lookahead == '$') ADVANCE(55); + if (lookahead == '%') ADVANCE(541); + if (lookahead == '&') ADVANCE(442); + if (lookahead == '(') ADVANCE(438); + if (lookahead == ')') ADVANCE(439); + if (lookahead == '*') ADVANCE(469); + if (lookahead == '+') ADVANCE(459); + if (lookahead == ',') ADVANCE(431); + if (lookahead == '-') ADVANCE(463); + if (lookahead == '.') ADVANCE(429); + if (lookahead == '/') ADVANCE(540); + if (lookahead == ':') ADVANCE(452); + if (lookahead == ';') ADVANCE(447); + if (lookahead == '<') ADVANCE(552); + if (lookahead == '=') ADVANCE(435); + if (lookahead == '>') ADVANCE(548); + if (lookahead == '?') ADVANCE(531); + if (lookahead == '@') ADVANCE(54); + if (lookahead == '[') ADVANCE(445); + if (lookahead == ']') ADVANCE(446); + if (lookahead == '^') ADVANCE(545); + if (lookahead == '_') ADVANCE(58); + if (lookahead == '`') ADVANCE(196); + if (lookahead == 'b') ADVANCE(214); + if (lookahead == 'x') ADVANCE(211); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(542); + if (lookahead == '}') ADVANCE(450); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(179); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(413); + lookahead == ' ') SKIP(174); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(420); END_STATE(); - case 180: + case 175: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 181: + case 176: ACCEPT_TOKEN(sym_integer_literal); END_STATE(); - case 182: + case 177: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '1') ADVANCE(49); - if (lookahead == '3') ADVANCE(48); - if (lookahead == '6') ADVANCE(50); + if (lookahead == '1') ADVANCE(46); + if (lookahead == '3') ADVANCE(45); + if (lookahead == '6') ADVANCE(47); if (lookahead == '8' || lookahead == 'L' || - lookahead == 'l') ADVANCE(181); + lookahead == 'l') ADVANCE(176); END_STATE(); - case 183: + case 178: ACCEPT_TOKEN(sym_integer_literal); ADVANCE_MAP( - 'U', 188, - '_', 154, - 'i', 47, - 'u', 182, - 'B', 146, - 'b', 146, - 'L', 181, - 'l', 181, - 'O', 153, - 'o', 153, - 'X', 156, - 'x', 156, + 'U', 183, + '_', 149, + 'i', 44, + 'u', 177, + 'B', 141, + 'b', 141, + 'L', 176, + 'l', 176, + 'O', 148, + 'o', 148, + 'X', 151, + 'x', 151, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(184); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(179); END_STATE(); - case 184: + case 179: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'U') ADVANCE(188); - if (lookahead == '_') ADVANCE(154); - if (lookahead == 'i') ADVANCE(47); - if (lookahead == 'u') ADVANCE(182); + if (lookahead == 'U') ADVANCE(183); + if (lookahead == '_') ADVANCE(149); + if (lookahead == 'i') ADVANCE(44); + if (lookahead == 'u') ADVANCE(177); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(181); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(184); + lookahead == 'l') ADVANCE(176); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(179); END_STATE(); - case 185: + case 180: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'U') ADVANCE(188); - if (lookahead == '_') ADVANCE(146); - if (lookahead == 'i') ADVANCE(47); - if (lookahead == 'u') ADVANCE(182); + if (lookahead == 'U') ADVANCE(183); + if (lookahead == '_') ADVANCE(141); + if (lookahead == 'i') ADVANCE(44); + if (lookahead == 'u') ADVANCE(177); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(181); + lookahead == 'l') ADVANCE(176); if (lookahead == '0' || - lookahead == '1') ADVANCE(185); + lookahead == '1') ADVANCE(180); END_STATE(); - case 186: + case 181: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'U') ADVANCE(188); - if (lookahead == '_') ADVANCE(153); - if (lookahead == 'i') ADVANCE(47); - if (lookahead == 'u') ADVANCE(182); + if (lookahead == 'U') ADVANCE(183); + if (lookahead == '_') ADVANCE(148); + if (lookahead == 'i') ADVANCE(44); + if (lookahead == 'u') ADVANCE(177); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(181); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(186); + lookahead == 'l') ADVANCE(176); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(181); END_STATE(); - case 187: + case 182: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == 'U') ADVANCE(188); - if (lookahead == '_') ADVANCE(156); - if (lookahead == 'i') ADVANCE(47); - if (lookahead == 'u') ADVANCE(182); + if (lookahead == 'U') ADVANCE(183); + if (lookahead == '_') ADVANCE(151); + if (lookahead == 'i') ADVANCE(44); + if (lookahead == 'u') ADVANCE(177); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(181); + lookahead == 'l') ADVANCE(176); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(187); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(182); END_STATE(); - case 188: + case 183: ACCEPT_TOKEN(sym_integer_literal); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(181); + lookahead == 'l') ADVANCE(176); END_STATE(); - case 189: + case 184: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 190: + case 185: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 191: + case 186: ACCEPT_TOKEN(aux_sym_char_literal_token1); END_STATE(); - case 192: + case 187: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '*') ADVANCE(211); - if (lookahead == '/') ADVANCE(207); + if (lookahead == '*') ADVANCE(208); + if (lookahead == '/') ADVANCE(204); END_STATE(); - case 193: + case 188: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '*') ADVANCE(205); + END_STATE(); + case 189: ACCEPT_TOKEN(aux_sym_char_literal_token1); ADVANCE_MAP( - 'U', 166, - 'u', 162, - 'x', 159, - '"', 189, - '\'', 189, - '0', 189, - '\\', 189, - 'a', 189, - 'b', 189, - 'e', 189, - 'f', 189, - 'n', 189, - 'r', 189, - 't', 189, - 'v', 189, + 'U', 161, + 'u', 157, + 'x', 154, + '"', 184, + '\'', 184, + '0', 184, + '\\', 184, + 'a', 184, + 'b', 184, + 'e', 184, + 'f', 184, + 'n', 184, + 'r', 184, + 't', 184, + 'v', 184, ); END_STATE(); - case 194: + case 190: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(57); + if (lookahead == '\\') ADVANCE(51); END_STATE(); - case 195: + case 191: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 196: + case 192: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '\r') ADVANCE(196); - if (lookahead == '/') ADVANCE(198); + if (lookahead == '\r') ADVANCE(192); + if (lookahead == '/') ADVANCE(193); + if (lookahead == '<') ADVANCE(194); if (lookahead == '\t' || lookahead == 0x0b || lookahead == '\f' || - lookahead == ' ') ADVANCE(196); + lookahead == ' ') ADVANCE(192); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(199); + lookahead != '\\') ADVANCE(195); END_STATE(); - case 197: + case 193: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(199); + if (lookahead == '*') ADVANCE(195); + if (lookahead == '/') ADVANCE(195); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(199); + lookahead != '\\') ADVANCE(195); END_STATE(); - case 198: + case 194: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(197); - if (lookahead == '/') ADVANCE(199); + if (lookahead == '*') ADVANCE(195); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(199); + lookahead != '\\') ADVANCE(195); END_STATE(); - case 199: + case 195: ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(199); + lookahead != '\\') ADVANCE(195); END_STATE(); - case 200: + case 196: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 201: + case 197: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(204); - if (lookahead == '`') ADVANCE(206); - if (lookahead != 0) ADVANCE(201); + if (lookahead == '\n') ADVANCE(201); + if (lookahead == '`') ADVANCE(203); + if (lookahead != 0) ADVANCE(197); END_STATE(); - case 202: + case 198: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\r') ADVANCE(202); - if (lookahead == '/') ADVANCE(203); - if (lookahead == '`') ADVANCE(73); + if (lookahead == '\r') ADVANCE(198); + if (lookahead == '/') ADVANCE(199); + if (lookahead == '<') ADVANCE(200); + if (lookahead == '`') ADVANCE(68); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(202); - if (lookahead != 0) ADVANCE(204); + lookahead == ' ') ADVANCE(198); + if (lookahead != 0) ADVANCE(201); END_STATE(); - case 203: + case 199: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(212); - if (lookahead == '/') ADVANCE(201); - if (lookahead == '`') ADVANCE(73); - if (lookahead != 0) ADVANCE(204); + if (lookahead == '*') ADVANCE(209); + if (lookahead == '/') ADVANCE(197); + if (lookahead == '`') ADVANCE(68); + if (lookahead != 0) ADVANCE(201); END_STATE(); - case 204: + case 200: ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '`') ADVANCE(73); - if (lookahead != 0) ADVANCE(204); + if (lookahead == '*') ADVANCE(206); + if (lookahead == '`') ADVANCE(68); + if (lookahead != 0) ADVANCE(201); END_STATE(); - case 205: + case 201: + ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); + if (lookahead == '`') ADVANCE(68); + if (lookahead != 0) ADVANCE(201); + END_STATE(); + case 202: ACCEPT_TOKEN(sym_bytes_literal); END_STATE(); - case 206: + case 203: ACCEPT_TOKEN(aux_sym_line_comment_token1); - if (lookahead == '`') ADVANCE(201); + if (lookahead == '`') ADVANCE(197); if (lookahead != 0 && - lookahead != '\n') ADVANCE(207); + lookahead != '\n') ADVANCE(204); END_STATE(); - case 207: + case 204: ACCEPT_TOKEN(aux_sym_line_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(207); + lookahead != '\n') ADVANCE(204); + END_STATE(); + case 205: + ACCEPT_TOKEN(anon_sym_LT_STAR); + END_STATE(); + case 206: + ACCEPT_TOKEN(anon_sym_LT_STAR); + if (lookahead == '`') ADVANCE(68); + if (lookahead != 0) ADVANCE(201); + END_STATE(); + case 207: + ACCEPT_TOKEN(anon_sym_STAR_GT); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_SLASH_STAR_STAR); + ACCEPT_TOKEN(anon_sym_SLASH_STAR); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_SLASH_STAR_STAR); - if (lookahead == '`') ADVANCE(73); - if (lookahead != 0) ADVANCE(204); + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + if (lookahead == '`') ADVANCE(68); + if (lookahead != 0) ADVANCE(201); END_STATE(); case 210: ACCEPT_TOKEN(anon_sym_STAR_SLASH); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_SLASH_STAR); - if (lookahead == '*') ADVANCE(208); + ACCEPT_TOKEN(sym_ident); + if (lookahead == '"') ADVANCE(143); + if (lookahead == '\'') ADVANCE(144); + if (lookahead == '`') ADVANCE(145); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_SLASH_STAR); - if (lookahead == '*') ADVANCE(209); - if (lookahead == '`') ADVANCE(73); - if (lookahead != 0) ADVANCE(204); + ACCEPT_TOKEN(sym_ident); + if (lookahead == '"') ADVANCE(142); + if (lookahead == '\'') ADVANCE(146); + if (lookahead == '`') ADVANCE(147); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 213: ACCEPT_TOKEN(sym_ident); - if (lookahead == '"') ADVANCE(148); - if (lookahead == '\'') ADVANCE(149); - if (lookahead == '`') ADVANCE(150); + if (lookahead == '4') ADVANCE(212); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(217); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 214: ACCEPT_TOKEN(sym_ident); - if (lookahead == '"') ADVANCE(147); - if (lookahead == '\'') ADVANCE(151); - if (lookahead == '`') ADVANCE(152); + if (lookahead == '6') ADVANCE(213); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(217); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 215: ACCEPT_TOKEN(sym_ident); - if (lookahead == '4') ADVANCE(214); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(215); END_STATE(); case 216: - ACCEPT_TOKEN(sym_ident); - if (lookahead == '6') ADVANCE(215); + ACCEPT_TOKEN(sym_ct_ident); + if (lookahead == '_') ADVANCE(249); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 217: - ACCEPT_TOKEN(sym_ident); + ACCEPT_TOKEN(sym_ct_ident); + if (lookahead == 'a') ADVANCE(335); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(217); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 218: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == '_') ADVANCE(250); + if (lookahead == 'a') ADVANCE(225); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 219: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(333); + if (lookahead == 'a') ADVANCE(327); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 220: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(227); + if (lookahead == 'a') ADVANCE(396); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 221: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(325); + if (lookahead == 'a') ADVANCE(403); + if (lookahead == 'i') ADVANCE(345); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 222: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(389); + if (lookahead == 'a') ADVANCE(226); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 223: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(397); - if (lookahead == 'i') ADVANCE(341); + if (lookahead == 'a') ADVANCE(383); + if (lookahead == 'o') ADVANCE(338); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 224: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(228); + if (lookahead == 'a') ADVANCE(236); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 225: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(377); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(350); + if (lookahead == 'e') ADVANCE(408); + if (lookahead == 'r') ADVANCE(276); + if (lookahead == 's') ADVANCE(364); + if (lookahead == 't') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 226: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(237); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == 'c') ADVANCE(350); + if (lookahead == 'e') ADVANCE(408); + if (lookahead == 'r') ADVANCE(276); + if (lookahead == 't') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 227: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(369); - if (lookahead == 'c') ADVANCE(346); - if (lookahead == 'e') ADVANCE(401); - if (lookahead == 'r') ADVANCE(272); - if (lookahead == 's') ADVANCE(358); - if (lookahead == 't') ADVANCE(404); + if (lookahead == 'a') ADVANCE(390); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 228: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(369); - if (lookahead == 'c') ADVANCE(346); - if (lookahead == 'e') ADVANCE(401); - if (lookahead == 'r') ADVANCE(272); - if (lookahead == 't') ADVANCE(404); + if (lookahead == 'a') ADVANCE(247); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 229: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(248); + if (lookahead == 'a') ADVANCE(251); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 230: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(251); + if (lookahead == 'a') ADVANCE(394); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 231: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(387); + if (lookahead == 'a') ADVANCE(400); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 232: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(393); + if (lookahead == 'a') ADVANCE(336); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 233: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(330); + if (lookahead == 'a') ADVANCE(332); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 234: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(334); + if (lookahead == 'a') ADVANCE(337); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 235: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'a') ADVANCE(335); + if (lookahead == 'b') ADVANCE(271); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 236: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'b') ADVANCE(271); + if (lookahead == 'b') ADVANCE(331); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 237: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'b') ADVANCE(329); + if (lookahead == 'c') ADVANCE(310); + if (lookahead == 'l') ADVANCE(384); + if (lookahead == 'm') ADVANCE(235); + if (lookahead == 'n') ADVANCE(253); + if (lookahead == 'r') ADVANCE(374); + if (lookahead == 'v') ADVANCE(219); + if (lookahead == 'x') ADVANCE(272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 238: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(308); - if (lookahead == 'l') ADVANCE(378); - if (lookahead == 'm') ADVANCE(236); - if (lookahead == 'n') ADVANCE(253); - if (lookahead == 'r') ADVANCE(367); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(270); + if (lookahead == 'c') ADVANCE(310); + if (lookahead == 'l') ADVANCE(384); + if (lookahead == 'm') ADVANCE(235); + if (lookahead == 'n') ADVANCE(258); + if (lookahead == 'r') ADVANCE(374); + if (lookahead == 'v') ADVANCE(219); + if (lookahead == 'x') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 239: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(308); - if (lookahead == 'l') ADVANCE(378); - if (lookahead == 'm') ADVANCE(236); - if (lookahead == 'n') ADVANCE(256); - if (lookahead == 'r') ADVANCE(367); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(395); + if (lookahead == 'c') ADVANCE(310); + if (lookahead == 'm') ADVANCE(235); + if (lookahead == 'n') ADVANCE(257); + if (lookahead == 'r') ADVANCE(374); + if (lookahead == 'v') ADVANCE(219); + if (lookahead == 'x') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 240: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(308); - if (lookahead == 'm') ADVANCE(236); - if (lookahead == 'n') ADVANCE(257); - if (lookahead == 'r') ADVANCE(367); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(395); + if (lookahead == 'c') ADVANCE(310); + if (lookahead == 'm') ADVANCE(235); + if (lookahead == 'n') ADVANCE(258); + if (lookahead == 'r') ADVANCE(374); + if (lookahead == 'v') ADVANCE(219); + if (lookahead == 'x') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 241: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(308); - if (lookahead == 'm') ADVANCE(236); - if (lookahead == 'n') ADVANCE(256); - if (lookahead == 'r') ADVANCE(367); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(395); + if (lookahead == 'c') ADVANCE(310); + if (lookahead == 'm') ADVANCE(235); + if (lookahead == 'n') ADVANCE(260); + if (lookahead == 'r') ADVANCE(374); + if (lookahead == 'v') ADVANCE(219); + if (lookahead == 'x') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 242: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(308); - if (lookahead == 'm') ADVANCE(236); - if (lookahead == 'n') ADVANCE(259); - if (lookahead == 'r') ADVANCE(367); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(395); + if (lookahead == 'c') ADVANCE(310); + if (lookahead == 'm') ADVANCE(235); + if (lookahead == 'n') ADVANCE(261); + if (lookahead == 'r') ADVANCE(374); + if (lookahead == 'v') ADVANCE(219); + if (lookahead == 'x') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 243: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(308); - if (lookahead == 'm') ADVANCE(236); - if (lookahead == 'n') ADVANCE(260); - if (lookahead == 'r') ADVANCE(367); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(395); + if (lookahead == 'c') ADVANCE(310); + if (lookahead == 'm') ADVANCE(235); + if (lookahead == 'r') ADVANCE(374); + if (lookahead == 'v') ADVANCE(219); + if (lookahead == 'x') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 244: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(308); - if (lookahead == 'm') ADVANCE(236); - if (lookahead == 'r') ADVANCE(367); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(395); + if (lookahead == 'c') ADVANCE(477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 245: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(471); + if (lookahead == 'c') ADVANCE(311); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 246: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(309); + if (lookahead == 'c') ADVANCE(328); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 247: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(326); + if (lookahead == 'c') ADVANCE(312); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 248: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(310); + if (lookahead == 'c') ADVANCE(313); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 249: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(311); + if (lookahead == 'c') ADVANCE(357); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 250: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(348); + if (lookahead == 'c') ADVANCE(227); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 251: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'c') ADVANCE(312); + if (lookahead == 'c') ADVANCE(314); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 252: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(509); + if (lookahead == 'd') ADVANCE(517); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 253: ACCEPT_TOKEN(sym_ct_ident); @@ -7613,144 +7859,143 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 254: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(512); + if (lookahead == 'd') ADVANCE(516); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 255: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(499); + if (lookahead == 'd') ADVANCE(513); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 256: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(319); + if (lookahead == 'd') ADVANCE(515); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 257: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(376); + if (lookahead == 'd') ADVANCE(382); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 258: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(267); + if (lookahead == 'd') ADVANCE(319); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 259: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(302); + if (lookahead == 'd') ADVANCE(268); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 260: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'd') ADVANCE(303); + if (lookahead == 'd') ADVANCE(305); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 261: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(286); + if (lookahead == 'd') ADVANCE(302); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 262: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(480); + if (lookahead == 'e') ADVANCE(288); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 263: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(478); + if (lookahead == 'e') ADVANCE(486); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 264: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(300); + if (lookahead == 'e') ADVANCE(484); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 265: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(557); + if (lookahead == 'e') ADVANCE(300); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 266: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(508); + if (lookahead == 'e') ADVANCE(568); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 267: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(469); + if (lookahead == 'e') ADVANCE(519); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 268: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(559); + if (lookahead == 'e') ADVANCE(475); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 269: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(511); + if (lookahead == 'e') ADVANCE(566); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 270: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(245); - if (lookahead == 't') ADVANCE(344); + if (lookahead == 'e') ADVANCE(520); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 271: ACCEPT_TOKEN(sym_ct_ident); @@ -7758,1830 +8003,1903 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 272: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(288); + if (lookahead == 'e') ADVANCE(244); + if (lookahead == 't') ADVANCE(348); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 273: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(392); + if (lookahead == 'e') ADVANCE(220); + if (lookahead == 'o') ADVANCE(369); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 274: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(222); - if (lookahead == 'o') ADVANCE(363); + if (lookahead == 'e') ADVANCE(220); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 275: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(222); + if (lookahead == 'e') ADVANCE(341); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 276: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(255); + if (lookahead == 'e') ADVANCE(290); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 277: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(370); - if (lookahead == 'i') ADVANCE(307); + if (lookahead == 'e') ADVANCE(376); + if (lookahead == 'i') ADVANCE(309); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 278: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(349); + if (lookahead == 'e') ADVANCE(353); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 279: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(350); + if (lookahead == 'e') ADVANCE(399); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 280: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(230); + if (lookahead == 'e') ADVANCE(256); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 281: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(299); + if (lookahead == 'e') ADVANCE(354); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 282: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(354); + if (lookahead == 'e') ADVANCE(303); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 283: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'e') ADVANCE(356); + if (lookahead == 'e') ADVANCE(229); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 284: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(474); - if (lookahead == 'n') ADVANCE(247); - if (lookahead == 's') ADVANCE(218); + if (lookahead == 'e') ADVANCE(359); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 285: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(474); - if (lookahead == 's') ADVANCE(218); + if (lookahead == 'e') ADVANCE(361); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 286: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'f') ADVANCE(480); + if (lookahead == 'n') ADVANCE(246); + if (lookahead == 's') ADVANCE(216); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 287: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(476); + if (lookahead == 'f') ADVANCE(480); + if (lookahead == 's') ADVANCE(216); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 288: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(505); + if (lookahead == 'f') ADVANCE(221); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 289: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(494); + if (lookahead == 'f') ADVANCE(482); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 290: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(500); + if (lookahead == 'f') ADVANCE(505); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 291: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(553); + if (lookahead == 'f') ADVANCE(500); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 292: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(492); + if (lookahead == 'f') ADVANCE(511); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 293: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(496); + if (lookahead == 'f') ADVANCE(562); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 294: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(495); + if (lookahead == 'f') ADVANCE(498); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 295: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(493); + if (lookahead == 'f') ADVANCE(502); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 296: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(403); + if (lookahead == 'f') ADVANCE(501); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 297: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(298); - if (lookahead == 'r') ADVANCE(510); + if (lookahead == 'f') ADVANCE(499); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 298: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(380); + if (lookahead == 'f') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 299: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(318); + if (lookahead == 'f') ADVANCE(304); + if (lookahead == 'r') ADVANCE(518); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 300: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(371); - if (lookahead == 'o') ADVANCE(291); + if (lookahead == 'f') ADVANCE(377); + if (lookahead == 'o') ADVANCE(293); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 301: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(352); - if (lookahead == 'i') ADVANCE(287); - if (lookahead == 's') ADVANCE(400); + if (lookahead == 'f') ADVANCE(356); + if (lookahead == 'i') ADVANCE(289); + if (lookahead == 's') ADVANCE(407); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 302: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(352); + if (lookahead == 'f') ADVANCE(356); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 303: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'f') ADVANCE(357); + if (lookahead == 'f') ADVANCE(320); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 304: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'g') ADVANCE(504); + if (lookahead == 'f') ADVANCE(386); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 305: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'g') ADVANCE(338); + if (lookahead == 'f') ADVANCE(362); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 306: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'g') ADVANCE(321); + if (lookahead == 'g') ADVANCE(504); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 307: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'g') ADVANCE(340); + if (lookahead == 'g') ADVANCE(342); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 308: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'h') ADVANCE(345); + if (lookahead == 'g') ADVANCE(322); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 309: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'h') ADVANCE(483); + if (lookahead == 'g') ADVANCE(343); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 310: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'h') ADVANCE(489); + if (lookahead == 'h') ADVANCE(349); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 311: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'h') ADVANCE(485); + if (lookahead == 'h') ADVANCE(489); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 312: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'h') ADVANCE(491); + if (lookahead == 'h') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 313: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(406); - if (lookahead == 't') ADVANCE(368); - if (lookahead == 'w') ADVANCE(317); + if (lookahead == 'h') ADVANCE(491); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 314: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(406); - if (lookahead == 't') ADVANCE(368); + if (lookahead == 'h') ADVANCE(497); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 315: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(305); + if (lookahead == 'i') ADVANCE(413); + if (lookahead == 't') ADVANCE(375); + if (lookahead == 'w') ADVANCE(318); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 316: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(307); + if (lookahead == 'i') ADVANCE(413); + if (lookahead == 't') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 317: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(390); + if (lookahead == 'i') ADVANCE(307); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 318: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(341); + if (lookahead == 'i') ADVANCE(397); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 319: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(287); + if (lookahead == 'i') ADVANCE(289); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 320: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(336); + if (lookahead == 'i') ADVANCE(345); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 321: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(296); + if (lookahead == 'i') ADVANCE(340); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 322: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'i') ADVANCE(391); + if (lookahead == 'i') ADVANCE(298); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 323: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(315); - if (lookahead == 'n') ADVANCE(252); - if (lookahead == 's') ADVANCE(375); + if (lookahead == 'i') ADVANCE(309); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 324: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(315); - if (lookahead == 'n') ADVANCE(252); - if (lookahead == 's') ADVANCE(382); + if (lookahead == 'i') ADVANCE(398); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 325: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(498); + if (lookahead == 'l') ADVANCE(317); + if (lookahead == 'n') ADVANCE(252); + if (lookahead == 'p') ADVANCE(363); + if (lookahead == 's') ADVANCE(381); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 326: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(396); + if (lookahead == 'l') ADVANCE(317); + if (lookahead == 'n') ADVANCE(252); + if (lookahead == 'p') ADVANCE(363); + if (lookahead == 's') ADVANCE(388); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 327: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(384); + if (lookahead == 'l') ADVANCE(509); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 328: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(231); + if (lookahead == 'l') ADVANCE(404); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 329: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(269); + if (lookahead == 'l') ADVANCE(391); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 330: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'l') ADVANCE(394); + if (lookahead == 'l') ADVANCE(230); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 331: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'm') ADVANCE(236); - if (lookahead == 'v') ADVANCE(221); - if (lookahead == 'x') ADVANCE(395); + if (lookahead == 'l') ADVANCE(270); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 332: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'm') ADVANCE(555); + if (lookahead == 'l') ADVANCE(401); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 333: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'm') ADVANCE(278); + if (lookahead == 'm') ADVANCE(235); + if (lookahead == 'v') ADVANCE(219); + if (lookahead == 'x') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 334: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'm') ADVANCE(282); + if (lookahead == 'm') ADVANCE(564); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 335: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'm') ADVANCE(283); + if (lookahead == 'm') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 336: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(306); + if (lookahead == 'm') ADVANCE(284); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 337: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(379); - if (lookahead == 'u') ADVANCE(339); + if (lookahead == 'm') ADVANCE(285); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 338: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(353); + if (lookahead == 'n') ADVANCE(250); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 339: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(386); + if (lookahead == 'n') ADVANCE(385); + if (lookahead == 'u') ADVANCE(344); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 340: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(226); + if (lookahead == 'n') ADVANCE(308); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 341: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(276); + if (lookahead == 'n') ADVANCE(255); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 342: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(381); + if (lookahead == 'n') ADVANCE(358); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 343: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(234); + if (lookahead == 'n') ADVANCE(224); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 344: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'n') ADVANCE(235); + if (lookahead == 'n') ADVANCE(393); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 345: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(473); + if (lookahead == 'n') ADVANCE(280); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 346: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(337); + if (lookahead == 'n') ADVANCE(387); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 347: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(332); + if (lookahead == 'n') ADVANCE(232); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 348: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(342); + if (lookahead == 'n') ADVANCE(234); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 349: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(289); + if (lookahead == 'o') ADVANCE(479); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 350: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(290); + if (lookahead == 'o') ADVANCE(339); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 351: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(364); + if (lookahead == 'o') ADVANCE(338); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 352: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(365); + if (lookahead == 'o') ADVANCE(334); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 353: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(292); + if (lookahead == 'o') ADVANCE(291); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 354: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(293); + if (lookahead == 'o') ADVANCE(292); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 355: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(294); + if (lookahead == 'o') ADVANCE(370); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 356: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(295); + if (lookahead == 'o') ADVANCE(371); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 357: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'o') ADVANCE(373); + if (lookahead == 'o') ADVANCE(346); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 358: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'p') ADVANCE(328); + if (lookahead == 'o') ADVANCE(294); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 359: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'p') ADVANCE(264); + if (lookahead == 'o') ADVANCE(295); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 360: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'p') ADVANCE(265); + if (lookahead == 'o') ADVANCE(296); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 361: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'p') ADVANCE(366); + if (lookahead == 'o') ADVANCE(297); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 362: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'p') ADVANCE(268); + if (lookahead == 'o') ADVANCE(379); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 363: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(486); + if (lookahead == 'p') ADVANCE(275); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 364: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(467); + if (lookahead == 'p') ADVANCE(330); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 365: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(488); + if (lookahead == 'p') ADVANCE(265); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 366: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(506); + if (lookahead == 'p') ADVANCE(372); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 367: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(351); + if (lookahead == 'p') ADVANCE(266); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 368: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(320); + if (lookahead == 'p') ADVANCE(269); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 369: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(304); + if (lookahead == 'r') ADVANCE(492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 370: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(383); + if (lookahead == 'r') ADVANCE(473); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 371: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(347); + if (lookahead == 'r') ADVANCE(494); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 372: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(266); + if (lookahead == 'r') ADVANCE(506); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 373: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'r') ADVANCE(280); + if (lookahead == 'r') ADVANCE(306); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 374: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(218); + if (lookahead == 'r') ADVANCE(355); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 375: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(277); + if (lookahead == 'r') ADVANCE(321); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 376: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(400); + if (lookahead == 'r') ADVANCE(389); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 377: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(262); + if (lookahead == 'r') ADVANCE(352); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 378: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(263); + if (lookahead == 'r') ADVANCE(267); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 379: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(385); + if (lookahead == 'r') ADVANCE(283); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 380: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(273); + if (lookahead == 's') ADVANCE(216); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 381: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(388); + if (lookahead == 's') ADVANCE(277); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 382: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 's') ADVANCE(316); + if (lookahead == 's') ADVANCE(407); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 383: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(465); + if (lookahead == 's') ADVANCE(263); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 384: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(482); + if (lookahead == 's') ADVANCE(264); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 385: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(503); + if (lookahead == 's') ADVANCE(392); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 386: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(507); + if (lookahead == 's') ADVANCE(279); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 387: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(548); + if (lookahead == 's') ADVANCE(395); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 388: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(502); + if (lookahead == 's') ADVANCE(323); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 389: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(398); + if (lookahead == 't') ADVANCE(471); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 390: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(246); + if (lookahead == 't') ADVANCE(514); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 391: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(249); + if (lookahead == 't') ADVANCE(488); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 392: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(355); + if (lookahead == 't') ADVANCE(503); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 393: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(404); + if (lookahead == 't') ADVANCE(507); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 394: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(405); + if (lookahead == 't') ADVANCE(557); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 395: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 't') ADVANCE(344); + if (lookahead == 't') ADVANCE(510); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 396: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'u') ADVANCE(258); + if (lookahead == 't') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 397: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'u') ADVANCE(327); + if (lookahead == 't') ADVANCE(245); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 398: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'u') ADVANCE(372); + if (lookahead == 't') ADVANCE(248); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 399: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'v') ADVANCE(233); + if (lookahead == 't') ADVANCE(360); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 400: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'w') ADVANCE(322); + if (lookahead == 't') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 401: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'x') ADVANCE(361); + if (lookahead == 't') ADVANCE(412); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 402: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'y') ADVANCE(359); + if (lookahead == 't') ADVANCE(348); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 403: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'y') ADVANCE(501); + if (lookahead == 'u') ADVANCE(329); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 404: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'y') ADVANCE(360); + if (lookahead == 'u') ADVANCE(259); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 405: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'y') ADVANCE(362); + if (lookahead == 'u') ADVANCE(378); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 406: ACCEPT_TOKEN(sym_ct_ident); - if (lookahead == 'z') ADVANCE(279); + if (lookahead == 'v') ADVANCE(233); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 407: ACCEPT_TOKEN(sym_ct_ident); + if (lookahead == 'w') ADVANCE(324); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 408: - ACCEPT_TOKEN(sym_at_ident); + ACCEPT_TOKEN(sym_ct_ident); + if (lookahead == 'x') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 409: - ACCEPT_TOKEN(sym_hash_ident); + ACCEPT_TOKEN(sym_ct_ident); + if (lookahead == 'y') ADVANCE(512); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(409); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 410: - ACCEPT_TOKEN(sym_type_ident); + ACCEPT_TOKEN(sym_ct_ident); + if (lookahead == 'y') ADVANCE(365); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 411: - ACCEPT_TOKEN(sym_ct_type_ident); + ACCEPT_TOKEN(sym_ct_ident); + if (lookahead == 'y') ADVANCE(367); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(411); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 412: - ACCEPT_TOKEN(sym_at_type_ident); + ACCEPT_TOKEN(sym_ct_ident); + if (lookahead == 'y') ADVANCE(368); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 413: - ACCEPT_TOKEN(sym_const_ident); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); + ACCEPT_TOKEN(sym_ct_ident); + if (lookahead == 'z') ADVANCE(281); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(413); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(414); END_STATE(); case 414: - ACCEPT_TOKEN(sym_const_ident); + ACCEPT_TOKEN(sym_ct_ident); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(414); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 415: - ACCEPT_TOKEN(sym_ct_const_ident); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(411); + ACCEPT_TOKEN(sym_at_ident); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(415); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(415); END_STATE(); case 416: - ACCEPT_TOKEN(sym_ct_const_ident); + ACCEPT_TOKEN(sym_hash_ident); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(416); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(416); END_STATE(); case 417: - ACCEPT_TOKEN(sym_builtin); + ACCEPT_TOKEN(sym_type_ident); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(417); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(417); END_STATE(); case 418: - ACCEPT_TOKEN(sym_builtin); + ACCEPT_TOKEN(sym_ct_type_ident); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(418); END_STATE(); case 419: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(sym_at_type_ident); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(419); END_STATE(); case 420: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(sym_const_ident); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(417); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(420); END_STATE(); case 421: - ACCEPT_TOKEN(anon_sym_LPAREN_LT); + ACCEPT_TOKEN(sym_const_ident); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(421); END_STATE(); case 422: - ACCEPT_TOKEN(anon_sym_GT_RPAREN); + ACCEPT_TOKEN(sym_ct_const_ident); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(418); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(422); END_STATE(); case 423: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(sym_ct_const_ident); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(423); END_STATE(); case 424: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(540); + ACCEPT_TOKEN(sym_builtin); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(424); END_STATE(); case 425: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(540); - if (lookahead == '>') ADVANCE(448); + ACCEPT_TOKEN(sym_builtin); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(425); END_STATE(); case 426: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 427: - ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == '<') ADVANCE(421); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 428: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(454); END_STATE(); case 429: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(453); END_STATE(); case 430: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(42); END_STATE(); case 431: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(449); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 432: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(449); - if (lookahead == '=') ADVANCE(520); + ACCEPT_TOKEN(anon_sym_LPAREN_LT); END_STATE(); case 433: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_GT_RPAREN); END_STATE(); case 434: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '<') ADVANCE(560); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 435: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(546); END_STATE(); case 436: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(546); + if (lookahead == '>') ADVANCE(455); END_STATE(); case 437: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 438: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '|') ADVANCE(550); + ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == '<') ADVANCE(432); END_STATE(); case 439: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 440: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 441: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(419); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 442: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(457); + if (lookahead == '=') ADVANCE(528); END_STATE(); case 443: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(429); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(456); END_STATE(); case 444: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 445: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(443); + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '<') ADVANCE(569); END_STATE(); case 446: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(442); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 447: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(44); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 448: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 449: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '|') ADVANCE(559); END_STATE(); case 450: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 451: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(532); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 452: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(532); - if (lookahead == '=') ADVANCE(513); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(426); END_STATE(); case 453: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(513); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 454: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(440); END_STATE(); case 455: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(533); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 456: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(533); - if (lookahead == '=') ADVANCE(514); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 457: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(514); + ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '&') ADVANCE(555); END_STATE(); case 458: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 459: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(518); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(538); + if (lookahead == '=') ADVANCE(521); END_STATE(); case 460: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(537); END_STATE(); case 461: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(519); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 462: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(539); END_STATE(); case 463: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(515); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(539); + if (lookahead == '=') ADVANCE(522); END_STATE(); case 464: - ACCEPT_TOKEN(anon_sym_DOLLARassert); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 465: - ACCEPT_TOKEN(anon_sym_DOLLARassert); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(526); END_STATE(); case 466: - ACCEPT_TOKEN(anon_sym_DOLLARerror); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 467: - ACCEPT_TOKEN(anon_sym_DOLLARerror); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(527); END_STATE(); case 468: - ACCEPT_TOKEN(anon_sym_DOLLARinclude); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 469: - ACCEPT_TOKEN(anon_sym_DOLLARinclude); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(523); END_STATE(); case 470: - ACCEPT_TOKEN(anon_sym_DOLLARexec); + ACCEPT_TOKEN(anon_sym_DOLLARassert); END_STATE(); case 471: - ACCEPT_TOKEN(anon_sym_DOLLARexec); + ACCEPT_TOKEN(anon_sym_DOLLARassert); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 472: - ACCEPT_TOKEN(anon_sym_DOLLARecho); + ACCEPT_TOKEN(anon_sym_DOLLARerror); END_STATE(); case 473: - ACCEPT_TOKEN(anon_sym_DOLLARecho); + ACCEPT_TOKEN(anon_sym_DOLLARerror); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 474: - ACCEPT_TOKEN(anon_sym_DOLLARif); + ACCEPT_TOKEN(anon_sym_DOLLARinclude); + END_STATE(); + case 475: + ACCEPT_TOKEN(anon_sym_DOLLARinclude); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); - END_STATE(); - case 475: - ACCEPT_TOKEN(anon_sym_DOLLARendif); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 476: - ACCEPT_TOKEN(anon_sym_DOLLARendif); + ACCEPT_TOKEN(anon_sym_DOLLARexec); + END_STATE(); + case 477: + ACCEPT_TOKEN(anon_sym_DOLLARexec); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); - END_STATE(); - case 477: - ACCEPT_TOKEN(anon_sym_DOLLARelse); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 478: - ACCEPT_TOKEN(anon_sym_DOLLARelse); + ACCEPT_TOKEN(anon_sym_DOLLARecho); + END_STATE(); + case 479: + ACCEPT_TOKEN(anon_sym_DOLLARecho); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); - END_STATE(); - case 479: - ACCEPT_TOKEN(anon_sym_DOLLARcase); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 480: - ACCEPT_TOKEN(anon_sym_DOLLARcase); + ACCEPT_TOKEN(anon_sym_DOLLARif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 481: - ACCEPT_TOKEN(anon_sym_DOLLARdefault); + ACCEPT_TOKEN(anon_sym_DOLLARendif); END_STATE(); case 482: - ACCEPT_TOKEN(anon_sym_DOLLARdefault); + ACCEPT_TOKEN(anon_sym_DOLLARendif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 483: - ACCEPT_TOKEN(anon_sym_DOLLARswitch); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ACCEPT_TOKEN(anon_sym_DOLLARelse); END_STATE(); case 484: - ACCEPT_TOKEN(anon_sym_DOLLARendswitch); - END_STATE(); - case 485: - ACCEPT_TOKEN(anon_sym_DOLLARendswitch); + ACCEPT_TOKEN(anon_sym_DOLLARelse); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); + END_STATE(); + case 485: + ACCEPT_TOKEN(anon_sym_DOLLARcase); END_STATE(); case 486: - ACCEPT_TOKEN(anon_sym_DOLLARfor); - if (lookahead == 'e') ADVANCE(229); + ACCEPT_TOKEN(anon_sym_DOLLARcase); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 487: - ACCEPT_TOKEN(anon_sym_DOLLARendfor); + ACCEPT_TOKEN(anon_sym_DOLLARdefault); END_STATE(); case 488: - ACCEPT_TOKEN(anon_sym_DOLLARendfor); + ACCEPT_TOKEN(anon_sym_DOLLARdefault); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 489: - ACCEPT_TOKEN(anon_sym_DOLLARforeach); + ACCEPT_TOKEN(anon_sym_DOLLARswitch); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 490: - ACCEPT_TOKEN(anon_sym_DOLLARendforeach); + ACCEPT_TOKEN(anon_sym_DOLLARendswitch); END_STATE(); case 491: - ACCEPT_TOKEN(anon_sym_DOLLARendforeach); + ACCEPT_TOKEN(anon_sym_DOLLARendswitch); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 492: - ACCEPT_TOKEN(anon_sym_DOLLARalignof); + ACCEPT_TOKEN(anon_sym_DOLLARfor); + if (lookahead == 'e') ADVANCE(228); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 493: - ACCEPT_TOKEN(anon_sym_DOLLARextnameof); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ACCEPT_TOKEN(anon_sym_DOLLARendfor); END_STATE(); case 494: - ACCEPT_TOKEN(anon_sym_DOLLARnameof); + ACCEPT_TOKEN(anon_sym_DOLLARendfor); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 495: - ACCEPT_TOKEN(anon_sym_DOLLARoffsetof); + ACCEPT_TOKEN(anon_sym_DOLLARforeach); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 496: - ACCEPT_TOKEN(anon_sym_DOLLARqnameof); + ACCEPT_TOKEN(anon_sym_DOLLARendforeach); + END_STATE(); + case 497: + ACCEPT_TOKEN(anon_sym_DOLLARendforeach); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); - END_STATE(); - case 497: - ACCEPT_TOKEN(anon_sym_DOLLAReval); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 498: - ACCEPT_TOKEN(anon_sym_DOLLAReval); - if (lookahead == 't') ADVANCE(405); + ACCEPT_TOKEN(anon_sym_DOLLARalignof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 499: - ACCEPT_TOKEN(anon_sym_DOLLARdefined); + ACCEPT_TOKEN(anon_sym_DOLLARextnameof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 500: - ACCEPT_TOKEN(anon_sym_DOLLARsizeof); + ACCEPT_TOKEN(anon_sym_DOLLARnameof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 501: - ACCEPT_TOKEN(anon_sym_DOLLARstringify); + ACCEPT_TOKEN(anon_sym_DOLLARoffsetof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 502: - ACCEPT_TOKEN(anon_sym_DOLLARis_const); + ACCEPT_TOKEN(anon_sym_DOLLARqnameof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 503: ACCEPT_TOKEN(anon_sym_DOLLARvaconst); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 504: ACCEPT_TOKEN(anon_sym_DOLLARvaarg); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 505: ACCEPT_TOKEN(anon_sym_DOLLARvaref); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 506: ACCEPT_TOKEN(anon_sym_DOLLARvaexpr); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 507: ACCEPT_TOKEN(anon_sym_DOLLARvacount); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 508: - ACCEPT_TOKEN(anon_sym_DOLLARfeature); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ACCEPT_TOKEN(anon_sym_DOLLAReval); END_STATE(); case 509: - ACCEPT_TOKEN(anon_sym_DOLLARand); + ACCEPT_TOKEN(anon_sym_DOLLAReval); + if (lookahead == 't') ADVANCE(412); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 510: - ACCEPT_TOKEN(anon_sym_DOLLARor); + ACCEPT_TOKEN(anon_sym_DOLLARis_const); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 511: - ACCEPT_TOKEN(anon_sym_DOLLARassignable); + ACCEPT_TOKEN(anon_sym_DOLLARsizeof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 512: - ACCEPT_TOKEN(anon_sym_DOLLARembed); + ACCEPT_TOKEN(anon_sym_DOLLARstringify); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 513: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_DOLLARappend); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 514: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_DOLLARconcat); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 515: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_DOLLARdefined); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 516: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_DOLLARembed); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 517: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_DOLLARand); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 518: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_DOLLARor); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 519: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_DOLLARfeature); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 520: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_DOLLARassignable); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); case 521: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 522: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 523: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 524: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == ':') ADVANCE(525); - if (lookahead == '?') ADVANCE(526); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 525: - ACCEPT_TOKEN(anon_sym_QMARK_COLON); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 526: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 527: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 528: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '!') ADVANCE(549); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 529: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '!') ADVANCE(549); - if (lookahead == '=') ADVANCE(541); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 530: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(541); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 531: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == ':') ADVANCE(532); + if (lookahead == '?') ADVANCE(533); END_STATE(); case 532: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_QMARK_COLON); END_STATE(); case 533: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); case 534: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(211); - if (lookahead == '/') ADVANCE(207); - if (lookahead == '=') ADVANCE(516); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 535: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(517); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '!') ADVANCE(558); + if (lookahead == '=') ADVANCE(547); END_STATE(); case 536: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(522); - if (lookahead == '|') ADVANCE(547); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 537: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(522); - if (lookahead == '|') ADVANCE(547); - if (lookahead == '}') ADVANCE(551); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 538: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + if (lookahead == '+') ADVANCE(556); END_STATE(); case 539: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(521); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 540: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(208); + if (lookahead == '/') ADVANCE(204); + if (lookahead == '=') ADVANCE(524); END_STATE(); case 541: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(525); END_STATE(); case 542: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == ')') ADVANCE(422); - if (lookahead == '=') ADVANCE(544); - if (lookahead == '>') ADVANCE(461); - if (lookahead == ']') ADVANCE(561); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(530); + if (lookahead == '|') ADVANCE(553); END_STATE(); case 543: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(544); - if (lookahead == '>') ADVANCE(461); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(530); + if (lookahead == '|') ADVANCE(553); + if (lookahead == '}') ADVANCE(560); END_STATE(); case 544: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 545: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(529); END_STATE(); case 546: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(459); - if (lookahead == '=') ADVANCE(545); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 547: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 548: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == ')') ADVANCE(433); + if (lookahead == '=') ADVANCE(550); + if (lookahead == '>') ADVANCE(467); + if (lookahead == ']') ADVANCE(570); + END_STATE(); + case 549: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(550); + if (lookahead == '>') ADVANCE(467); + END_STATE(); + case 550: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 551: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 552: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '*') ADVANCE(205); + if (lookahead == '<') ADVANCE(465); + if (lookahead == '=') ADVANCE(551); + END_STATE(); + case 553: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '|') ADVANCE(554); + END_STATE(); + case 554: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE_PIPE); + END_STATE(); + case 555: + ACCEPT_TOKEN(anon_sym_AMP_AMP_AMP); + END_STATE(); + case 556: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_PLUS); + END_STATE(); + case 557: ACCEPT_TOKEN(anon_sym_DOLLARvasplat); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 549: + case 558: ACCEPT_TOKEN(anon_sym_BANG_BANG); END_STATE(); - case 550: + case 559: ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); END_STATE(); - case 551: + case 560: ACCEPT_TOKEN(anon_sym_PIPE_RBRACE); END_STATE(); - case 552: + case 561: ACCEPT_TOKEN(anon_sym_DOLLARtypeof); END_STATE(); - case 553: + case 562: ACCEPT_TOKEN(anon_sym_DOLLARtypeof); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 554: + case 563: ACCEPT_TOKEN(anon_sym_DOLLARtypefrom); END_STATE(); - case 555: + case 564: ACCEPT_TOKEN(anon_sym_DOLLARtypefrom); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 556: - ACCEPT_TOKEN(anon_sym_DOLLARvatype); + case 565: + ACCEPT_TOKEN(anon_sym_DOLLARevaltype); END_STATE(); - case 557: - ACCEPT_TOKEN(anon_sym_DOLLARvatype); + case 566: + ACCEPT_TOKEN(anon_sym_DOLLARevaltype); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 558: - ACCEPT_TOKEN(anon_sym_DOLLARevaltype); + case 567: + ACCEPT_TOKEN(anon_sym_DOLLARvatype); END_STATE(); - case 559: - ACCEPT_TOKEN(anon_sym_DOLLARevaltype); + case 568: + ACCEPT_TOKEN(anon_sym_DOLLARvatype); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(407); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(414); END_STATE(); - case 560: + case 569: ACCEPT_TOKEN(anon_sym_LBRACK_LT); END_STATE(); - case 561: + case 570: ACCEPT_TOKEN(anon_sym_GT_RBRACK); END_STATE(); default: @@ -10404,7 +10722,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 179}, + [1] = {.lex_state = 174}, [2] = {.lex_state = 3, .external_lex_state = 2}, [3] = {.lex_state = 3, .external_lex_state = 2}, [4] = {.lex_state = 3, .external_lex_state = 2}, @@ -10418,424 +10736,424 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [12] = {.lex_state = 3, .external_lex_state = 2}, [13] = {.lex_state = 3, .external_lex_state = 2}, [14] = {.lex_state = 4, .external_lex_state = 2}, - [15] = {.lex_state = 4, .external_lex_state = 2}, - [16] = {.lex_state = 5, .external_lex_state = 2}, + [15] = {.lex_state = 3, .external_lex_state = 2}, + [16] = {.lex_state = 4, .external_lex_state = 2}, [17] = {.lex_state = 4, .external_lex_state = 2}, [18] = {.lex_state = 5, .external_lex_state = 2}, - [19] = {.lex_state = 6, .external_lex_state = 2}, - [20] = {.lex_state = 6, .external_lex_state = 2}, - [21] = {.lex_state = 6, .external_lex_state = 2}, - [22] = {.lex_state = 5, .external_lex_state = 2}, - [23] = {.lex_state = 5, .external_lex_state = 2}, - [24] = {.lex_state = 5, .external_lex_state = 2}, - [25] = {.lex_state = 6, .external_lex_state = 2}, - [26] = {.lex_state = 6, .external_lex_state = 2}, - [27] = {.lex_state = 6, .external_lex_state = 2}, - [28] = {.lex_state = 4, .external_lex_state = 2}, - [29] = {.lex_state = 20, .external_lex_state = 2}, - [30] = {.lex_state = 20, .external_lex_state = 2}, - [31] = {.lex_state = 22, .external_lex_state = 2}, - [32] = {.lex_state = 20, .external_lex_state = 2}, + [19] = {.lex_state = 3, .external_lex_state = 2}, + [20] = {.lex_state = 3, .external_lex_state = 2}, + [21] = {.lex_state = 3, .external_lex_state = 2}, + [22] = {.lex_state = 3, .external_lex_state = 2}, + [23] = {.lex_state = 3, .external_lex_state = 2}, + [24] = {.lex_state = 3, .external_lex_state = 2}, + [25] = {.lex_state = 4, .external_lex_state = 2}, + [26] = {.lex_state = 5, .external_lex_state = 2}, + [27] = {.lex_state = 5, .external_lex_state = 2}, + [28] = {.lex_state = 5, .external_lex_state = 2}, + [29] = {.lex_state = 5, .external_lex_state = 2}, + [30] = {.lex_state = 4, .external_lex_state = 2}, + [31] = {.lex_state = 5, .external_lex_state = 2}, + [32] = {.lex_state = 17, .external_lex_state = 2}, [33] = {.lex_state = 20, .external_lex_state = 2}, - [34] = {.lex_state = 23, .external_lex_state = 2}, + [34] = {.lex_state = 20, .external_lex_state = 2}, [35] = {.lex_state = 22, .external_lex_state = 2}, - [36] = {.lex_state = 6, .external_lex_state = 2}, - [37] = {.lex_state = 23, .external_lex_state = 2}, + [36] = {.lex_state = 22, .external_lex_state = 2}, + [37] = {.lex_state = 20, .external_lex_state = 2}, [38] = {.lex_state = 20, .external_lex_state = 2}, - [39] = {.lex_state = 20, .external_lex_state = 2}, - [40] = {.lex_state = 20, .external_lex_state = 2}, - [41] = {.lex_state = 22, .external_lex_state = 2}, - [42] = {.lex_state = 23, .external_lex_state = 2}, - [43] = {.lex_state = 6, .external_lex_state = 2}, + [39] = {.lex_state = 17, .external_lex_state = 2}, + [40] = {.lex_state = 22, .external_lex_state = 2}, + [41] = {.lex_state = 17, .external_lex_state = 2}, + [42] = {.lex_state = 20, .external_lex_state = 2}, + [43] = {.lex_state = 20, .external_lex_state = 2}, [44] = {.lex_state = 20, .external_lex_state = 2}, - [45] = {.lex_state = 20, .external_lex_state = 2}, - [46] = {.lex_state = 20, .external_lex_state = 2}, - [47] = {.lex_state = 23, .external_lex_state = 2}, + [45] = {.lex_state = 17, .external_lex_state = 2}, + [46] = {.lex_state = 5, .external_lex_state = 2}, + [47] = {.lex_state = 20, .external_lex_state = 2}, [48] = {.lex_state = 20, .external_lex_state = 2}, [49] = {.lex_state = 22, .external_lex_state = 2}, - [50] = {.lex_state = 23, .external_lex_state = 2}, - [51] = {.lex_state = 22, .external_lex_state = 2}, - [52] = {.lex_state = 22, .external_lex_state = 2}, - [53] = {.lex_state = 23, .external_lex_state = 2}, - [54] = {.lex_state = 20, .external_lex_state = 2}, - [55] = {.lex_state = 5, .external_lex_state = 2}, - [56] = {.lex_state = 5, .external_lex_state = 2}, - [57] = {.lex_state = 23, .external_lex_state = 2}, - [58] = {.lex_state = 5, .external_lex_state = 2}, - [59] = {.lex_state = 5, .external_lex_state = 2}, - [60] = {.lex_state = 5, .external_lex_state = 2}, - [61] = {.lex_state = 5, .external_lex_state = 2}, - [62] = {.lex_state = 5, .external_lex_state = 2}, - [63] = {.lex_state = 5, .external_lex_state = 2}, - [64] = {.lex_state = 5, .external_lex_state = 2}, - [65] = {.lex_state = 5, .external_lex_state = 2}, - [66] = {.lex_state = 5, .external_lex_state = 2}, - [67] = {.lex_state = 5, .external_lex_state = 2}, - [68] = {.lex_state = 5, .external_lex_state = 2}, - [69] = {.lex_state = 5, .external_lex_state = 2}, - [70] = {.lex_state = 23, .external_lex_state = 2}, - [71] = {.lex_state = 5, .external_lex_state = 2}, - [72] = {.lex_state = 5, .external_lex_state = 2}, - [73] = {.lex_state = 5, .external_lex_state = 2}, - [74] = {.lex_state = 5, .external_lex_state = 2}, - [75] = {.lex_state = 5, .external_lex_state = 2}, - [76] = {.lex_state = 20, .external_lex_state = 2}, - [77] = {.lex_state = 20, .external_lex_state = 2}, - [78] = {.lex_state = 5, .external_lex_state = 2}, - [79] = {.lex_state = 5, .external_lex_state = 2}, - [80] = {.lex_state = 5, .external_lex_state = 2}, - [81] = {.lex_state = 5, .external_lex_state = 2}, - [82] = {.lex_state = 5, .external_lex_state = 2}, - [83] = {.lex_state = 5, .external_lex_state = 2}, - [84] = {.lex_state = 5, .external_lex_state = 2}, - [85] = {.lex_state = 5, .external_lex_state = 2}, - [86] = {.lex_state = 5, .external_lex_state = 2}, - [87] = {.lex_state = 5, .external_lex_state = 2}, - [88] = {.lex_state = 22, .external_lex_state = 2}, - [89] = {.lex_state = 5, .external_lex_state = 2}, - [90] = {.lex_state = 22, .external_lex_state = 2}, - [91] = {.lex_state = 5, .external_lex_state = 2}, - [92] = {.lex_state = 5, .external_lex_state = 2}, - [93] = {.lex_state = 5, .external_lex_state = 2}, - [94] = {.lex_state = 5, .external_lex_state = 2}, - [95] = {.lex_state = 5, .external_lex_state = 2}, - [96] = {.lex_state = 5, .external_lex_state = 2}, - [97] = {.lex_state = 5, .external_lex_state = 2}, - [98] = {.lex_state = 5, .external_lex_state = 2}, - [99] = {.lex_state = 5, .external_lex_state = 2}, - [100] = {.lex_state = 5, .external_lex_state = 2}, - [101] = {.lex_state = 5, .external_lex_state = 2}, - [102] = {.lex_state = 5, .external_lex_state = 2}, - [103] = {.lex_state = 5, .external_lex_state = 2}, - [104] = {.lex_state = 5, .external_lex_state = 2}, - [105] = {.lex_state = 5, .external_lex_state = 2}, - [106] = {.lex_state = 5, .external_lex_state = 2}, - [107] = {.lex_state = 5, .external_lex_state = 2}, - [108] = {.lex_state = 5, .external_lex_state = 2}, - [109] = {.lex_state = 5, .external_lex_state = 2}, - [110] = {.lex_state = 5, .external_lex_state = 2}, - [111] = {.lex_state = 5, .external_lex_state = 2}, - [112] = {.lex_state = 5, .external_lex_state = 2}, - [113] = {.lex_state = 5, .external_lex_state = 2}, - [114] = {.lex_state = 5, .external_lex_state = 2}, - [115] = {.lex_state = 5, .external_lex_state = 2}, - [116] = {.lex_state = 5, .external_lex_state = 2}, - [117] = {.lex_state = 5, .external_lex_state = 2}, - [118] = {.lex_state = 5, .external_lex_state = 2}, - [119] = {.lex_state = 5, .external_lex_state = 2}, - [120] = {.lex_state = 5, .external_lex_state = 2}, - [121] = {.lex_state = 5, .external_lex_state = 2}, - [122] = {.lex_state = 5, .external_lex_state = 2}, - [123] = {.lex_state = 5, .external_lex_state = 2}, - [124] = {.lex_state = 5, .external_lex_state = 2}, - [125] = {.lex_state = 5, .external_lex_state = 2}, - [126] = {.lex_state = 5, .external_lex_state = 2}, - [127] = {.lex_state = 5, .external_lex_state = 2}, - [128] = {.lex_state = 5, .external_lex_state = 2}, - [129] = {.lex_state = 5, .external_lex_state = 2}, - [130] = {.lex_state = 5, .external_lex_state = 2}, - [131] = {.lex_state = 5, .external_lex_state = 2}, - [132] = {.lex_state = 5, .external_lex_state = 2}, - [133] = {.lex_state = 5, .external_lex_state = 2}, - [134] = {.lex_state = 5, .external_lex_state = 2}, - [135] = {.lex_state = 5, .external_lex_state = 2}, - [136] = {.lex_state = 5, .external_lex_state = 2}, - [137] = {.lex_state = 7, .external_lex_state = 2}, - [138] = {.lex_state = 7, .external_lex_state = 2}, - [139] = {.lex_state = 8, .external_lex_state = 2}, - [140] = {.lex_state = 8, .external_lex_state = 2}, - [141] = {.lex_state = 9, .external_lex_state = 2}, - [142] = {.lex_state = 18, .external_lex_state = 2}, - [143] = {.lex_state = 9, .external_lex_state = 2}, - [144] = {.lex_state = 19, .external_lex_state = 2}, - [145] = {.lex_state = 24, .external_lex_state = 2}, - [146] = {.lex_state = 21, .external_lex_state = 2}, - [147] = {.lex_state = 18, .external_lex_state = 2}, - [148] = {.lex_state = 24, .external_lex_state = 2}, - [149] = {.lex_state = 21, .external_lex_state = 2}, + [50] = {.lex_state = 17, .external_lex_state = 2}, + [51] = {.lex_state = 20, .external_lex_state = 2}, + [52] = {.lex_state = 20, .external_lex_state = 2}, + [53] = {.lex_state = 5, .external_lex_state = 2}, + [54] = {.lex_state = 22, .external_lex_state = 2}, + [55] = {.lex_state = 17, .external_lex_state = 2}, + [56] = {.lex_state = 20, .external_lex_state = 2}, + [57] = {.lex_state = 22, .external_lex_state = 2}, + [58] = {.lex_state = 3, .external_lex_state = 2}, + [59] = {.lex_state = 3, .external_lex_state = 2}, + [60] = {.lex_state = 3, .external_lex_state = 2}, + [61] = {.lex_state = 3, .external_lex_state = 2}, + [62] = {.lex_state = 3, .external_lex_state = 2}, + [63] = {.lex_state = 3, .external_lex_state = 2}, + [64] = {.lex_state = 3, .external_lex_state = 2}, + [65] = {.lex_state = 3, .external_lex_state = 2}, + [66] = {.lex_state = 3, .external_lex_state = 2}, + [67] = {.lex_state = 3, .external_lex_state = 2}, + [68] = {.lex_state = 3, .external_lex_state = 2}, + [69] = {.lex_state = 3, .external_lex_state = 2}, + [70] = {.lex_state = 20, .external_lex_state = 2}, + [71] = {.lex_state = 3, .external_lex_state = 2}, + [72] = {.lex_state = 3, .external_lex_state = 2}, + [73] = {.lex_state = 3, .external_lex_state = 2}, + [74] = {.lex_state = 3, .external_lex_state = 2}, + [75] = {.lex_state = 3, .external_lex_state = 2}, + [76] = {.lex_state = 3, .external_lex_state = 2}, + [77] = {.lex_state = 3, .external_lex_state = 2}, + [78] = {.lex_state = 22, .external_lex_state = 2}, + [79] = {.lex_state = 3, .external_lex_state = 2}, + [80] = {.lex_state = 3, .external_lex_state = 2}, + [81] = {.lex_state = 22, .external_lex_state = 2}, + [82] = {.lex_state = 3, .external_lex_state = 2}, + [83] = {.lex_state = 3, .external_lex_state = 2}, + [84] = {.lex_state = 3, .external_lex_state = 2}, + [85] = {.lex_state = 17, .external_lex_state = 2}, + [86] = {.lex_state = 3, .external_lex_state = 2}, + [87] = {.lex_state = 3, .external_lex_state = 2}, + [88] = {.lex_state = 3, .external_lex_state = 2}, + [89] = {.lex_state = 3, .external_lex_state = 2}, + [90] = {.lex_state = 3, .external_lex_state = 2}, + [91] = {.lex_state = 3, .external_lex_state = 2}, + [92] = {.lex_state = 3, .external_lex_state = 2}, + [93] = {.lex_state = 17, .external_lex_state = 2}, + [94] = {.lex_state = 3, .external_lex_state = 2}, + [95] = {.lex_state = 20, .external_lex_state = 2}, + [96] = {.lex_state = 3, .external_lex_state = 2}, + [97] = {.lex_state = 3, .external_lex_state = 2}, + [98] = {.lex_state = 3, .external_lex_state = 2}, + [99] = {.lex_state = 3, .external_lex_state = 2}, + [100] = {.lex_state = 3, .external_lex_state = 2}, + [101] = {.lex_state = 3, .external_lex_state = 2}, + [102] = {.lex_state = 3, .external_lex_state = 2}, + [103] = {.lex_state = 3, .external_lex_state = 2}, + [104] = {.lex_state = 3, .external_lex_state = 2}, + [105] = {.lex_state = 3, .external_lex_state = 2}, + [106] = {.lex_state = 3, .external_lex_state = 2}, + [107] = {.lex_state = 3, .external_lex_state = 2}, + [108] = {.lex_state = 3, .external_lex_state = 2}, + [109] = {.lex_state = 3, .external_lex_state = 2}, + [110] = {.lex_state = 3, .external_lex_state = 2}, + [111] = {.lex_state = 3, .external_lex_state = 2}, + [112] = {.lex_state = 3, .external_lex_state = 2}, + [113] = {.lex_state = 3, .external_lex_state = 2}, + [114] = {.lex_state = 3, .external_lex_state = 2}, + [115] = {.lex_state = 3, .external_lex_state = 2}, + [116] = {.lex_state = 3, .external_lex_state = 2}, + [117] = {.lex_state = 3, .external_lex_state = 2}, + [118] = {.lex_state = 3, .external_lex_state = 2}, + [119] = {.lex_state = 3, .external_lex_state = 2}, + [120] = {.lex_state = 3, .external_lex_state = 2}, + [121] = {.lex_state = 3, .external_lex_state = 2}, + [122] = {.lex_state = 3, .external_lex_state = 2}, + [123] = {.lex_state = 3, .external_lex_state = 2}, + [124] = {.lex_state = 3, .external_lex_state = 2}, + [125] = {.lex_state = 3, .external_lex_state = 2}, + [126] = {.lex_state = 3, .external_lex_state = 2}, + [127] = {.lex_state = 3, .external_lex_state = 2}, + [128] = {.lex_state = 3, .external_lex_state = 2}, + [129] = {.lex_state = 3, .external_lex_state = 2}, + [130] = {.lex_state = 3, .external_lex_state = 2}, + [131] = {.lex_state = 3, .external_lex_state = 2}, + [132] = {.lex_state = 3, .external_lex_state = 2}, + [133] = {.lex_state = 3, .external_lex_state = 2}, + [134] = {.lex_state = 3, .external_lex_state = 2}, + [135] = {.lex_state = 3, .external_lex_state = 2}, + [136] = {.lex_state = 3, .external_lex_state = 2}, + [137] = {.lex_state = 3, .external_lex_state = 2}, + [138] = {.lex_state = 3, .external_lex_state = 2}, + [139] = {.lex_state = 3, .external_lex_state = 2}, + [140] = {.lex_state = 6, .external_lex_state = 2}, + [141] = {.lex_state = 7, .external_lex_state = 2}, + [142] = {.lex_state = 7, .external_lex_state = 2}, + [143] = {.lex_state = 8, .external_lex_state = 2}, + [144] = {.lex_state = 8, .external_lex_state = 2}, + [145] = {.lex_state = 18, .external_lex_state = 2}, + [146] = {.lex_state = 19, .external_lex_state = 2}, + [147] = {.lex_state = 21, .external_lex_state = 2}, + [148] = {.lex_state = 18, .external_lex_state = 2}, + [149] = {.lex_state = 23, .external_lex_state = 2}, [150] = {.lex_state = 19, .external_lex_state = 2}, - [151] = {.lex_state = 10, .external_lex_state = 2}, - [152] = {.lex_state = 10, .external_lex_state = 2}, - [153] = {.lex_state = 10, .external_lex_state = 2}, - [154] = {.lex_state = 10, .external_lex_state = 2}, - [155] = {.lex_state = 10, .external_lex_state = 2}, - [156] = {.lex_state = 11, .external_lex_state = 2}, - [157] = {.lex_state = 10, .external_lex_state = 2}, - [158] = {.lex_state = 10, .external_lex_state = 2}, - [159] = {.lex_state = 11, .external_lex_state = 2}, - [160] = {.lex_state = 10, .external_lex_state = 2}, + [151] = {.lex_state = 23, .external_lex_state = 2}, + [152] = {.lex_state = 21, .external_lex_state = 2}, + [153] = {.lex_state = 9, .external_lex_state = 2}, + [154] = {.lex_state = 9, .external_lex_state = 2}, + [155] = {.lex_state = 9, .external_lex_state = 2}, + [156] = {.lex_state = 9, .external_lex_state = 2}, + [157] = {.lex_state = 9, .external_lex_state = 2}, + [158] = {.lex_state = 9, .external_lex_state = 2}, + [159] = {.lex_state = 9, .external_lex_state = 2}, + [160] = {.lex_state = 9, .external_lex_state = 2}, [161] = {.lex_state = 10, .external_lex_state = 2}, - [162] = {.lex_state = 10, .external_lex_state = 2}, - [163] = {.lex_state = 11, .external_lex_state = 2}, - [164] = {.lex_state = 11, .external_lex_state = 2}, - [165] = {.lex_state = 11, .external_lex_state = 2}, - [166] = {.lex_state = 11, .external_lex_state = 2}, - [167] = {.lex_state = 11, .external_lex_state = 2}, - [168] = {.lex_state = 11, .external_lex_state = 2}, - [169] = {.lex_state = 11, .external_lex_state = 2}, - [170] = {.lex_state = 11, .external_lex_state = 2}, - [171] = {.lex_state = 11, .external_lex_state = 2}, - [172] = {.lex_state = 11, .external_lex_state = 2}, - [173] = {.lex_state = 11, .external_lex_state = 2}, - [174] = {.lex_state = 11, .external_lex_state = 2}, - [175] = {.lex_state = 10, .external_lex_state = 2}, - [176] = {.lex_state = 10, .external_lex_state = 2}, - [177] = {.lex_state = 10, .external_lex_state = 2}, - [178] = {.lex_state = 10, .external_lex_state = 2}, - [179] = {.lex_state = 10, .external_lex_state = 2}, - [180] = {.lex_state = 10, .external_lex_state = 2}, - [181] = {.lex_state = 10, .external_lex_state = 2}, - [182] = {.lex_state = 10, .external_lex_state = 2}, - [183] = {.lex_state = 10, .external_lex_state = 2}, - [184] = {.lex_state = 10, .external_lex_state = 2}, - [185] = {.lex_state = 10, .external_lex_state = 2}, + [162] = {.lex_state = 9, .external_lex_state = 2}, + [163] = {.lex_state = 9, .external_lex_state = 2}, + [164] = {.lex_state = 9, .external_lex_state = 2}, + [165] = {.lex_state = 9, .external_lex_state = 2}, + [166] = {.lex_state = 10, .external_lex_state = 2}, + [167] = {.lex_state = 9, .external_lex_state = 2}, + [168] = {.lex_state = 10, .external_lex_state = 2}, + [169] = {.lex_state = 9, .external_lex_state = 2}, + [170] = {.lex_state = 9, .external_lex_state = 2}, + [171] = {.lex_state = 9, .external_lex_state = 2}, + [172] = {.lex_state = 9, .external_lex_state = 2}, + [173] = {.lex_state = 9, .external_lex_state = 2}, + [174] = {.lex_state = 9, .external_lex_state = 2}, + [175] = {.lex_state = 9, .external_lex_state = 2}, + [176] = {.lex_state = 9, .external_lex_state = 2}, + [177] = {.lex_state = 9, .external_lex_state = 2}, + [178] = {.lex_state = 9, .external_lex_state = 2}, + [179] = {.lex_state = 6, .external_lex_state = 2}, + [180] = {.lex_state = 9, .external_lex_state = 2}, + [181] = {.lex_state = 9, .external_lex_state = 2}, + [182] = {.lex_state = 9, .external_lex_state = 2}, + [183] = {.lex_state = 9, .external_lex_state = 2}, + [184] = {.lex_state = 9, .external_lex_state = 2}, + [185] = {.lex_state = 9, .external_lex_state = 2}, [186] = {.lex_state = 10, .external_lex_state = 2}, - [187] = {.lex_state = 10, .external_lex_state = 2}, - [188] = {.lex_state = 10, .external_lex_state = 2}, - [189] = {.lex_state = 10, .external_lex_state = 2}, - [190] = {.lex_state = 10, .external_lex_state = 2}, - [191] = {.lex_state = 10, .external_lex_state = 2}, - [192] = {.lex_state = 10, .external_lex_state = 2}, - [193] = {.lex_state = 10, .external_lex_state = 2}, - [194] = {.lex_state = 10, .external_lex_state = 2}, - [195] = {.lex_state = 10, .external_lex_state = 2}, - [196] = {.lex_state = 10, .external_lex_state = 2}, - [197] = {.lex_state = 10, .external_lex_state = 2}, - [198] = {.lex_state = 10, .external_lex_state = 2}, - [199] = {.lex_state = 10, .external_lex_state = 2}, - [200] = {.lex_state = 10, .external_lex_state = 2}, - [201] = {.lex_state = 10, .external_lex_state = 2}, - [202] = {.lex_state = 10, .external_lex_state = 2}, - [203] = {.lex_state = 10, .external_lex_state = 2}, - [204] = {.lex_state = 10, .external_lex_state = 2}, - [205] = {.lex_state = 10, .external_lex_state = 2}, - [206] = {.lex_state = 10, .external_lex_state = 2}, - [207] = {.lex_state = 10, .external_lex_state = 2}, - [208] = {.lex_state = 10, .external_lex_state = 2}, - [209] = {.lex_state = 10, .external_lex_state = 2}, - [210] = {.lex_state = 10, .external_lex_state = 2}, - [211] = {.lex_state = 10, .external_lex_state = 2}, - [212] = {.lex_state = 10, .external_lex_state = 2}, - [213] = {.lex_state = 10, .external_lex_state = 2}, - [214] = {.lex_state = 10, .external_lex_state = 2}, - [215] = {.lex_state = 10, .external_lex_state = 2}, - [216] = {.lex_state = 10, .external_lex_state = 2}, - [217] = {.lex_state = 10, .external_lex_state = 2}, - [218] = {.lex_state = 10, .external_lex_state = 2}, - [219] = {.lex_state = 10, .external_lex_state = 2}, - [220] = {.lex_state = 10, .external_lex_state = 2}, - [221] = {.lex_state = 10, .external_lex_state = 2}, - [222] = {.lex_state = 10, .external_lex_state = 2}, - [223] = {.lex_state = 10, .external_lex_state = 2}, - [224] = {.lex_state = 10, .external_lex_state = 2}, - [225] = {.lex_state = 10, .external_lex_state = 2}, - [226] = {.lex_state = 10, .external_lex_state = 2}, - [227] = {.lex_state = 10, .external_lex_state = 2}, - [228] = {.lex_state = 10, .external_lex_state = 2}, - [229] = {.lex_state = 10, .external_lex_state = 2}, - [230] = {.lex_state = 10, .external_lex_state = 2}, - [231] = {.lex_state = 10, .external_lex_state = 2}, - [232] = {.lex_state = 10, .external_lex_state = 2}, - [233] = {.lex_state = 10, .external_lex_state = 2}, - [234] = {.lex_state = 10, .external_lex_state = 2}, - [235] = {.lex_state = 10, .external_lex_state = 2}, - [236] = {.lex_state = 10, .external_lex_state = 2}, - [237] = {.lex_state = 10, .external_lex_state = 2}, - [238] = {.lex_state = 10, .external_lex_state = 2}, - [239] = {.lex_state = 10, .external_lex_state = 2}, - [240] = {.lex_state = 10, .external_lex_state = 2}, - [241] = {.lex_state = 10, .external_lex_state = 2}, - [242] = {.lex_state = 10, .external_lex_state = 2}, - [243] = {.lex_state = 10, .external_lex_state = 2}, - [244] = {.lex_state = 10, .external_lex_state = 2}, - [245] = {.lex_state = 10, .external_lex_state = 2}, - [246] = {.lex_state = 10, .external_lex_state = 2}, - [247] = {.lex_state = 10, .external_lex_state = 2}, - [248] = {.lex_state = 10, .external_lex_state = 2}, - [249] = {.lex_state = 10, .external_lex_state = 2}, - [250] = {.lex_state = 10, .external_lex_state = 2}, - [251] = {.lex_state = 10, .external_lex_state = 2}, - [252] = {.lex_state = 10, .external_lex_state = 2}, - [253] = {.lex_state = 10, .external_lex_state = 2}, - [254] = {.lex_state = 10, .external_lex_state = 2}, - [255] = {.lex_state = 10, .external_lex_state = 2}, - [256] = {.lex_state = 10, .external_lex_state = 2}, - [257] = {.lex_state = 10, .external_lex_state = 2}, - [258] = {.lex_state = 10, .external_lex_state = 2}, - [259] = {.lex_state = 10, .external_lex_state = 2}, - [260] = {.lex_state = 10, .external_lex_state = 2}, - [261] = {.lex_state = 10, .external_lex_state = 2}, - [262] = {.lex_state = 10, .external_lex_state = 2}, - [263] = {.lex_state = 10, .external_lex_state = 2}, - [264] = {.lex_state = 10, .external_lex_state = 2}, - [265] = {.lex_state = 10, .external_lex_state = 2}, - [266] = {.lex_state = 10, .external_lex_state = 2}, - [267] = {.lex_state = 10, .external_lex_state = 2}, - [268] = {.lex_state = 10, .external_lex_state = 2}, - [269] = {.lex_state = 10, .external_lex_state = 2}, - [270] = {.lex_state = 10, .external_lex_state = 2}, - [271] = {.lex_state = 10, .external_lex_state = 2}, - [272] = {.lex_state = 10, .external_lex_state = 2}, - [273] = {.lex_state = 10, .external_lex_state = 2}, - [274] = {.lex_state = 10, .external_lex_state = 2}, - [275] = {.lex_state = 10, .external_lex_state = 2}, - [276] = {.lex_state = 10, .external_lex_state = 2}, - [277] = {.lex_state = 10, .external_lex_state = 2}, - [278] = {.lex_state = 10, .external_lex_state = 2}, - [279] = {.lex_state = 10, .external_lex_state = 2}, - [280] = {.lex_state = 10, .external_lex_state = 2}, - [281] = {.lex_state = 10, .external_lex_state = 2}, - [282] = {.lex_state = 10, .external_lex_state = 2}, - [283] = {.lex_state = 10, .external_lex_state = 2}, - [284] = {.lex_state = 10, .external_lex_state = 2}, - [285] = {.lex_state = 10, .external_lex_state = 2}, - [286] = {.lex_state = 10, .external_lex_state = 2}, - [287] = {.lex_state = 10, .external_lex_state = 2}, - [288] = {.lex_state = 10, .external_lex_state = 2}, - [289] = {.lex_state = 10, .external_lex_state = 2}, - [290] = {.lex_state = 10, .external_lex_state = 2}, - [291] = {.lex_state = 10, .external_lex_state = 2}, - [292] = {.lex_state = 10, .external_lex_state = 2}, - [293] = {.lex_state = 10, .external_lex_state = 2}, - [294] = {.lex_state = 10, .external_lex_state = 2}, - [295] = {.lex_state = 10, .external_lex_state = 2}, - [296] = {.lex_state = 10, .external_lex_state = 2}, - [297] = {.lex_state = 10, .external_lex_state = 2}, - [298] = {.lex_state = 10, .external_lex_state = 2}, - [299] = {.lex_state = 10, .external_lex_state = 2}, - [300] = {.lex_state = 10, .external_lex_state = 2}, - [301] = {.lex_state = 10, .external_lex_state = 2}, - [302] = {.lex_state = 10, .external_lex_state = 2}, - [303] = {.lex_state = 10, .external_lex_state = 2}, - [304] = {.lex_state = 10, .external_lex_state = 2}, - [305] = {.lex_state = 10, .external_lex_state = 2}, - [306] = {.lex_state = 10, .external_lex_state = 2}, - [307] = {.lex_state = 10, .external_lex_state = 2}, - [308] = {.lex_state = 10, .external_lex_state = 2}, - [309] = {.lex_state = 10, .external_lex_state = 2}, - [310] = {.lex_state = 10, .external_lex_state = 2}, - [311] = {.lex_state = 10, .external_lex_state = 2}, - [312] = {.lex_state = 10, .external_lex_state = 2}, - [313] = {.lex_state = 10, .external_lex_state = 2}, - [314] = {.lex_state = 10, .external_lex_state = 2}, - [315] = {.lex_state = 10, .external_lex_state = 2}, - [316] = {.lex_state = 10, .external_lex_state = 2}, - [317] = {.lex_state = 10, .external_lex_state = 2}, - [318] = {.lex_state = 10, .external_lex_state = 2}, - [319] = {.lex_state = 10, .external_lex_state = 2}, - [320] = {.lex_state = 10, .external_lex_state = 2}, - [321] = {.lex_state = 10, .external_lex_state = 2}, - [322] = {.lex_state = 10, .external_lex_state = 2}, - [323] = {.lex_state = 10, .external_lex_state = 2}, - [324] = {.lex_state = 10, .external_lex_state = 2}, - [325] = {.lex_state = 10, .external_lex_state = 2}, - [326] = {.lex_state = 10, .external_lex_state = 2}, - [327] = {.lex_state = 10, .external_lex_state = 2}, - [328] = {.lex_state = 10, .external_lex_state = 2}, - [329] = {.lex_state = 10, .external_lex_state = 2}, - [330] = {.lex_state = 10, .external_lex_state = 2}, - [331] = {.lex_state = 10, .external_lex_state = 2}, - [332] = {.lex_state = 10, .external_lex_state = 2}, - [333] = {.lex_state = 10, .external_lex_state = 2}, - [334] = {.lex_state = 10, .external_lex_state = 2}, - [335] = {.lex_state = 10, .external_lex_state = 2}, - [336] = {.lex_state = 10, .external_lex_state = 2}, - [337] = {.lex_state = 10, .external_lex_state = 2}, - [338] = {.lex_state = 10, .external_lex_state = 2}, - [339] = {.lex_state = 10, .external_lex_state = 2}, - [340] = {.lex_state = 10, .external_lex_state = 2}, - [341] = {.lex_state = 10, .external_lex_state = 2}, - [342] = {.lex_state = 10, .external_lex_state = 2}, - [343] = {.lex_state = 10, .external_lex_state = 2}, - [344] = {.lex_state = 10, .external_lex_state = 2}, - [345] = {.lex_state = 10, .external_lex_state = 2}, - [346] = {.lex_state = 10, .external_lex_state = 2}, - [347] = {.lex_state = 10, .external_lex_state = 2}, - [348] = {.lex_state = 10, .external_lex_state = 2}, - [349] = {.lex_state = 10, .external_lex_state = 2}, - [350] = {.lex_state = 10, .external_lex_state = 2}, - [351] = {.lex_state = 10, .external_lex_state = 2}, - [352] = {.lex_state = 10, .external_lex_state = 2}, - [353] = {.lex_state = 10, .external_lex_state = 2}, - [354] = {.lex_state = 10, .external_lex_state = 2}, - [355] = {.lex_state = 10, .external_lex_state = 2}, - [356] = {.lex_state = 10, .external_lex_state = 2}, - [357] = {.lex_state = 10, .external_lex_state = 2}, - [358] = {.lex_state = 10, .external_lex_state = 2}, - [359] = {.lex_state = 10, .external_lex_state = 2}, - [360] = {.lex_state = 7, .external_lex_state = 2}, - [361] = {.lex_state = 5, .external_lex_state = 2}, - [362] = {.lex_state = 5, .external_lex_state = 2}, - [363] = {.lex_state = 4, .external_lex_state = 2}, - [364] = {.lex_state = 5, .external_lex_state = 2}, - [365] = {.lex_state = 5, .external_lex_state = 2}, - [366] = {.lex_state = 5, .external_lex_state = 2}, - [367] = {.lex_state = 5, .external_lex_state = 2}, - [368] = {.lex_state = 5, .external_lex_state = 2}, - [369] = {.lex_state = 5, .external_lex_state = 2}, - [370] = {.lex_state = 5, .external_lex_state = 2}, - [371] = {.lex_state = 5, .external_lex_state = 2}, - [372] = {.lex_state = 5, .external_lex_state = 2}, - [373] = {.lex_state = 5, .external_lex_state = 2}, - [374] = {.lex_state = 5, .external_lex_state = 2}, - [375] = {.lex_state = 5, .external_lex_state = 2}, - [376] = {.lex_state = 5, .external_lex_state = 2}, - [377] = {.lex_state = 5, .external_lex_state = 2}, - [378] = {.lex_state = 5, .external_lex_state = 2}, - [379] = {.lex_state = 5, .external_lex_state = 2}, - [380] = {.lex_state = 5, .external_lex_state = 2}, - [381] = {.lex_state = 5, .external_lex_state = 2}, - [382] = {.lex_state = 5, .external_lex_state = 2}, - [383] = {.lex_state = 5, .external_lex_state = 2}, - [384] = {.lex_state = 5, .external_lex_state = 2}, - [385] = {.lex_state = 5, .external_lex_state = 2}, - [386] = {.lex_state = 6, .external_lex_state = 2}, - [387] = {.lex_state = 5, .external_lex_state = 2}, - [388] = {.lex_state = 5, .external_lex_state = 2}, - [389] = {.lex_state = 5, .external_lex_state = 2}, - [390] = {.lex_state = 5, .external_lex_state = 2}, - [391] = {.lex_state = 5, .external_lex_state = 2}, - [392] = {.lex_state = 5, .external_lex_state = 2}, - [393] = {.lex_state = 5, .external_lex_state = 2}, - [394] = {.lex_state = 5, .external_lex_state = 2}, - [395] = {.lex_state = 5, .external_lex_state = 2}, - [396] = {.lex_state = 5, .external_lex_state = 2}, - [397] = {.lex_state = 5, .external_lex_state = 2}, - [398] = {.lex_state = 5, .external_lex_state = 2}, - [399] = {.lex_state = 5, .external_lex_state = 2}, - [400] = {.lex_state = 5, .external_lex_state = 2}, - [401] = {.lex_state = 4, .external_lex_state = 2}, - [402] = {.lex_state = 5, .external_lex_state = 2}, - [403] = {.lex_state = 5, .external_lex_state = 2}, - [404] = {.lex_state = 5, .external_lex_state = 2}, - [405] = {.lex_state = 5, .external_lex_state = 2}, - [406] = {.lex_state = 5, .external_lex_state = 2}, - [407] = {.lex_state = 5, .external_lex_state = 2}, - [408] = {.lex_state = 5, .external_lex_state = 2}, - [409] = {.lex_state = 5, .external_lex_state = 2}, - [410] = {.lex_state = 5, .external_lex_state = 2}, - [411] = {.lex_state = 5, .external_lex_state = 2}, - [412] = {.lex_state = 5, .external_lex_state = 2}, - [413] = {.lex_state = 4, .external_lex_state = 2}, - [414] = {.lex_state = 5, .external_lex_state = 2}, - [415] = {.lex_state = 5, .external_lex_state = 2}, + [187] = {.lex_state = 9, .external_lex_state = 2}, + [188] = {.lex_state = 9, .external_lex_state = 2}, + [189] = {.lex_state = 9, .external_lex_state = 2}, + [190] = {.lex_state = 9, .external_lex_state = 2}, + [191] = {.lex_state = 9, .external_lex_state = 2}, + [192] = {.lex_state = 9, .external_lex_state = 2}, + [193] = {.lex_state = 9, .external_lex_state = 2}, + [194] = {.lex_state = 9, .external_lex_state = 2}, + [195] = {.lex_state = 9, .external_lex_state = 2}, + [196] = {.lex_state = 9, .external_lex_state = 2}, + [197] = {.lex_state = 9, .external_lex_state = 2}, + [198] = {.lex_state = 9, .external_lex_state = 2}, + [199] = {.lex_state = 9, .external_lex_state = 2}, + [200] = {.lex_state = 9, .external_lex_state = 2}, + [201] = {.lex_state = 9, .external_lex_state = 2}, + [202] = {.lex_state = 9, .external_lex_state = 2}, + [203] = {.lex_state = 9, .external_lex_state = 2}, + [204] = {.lex_state = 9, .external_lex_state = 2}, + [205] = {.lex_state = 9, .external_lex_state = 2}, + [206] = {.lex_state = 9, .external_lex_state = 2}, + [207] = {.lex_state = 9, .external_lex_state = 2}, + [208] = {.lex_state = 9, .external_lex_state = 2}, + [209] = {.lex_state = 9, .external_lex_state = 2}, + [210] = {.lex_state = 9, .external_lex_state = 2}, + [211] = {.lex_state = 9, .external_lex_state = 2}, + [212] = {.lex_state = 9, .external_lex_state = 2}, + [213] = {.lex_state = 9, .external_lex_state = 2}, + [214] = {.lex_state = 9, .external_lex_state = 2}, + [215] = {.lex_state = 9, .external_lex_state = 2}, + [216] = {.lex_state = 9, .external_lex_state = 2}, + [217] = {.lex_state = 9, .external_lex_state = 2}, + [218] = {.lex_state = 9, .external_lex_state = 2}, + [219] = {.lex_state = 9, .external_lex_state = 2}, + [220] = {.lex_state = 9, .external_lex_state = 2}, + [221] = {.lex_state = 9, .external_lex_state = 2}, + [222] = {.lex_state = 9, .external_lex_state = 2}, + [223] = {.lex_state = 9, .external_lex_state = 2}, + [224] = {.lex_state = 9, .external_lex_state = 2}, + [225] = {.lex_state = 9, .external_lex_state = 2}, + [226] = {.lex_state = 9, .external_lex_state = 2}, + [227] = {.lex_state = 9, .external_lex_state = 2}, + [228] = {.lex_state = 9, .external_lex_state = 2}, + [229] = {.lex_state = 9, .external_lex_state = 2}, + [230] = {.lex_state = 9, .external_lex_state = 2}, + [231] = {.lex_state = 9, .external_lex_state = 2}, + [232] = {.lex_state = 9, .external_lex_state = 2}, + [233] = {.lex_state = 9, .external_lex_state = 2}, + [234] = {.lex_state = 9, .external_lex_state = 2}, + [235] = {.lex_state = 9, .external_lex_state = 2}, + [236] = {.lex_state = 9, .external_lex_state = 2}, + [237] = {.lex_state = 9, .external_lex_state = 2}, + [238] = {.lex_state = 9, .external_lex_state = 2}, + [239] = {.lex_state = 9, .external_lex_state = 2}, + [240] = {.lex_state = 9, .external_lex_state = 2}, + [241] = {.lex_state = 9, .external_lex_state = 2}, + [242] = {.lex_state = 9, .external_lex_state = 2}, + [243] = {.lex_state = 9, .external_lex_state = 2}, + [244] = {.lex_state = 9, .external_lex_state = 2}, + [245] = {.lex_state = 9, .external_lex_state = 2}, + [246] = {.lex_state = 9, .external_lex_state = 2}, + [247] = {.lex_state = 9, .external_lex_state = 2}, + [248] = {.lex_state = 9, .external_lex_state = 2}, + [249] = {.lex_state = 9, .external_lex_state = 2}, + [250] = {.lex_state = 9, .external_lex_state = 2}, + [251] = {.lex_state = 9, .external_lex_state = 2}, + [252] = {.lex_state = 9, .external_lex_state = 2}, + [253] = {.lex_state = 9, .external_lex_state = 2}, + [254] = {.lex_state = 9, .external_lex_state = 2}, + [255] = {.lex_state = 9, .external_lex_state = 2}, + [256] = {.lex_state = 9, .external_lex_state = 2}, + [257] = {.lex_state = 9, .external_lex_state = 2}, + [258] = {.lex_state = 9, .external_lex_state = 2}, + [259] = {.lex_state = 9, .external_lex_state = 2}, + [260] = {.lex_state = 9, .external_lex_state = 2}, + [261] = {.lex_state = 9, .external_lex_state = 2}, + [262] = {.lex_state = 9, .external_lex_state = 2}, + [263] = {.lex_state = 9, .external_lex_state = 2}, + [264] = {.lex_state = 9, .external_lex_state = 2}, + [265] = {.lex_state = 9, .external_lex_state = 2}, + [266] = {.lex_state = 9, .external_lex_state = 2}, + [267] = {.lex_state = 9, .external_lex_state = 2}, + [268] = {.lex_state = 9, .external_lex_state = 2}, + [269] = {.lex_state = 9, .external_lex_state = 2}, + [270] = {.lex_state = 9, .external_lex_state = 2}, + [271] = {.lex_state = 9, .external_lex_state = 2}, + [272] = {.lex_state = 9, .external_lex_state = 2}, + [273] = {.lex_state = 9, .external_lex_state = 2}, + [274] = {.lex_state = 9, .external_lex_state = 2}, + [275] = {.lex_state = 9, .external_lex_state = 2}, + [276] = {.lex_state = 9, .external_lex_state = 2}, + [277] = {.lex_state = 9, .external_lex_state = 2}, + [278] = {.lex_state = 9, .external_lex_state = 2}, + [279] = {.lex_state = 9, .external_lex_state = 2}, + [280] = {.lex_state = 9, .external_lex_state = 2}, + [281] = {.lex_state = 9, .external_lex_state = 2}, + [282] = {.lex_state = 9, .external_lex_state = 2}, + [283] = {.lex_state = 9, .external_lex_state = 2}, + [284] = {.lex_state = 9, .external_lex_state = 2}, + [285] = {.lex_state = 9, .external_lex_state = 2}, + [286] = {.lex_state = 9, .external_lex_state = 2}, + [287] = {.lex_state = 9, .external_lex_state = 2}, + [288] = {.lex_state = 9, .external_lex_state = 2}, + [289] = {.lex_state = 9, .external_lex_state = 2}, + [290] = {.lex_state = 9, .external_lex_state = 2}, + [291] = {.lex_state = 9, .external_lex_state = 2}, + [292] = {.lex_state = 9, .external_lex_state = 2}, + [293] = {.lex_state = 9, .external_lex_state = 2}, + [294] = {.lex_state = 9, .external_lex_state = 2}, + [295] = {.lex_state = 9, .external_lex_state = 2}, + [296] = {.lex_state = 9, .external_lex_state = 2}, + [297] = {.lex_state = 9, .external_lex_state = 2}, + [298] = {.lex_state = 9, .external_lex_state = 2}, + [299] = {.lex_state = 9, .external_lex_state = 2}, + [300] = {.lex_state = 9, .external_lex_state = 2}, + [301] = {.lex_state = 9, .external_lex_state = 2}, + [302] = {.lex_state = 9, .external_lex_state = 2}, + [303] = {.lex_state = 9, .external_lex_state = 2}, + [304] = {.lex_state = 9, .external_lex_state = 2}, + [305] = {.lex_state = 9, .external_lex_state = 2}, + [306] = {.lex_state = 9, .external_lex_state = 2}, + [307] = {.lex_state = 9, .external_lex_state = 2}, + [308] = {.lex_state = 9, .external_lex_state = 2}, + [309] = {.lex_state = 9, .external_lex_state = 2}, + [310] = {.lex_state = 9, .external_lex_state = 2}, + [311] = {.lex_state = 9, .external_lex_state = 2}, + [312] = {.lex_state = 9, .external_lex_state = 2}, + [313] = {.lex_state = 9, .external_lex_state = 2}, + [314] = {.lex_state = 9, .external_lex_state = 2}, + [315] = {.lex_state = 9, .external_lex_state = 2}, + [316] = {.lex_state = 9, .external_lex_state = 2}, + [317] = {.lex_state = 9, .external_lex_state = 2}, + [318] = {.lex_state = 9, .external_lex_state = 2}, + [319] = {.lex_state = 9, .external_lex_state = 2}, + [320] = {.lex_state = 9, .external_lex_state = 2}, + [321] = {.lex_state = 9, .external_lex_state = 2}, + [322] = {.lex_state = 9, .external_lex_state = 2}, + [323] = {.lex_state = 9, .external_lex_state = 2}, + [324] = {.lex_state = 9, .external_lex_state = 2}, + [325] = {.lex_state = 9, .external_lex_state = 2}, + [326] = {.lex_state = 9, .external_lex_state = 2}, + [327] = {.lex_state = 9, .external_lex_state = 2}, + [328] = {.lex_state = 9, .external_lex_state = 2}, + [329] = {.lex_state = 9, .external_lex_state = 2}, + [330] = {.lex_state = 9, .external_lex_state = 2}, + [331] = {.lex_state = 9, .external_lex_state = 2}, + [332] = {.lex_state = 9, .external_lex_state = 2}, + [333] = {.lex_state = 9, .external_lex_state = 2}, + [334] = {.lex_state = 9, .external_lex_state = 2}, + [335] = {.lex_state = 9, .external_lex_state = 2}, + [336] = {.lex_state = 9, .external_lex_state = 2}, + [337] = {.lex_state = 9, .external_lex_state = 2}, + [338] = {.lex_state = 3, .external_lex_state = 2}, + [339] = {.lex_state = 3, .external_lex_state = 2}, + [340] = {.lex_state = 3, .external_lex_state = 2}, + [341] = {.lex_state = 4, .external_lex_state = 2}, + [342] = {.lex_state = 3, .external_lex_state = 2}, + [343] = {.lex_state = 3, .external_lex_state = 2}, + [344] = {.lex_state = 4, .external_lex_state = 2}, + [345] = {.lex_state = 3, .external_lex_state = 2}, + [346] = {.lex_state = 4, .external_lex_state = 2}, + [347] = {.lex_state = 3, .external_lex_state = 2}, + [348] = {.lex_state = 3, .external_lex_state = 2}, + [349] = {.lex_state = 3, .external_lex_state = 2}, + [350] = {.lex_state = 3, .external_lex_state = 2}, + [351] = {.lex_state = 3, .external_lex_state = 2}, + [352] = {.lex_state = 3, .external_lex_state = 2}, + [353] = {.lex_state = 3, .external_lex_state = 2}, + [354] = {.lex_state = 3, .external_lex_state = 2}, + [355] = {.lex_state = 3, .external_lex_state = 2}, + [356] = {.lex_state = 3, .external_lex_state = 2}, + [357] = {.lex_state = 3, .external_lex_state = 2}, + [358] = {.lex_state = 3, .external_lex_state = 2}, + [359] = {.lex_state = 3, .external_lex_state = 2}, + [360] = {.lex_state = 3, .external_lex_state = 2}, + [361] = {.lex_state = 3, .external_lex_state = 2}, + [362] = {.lex_state = 3, .external_lex_state = 2}, + [363] = {.lex_state = 3, .external_lex_state = 2}, + [364] = {.lex_state = 3, .external_lex_state = 2}, + [365] = {.lex_state = 3, .external_lex_state = 2}, + [366] = {.lex_state = 3, .external_lex_state = 2}, + [367] = {.lex_state = 3, .external_lex_state = 2}, + [368] = {.lex_state = 3, .external_lex_state = 2}, + [369] = {.lex_state = 3, .external_lex_state = 2}, + [370] = {.lex_state = 3, .external_lex_state = 2}, + [371] = {.lex_state = 3, .external_lex_state = 2}, + [372] = {.lex_state = 3, .external_lex_state = 2}, + [373] = {.lex_state = 3, .external_lex_state = 2}, + [374] = {.lex_state = 3, .external_lex_state = 2}, + [375] = {.lex_state = 3, .external_lex_state = 2}, + [376] = {.lex_state = 3, .external_lex_state = 2}, + [377] = {.lex_state = 3, .external_lex_state = 2}, + [378] = {.lex_state = 3, .external_lex_state = 2}, + [379] = {.lex_state = 3, .external_lex_state = 2}, + [380] = {.lex_state = 3, .external_lex_state = 2}, + [381] = {.lex_state = 3, .external_lex_state = 2}, + [382] = {.lex_state = 3, .external_lex_state = 2}, + [383] = {.lex_state = 3, .external_lex_state = 2}, + [384] = {.lex_state = 3, .external_lex_state = 2}, + [385] = {.lex_state = 3, .external_lex_state = 2}, + [386] = {.lex_state = 3, .external_lex_state = 2}, + [387] = {.lex_state = 3, .external_lex_state = 2}, + [388] = {.lex_state = 3, .external_lex_state = 2}, + [389] = {.lex_state = 3, .external_lex_state = 2}, + [390] = {.lex_state = 3, .external_lex_state = 2}, + [391] = {.lex_state = 3, .external_lex_state = 2}, + [392] = {.lex_state = 3, .external_lex_state = 2}, + [393] = {.lex_state = 3, .external_lex_state = 2}, + [394] = {.lex_state = 3, .external_lex_state = 2}, + [395] = {.lex_state = 3, .external_lex_state = 2}, + [396] = {.lex_state = 3, .external_lex_state = 2}, + [397] = {.lex_state = 3, .external_lex_state = 2}, + [398] = {.lex_state = 3, .external_lex_state = 2}, + [399] = {.lex_state = 3, .external_lex_state = 2}, + [400] = {.lex_state = 3, .external_lex_state = 2}, + [401] = {.lex_state = 3, .external_lex_state = 2}, + [402] = {.lex_state = 3, .external_lex_state = 2}, + [403] = {.lex_state = 3, .external_lex_state = 2}, + [404] = {.lex_state = 3, .external_lex_state = 2}, + [405] = {.lex_state = 3, .external_lex_state = 2}, + [406] = {.lex_state = 3, .external_lex_state = 2}, + [407] = {.lex_state = 3, .external_lex_state = 2}, + [408] = {.lex_state = 3, .external_lex_state = 2}, + [409] = {.lex_state = 3, .external_lex_state = 2}, + [410] = {.lex_state = 3, .external_lex_state = 2}, + [411] = {.lex_state = 3, .external_lex_state = 2}, + [412] = {.lex_state = 3, .external_lex_state = 2}, + [413] = {.lex_state = 3, .external_lex_state = 2}, + [414] = {.lex_state = 3, .external_lex_state = 2}, + [415] = {.lex_state = 3, .external_lex_state = 2}, [416] = {.lex_state = 5, .external_lex_state = 2}, - [417] = {.lex_state = 5, .external_lex_state = 2}, - [418] = {.lex_state = 5, .external_lex_state = 2}, - [419] = {.lex_state = 5, .external_lex_state = 2}, - [420] = {.lex_state = 5, .external_lex_state = 2}, - [421] = {.lex_state = 5, .external_lex_state = 2}, + [417] = {.lex_state = 3, .external_lex_state = 2}, + [418] = {.lex_state = 4, .external_lex_state = 2}, + [419] = {.lex_state = 4, .external_lex_state = 2}, + [420] = {.lex_state = 4, .external_lex_state = 2}, + [421] = {.lex_state = 4, .external_lex_state = 2}, [422] = {.lex_state = 5, .external_lex_state = 2}, - [423] = {.lex_state = 5, .external_lex_state = 2}, - [424] = {.lex_state = 5, .external_lex_state = 2}, - [425] = {.lex_state = 5, .external_lex_state = 2}, - [426] = {.lex_state = 5, .external_lex_state = 2}, - [427] = {.lex_state = 5, .external_lex_state = 2}, - [428] = {.lex_state = 5, .external_lex_state = 2}, - [429] = {.lex_state = 5, .external_lex_state = 2}, - [430] = {.lex_state = 5, .external_lex_state = 2}, - [431] = {.lex_state = 5, .external_lex_state = 2}, - [432] = {.lex_state = 5, .external_lex_state = 2}, + [423] = {.lex_state = 4, .external_lex_state = 2}, + [424] = {.lex_state = 4, .external_lex_state = 2}, + [425] = {.lex_state = 4, .external_lex_state = 2}, + [426] = {.lex_state = 4, .external_lex_state = 2}, + [427] = {.lex_state = 4, .external_lex_state = 2}, + [428] = {.lex_state = 4, .external_lex_state = 2}, + [429] = {.lex_state = 4, .external_lex_state = 2}, + [430] = {.lex_state = 4, .external_lex_state = 2}, + [431] = {.lex_state = 22, .external_lex_state = 2}, + [432] = {.lex_state = 4, .external_lex_state = 2}, [433] = {.lex_state = 4, .external_lex_state = 2}, [434] = {.lex_state = 4, .external_lex_state = 2}, [435] = {.lex_state = 4, .external_lex_state = 2}, @@ -10851,7 +11169,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [445] = {.lex_state = 4, .external_lex_state = 2}, [446] = {.lex_state = 4, .external_lex_state = 2}, [447] = {.lex_state = 4, .external_lex_state = 2}, - [448] = {.lex_state = 4, .external_lex_state = 2}, + [448] = {.lex_state = 17, .external_lex_state = 2}, [449] = {.lex_state = 4, .external_lex_state = 2}, [450] = {.lex_state = 4, .external_lex_state = 2}, [451] = {.lex_state = 4, .external_lex_state = 2}, @@ -10865,7 +11183,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [459] = {.lex_state = 4, .external_lex_state = 2}, [460] = {.lex_state = 4, .external_lex_state = 2}, [461] = {.lex_state = 4, .external_lex_state = 2}, - [462] = {.lex_state = 4, .external_lex_state = 2}, + [462] = {.lex_state = 20, .external_lex_state = 2}, [463] = {.lex_state = 4, .external_lex_state = 2}, [464] = {.lex_state = 4, .external_lex_state = 2}, [465] = {.lex_state = 4, .external_lex_state = 2}, @@ -10888,847 +11206,847 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [482] = {.lex_state = 4, .external_lex_state = 2}, [483] = {.lex_state = 4, .external_lex_state = 2}, [484] = {.lex_state = 4, .external_lex_state = 2}, - [485] = {.lex_state = 20, .external_lex_state = 2}, + [485] = {.lex_state = 4, .external_lex_state = 2}, [486] = {.lex_state = 4, .external_lex_state = 2}, [487] = {.lex_state = 4, .external_lex_state = 2}, [488] = {.lex_state = 4, .external_lex_state = 2}, - [489] = {.lex_state = 23, .external_lex_state = 2}, - [490] = {.lex_state = 22, .external_lex_state = 2}, + [489] = {.lex_state = 4, .external_lex_state = 2}, + [490] = {.lex_state = 5, .external_lex_state = 2}, [491] = {.lex_state = 4, .external_lex_state = 2}, - [492] = {.lex_state = 6, .external_lex_state = 2}, + [492] = {.lex_state = 4, .external_lex_state = 2}, [493] = {.lex_state = 4, .external_lex_state = 2}, [494] = {.lex_state = 4, .external_lex_state = 2}, [495] = {.lex_state = 4, .external_lex_state = 2}, - [496] = {.lex_state = 4, .external_lex_state = 2}, - [497] = {.lex_state = 4, .external_lex_state = 2}, - [498] = {.lex_state = 4, .external_lex_state = 2}, - [499] = {.lex_state = 6, .external_lex_state = 2}, - [500] = {.lex_state = 4, .external_lex_state = 2}, - [501] = {.lex_state = 4, .external_lex_state = 2}, - [502] = {.lex_state = 4, .external_lex_state = 2}, - [503] = {.lex_state = 6, .external_lex_state = 2}, - [504] = {.lex_state = 20, .external_lex_state = 2}, - [505] = {.lex_state = 6, .external_lex_state = 2}, - [506] = {.lex_state = 6, .external_lex_state = 2}, - [507] = {.lex_state = 6, .external_lex_state = 2}, - [508] = {.lex_state = 6, .external_lex_state = 2}, - [509] = {.lex_state = 6, .external_lex_state = 2}, - [510] = {.lex_state = 6, .external_lex_state = 2}, - [511] = {.lex_state = 6, .external_lex_state = 2}, - [512] = {.lex_state = 6, .external_lex_state = 2}, - [513] = {.lex_state = 6, .external_lex_state = 2}, - [514] = {.lex_state = 6, .external_lex_state = 2}, - [515] = {.lex_state = 6, .external_lex_state = 2}, - [516] = {.lex_state = 6, .external_lex_state = 2}, - [517] = {.lex_state = 6, .external_lex_state = 2}, - [518] = {.lex_state = 6, .external_lex_state = 2}, - [519] = {.lex_state = 6, .external_lex_state = 2}, - [520] = {.lex_state = 6, .external_lex_state = 2}, - [521] = {.lex_state = 6, .external_lex_state = 2}, - [522] = {.lex_state = 6, .external_lex_state = 2}, - [523] = {.lex_state = 6, .external_lex_state = 2}, - [524] = {.lex_state = 6, .external_lex_state = 2}, - [525] = {.lex_state = 6, .external_lex_state = 2}, - [526] = {.lex_state = 6, .external_lex_state = 2}, - [527] = {.lex_state = 6, .external_lex_state = 2}, - [528] = {.lex_state = 6, .external_lex_state = 2}, - [529] = {.lex_state = 6, .external_lex_state = 2}, - [530] = {.lex_state = 6, .external_lex_state = 2}, - [531] = {.lex_state = 6, .external_lex_state = 2}, - [532] = {.lex_state = 6, .external_lex_state = 2}, - [533] = {.lex_state = 6, .external_lex_state = 2}, - [534] = {.lex_state = 6, .external_lex_state = 2}, - [535] = {.lex_state = 6, .external_lex_state = 2}, - [536] = {.lex_state = 6, .external_lex_state = 2}, - [537] = {.lex_state = 6, .external_lex_state = 2}, - [538] = {.lex_state = 6, .external_lex_state = 2}, - [539] = {.lex_state = 6, .external_lex_state = 2}, - [540] = {.lex_state = 6, .external_lex_state = 2}, - [541] = {.lex_state = 6, .external_lex_state = 2}, - [542] = {.lex_state = 6, .external_lex_state = 2}, - [543] = {.lex_state = 6, .external_lex_state = 2}, - [544] = {.lex_state = 6, .external_lex_state = 2}, - [545] = {.lex_state = 6, .external_lex_state = 2}, - [546] = {.lex_state = 6, .external_lex_state = 2}, - [547] = {.lex_state = 6, .external_lex_state = 2}, - [548] = {.lex_state = 6, .external_lex_state = 2}, - [549] = {.lex_state = 6, .external_lex_state = 2}, - [550] = {.lex_state = 6, .external_lex_state = 2}, - [551] = {.lex_state = 6, .external_lex_state = 2}, - [552] = {.lex_state = 6, .external_lex_state = 2}, - [553] = {.lex_state = 6, .external_lex_state = 2}, - [554] = {.lex_state = 6, .external_lex_state = 2}, - [555] = {.lex_state = 6, .external_lex_state = 2}, - [556] = {.lex_state = 6, .external_lex_state = 2}, - [557] = {.lex_state = 6, .external_lex_state = 2}, - [558] = {.lex_state = 6, .external_lex_state = 2}, - [559] = {.lex_state = 6, .external_lex_state = 2}, - [560] = {.lex_state = 6, .external_lex_state = 2}, - [561] = {.lex_state = 6, .external_lex_state = 2}, - [562] = {.lex_state = 6, .external_lex_state = 2}, - [563] = {.lex_state = 6, .external_lex_state = 2}, - [564] = {.lex_state = 6, .external_lex_state = 2}, - [565] = {.lex_state = 6, .external_lex_state = 2}, - [566] = {.lex_state = 6, .external_lex_state = 2}, - [567] = {.lex_state = 6, .external_lex_state = 2}, - [568] = {.lex_state = 6, .external_lex_state = 2}, - [569] = {.lex_state = 22, .external_lex_state = 2}, - [570] = {.lex_state = 22, .external_lex_state = 2}, - [571] = {.lex_state = 23, .external_lex_state = 2}, - [572] = {.lex_state = 6, .external_lex_state = 2}, - [573] = {.lex_state = 23, .external_lex_state = 2}, - [574] = {.lex_state = 20, .external_lex_state = 2}, - [575] = {.lex_state = 23, .external_lex_state = 2}, + [496] = {.lex_state = 5, .external_lex_state = 2}, + [497] = {.lex_state = 17, .external_lex_state = 2}, + [498] = {.lex_state = 5, .external_lex_state = 2}, + [499] = {.lex_state = 5, .external_lex_state = 2}, + [500] = {.lex_state = 5, .external_lex_state = 2}, + [501] = {.lex_state = 5, .external_lex_state = 2}, + [502] = {.lex_state = 5, .external_lex_state = 2}, + [503] = {.lex_state = 5, .external_lex_state = 2}, + [504] = {.lex_state = 5, .external_lex_state = 2}, + [505] = {.lex_state = 5, .external_lex_state = 2}, + [506] = {.lex_state = 20, .external_lex_state = 2}, + [507] = {.lex_state = 5, .external_lex_state = 2}, + [508] = {.lex_state = 5, .external_lex_state = 2}, + [509] = {.lex_state = 5, .external_lex_state = 2}, + [510] = {.lex_state = 5, .external_lex_state = 2}, + [511] = {.lex_state = 22, .external_lex_state = 2}, + [512] = {.lex_state = 5, .external_lex_state = 2}, + [513] = {.lex_state = 5, .external_lex_state = 2}, + [514] = {.lex_state = 5, .external_lex_state = 2}, + [515] = {.lex_state = 5, .external_lex_state = 2}, + [516] = {.lex_state = 5, .external_lex_state = 2}, + [517] = {.lex_state = 5, .external_lex_state = 2}, + [518] = {.lex_state = 5, .external_lex_state = 2}, + [519] = {.lex_state = 5, .external_lex_state = 2}, + [520] = {.lex_state = 5, .external_lex_state = 2}, + [521] = {.lex_state = 5, .external_lex_state = 2}, + [522] = {.lex_state = 5, .external_lex_state = 2}, + [523] = {.lex_state = 5, .external_lex_state = 2}, + [524] = {.lex_state = 5, .external_lex_state = 2}, + [525] = {.lex_state = 5, .external_lex_state = 2}, + [526] = {.lex_state = 5, .external_lex_state = 2}, + [527] = {.lex_state = 5, .external_lex_state = 2}, + [528] = {.lex_state = 5, .external_lex_state = 2}, + [529] = {.lex_state = 5, .external_lex_state = 2}, + [530] = {.lex_state = 22, .external_lex_state = 2}, + [531] = {.lex_state = 5, .external_lex_state = 2}, + [532] = {.lex_state = 5, .external_lex_state = 2}, + [533] = {.lex_state = 5, .external_lex_state = 2}, + [534] = {.lex_state = 5, .external_lex_state = 2}, + [535] = {.lex_state = 5, .external_lex_state = 2}, + [536] = {.lex_state = 5, .external_lex_state = 2}, + [537] = {.lex_state = 5, .external_lex_state = 2}, + [538] = {.lex_state = 5, .external_lex_state = 2}, + [539] = {.lex_state = 5, .external_lex_state = 2}, + [540] = {.lex_state = 5, .external_lex_state = 2}, + [541] = {.lex_state = 5, .external_lex_state = 2}, + [542] = {.lex_state = 5, .external_lex_state = 2}, + [543] = {.lex_state = 5, .external_lex_state = 2}, + [544] = {.lex_state = 5, .external_lex_state = 2}, + [545] = {.lex_state = 5, .external_lex_state = 2}, + [546] = {.lex_state = 5, .external_lex_state = 2}, + [547] = {.lex_state = 5, .external_lex_state = 2}, + [548] = {.lex_state = 5, .external_lex_state = 2}, + [549] = {.lex_state = 17, .external_lex_state = 2}, + [550] = {.lex_state = 5, .external_lex_state = 2}, + [551] = {.lex_state = 5, .external_lex_state = 2}, + [552] = {.lex_state = 5, .external_lex_state = 2}, + [553] = {.lex_state = 5, .external_lex_state = 2}, + [554] = {.lex_state = 5, .external_lex_state = 2}, + [555] = {.lex_state = 5, .external_lex_state = 2}, + [556] = {.lex_state = 5, .external_lex_state = 2}, + [557] = {.lex_state = 5, .external_lex_state = 2}, + [558] = {.lex_state = 5, .external_lex_state = 2}, + [559] = {.lex_state = 5, .external_lex_state = 2}, + [560] = {.lex_state = 5, .external_lex_state = 2}, + [561] = {.lex_state = 5, .external_lex_state = 2}, + [562] = {.lex_state = 5, .external_lex_state = 2}, + [563] = {.lex_state = 5, .external_lex_state = 2}, + [564] = {.lex_state = 5, .external_lex_state = 2}, + [565] = {.lex_state = 5, .external_lex_state = 2}, + [566] = {.lex_state = 5, .external_lex_state = 2}, + [567] = {.lex_state = 5, .external_lex_state = 2}, + [568] = {.lex_state = 5, .external_lex_state = 2}, + [569] = {.lex_state = 5, .external_lex_state = 2}, + [570] = {.lex_state = 20, .external_lex_state = 2}, + [571] = {.lex_state = 5, .external_lex_state = 2}, + [572] = {.lex_state = 5, .external_lex_state = 2}, + [573] = {.lex_state = 5, .external_lex_state = 2}, + [574] = {.lex_state = 5, .external_lex_state = 2}, + [575] = {.lex_state = 5, .external_lex_state = 2}, [576] = {.lex_state = 22, .external_lex_state = 2}, - [577] = {.lex_state = 20, .external_lex_state = 2}, - [578] = {.lex_state = 20, .external_lex_state = 2}, - [579] = {.lex_state = 23, .external_lex_state = 2}, - [580] = {.lex_state = 20, .external_lex_state = 2}, - [581] = {.lex_state = 20, .external_lex_state = 2}, - [582] = {.lex_state = 23, .external_lex_state = 2}, + [577] = {.lex_state = 17, .external_lex_state = 2}, + [578] = {.lex_state = 22, .external_lex_state = 2}, + [579] = {.lex_state = 22, .external_lex_state = 2}, + [580] = {.lex_state = 22, .external_lex_state = 2}, + [581] = {.lex_state = 22, .external_lex_state = 2}, + [582] = {.lex_state = 22, .external_lex_state = 2}, [583] = {.lex_state = 22, .external_lex_state = 2}, [584] = {.lex_state = 22, .external_lex_state = 2}, [585] = {.lex_state = 22, .external_lex_state = 2}, [586] = {.lex_state = 22, .external_lex_state = 2}, - [587] = {.lex_state = 20, .external_lex_state = 2}, + [587] = {.lex_state = 22, .external_lex_state = 2}, [588] = {.lex_state = 22, .external_lex_state = 2}, [589] = {.lex_state = 22, .external_lex_state = 2}, - [590] = {.lex_state = 20, .external_lex_state = 2}, - [591] = {.lex_state = 20, .external_lex_state = 2}, - [592] = {.lex_state = 20, .external_lex_state = 2}, - [593] = {.lex_state = 20, .external_lex_state = 2}, - [594] = {.lex_state = 20, .external_lex_state = 2}, - [595] = {.lex_state = 20, .external_lex_state = 2}, + [590] = {.lex_state = 22, .external_lex_state = 2}, + [591] = {.lex_state = 22, .external_lex_state = 2}, + [592] = {.lex_state = 22, .external_lex_state = 2}, + [593] = {.lex_state = 22, .external_lex_state = 2}, + [594] = {.lex_state = 22, .external_lex_state = 2}, + [595] = {.lex_state = 22, .external_lex_state = 2}, [596] = {.lex_state = 22, .external_lex_state = 2}, [597] = {.lex_state = 22, .external_lex_state = 2}, - [598] = {.lex_state = 20, .external_lex_state = 2}, + [598] = {.lex_state = 22, .external_lex_state = 2}, [599] = {.lex_state = 22, .external_lex_state = 2}, [600] = {.lex_state = 22, .external_lex_state = 2}, - [601] = {.lex_state = 20, .external_lex_state = 2}, + [601] = {.lex_state = 22, .external_lex_state = 2}, [602] = {.lex_state = 22, .external_lex_state = 2}, - [603] = {.lex_state = 20, .external_lex_state = 2}, - [604] = {.lex_state = 20, .external_lex_state = 2}, + [603] = {.lex_state = 22, .external_lex_state = 2}, + [604] = {.lex_state = 22, .external_lex_state = 2}, [605] = {.lex_state = 22, .external_lex_state = 2}, - [606] = {.lex_state = 20, .external_lex_state = 2}, + [606] = {.lex_state = 22, .external_lex_state = 2}, [607] = {.lex_state = 22, .external_lex_state = 2}, - [608] = {.lex_state = 20, .external_lex_state = 2}, - [609] = {.lex_state = 20, .external_lex_state = 2}, - [610] = {.lex_state = 20, .external_lex_state = 2}, - [611] = {.lex_state = 20, .external_lex_state = 2}, - [612] = {.lex_state = 20, .external_lex_state = 2}, + [608] = {.lex_state = 22, .external_lex_state = 2}, + [609] = {.lex_state = 22, .external_lex_state = 2}, + [610] = {.lex_state = 22, .external_lex_state = 2}, + [611] = {.lex_state = 22, .external_lex_state = 2}, + [612] = {.lex_state = 22, .external_lex_state = 2}, [613] = {.lex_state = 22, .external_lex_state = 2}, - [614] = {.lex_state = 20, .external_lex_state = 2}, + [614] = {.lex_state = 22, .external_lex_state = 2}, [615] = {.lex_state = 22, .external_lex_state = 2}, - [616] = {.lex_state = 20, .external_lex_state = 2}, + [616] = {.lex_state = 22, .external_lex_state = 2}, [617] = {.lex_state = 22, .external_lex_state = 2}, - [618] = {.lex_state = 20, .external_lex_state = 2}, + [618] = {.lex_state = 22, .external_lex_state = 2}, [619] = {.lex_state = 22, .external_lex_state = 2}, [620] = {.lex_state = 22, .external_lex_state = 2}, - [621] = {.lex_state = 20, .external_lex_state = 2}, + [621] = {.lex_state = 22, .external_lex_state = 2}, [622] = {.lex_state = 22, .external_lex_state = 2}, - [623] = {.lex_state = 20, .external_lex_state = 2}, - [624] = {.lex_state = 20, .external_lex_state = 2}, - [625] = {.lex_state = 20, .external_lex_state = 2}, + [623] = {.lex_state = 22, .external_lex_state = 2}, + [624] = {.lex_state = 22, .external_lex_state = 2}, + [625] = {.lex_state = 22, .external_lex_state = 2}, [626] = {.lex_state = 22, .external_lex_state = 2}, [627] = {.lex_state = 22, .external_lex_state = 2}, - [628] = {.lex_state = 20, .external_lex_state = 2}, - [629] = {.lex_state = 20, .external_lex_state = 2}, + [628] = {.lex_state = 22, .external_lex_state = 2}, + [629] = {.lex_state = 22, .external_lex_state = 2}, [630] = {.lex_state = 22, .external_lex_state = 2}, - [631] = {.lex_state = 20, .external_lex_state = 2}, + [631] = {.lex_state = 22, .external_lex_state = 2}, [632] = {.lex_state = 22, .external_lex_state = 2}, - [633] = {.lex_state = 20, .external_lex_state = 2}, - [634] = {.lex_state = 20, .external_lex_state = 2}, - [635] = {.lex_state = 20, .external_lex_state = 2}, + [633] = {.lex_state = 22, .external_lex_state = 2}, + [634] = {.lex_state = 22, .external_lex_state = 2}, + [635] = {.lex_state = 22, .external_lex_state = 2}, [636] = {.lex_state = 22, .external_lex_state = 2}, - [637] = {.lex_state = 20, .external_lex_state = 2}, + [637] = {.lex_state = 22, .external_lex_state = 2}, [638] = {.lex_state = 22, .external_lex_state = 2}, - [639] = {.lex_state = 23, .external_lex_state = 2}, + [639] = {.lex_state = 22, .external_lex_state = 2}, [640] = {.lex_state = 22, .external_lex_state = 2}, - [641] = {.lex_state = 23, .external_lex_state = 2}, + [641] = {.lex_state = 22, .external_lex_state = 2}, [642] = {.lex_state = 22, .external_lex_state = 2}, - [643] = {.lex_state = 20, .external_lex_state = 2}, - [644] = {.lex_state = 20, .external_lex_state = 2}, - [645] = {.lex_state = 20, .external_lex_state = 2}, - [646] = {.lex_state = 20, .external_lex_state = 2}, - [647] = {.lex_state = 22, .external_lex_state = 2}, + [643] = {.lex_state = 22, .external_lex_state = 2}, + [644] = {.lex_state = 22, .external_lex_state = 2}, + [645] = {.lex_state = 22, .external_lex_state = 2}, + [646] = {.lex_state = 17, .external_lex_state = 2}, + [647] = {.lex_state = 17, .external_lex_state = 2}, [648] = {.lex_state = 22, .external_lex_state = 2}, - [649] = {.lex_state = 20, .external_lex_state = 2}, - [650] = {.lex_state = 20, .external_lex_state = 2}, + [649] = {.lex_state = 22, .external_lex_state = 2}, + [650] = {.lex_state = 22, .external_lex_state = 2}, [651] = {.lex_state = 22, .external_lex_state = 2}, [652] = {.lex_state = 22, .external_lex_state = 2}, [653] = {.lex_state = 22, .external_lex_state = 2}, - [654] = {.lex_state = 20, .external_lex_state = 2}, - [655] = {.lex_state = 20, .external_lex_state = 2}, - [656] = {.lex_state = 22, .external_lex_state = 2}, - [657] = {.lex_state = 20, .external_lex_state = 2}, - [658] = {.lex_state = 20, .external_lex_state = 2}, - [659] = {.lex_state = 20, .external_lex_state = 2}, - [660] = {.lex_state = 20, .external_lex_state = 2}, - [661] = {.lex_state = 20, .external_lex_state = 2}, - [662] = {.lex_state = 20, .external_lex_state = 2}, - [663] = {.lex_state = 20, .external_lex_state = 2}, - [664] = {.lex_state = 20, .external_lex_state = 2}, - [665] = {.lex_state = 20, .external_lex_state = 2}, - [666] = {.lex_state = 20, .external_lex_state = 2}, - [667] = {.lex_state = 20, .external_lex_state = 2}, - [668] = {.lex_state = 20, .external_lex_state = 2}, - [669] = {.lex_state = 22, .external_lex_state = 2}, - [670] = {.lex_state = 23, .external_lex_state = 2}, - [671] = {.lex_state = 23, .external_lex_state = 2}, - [672] = {.lex_state = 23, .external_lex_state = 2}, - [673] = {.lex_state = 23, .external_lex_state = 2}, - [674] = {.lex_state = 22, .external_lex_state = 2}, - [675] = {.lex_state = 20, .external_lex_state = 2}, - [676] = {.lex_state = 22, .external_lex_state = 2}, - [677] = {.lex_state = 20, .external_lex_state = 2}, - [678] = {.lex_state = 20, .external_lex_state = 2}, - [679] = {.lex_state = 20, .external_lex_state = 2}, - [680] = {.lex_state = 20, .external_lex_state = 2}, - [681] = {.lex_state = 20, .external_lex_state = 2}, - [682] = {.lex_state = 22, .external_lex_state = 2}, - [683] = {.lex_state = 20, .external_lex_state = 2}, - [684] = {.lex_state = 22, .external_lex_state = 2}, - [685] = {.lex_state = 20, .external_lex_state = 2}, - [686] = {.lex_state = 22, .external_lex_state = 2}, - [687] = {.lex_state = 22, .external_lex_state = 2}, - [688] = {.lex_state = 23, .external_lex_state = 2}, - [689] = {.lex_state = 23, .external_lex_state = 2}, - [690] = {.lex_state = 23, .external_lex_state = 2}, - [691] = {.lex_state = 23, .external_lex_state = 2}, - [692] = {.lex_state = 23, .external_lex_state = 2}, - [693] = {.lex_state = 20, .external_lex_state = 2}, - [694] = {.lex_state = 20, .external_lex_state = 2}, - [695] = {.lex_state = 23, .external_lex_state = 2}, - [696] = {.lex_state = 22, .external_lex_state = 2}, - [697] = {.lex_state = 23, .external_lex_state = 2}, - [698] = {.lex_state = 23, .external_lex_state = 2}, - [699] = {.lex_state = 23, .external_lex_state = 2}, - [700] = {.lex_state = 22, .external_lex_state = 2}, - [701] = {.lex_state = 23, .external_lex_state = 2}, - [702] = {.lex_state = 23, .external_lex_state = 2}, - [703] = {.lex_state = 23, .external_lex_state = 2}, - [704] = {.lex_state = 22, .external_lex_state = 2}, - [705] = {.lex_state = 23, .external_lex_state = 2}, - [706] = {.lex_state = 23, .external_lex_state = 2}, - [707] = {.lex_state = 22, .external_lex_state = 2}, - [708] = {.lex_state = 23, .external_lex_state = 2}, - [709] = {.lex_state = 23, .external_lex_state = 2}, - [710] = {.lex_state = 22, .external_lex_state = 2}, - [711] = {.lex_state = 23, .external_lex_state = 2}, - [712] = {.lex_state = 23, .external_lex_state = 2}, - [713] = {.lex_state = 23, .external_lex_state = 2}, - [714] = {.lex_state = 23, .external_lex_state = 2}, - [715] = {.lex_state = 22, .external_lex_state = 2}, - [716] = {.lex_state = 23, .external_lex_state = 2}, - [717] = {.lex_state = 23, .external_lex_state = 2}, - [718] = {.lex_state = 23, .external_lex_state = 2}, - [719] = {.lex_state = 23, .external_lex_state = 2}, - [720] = {.lex_state = 23, .external_lex_state = 2}, - [721] = {.lex_state = 23, .external_lex_state = 2}, - [722] = {.lex_state = 23, .external_lex_state = 2}, - [723] = {.lex_state = 23, .external_lex_state = 2}, - [724] = {.lex_state = 23, .external_lex_state = 2}, - [725] = {.lex_state = 22, .external_lex_state = 2}, - [726] = {.lex_state = 22, .external_lex_state = 2}, - [727] = {.lex_state = 22, .external_lex_state = 2}, - [728] = {.lex_state = 22, .external_lex_state = 2}, - [729] = {.lex_state = 22, .external_lex_state = 2}, - [730] = {.lex_state = 22, .external_lex_state = 2}, - [731] = {.lex_state = 22, .external_lex_state = 2}, - [732] = {.lex_state = 23, .external_lex_state = 2}, - [733] = {.lex_state = 22, .external_lex_state = 2}, - [734] = {.lex_state = 23, .external_lex_state = 2}, - [735] = {.lex_state = 22, .external_lex_state = 2}, - [736] = {.lex_state = 23, .external_lex_state = 2}, - [737] = {.lex_state = 23, .external_lex_state = 2}, - [738] = {.lex_state = 22, .external_lex_state = 2}, - [739] = {.lex_state = 23, .external_lex_state = 2}, - [740] = {.lex_state = 22, .external_lex_state = 2}, - [741] = {.lex_state = 23, .external_lex_state = 2}, - [742] = {.lex_state = 22, .external_lex_state = 2}, - [743] = {.lex_state = 22, .external_lex_state = 2}, - [744] = {.lex_state = 23, .external_lex_state = 2}, - [745] = {.lex_state = 22, .external_lex_state = 2}, - [746] = {.lex_state = 22, .external_lex_state = 2}, - [747] = {.lex_state = 22, .external_lex_state = 2}, - [748] = {.lex_state = 22, .external_lex_state = 2}, - [749] = {.lex_state = 23, .external_lex_state = 2}, - [750] = {.lex_state = 23, .external_lex_state = 2}, - [751] = {.lex_state = 23, .external_lex_state = 2}, - [752] = {.lex_state = 23, .external_lex_state = 2}, - [753] = {.lex_state = 23, .external_lex_state = 2}, - [754] = {.lex_state = 23, .external_lex_state = 2}, - [755] = {.lex_state = 23, .external_lex_state = 2}, - [756] = {.lex_state = 23, .external_lex_state = 2}, - [757] = {.lex_state = 23, .external_lex_state = 2}, - [758] = {.lex_state = 23, .external_lex_state = 2}, - [759] = {.lex_state = 23, .external_lex_state = 2}, - [760] = {.lex_state = 23, .external_lex_state = 2}, - [761] = {.lex_state = 22, .external_lex_state = 2}, - [762] = {.lex_state = 22, .external_lex_state = 2}, - [763] = {.lex_state = 22, .external_lex_state = 2}, - [764] = {.lex_state = 23, .external_lex_state = 2}, - [765] = {.lex_state = 23, .external_lex_state = 2}, - [766] = {.lex_state = 23, .external_lex_state = 2}, - [767] = {.lex_state = 22, .external_lex_state = 2}, - [768] = {.lex_state = 22, .external_lex_state = 2}, - [769] = {.lex_state = 22, .external_lex_state = 2}, - [770] = {.lex_state = 22, .external_lex_state = 2}, - [771] = {.lex_state = 22, .external_lex_state = 2}, - [772] = {.lex_state = 22, .external_lex_state = 2}, - [773] = {.lex_state = 23, .external_lex_state = 2}, - [774] = {.lex_state = 23, .external_lex_state = 2}, - [775] = {.lex_state = 23, .external_lex_state = 2}, - [776] = {.lex_state = 23, .external_lex_state = 2}, - [777] = {.lex_state = 23, .external_lex_state = 2}, - [778] = {.lex_state = 23, .external_lex_state = 2}, - [779] = {.lex_state = 23, .external_lex_state = 2}, - [780] = {.lex_state = 5, .external_lex_state = 2}, - [781] = {.lex_state = 5, .external_lex_state = 2}, - [782] = {.lex_state = 5, .external_lex_state = 2}, - [783] = {.lex_state = 5, .external_lex_state = 2}, - [784] = {.lex_state = 5, .external_lex_state = 2}, - [785] = {.lex_state = 5, .external_lex_state = 2}, - [786] = {.lex_state = 5, .external_lex_state = 2}, - [787] = {.lex_state = 5, .external_lex_state = 2}, - [788] = {.lex_state = 5, .external_lex_state = 2}, - [789] = {.lex_state = 5, .external_lex_state = 2}, - [790] = {.lex_state = 5, .external_lex_state = 2}, - [791] = {.lex_state = 179}, - [792] = {.lex_state = 179}, - [793] = {.lex_state = 179}, - [794] = {.lex_state = 179}, - [795] = {.lex_state = 10, .external_lex_state = 2}, - [796] = {.lex_state = 10, .external_lex_state = 2}, - [797] = {.lex_state = 10, .external_lex_state = 2}, - [798] = {.lex_state = 10, .external_lex_state = 2}, - [799] = {.lex_state = 10, .external_lex_state = 2}, - [800] = {.lex_state = 10, .external_lex_state = 2}, - [801] = {.lex_state = 10, .external_lex_state = 2}, - [802] = {.lex_state = 10, .external_lex_state = 2}, - [803] = {.lex_state = 10, .external_lex_state = 2}, - [804] = {.lex_state = 179}, - [805] = {.lex_state = 179}, - [806] = {.lex_state = 179}, - [807] = {.lex_state = 179}, - [808] = {.lex_state = 179}, - [809] = {.lex_state = 179}, - [810] = {.lex_state = 179}, - [811] = {.lex_state = 179}, - [812] = {.lex_state = 179}, - [813] = {.lex_state = 179}, - [814] = {.lex_state = 179}, - [815] = {.lex_state = 179}, - [816] = {.lex_state = 179}, - [817] = {.lex_state = 179}, - [818] = {.lex_state = 179}, - [819] = {.lex_state = 179}, - [820] = {.lex_state = 179}, - [821] = {.lex_state = 179}, - [822] = {.lex_state = 179}, - [823] = {.lex_state = 179}, - [824] = {.lex_state = 179}, - [825] = {.lex_state = 179}, - [826] = {.lex_state = 179}, - [827] = {.lex_state = 179}, - [828] = {.lex_state = 179}, - [829] = {.lex_state = 179}, - [830] = {.lex_state = 179}, - [831] = {.lex_state = 179}, - [832] = {.lex_state = 179}, - [833] = {.lex_state = 179}, - [834] = {.lex_state = 179}, - [835] = {.lex_state = 179}, - [836] = {.lex_state = 179}, - [837] = {.lex_state = 179}, - [838] = {.lex_state = 179}, - [839] = {.lex_state = 179}, - [840] = {.lex_state = 179}, - [841] = {.lex_state = 179}, - [842] = {.lex_state = 179}, - [843] = {.lex_state = 179}, - [844] = {.lex_state = 179}, - [845] = {.lex_state = 179}, - [846] = {.lex_state = 179}, - [847] = {.lex_state = 179}, - [848] = {.lex_state = 179}, - [849] = {.lex_state = 179}, - [850] = {.lex_state = 179}, - [851] = {.lex_state = 179}, - [852] = {.lex_state = 179}, - [853] = {.lex_state = 179}, - [854] = {.lex_state = 179}, - [855] = {.lex_state = 179}, - [856] = {.lex_state = 179}, - [857] = {.lex_state = 179}, - [858] = {.lex_state = 179}, - [859] = {.lex_state = 179}, - [860] = {.lex_state = 179}, - [861] = {.lex_state = 179}, - [862] = {.lex_state = 179}, - [863] = {.lex_state = 179}, - [864] = {.lex_state = 179}, - [865] = {.lex_state = 179}, - [866] = {.lex_state = 179}, - [867] = {.lex_state = 179}, - [868] = {.lex_state = 179}, - [869] = {.lex_state = 179}, - [870] = {.lex_state = 179}, - [871] = {.lex_state = 179}, - [872] = {.lex_state = 179}, - [873] = {.lex_state = 179}, - [874] = {.lex_state = 179}, - [875] = {.lex_state = 179}, - [876] = {.lex_state = 179}, - [877] = {.lex_state = 179}, - [878] = {.lex_state = 179}, - [879] = {.lex_state = 179}, - [880] = {.lex_state = 179}, - [881] = {.lex_state = 179}, - [882] = {.lex_state = 179}, - [883] = {.lex_state = 179}, - [884] = {.lex_state = 179}, - [885] = {.lex_state = 179}, - [886] = {.lex_state = 179}, - [887] = {.lex_state = 179}, - [888] = {.lex_state = 179}, - [889] = {.lex_state = 179}, - [890] = {.lex_state = 179}, - [891] = {.lex_state = 179}, - [892] = {.lex_state = 179}, - [893] = {.lex_state = 179}, - [894] = {.lex_state = 179}, - [895] = {.lex_state = 179}, - [896] = {.lex_state = 179}, - [897] = {.lex_state = 179}, - [898] = {.lex_state = 179}, - [899] = {.lex_state = 179}, - [900] = {.lex_state = 179}, - [901] = {.lex_state = 179}, - [902] = {.lex_state = 179}, - [903] = {.lex_state = 179}, - [904] = {.lex_state = 179}, - [905] = {.lex_state = 179}, - [906] = {.lex_state = 179}, - [907] = {.lex_state = 179}, - [908] = {.lex_state = 179}, - [909] = {.lex_state = 179}, - [910] = {.lex_state = 179}, - [911] = {.lex_state = 179}, - [912] = {.lex_state = 12}, - [913] = {.lex_state = 179}, - [914] = {.lex_state = 179}, - [915] = {.lex_state = 179}, - [916] = {.lex_state = 179}, - [917] = {.lex_state = 179}, - [918] = {.lex_state = 179}, - [919] = {.lex_state = 179}, - [920] = {.lex_state = 179}, - [921] = {.lex_state = 179}, - [922] = {.lex_state = 179}, - [923] = {.lex_state = 179}, - [924] = {.lex_state = 179}, - [925] = {.lex_state = 179}, - [926] = {.lex_state = 179}, - [927] = {.lex_state = 179}, - [928] = {.lex_state = 179}, - [929] = {.lex_state = 12}, - [930] = {.lex_state = 12}, - [931] = {.lex_state = 179}, - [932] = {.lex_state = 12}, - [933] = {.lex_state = 179}, - [934] = {.lex_state = 179}, - [935] = {.lex_state = 179}, - [936] = {.lex_state = 179}, - [937] = {.lex_state = 179}, - [938] = {.lex_state = 179}, - [939] = {.lex_state = 179}, - [940] = {.lex_state = 179}, - [941] = {.lex_state = 179}, - [942] = {.lex_state = 179}, - [943] = {.lex_state = 179}, - [944] = {.lex_state = 12}, - [945] = {.lex_state = 12}, - [946] = {.lex_state = 12}, - [947] = {.lex_state = 12}, - [948] = {.lex_state = 12}, - [949] = {.lex_state = 12}, - [950] = {.lex_state = 179}, - [951] = {.lex_state = 12}, - [952] = {.lex_state = 12}, - [953] = {.lex_state = 12}, - [954] = {.lex_state = 12}, - [955] = {.lex_state = 13}, - [956] = {.lex_state = 13}, - [957] = {.lex_state = 13}, - [958] = {.lex_state = 12}, - [959] = {.lex_state = 13}, - [960] = {.lex_state = 12}, - [961] = {.lex_state = 12}, - [962] = {.lex_state = 179}, - [963] = {.lex_state = 12}, - [964] = {.lex_state = 12}, - [965] = {.lex_state = 179}, - [966] = {.lex_state = 179}, - [967] = {.lex_state = 13}, - [968] = {.lex_state = 179}, - [969] = {.lex_state = 179}, - [970] = {.lex_state = 12}, - [971] = {.lex_state = 12}, - [972] = {.lex_state = 12}, - [973] = {.lex_state = 13}, - [974] = {.lex_state = 179}, - [975] = {.lex_state = 12}, - [976] = {.lex_state = 13}, - [977] = {.lex_state = 13}, - [978] = {.lex_state = 13}, - [979] = {.lex_state = 13}, - [980] = {.lex_state = 12}, - [981] = {.lex_state = 12}, - [982] = {.lex_state = 13}, - [983] = {.lex_state = 13}, - [984] = {.lex_state = 13}, - [985] = {.lex_state = 13}, - [986] = {.lex_state = 12}, - [987] = {.lex_state = 179}, - [988] = {.lex_state = 179}, - [989] = {.lex_state = 179}, - [990] = {.lex_state = 12}, - [991] = {.lex_state = 179}, - [992] = {.lex_state = 179}, - [993] = {.lex_state = 13}, - [994] = {.lex_state = 13}, - [995] = {.lex_state = 13}, - [996] = {.lex_state = 13}, - [997] = {.lex_state = 179}, - [998] = {.lex_state = 179}, - [999] = {.lex_state = 13}, - [1000] = {.lex_state = 13}, - [1001] = {.lex_state = 13}, - [1002] = {.lex_state = 13}, - [1003] = {.lex_state = 13}, - [1004] = {.lex_state = 13}, - [1005] = {.lex_state = 13}, - [1006] = {.lex_state = 13}, - [1007] = {.lex_state = 13}, - [1008] = {.lex_state = 13}, - [1009] = {.lex_state = 179}, - [1010] = {.lex_state = 13}, - [1011] = {.lex_state = 13}, - [1012] = {.lex_state = 179}, - [1013] = {.lex_state = 13}, - [1014] = {.lex_state = 13}, - [1015] = {.lex_state = 13}, - [1016] = {.lex_state = 179}, - [1017] = {.lex_state = 13}, - [1018] = {.lex_state = 13}, - [1019] = {.lex_state = 12}, - [1020] = {.lex_state = 12}, - [1021] = {.lex_state = 13}, - [1022] = {.lex_state = 179}, - [1023] = {.lex_state = 179}, - [1024] = {.lex_state = 179}, - [1025] = {.lex_state = 179}, - [1026] = {.lex_state = 179}, - [1027] = {.lex_state = 179}, - [1028] = {.lex_state = 179}, - [1029] = {.lex_state = 179}, - [1030] = {.lex_state = 179}, - [1031] = {.lex_state = 179}, - [1032] = {.lex_state = 179}, - [1033] = {.lex_state = 179}, - [1034] = {.lex_state = 179}, - [1035] = {.lex_state = 179}, - [1036] = {.lex_state = 179}, - [1037] = {.lex_state = 179}, - [1038] = {.lex_state = 179}, - [1039] = {.lex_state = 179}, - [1040] = {.lex_state = 179}, - [1041] = {.lex_state = 179}, - [1042] = {.lex_state = 179}, - [1043] = {.lex_state = 179}, - [1044] = {.lex_state = 179}, - [1045] = {.lex_state = 179}, - [1046] = {.lex_state = 179}, - [1047] = {.lex_state = 13}, - [1048] = {.lex_state = 13}, - [1049] = {.lex_state = 179}, - [1050] = {.lex_state = 13}, - [1051] = {.lex_state = 179}, - [1052] = {.lex_state = 179}, - [1053] = {.lex_state = 13}, - [1054] = {.lex_state = 179}, - [1055] = {.lex_state = 13}, - [1056] = {.lex_state = 179}, - [1057] = {.lex_state = 179}, - [1058] = {.lex_state = 179}, - [1059] = {.lex_state = 13}, - [1060] = {.lex_state = 179}, - [1061] = {.lex_state = 179}, - [1062] = {.lex_state = 13}, - [1063] = {.lex_state = 179}, - [1064] = {.lex_state = 13}, - [1065] = {.lex_state = 13}, - [1066] = {.lex_state = 13}, - [1067] = {.lex_state = 13}, - [1068] = {.lex_state = 179}, - [1069] = {.lex_state = 13}, - [1070] = {.lex_state = 179}, - [1071] = {.lex_state = 179}, - [1072] = {.lex_state = 179}, - [1073] = {.lex_state = 179}, - [1074] = {.lex_state = 179}, - [1075] = {.lex_state = 13}, - [1076] = {.lex_state = 179}, - [1077] = {.lex_state = 179}, - [1078] = {.lex_state = 179}, - [1079] = {.lex_state = 179}, - [1080] = {.lex_state = 179}, - [1081] = {.lex_state = 179}, - [1082] = {.lex_state = 179}, - [1083] = {.lex_state = 179}, - [1084] = {.lex_state = 13}, - [1085] = {.lex_state = 179}, - [1086] = {.lex_state = 179}, - [1087] = {.lex_state = 179}, - [1088] = {.lex_state = 179}, - [1089] = {.lex_state = 179}, - [1090] = {.lex_state = 179}, - [1091] = {.lex_state = 179}, - [1092] = {.lex_state = 179}, - [1093] = {.lex_state = 179}, - [1094] = {.lex_state = 179}, - [1095] = {.lex_state = 179}, - [1096] = {.lex_state = 13}, - [1097] = {.lex_state = 179}, - [1098] = {.lex_state = 179}, - [1099] = {.lex_state = 13}, - [1100] = {.lex_state = 12}, - [1101] = {.lex_state = 13}, - [1102] = {.lex_state = 13}, - [1103] = {.lex_state = 13}, - [1104] = {.lex_state = 13}, - [1105] = {.lex_state = 13}, - [1106] = {.lex_state = 12}, - [1107] = {.lex_state = 13}, - [1108] = {.lex_state = 13}, - [1109] = {.lex_state = 13}, - [1110] = {.lex_state = 3}, - [1111] = {.lex_state = 12}, - [1112] = {.lex_state = 13}, - [1113] = {.lex_state = 13}, - [1114] = {.lex_state = 13}, - [1115] = {.lex_state = 13}, - [1116] = {.lex_state = 13}, - [1117] = {.lex_state = 13}, - [1118] = {.lex_state = 13}, - [1119] = {.lex_state = 13}, - [1120] = {.lex_state = 13}, - [1121] = {.lex_state = 13}, - [1122] = {.lex_state = 13}, - [1123] = {.lex_state = 13}, - [1124] = {.lex_state = 13}, - [1125] = {.lex_state = 13}, - [1126] = {.lex_state = 13}, - [1127] = {.lex_state = 13}, - [1128] = {.lex_state = 13}, - [1129] = {.lex_state = 13}, - [1130] = {.lex_state = 13}, - [1131] = {.lex_state = 13}, - [1132] = {.lex_state = 179}, - [1133] = {.lex_state = 13}, - [1134] = {.lex_state = 13}, - [1135] = {.lex_state = 13}, - [1136] = {.lex_state = 13}, - [1137] = {.lex_state = 13}, - [1138] = {.lex_state = 13}, - [1139] = {.lex_state = 179}, - [1140] = {.lex_state = 13}, - [1141] = {.lex_state = 13}, - [1142] = {.lex_state = 13}, - [1143] = {.lex_state = 13}, - [1144] = {.lex_state = 13}, - [1145] = {.lex_state = 13}, - [1146] = {.lex_state = 13}, - [1147] = {.lex_state = 13}, - [1148] = {.lex_state = 13}, - [1149] = {.lex_state = 13}, - [1150] = {.lex_state = 13}, - [1151] = {.lex_state = 13}, - [1152] = {.lex_state = 13}, - [1153] = {.lex_state = 13}, - [1154] = {.lex_state = 13}, - [1155] = {.lex_state = 13}, - [1156] = {.lex_state = 13}, - [1157] = {.lex_state = 13}, - [1158] = {.lex_state = 13}, - [1159] = {.lex_state = 13}, - [1160] = {.lex_state = 13}, - [1161] = {.lex_state = 179}, - [1162] = {.lex_state = 13}, - [1163] = {.lex_state = 13}, - [1164] = {.lex_state = 13}, - [1165] = {.lex_state = 13}, - [1166] = {.lex_state = 13}, - [1167] = {.lex_state = 179}, - [1168] = {.lex_state = 13}, - [1169] = {.lex_state = 13}, - [1170] = {.lex_state = 13}, - [1171] = {.lex_state = 13}, - [1172] = {.lex_state = 13}, - [1173] = {.lex_state = 13}, - [1174] = {.lex_state = 13}, - [1175] = {.lex_state = 13}, - [1176] = {.lex_state = 13}, - [1177] = {.lex_state = 179}, - [1178] = {.lex_state = 13}, - [1179] = {.lex_state = 179}, - [1180] = {.lex_state = 13}, - [1181] = {.lex_state = 14}, - [1182] = {.lex_state = 14}, - [1183] = {.lex_state = 14}, - [1184] = {.lex_state = 14}, - [1185] = {.lex_state = 14}, - [1186] = {.lex_state = 14}, - [1187] = {.lex_state = 14}, - [1188] = {.lex_state = 14}, - [1189] = {.lex_state = 14}, - [1190] = {.lex_state = 14}, - [1191] = {.lex_state = 14}, - [1192] = {.lex_state = 14}, - [1193] = {.lex_state = 14}, - [1194] = {.lex_state = 14}, - [1195] = {.lex_state = 14}, - [1196] = {.lex_state = 0}, - [1197] = {.lex_state = 179}, - [1198] = {.lex_state = 3}, - [1199] = {.lex_state = 0}, - [1200] = {.lex_state = 179}, - [1201] = {.lex_state = 4}, - [1202] = {.lex_state = 0}, - [1203] = {.lex_state = 179}, - [1204] = {.lex_state = 14}, - [1205] = {.lex_state = 179}, - [1206] = {.lex_state = 179}, - [1207] = {.lex_state = 179}, - [1208] = {.lex_state = 13}, - [1209] = {.lex_state = 4}, - [1210] = {.lex_state = 179}, - [1211] = {.lex_state = 179}, - [1212] = {.lex_state = 179}, - [1213] = {.lex_state = 179}, - [1214] = {.lex_state = 0}, - [1215] = {.lex_state = 179}, - [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 179}, - [1218] = {.lex_state = 0}, - [1219] = {.lex_state = 14, .external_lex_state = 2}, - [1220] = {.lex_state = 179}, - [1221] = {.lex_state = 179}, - [1222] = {.lex_state = 179}, - [1223] = {.lex_state = 179}, - [1224] = {.lex_state = 179}, - [1225] = {.lex_state = 0}, - [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 179}, - [1228] = {.lex_state = 0}, - [1229] = {.lex_state = 179}, - [1230] = {.lex_state = 179}, - [1231] = {.lex_state = 179}, - [1232] = {.lex_state = 179}, - [1233] = {.lex_state = 0}, - [1234] = {.lex_state = 179}, - [1235] = {.lex_state = 179}, - [1236] = {.lex_state = 179}, - [1237] = {.lex_state = 179}, - [1238] = {.lex_state = 179}, - [1239] = {.lex_state = 179}, - [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 4}, - [1242] = {.lex_state = 14, .external_lex_state = 2}, - [1243] = {.lex_state = 14, .external_lex_state = 2}, - [1244] = {.lex_state = 0}, - [1245] = {.lex_state = 0}, - [1246] = {.lex_state = 0}, - [1247] = {.lex_state = 0}, - [1248] = {.lex_state = 0}, - [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 0}, - [1251] = {.lex_state = 0}, - [1252] = {.lex_state = 4}, - [1253] = {.lex_state = 0}, - [1254] = {.lex_state = 14, .external_lex_state = 2}, - [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 0}, - [1257] = {.lex_state = 0}, + [654] = {.lex_state = 17, .external_lex_state = 2}, + [655] = {.lex_state = 17, .external_lex_state = 2}, + [656] = {.lex_state = 17, .external_lex_state = 2}, + [657] = {.lex_state = 17, .external_lex_state = 2}, + [658] = {.lex_state = 17, .external_lex_state = 2}, + [659] = {.lex_state = 17, .external_lex_state = 2}, + [660] = {.lex_state = 17, .external_lex_state = 2}, + [661] = {.lex_state = 17, .external_lex_state = 2}, + [662] = {.lex_state = 22, .external_lex_state = 2}, + [663] = {.lex_state = 22, .external_lex_state = 2}, + [664] = {.lex_state = 22, .external_lex_state = 2}, + [665] = {.lex_state = 22, .external_lex_state = 2}, + [666] = {.lex_state = 17, .external_lex_state = 2}, + [667] = {.lex_state = 17, .external_lex_state = 2}, + [668] = {.lex_state = 17, .external_lex_state = 2}, + [669] = {.lex_state = 17, .external_lex_state = 2}, + [670] = {.lex_state = 17, .external_lex_state = 2}, + [671] = {.lex_state = 17, .external_lex_state = 2}, + [672] = {.lex_state = 17, .external_lex_state = 2}, + [673] = {.lex_state = 17, .external_lex_state = 2}, + [674] = {.lex_state = 17, .external_lex_state = 2}, + [675] = {.lex_state = 17, .external_lex_state = 2}, + [676] = {.lex_state = 17, .external_lex_state = 2}, + [677] = {.lex_state = 17, .external_lex_state = 2}, + [678] = {.lex_state = 17, .external_lex_state = 2}, + [679] = {.lex_state = 17, .external_lex_state = 2}, + [680] = {.lex_state = 17, .external_lex_state = 2}, + [681] = {.lex_state = 17, .external_lex_state = 2}, + [682] = {.lex_state = 17, .external_lex_state = 2}, + [683] = {.lex_state = 17, .external_lex_state = 2}, + [684] = {.lex_state = 17, .external_lex_state = 2}, + [685] = {.lex_state = 17, .external_lex_state = 2}, + [686] = {.lex_state = 17, .external_lex_state = 2}, + [687] = {.lex_state = 17, .external_lex_state = 2}, + [688] = {.lex_state = 22, .external_lex_state = 2}, + [689] = {.lex_state = 22, .external_lex_state = 2}, + [690] = {.lex_state = 17, .external_lex_state = 2}, + [691] = {.lex_state = 17, .external_lex_state = 2}, + [692] = {.lex_state = 17, .external_lex_state = 2}, + [693] = {.lex_state = 17, .external_lex_state = 2}, + [694] = {.lex_state = 17, .external_lex_state = 2}, + [695] = {.lex_state = 17, .external_lex_state = 2}, + [696] = {.lex_state = 17, .external_lex_state = 2}, + [697] = {.lex_state = 17, .external_lex_state = 2}, + [698] = {.lex_state = 17, .external_lex_state = 2}, + [699] = {.lex_state = 17, .external_lex_state = 2}, + [700] = {.lex_state = 17, .external_lex_state = 2}, + [701] = {.lex_state = 17, .external_lex_state = 2}, + [702] = {.lex_state = 17, .external_lex_state = 2}, + [703] = {.lex_state = 17, .external_lex_state = 2}, + [704] = {.lex_state = 17, .external_lex_state = 2}, + [705] = {.lex_state = 17, .external_lex_state = 2}, + [706] = {.lex_state = 17, .external_lex_state = 2}, + [707] = {.lex_state = 17, .external_lex_state = 2}, + [708] = {.lex_state = 17, .external_lex_state = 2}, + [709] = {.lex_state = 17, .external_lex_state = 2}, + [710] = {.lex_state = 17, .external_lex_state = 2}, + [711] = {.lex_state = 17, .external_lex_state = 2}, + [712] = {.lex_state = 17, .external_lex_state = 2}, + [713] = {.lex_state = 17, .external_lex_state = 2}, + [714] = {.lex_state = 17, .external_lex_state = 2}, + [715] = {.lex_state = 17, .external_lex_state = 2}, + [716] = {.lex_state = 17, .external_lex_state = 2}, + [717] = {.lex_state = 17, .external_lex_state = 2}, + [718] = {.lex_state = 17, .external_lex_state = 2}, + [719] = {.lex_state = 20, .external_lex_state = 2}, + [720] = {.lex_state = 20, .external_lex_state = 2}, + [721] = {.lex_state = 17, .external_lex_state = 2}, + [722] = {.lex_state = 17, .external_lex_state = 2}, + [723] = {.lex_state = 17, .external_lex_state = 2}, + [724] = {.lex_state = 17, .external_lex_state = 2}, + [725] = {.lex_state = 17, .external_lex_state = 2}, + [726] = {.lex_state = 17, .external_lex_state = 2}, + [727] = {.lex_state = 20, .external_lex_state = 2}, + [728] = {.lex_state = 20, .external_lex_state = 2}, + [729] = {.lex_state = 20, .external_lex_state = 2}, + [730] = {.lex_state = 20, .external_lex_state = 2}, + [731] = {.lex_state = 20, .external_lex_state = 2}, + [732] = {.lex_state = 20, .external_lex_state = 2}, + [733] = {.lex_state = 20, .external_lex_state = 2}, + [734] = {.lex_state = 20, .external_lex_state = 2}, + [735] = {.lex_state = 17, .external_lex_state = 2}, + [736] = {.lex_state = 17, .external_lex_state = 2}, + [737] = {.lex_state = 17, .external_lex_state = 2}, + [738] = {.lex_state = 17, .external_lex_state = 2}, + [739] = {.lex_state = 20, .external_lex_state = 2}, + [740] = {.lex_state = 20, .external_lex_state = 2}, + [741] = {.lex_state = 20, .external_lex_state = 2}, + [742] = {.lex_state = 20, .external_lex_state = 2}, + [743] = {.lex_state = 20, .external_lex_state = 2}, + [744] = {.lex_state = 20, .external_lex_state = 2}, + [745] = {.lex_state = 20, .external_lex_state = 2}, + [746] = {.lex_state = 20, .external_lex_state = 2}, + [747] = {.lex_state = 20, .external_lex_state = 2}, + [748] = {.lex_state = 20, .external_lex_state = 2}, + [749] = {.lex_state = 20, .external_lex_state = 2}, + [750] = {.lex_state = 20, .external_lex_state = 2}, + [751] = {.lex_state = 20, .external_lex_state = 2}, + [752] = {.lex_state = 20, .external_lex_state = 2}, + [753] = {.lex_state = 20, .external_lex_state = 2}, + [754] = {.lex_state = 20, .external_lex_state = 2}, + [755] = {.lex_state = 20, .external_lex_state = 2}, + [756] = {.lex_state = 20, .external_lex_state = 2}, + [757] = {.lex_state = 20, .external_lex_state = 2}, + [758] = {.lex_state = 20, .external_lex_state = 2}, + [759] = {.lex_state = 20, .external_lex_state = 2}, + [760] = {.lex_state = 20, .external_lex_state = 2}, + [761] = {.lex_state = 17, .external_lex_state = 2}, + [762] = {.lex_state = 17, .external_lex_state = 2}, + [763] = {.lex_state = 20, .external_lex_state = 2}, + [764] = {.lex_state = 20, .external_lex_state = 2}, + [765] = {.lex_state = 20, .external_lex_state = 2}, + [766] = {.lex_state = 20, .external_lex_state = 2}, + [767] = {.lex_state = 20, .external_lex_state = 2}, + [768] = {.lex_state = 20, .external_lex_state = 2}, + [769] = {.lex_state = 20, .external_lex_state = 2}, + [770] = {.lex_state = 20, .external_lex_state = 2}, + [771] = {.lex_state = 20, .external_lex_state = 2}, + [772] = {.lex_state = 20, .external_lex_state = 2}, + [773] = {.lex_state = 20, .external_lex_state = 2}, + [774] = {.lex_state = 20, .external_lex_state = 2}, + [775] = {.lex_state = 20, .external_lex_state = 2}, + [776] = {.lex_state = 20, .external_lex_state = 2}, + [777] = {.lex_state = 20, .external_lex_state = 2}, + [778] = {.lex_state = 20, .external_lex_state = 2}, + [779] = {.lex_state = 20, .external_lex_state = 2}, + [780] = {.lex_state = 20, .external_lex_state = 2}, + [781] = {.lex_state = 20, .external_lex_state = 2}, + [782] = {.lex_state = 20, .external_lex_state = 2}, + [783] = {.lex_state = 20, .external_lex_state = 2}, + [784] = {.lex_state = 20, .external_lex_state = 2}, + [785] = {.lex_state = 20, .external_lex_state = 2}, + [786] = {.lex_state = 20, .external_lex_state = 2}, + [787] = {.lex_state = 20, .external_lex_state = 2}, + [788] = {.lex_state = 20, .external_lex_state = 2}, + [789] = {.lex_state = 20, .external_lex_state = 2}, + [790] = {.lex_state = 20, .external_lex_state = 2}, + [791] = {.lex_state = 20, .external_lex_state = 2}, + [792] = {.lex_state = 20, .external_lex_state = 2}, + [793] = {.lex_state = 20, .external_lex_state = 2}, + [794] = {.lex_state = 20, .external_lex_state = 2}, + [795] = {.lex_state = 20, .external_lex_state = 2}, + [796] = {.lex_state = 20, .external_lex_state = 2}, + [797] = {.lex_state = 20, .external_lex_state = 2}, + [798] = {.lex_state = 20, .external_lex_state = 2}, + [799] = {.lex_state = 20, .external_lex_state = 2}, + [800] = {.lex_state = 20, .external_lex_state = 2}, + [801] = {.lex_state = 20, .external_lex_state = 2}, + [802] = {.lex_state = 20, .external_lex_state = 2}, + [803] = {.lex_state = 20, .external_lex_state = 2}, + [804] = {.lex_state = 17, .external_lex_state = 2}, + [805] = {.lex_state = 3, .external_lex_state = 2}, + [806] = {.lex_state = 3, .external_lex_state = 2}, + [807] = {.lex_state = 3, .external_lex_state = 2}, + [808] = {.lex_state = 3, .external_lex_state = 2}, + [809] = {.lex_state = 3, .external_lex_state = 2}, + [810] = {.lex_state = 3, .external_lex_state = 2}, + [811] = {.lex_state = 3, .external_lex_state = 2}, + [812] = {.lex_state = 3, .external_lex_state = 2}, + [813] = {.lex_state = 3, .external_lex_state = 2}, + [814] = {.lex_state = 3, .external_lex_state = 2}, + [815] = {.lex_state = 3, .external_lex_state = 2}, + [816] = {.lex_state = 174}, + [817] = {.lex_state = 174}, + [818] = {.lex_state = 174}, + [819] = {.lex_state = 174}, + [820] = {.lex_state = 9, .external_lex_state = 2}, + [821] = {.lex_state = 9, .external_lex_state = 2}, + [822] = {.lex_state = 9, .external_lex_state = 2}, + [823] = {.lex_state = 9, .external_lex_state = 2}, + [824] = {.lex_state = 9, .external_lex_state = 2}, + [825] = {.lex_state = 9, .external_lex_state = 2}, + [826] = {.lex_state = 9, .external_lex_state = 2}, + [827] = {.lex_state = 9, .external_lex_state = 2}, + [828] = {.lex_state = 9, .external_lex_state = 2}, + [829] = {.lex_state = 174}, + [830] = {.lex_state = 174}, + [831] = {.lex_state = 174}, + [832] = {.lex_state = 174}, + [833] = {.lex_state = 174}, + [834] = {.lex_state = 174}, + [835] = {.lex_state = 174}, + [836] = {.lex_state = 174}, + [837] = {.lex_state = 174}, + [838] = {.lex_state = 174}, + [839] = {.lex_state = 174}, + [840] = {.lex_state = 174}, + [841] = {.lex_state = 174}, + [842] = {.lex_state = 174}, + [843] = {.lex_state = 174}, + [844] = {.lex_state = 174}, + [845] = {.lex_state = 174}, + [846] = {.lex_state = 174}, + [847] = {.lex_state = 174}, + [848] = {.lex_state = 174}, + [849] = {.lex_state = 174}, + [850] = {.lex_state = 174}, + [851] = {.lex_state = 174}, + [852] = {.lex_state = 174}, + [853] = {.lex_state = 174}, + [854] = {.lex_state = 174}, + [855] = {.lex_state = 174}, + [856] = {.lex_state = 174}, + [857] = {.lex_state = 174}, + [858] = {.lex_state = 174}, + [859] = {.lex_state = 174}, + [860] = {.lex_state = 174}, + [861] = {.lex_state = 174}, + [862] = {.lex_state = 174}, + [863] = {.lex_state = 174}, + [864] = {.lex_state = 174}, + [865] = {.lex_state = 174}, + [866] = {.lex_state = 174}, + [867] = {.lex_state = 174}, + [868] = {.lex_state = 174}, + [869] = {.lex_state = 174}, + [870] = {.lex_state = 174}, + [871] = {.lex_state = 174}, + [872] = {.lex_state = 174}, + [873] = {.lex_state = 174}, + [874] = {.lex_state = 174}, + [875] = {.lex_state = 174}, + [876] = {.lex_state = 174}, + [877] = {.lex_state = 174}, + [878] = {.lex_state = 174}, + [879] = {.lex_state = 174}, + [880] = {.lex_state = 174}, + [881] = {.lex_state = 174}, + [882] = {.lex_state = 174}, + [883] = {.lex_state = 174}, + [884] = {.lex_state = 174}, + [885] = {.lex_state = 174}, + [886] = {.lex_state = 174}, + [887] = {.lex_state = 174}, + [888] = {.lex_state = 174}, + [889] = {.lex_state = 174}, + [890] = {.lex_state = 174}, + [891] = {.lex_state = 174}, + [892] = {.lex_state = 174}, + [893] = {.lex_state = 174}, + [894] = {.lex_state = 174}, + [895] = {.lex_state = 174}, + [896] = {.lex_state = 174}, + [897] = {.lex_state = 174}, + [898] = {.lex_state = 174}, + [899] = {.lex_state = 174}, + [900] = {.lex_state = 174}, + [901] = {.lex_state = 174}, + [902] = {.lex_state = 174}, + [903] = {.lex_state = 174}, + [904] = {.lex_state = 174}, + [905] = {.lex_state = 174}, + [906] = {.lex_state = 174}, + [907] = {.lex_state = 174}, + [908] = {.lex_state = 174}, + [909] = {.lex_state = 174}, + [910] = {.lex_state = 174}, + [911] = {.lex_state = 174}, + [912] = {.lex_state = 174}, + [913] = {.lex_state = 174}, + [914] = {.lex_state = 174}, + [915] = {.lex_state = 174}, + [916] = {.lex_state = 174}, + [917] = {.lex_state = 174}, + [918] = {.lex_state = 174}, + [919] = {.lex_state = 174}, + [920] = {.lex_state = 174}, + [921] = {.lex_state = 174}, + [922] = {.lex_state = 174}, + [923] = {.lex_state = 174}, + [924] = {.lex_state = 174}, + [925] = {.lex_state = 174}, + [926] = {.lex_state = 174}, + [927] = {.lex_state = 174}, + [928] = {.lex_state = 174}, + [929] = {.lex_state = 174}, + [930] = {.lex_state = 174}, + [931] = {.lex_state = 174}, + [932] = {.lex_state = 174}, + [933] = {.lex_state = 174}, + [934] = {.lex_state = 174}, + [935] = {.lex_state = 174}, + [936] = {.lex_state = 174}, + [937] = {.lex_state = 174}, + [938] = {.lex_state = 174}, + [939] = {.lex_state = 174}, + [940] = {.lex_state = 174}, + [941] = {.lex_state = 174}, + [942] = {.lex_state = 174}, + [943] = {.lex_state = 174}, + [944] = {.lex_state = 174}, + [945] = {.lex_state = 174}, + [946] = {.lex_state = 174}, + [947] = {.lex_state = 174}, + [948] = {.lex_state = 174}, + [949] = {.lex_state = 174}, + [950] = {.lex_state = 174}, + [951] = {.lex_state = 174}, + [952] = {.lex_state = 174}, + [953] = {.lex_state = 174}, + [954] = {.lex_state = 174}, + [955] = {.lex_state = 174}, + [956] = {.lex_state = 174}, + [957] = {.lex_state = 174}, + [958] = {.lex_state = 174}, + [959] = {.lex_state = 174}, + [960] = {.lex_state = 174}, + [961] = {.lex_state = 174}, + [962] = {.lex_state = 174}, + [963] = {.lex_state = 174}, + [964] = {.lex_state = 174}, + [965] = {.lex_state = 174}, + [966] = {.lex_state = 174}, + [967] = {.lex_state = 174}, + [968] = {.lex_state = 174}, + [969] = {.lex_state = 174}, + [970] = {.lex_state = 174}, + [971] = {.lex_state = 174}, + [972] = {.lex_state = 174}, + [973] = {.lex_state = 174}, + [974] = {.lex_state = 174}, + [975] = {.lex_state = 174}, + [976] = {.lex_state = 174}, + [977] = {.lex_state = 174}, + [978] = {.lex_state = 174}, + [979] = {.lex_state = 174}, + [980] = {.lex_state = 174}, + [981] = {.lex_state = 174}, + [982] = {.lex_state = 174}, + [983] = {.lex_state = 174}, + [984] = {.lex_state = 174}, + [985] = {.lex_state = 174}, + [986] = {.lex_state = 174}, + [987] = {.lex_state = 174}, + [988] = {.lex_state = 174}, + [989] = {.lex_state = 174}, + [990] = {.lex_state = 174}, + [991] = {.lex_state = 174}, + [992] = {.lex_state = 174}, + [993] = {.lex_state = 174}, + [994] = {.lex_state = 174}, + [995] = {.lex_state = 174}, + [996] = {.lex_state = 174}, + [997] = {.lex_state = 174}, + [998] = {.lex_state = 174}, + [999] = {.lex_state = 174}, + [1000] = {.lex_state = 174}, + [1001] = {.lex_state = 174}, + [1002] = {.lex_state = 174}, + [1003] = {.lex_state = 174}, + [1004] = {.lex_state = 174}, + [1005] = {.lex_state = 174}, + [1006] = {.lex_state = 174}, + [1007] = {.lex_state = 174}, + [1008] = {.lex_state = 174}, + [1009] = {.lex_state = 174}, + [1010] = {.lex_state = 174}, + [1011] = {.lex_state = 174}, + [1012] = {.lex_state = 174}, + [1013] = {.lex_state = 174}, + [1014] = {.lex_state = 174}, + [1015] = {.lex_state = 174}, + [1016] = {.lex_state = 174}, + [1017] = {.lex_state = 174}, + [1018] = {.lex_state = 174}, + [1019] = {.lex_state = 174}, + [1020] = {.lex_state = 174}, + [1021] = {.lex_state = 174}, + [1022] = {.lex_state = 174}, + [1023] = {.lex_state = 174}, + [1024] = {.lex_state = 174}, + [1025] = {.lex_state = 174}, + [1026] = {.lex_state = 174}, + [1027] = {.lex_state = 174}, + [1028] = {.lex_state = 174}, + [1029] = {.lex_state = 174}, + [1030] = {.lex_state = 174}, + [1031] = {.lex_state = 174}, + [1032] = {.lex_state = 174}, + [1033] = {.lex_state = 174}, + [1034] = {.lex_state = 174}, + [1035] = {.lex_state = 174}, + [1036] = {.lex_state = 174}, + [1037] = {.lex_state = 174}, + [1038] = {.lex_state = 174}, + [1039] = {.lex_state = 174}, + [1040] = {.lex_state = 174}, + [1041] = {.lex_state = 174}, + [1042] = {.lex_state = 174}, + [1043] = {.lex_state = 174}, + [1044] = {.lex_state = 174}, + [1045] = {.lex_state = 174}, + [1046] = {.lex_state = 174}, + [1047] = {.lex_state = 174}, + [1048] = {.lex_state = 174}, + [1049] = {.lex_state = 174}, + [1050] = {.lex_state = 174}, + [1051] = {.lex_state = 174}, + [1052] = {.lex_state = 174}, + [1053] = {.lex_state = 174}, + [1054] = {.lex_state = 11}, + [1055] = {.lex_state = 174}, + [1056] = {.lex_state = 174}, + [1057] = {.lex_state = 174}, + [1058] = {.lex_state = 174}, + [1059] = {.lex_state = 174}, + [1060] = {.lex_state = 174}, + [1061] = {.lex_state = 174}, + [1062] = {.lex_state = 174}, + [1063] = {.lex_state = 11}, + [1064] = {.lex_state = 174}, + [1065] = {.lex_state = 174}, + [1066] = {.lex_state = 174}, + [1067] = {.lex_state = 174}, + [1068] = {.lex_state = 3}, + [1069] = {.lex_state = 174}, + [1070] = {.lex_state = 174}, + [1071] = {.lex_state = 174}, + [1072] = {.lex_state = 174}, + [1073] = {.lex_state = 174}, + [1074] = {.lex_state = 174}, + [1075] = {.lex_state = 174}, + [1076] = {.lex_state = 174}, + [1077] = {.lex_state = 174}, + [1078] = {.lex_state = 174}, + [1079] = {.lex_state = 174}, + [1080] = {.lex_state = 3}, + [1081] = {.lex_state = 174}, + [1082] = {.lex_state = 174}, + [1083] = {.lex_state = 174}, + [1084] = {.lex_state = 174}, + [1085] = {.lex_state = 174}, + [1086] = {.lex_state = 174}, + [1087] = {.lex_state = 174}, + [1088] = {.lex_state = 174}, + [1089] = {.lex_state = 174}, + [1090] = {.lex_state = 174}, + [1091] = {.lex_state = 174}, + [1092] = {.lex_state = 174}, + [1093] = {.lex_state = 174}, + [1094] = {.lex_state = 174}, + [1095] = {.lex_state = 174}, + [1096] = {.lex_state = 174}, + [1097] = {.lex_state = 174}, + [1098] = {.lex_state = 174}, + [1099] = {.lex_state = 174}, + [1100] = {.lex_state = 174}, + [1101] = {.lex_state = 174}, + [1102] = {.lex_state = 174}, + [1103] = {.lex_state = 174}, + [1104] = {.lex_state = 174}, + [1105] = {.lex_state = 174}, + [1106] = {.lex_state = 174}, + [1107] = {.lex_state = 174}, + [1108] = {.lex_state = 174}, + [1109] = {.lex_state = 174}, + [1110] = {.lex_state = 174}, + [1111] = {.lex_state = 174}, + [1112] = {.lex_state = 174}, + [1113] = {.lex_state = 174}, + [1114] = {.lex_state = 174}, + [1115] = {.lex_state = 174}, + [1116] = {.lex_state = 11}, + [1117] = {.lex_state = 174}, + [1118] = {.lex_state = 174}, + [1119] = {.lex_state = 174}, + [1120] = {.lex_state = 174}, + [1121] = {.lex_state = 11}, + [1122] = {.lex_state = 11}, + [1123] = {.lex_state = 11}, + [1124] = {.lex_state = 11}, + [1125] = {.lex_state = 11}, + [1126] = {.lex_state = 11}, + [1127] = {.lex_state = 11}, + [1128] = {.lex_state = 11}, + [1129] = {.lex_state = 11}, + [1130] = {.lex_state = 174}, + [1131] = {.lex_state = 11}, + [1132] = {.lex_state = 11}, + [1133] = {.lex_state = 11}, + [1134] = {.lex_state = 11}, + [1135] = {.lex_state = 11}, + [1136] = {.lex_state = 11}, + [1137] = {.lex_state = 174}, + [1138] = {.lex_state = 174}, + [1139] = {.lex_state = 174}, + [1140] = {.lex_state = 11}, + [1141] = {.lex_state = 174}, + [1142] = {.lex_state = 174}, + [1143] = {.lex_state = 174}, + [1144] = {.lex_state = 174}, + [1145] = {.lex_state = 11}, + [1146] = {.lex_state = 11}, + [1147] = {.lex_state = 11}, + [1148] = {.lex_state = 174}, + [1149] = {.lex_state = 11}, + [1150] = {.lex_state = 11}, + [1151] = {.lex_state = 174}, + [1152] = {.lex_state = 11}, + [1153] = {.lex_state = 174}, + [1154] = {.lex_state = 174}, + [1155] = {.lex_state = 174}, + [1156] = {.lex_state = 174}, + [1157] = {.lex_state = 174}, + [1158] = {.lex_state = 174}, + [1159] = {.lex_state = 174}, + [1160] = {.lex_state = 11}, + [1161] = {.lex_state = 174}, + [1162] = {.lex_state = 174}, + [1163] = {.lex_state = 11}, + [1164] = {.lex_state = 174}, + [1165] = {.lex_state = 174}, + [1166] = {.lex_state = 174}, + [1167] = {.lex_state = 174}, + [1168] = {.lex_state = 174}, + [1169] = {.lex_state = 174}, + [1170] = {.lex_state = 174}, + [1171] = {.lex_state = 174}, + [1172] = {.lex_state = 174}, + [1173] = {.lex_state = 174}, + [1174] = {.lex_state = 174}, + [1175] = {.lex_state = 174}, + [1176] = {.lex_state = 174}, + [1177] = {.lex_state = 174}, + [1178] = {.lex_state = 174}, + [1179] = {.lex_state = 174}, + [1180] = {.lex_state = 174}, + [1181] = {.lex_state = 174}, + [1182] = {.lex_state = 174}, + [1183] = {.lex_state = 174}, + [1184] = {.lex_state = 174}, + [1185] = {.lex_state = 174}, + [1186] = {.lex_state = 174}, + [1187] = {.lex_state = 174}, + [1188] = {.lex_state = 174}, + [1189] = {.lex_state = 174}, + [1190] = {.lex_state = 174}, + [1191] = {.lex_state = 174}, + [1192] = {.lex_state = 174}, + [1193] = {.lex_state = 174}, + [1194] = {.lex_state = 174}, + [1195] = {.lex_state = 174}, + [1196] = {.lex_state = 174}, + [1197] = {.lex_state = 174}, + [1198] = {.lex_state = 174}, + [1199] = {.lex_state = 174}, + [1200] = {.lex_state = 174}, + [1201] = {.lex_state = 174}, + [1202] = {.lex_state = 174}, + [1203] = {.lex_state = 174}, + [1204] = {.lex_state = 174}, + [1205] = {.lex_state = 174}, + [1206] = {.lex_state = 174}, + [1207] = {.lex_state = 174}, + [1208] = {.lex_state = 174}, + [1209] = {.lex_state = 174}, + [1210] = {.lex_state = 174}, + [1211] = {.lex_state = 174}, + [1212] = {.lex_state = 174}, + [1213] = {.lex_state = 174}, + [1214] = {.lex_state = 174}, + [1215] = {.lex_state = 174}, + [1216] = {.lex_state = 174}, + [1217] = {.lex_state = 174}, + [1218] = {.lex_state = 174}, + [1219] = {.lex_state = 174}, + [1220] = {.lex_state = 174}, + [1221] = {.lex_state = 12}, + [1222] = {.lex_state = 12}, + [1223] = {.lex_state = 12}, + [1224] = {.lex_state = 12}, + [1225] = {.lex_state = 12}, + [1226] = {.lex_state = 12}, + [1227] = {.lex_state = 12}, + [1228] = {.lex_state = 12}, + [1229] = {.lex_state = 3}, + [1230] = {.lex_state = 12}, + [1231] = {.lex_state = 12}, + [1232] = {.lex_state = 0}, + [1233] = {.lex_state = 12}, + [1234] = {.lex_state = 174}, + [1235] = {.lex_state = 12}, + [1236] = {.lex_state = 12}, + [1237] = {.lex_state = 12}, + [1238] = {.lex_state = 12}, + [1239] = {.lex_state = 0}, + [1240] = {.lex_state = 12}, + [1241] = {.lex_state = 0}, + [1242] = {.lex_state = 12}, + [1243] = {.lex_state = 174}, + [1244] = {.lex_state = 4}, + [1245] = {.lex_state = 174}, + [1246] = {.lex_state = 4}, + [1247] = {.lex_state = 174}, + [1248] = {.lex_state = 174}, + [1249] = {.lex_state = 12}, + [1250] = {.lex_state = 174}, + [1251] = {.lex_state = 174}, + [1252] = {.lex_state = 12}, + [1253] = {.lex_state = 174}, + [1254] = {.lex_state = 0}, + [1255] = {.lex_state = 174}, + [1256] = {.lex_state = 12}, + [1257] = {.lex_state = 12}, [1258] = {.lex_state = 0}, - [1259] = {.lex_state = 0}, - [1260] = {.lex_state = 0}, - [1261] = {.lex_state = 179}, - [1262] = {.lex_state = 0}, - [1263] = {.lex_state = 0}, - [1264] = {.lex_state = 0}, - [1265] = {.lex_state = 0}, - [1266] = {.lex_state = 179}, - [1267] = {.lex_state = 0}, + [1259] = {.lex_state = 174}, + [1260] = {.lex_state = 12}, + [1261] = {.lex_state = 0}, + [1262] = {.lex_state = 12}, + [1263] = {.lex_state = 174}, + [1264] = {.lex_state = 12}, + [1265] = {.lex_state = 174}, + [1266] = {.lex_state = 174}, + [1267] = {.lex_state = 12, .external_lex_state = 2}, [1268] = {.lex_state = 0}, - [1269] = {.lex_state = 0}, - [1270] = {.lex_state = 179}, - [1271] = {.lex_state = 0}, - [1272] = {.lex_state = 0}, - [1273] = {.lex_state = 14, .external_lex_state = 2}, - [1274] = {.lex_state = 0}, - [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 0}, + [1269] = {.lex_state = 174}, + [1270] = {.lex_state = 174}, + [1271] = {.lex_state = 174}, + [1272] = {.lex_state = 174}, + [1273] = {.lex_state = 174}, + [1274] = {.lex_state = 174}, + [1275] = {.lex_state = 174}, + [1276] = {.lex_state = 174}, [1277] = {.lex_state = 0}, [1278] = {.lex_state = 0}, - [1279] = {.lex_state = 0}, - [1280] = {.lex_state = 14, .external_lex_state = 2}, - [1281] = {.lex_state = 0}, + [1279] = {.lex_state = 174}, + [1280] = {.lex_state = 174}, + [1281] = {.lex_state = 174}, [1282] = {.lex_state = 0}, - [1283] = {.lex_state = 14, .external_lex_state = 2}, - [1284] = {.lex_state = 15}, - [1285] = {.lex_state = 12}, - [1286] = {.lex_state = 12}, - [1287] = {.lex_state = 14}, - [1288] = {.lex_state = 12}, - [1289] = {.lex_state = 12}, - [1290] = {.lex_state = 12}, - [1291] = {.lex_state = 12}, - [1292] = {.lex_state = 12}, - [1293] = {.lex_state = 0}, + [1283] = {.lex_state = 174}, + [1284] = {.lex_state = 174}, + [1285] = {.lex_state = 0}, + [1286] = {.lex_state = 0}, + [1287] = {.lex_state = 0}, + [1288] = {.lex_state = 4}, + [1289] = {.lex_state = 4}, + [1290] = {.lex_state = 0}, + [1291] = {.lex_state = 0}, + [1292] = {.lex_state = 12, .external_lex_state = 2}, + [1293] = {.lex_state = 12, .external_lex_state = 2}, [1294] = {.lex_state = 0}, [1295] = {.lex_state = 0}, [1296] = {.lex_state = 0}, [1297] = {.lex_state = 0}, - [1298] = {.lex_state = 4}, - [1299] = {.lex_state = 15}, - [1300] = {.lex_state = 4}, + [1298] = {.lex_state = 0}, + [1299] = {.lex_state = 0}, + [1300] = {.lex_state = 12}, [1301] = {.lex_state = 0}, [1302] = {.lex_state = 0}, [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 0}, - [1305] = {.lex_state = 0}, + [1304] = {.lex_state = 12}, + [1305] = {.lex_state = 174}, [1306] = {.lex_state = 0}, - [1307] = {.lex_state = 13}, - [1308] = {.lex_state = 179}, - [1309] = {.lex_state = 13}, + [1307] = {.lex_state = 12, .external_lex_state = 2}, + [1308] = {.lex_state = 0}, + [1309] = {.lex_state = 0}, [1310] = {.lex_state = 0}, [1311] = {.lex_state = 0}, [1312] = {.lex_state = 0}, [1313] = {.lex_state = 0}, - [1314] = {.lex_state = 0}, + [1314] = {.lex_state = 12, .external_lex_state = 2}, [1315] = {.lex_state = 0}, [1316] = {.lex_state = 0}, [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 13}, + [1318] = {.lex_state = 0}, [1319] = {.lex_state = 0}, - [1320] = {.lex_state = 0}, + [1320] = {.lex_state = 174}, [1321] = {.lex_state = 0}, [1322] = {.lex_state = 0}, - [1323] = {.lex_state = 14}, - [1324] = {.lex_state = 12}, - [1325] = {.lex_state = 0}, + [1323] = {.lex_state = 0}, + [1324] = {.lex_state = 0}, + [1325] = {.lex_state = 174}, [1326] = {.lex_state = 0}, [1327] = {.lex_state = 0}, [1328] = {.lex_state = 0}, @@ -11736,14 +12054,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1330] = {.lex_state = 0}, [1331] = {.lex_state = 0}, [1332] = {.lex_state = 0}, - [1333] = {.lex_state = 0}, + [1333] = {.lex_state = 174}, [1334] = {.lex_state = 0}, [1335] = {.lex_state = 0}, [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 13}, - [1338] = {.lex_state = 13}, - [1339] = {.lex_state = 179}, - [1340] = {.lex_state = 4}, + [1337] = {.lex_state = 0}, + [1338] = {.lex_state = 0}, + [1339] = {.lex_state = 0}, + [1340] = {.lex_state = 0}, [1341] = {.lex_state = 0}, [1342] = {.lex_state = 0}, [1343] = {.lex_state = 0}, @@ -11751,480 +12069,480 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1345] = {.lex_state = 0}, [1346] = {.lex_state = 0}, [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 179}, + [1348] = {.lex_state = 0}, [1349] = {.lex_state = 0}, [1350] = {.lex_state = 0}, - [1351] = {.lex_state = 0}, - [1352] = {.lex_state = 0}, - [1353] = {.lex_state = 0}, - [1354] = {.lex_state = 0}, - [1355] = {.lex_state = 13}, - [1356] = {.lex_state = 0}, - [1357] = {.lex_state = 0}, - [1358] = {.lex_state = 0}, - [1359] = {.lex_state = 0}, - [1360] = {.lex_state = 0}, - [1361] = {.lex_state = 0}, - [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 0}, - [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 179}, + [1351] = {.lex_state = 12, .external_lex_state = 2}, + [1352] = {.lex_state = 12}, + [1353] = {.lex_state = 12, .external_lex_state = 2}, + [1354] = {.lex_state = 13}, + [1355] = {.lex_state = 11}, + [1356] = {.lex_state = 11}, + [1357] = {.lex_state = 11}, + [1358] = {.lex_state = 11}, + [1359] = {.lex_state = 11}, + [1360] = {.lex_state = 11}, + [1361] = {.lex_state = 11}, + [1362] = {.lex_state = 11}, + [1363] = {.lex_state = 11}, + [1364] = {.lex_state = 4}, + [1365] = {.lex_state = 0}, [1366] = {.lex_state = 0}, [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 179}, - [1369] = {.lex_state = 179}, - [1370] = {.lex_state = 0}, + [1368] = {.lex_state = 0}, + [1369] = {.lex_state = 12}, + [1370] = {.lex_state = 174}, [1371] = {.lex_state = 0}, - [1372] = {.lex_state = 179}, - [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 0}, - [1375] = {.lex_state = 4}, - [1376] = {.lex_state = 0}, - [1377] = {.lex_state = 13}, - [1378] = {.lex_state = 179}, - [1379] = {.lex_state = 179}, + [1372] = {.lex_state = 12}, + [1373] = {.lex_state = 12}, + [1374] = {.lex_state = 12}, + [1375] = {.lex_state = 174}, + [1376] = {.lex_state = 12}, + [1377] = {.lex_state = 12}, + [1378] = {.lex_state = 0}, + [1379] = {.lex_state = 4}, [1380] = {.lex_state = 0}, [1381] = {.lex_state = 0}, [1382] = {.lex_state = 0}, - [1383] = {.lex_state = 3}, + [1383] = {.lex_state = 0}, [1384] = {.lex_state = 0}, - [1385] = {.lex_state = 0}, - [1386] = {.lex_state = 179}, + [1385] = {.lex_state = 174}, + [1386] = {.lex_state = 174}, [1387] = {.lex_state = 0}, [1388] = {.lex_state = 0}, [1389] = {.lex_state = 0}, - [1390] = {.lex_state = 4}, - [1391] = {.lex_state = 179}, - [1392] = {.lex_state = 179}, + [1390] = {.lex_state = 0}, + [1391] = {.lex_state = 0}, + [1392] = {.lex_state = 0}, [1393] = {.lex_state = 0}, - [1394] = {.lex_state = 179}, + [1394] = {.lex_state = 0}, [1395] = {.lex_state = 0}, - [1396] = {.lex_state = 179}, - [1397] = {.lex_state = 4}, + [1396] = {.lex_state = 174}, + [1397] = {.lex_state = 0}, [1398] = {.lex_state = 0}, [1399] = {.lex_state = 0}, - [1400] = {.lex_state = 4}, + [1400] = {.lex_state = 0}, [1401] = {.lex_state = 0}, - [1402] = {.lex_state = 4}, + [1402] = {.lex_state = 0}, [1403] = {.lex_state = 0}, - [1404] = {.lex_state = 179}, - [1405] = {.lex_state = 13}, - [1406] = {.lex_state = 3}, + [1404] = {.lex_state = 0}, + [1405] = {.lex_state = 0}, + [1406] = {.lex_state = 0}, [1407] = {.lex_state = 0}, - [1408] = {.lex_state = 13}, - [1409] = {.lex_state = 13}, - [1410] = {.lex_state = 13}, - [1411] = {.lex_state = 13}, - [1412] = {.lex_state = 13}, - [1413] = {.lex_state = 13}, - [1414] = {.lex_state = 179}, - [1415] = {.lex_state = 13}, - [1416] = {.lex_state = 13}, + [1408] = {.lex_state = 174}, + [1409] = {.lex_state = 0}, + [1410] = {.lex_state = 0}, + [1411] = {.lex_state = 0}, + [1412] = {.lex_state = 12}, + [1413] = {.lex_state = 0}, + [1414] = {.lex_state = 0}, + [1415] = {.lex_state = 0}, + [1416] = {.lex_state = 0}, [1417] = {.lex_state = 0}, - [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 179}, - [1420] = {.lex_state = 1}, - [1421] = {.lex_state = 0}, - [1422] = {.lex_state = 13}, - [1423] = {.lex_state = 13}, - [1424] = {.lex_state = 13}, + [1418] = {.lex_state = 174}, + [1419] = {.lex_state = 0}, + [1420] = {.lex_state = 0}, + [1421] = {.lex_state = 174}, + [1422] = {.lex_state = 0}, + [1423] = {.lex_state = 0}, + [1424] = {.lex_state = 0}, [1425] = {.lex_state = 0}, - [1426] = {.lex_state = 13}, - [1427] = {.lex_state = 13}, + [1426] = {.lex_state = 0}, + [1427] = {.lex_state = 0}, [1428] = {.lex_state = 0}, [1429] = {.lex_state = 0}, - [1430] = {.lex_state = 179}, - [1431] = {.lex_state = 0}, - [1432] = {.lex_state = 13}, - [1433] = {.lex_state = 13}, - [1434] = {.lex_state = 0}, - [1435] = {.lex_state = 179}, - [1436] = {.lex_state = 13}, - [1437] = {.lex_state = 179}, - [1438] = {.lex_state = 13}, + [1430] = {.lex_state = 0}, + [1431] = {.lex_state = 4}, + [1432] = {.lex_state = 0}, + [1433] = {.lex_state = 0}, + [1434] = {.lex_state = 11}, + [1435] = {.lex_state = 174}, + [1436] = {.lex_state = 0}, + [1437] = {.lex_state = 0}, + [1438] = {.lex_state = 0}, [1439] = {.lex_state = 0}, [1440] = {.lex_state = 0}, [1441] = {.lex_state = 0}, - [1442] = {.lex_state = 13}, - [1443] = {.lex_state = 13}, + [1442] = {.lex_state = 0}, + [1443] = {.lex_state = 0}, [1444] = {.lex_state = 0}, - [1445] = {.lex_state = 13}, - [1446] = {.lex_state = 13}, - [1447] = {.lex_state = 13}, - [1448] = {.lex_state = 179}, - [1449] = {.lex_state = 0}, + [1445] = {.lex_state = 0}, + [1446] = {.lex_state = 0}, + [1447] = {.lex_state = 0}, + [1448] = {.lex_state = 12}, + [1449] = {.lex_state = 4}, [1450] = {.lex_state = 0}, - [1451] = {.lex_state = 13}, - [1452] = {.lex_state = 0}, + [1451] = {.lex_state = 4}, + [1452] = {.lex_state = 174}, [1453] = {.lex_state = 0}, - [1454] = {.lex_state = 0}, - [1455] = {.lex_state = 13}, - [1456] = {.lex_state = 179}, - [1457] = {.lex_state = 13}, + [1454] = {.lex_state = 174}, + [1455] = {.lex_state = 174}, + [1456] = {.lex_state = 174}, + [1457] = {.lex_state = 4}, [1458] = {.lex_state = 0}, [1459] = {.lex_state = 0}, - [1460] = {.lex_state = 13}, + [1460] = {.lex_state = 174}, [1461] = {.lex_state = 0}, - [1462] = {.lex_state = 179}, + [1462] = {.lex_state = 174}, [1463] = {.lex_state = 0}, - [1464] = {.lex_state = 13}, - [1465] = {.lex_state = 13}, + [1464] = {.lex_state = 0}, + [1465] = {.lex_state = 0}, [1466] = {.lex_state = 0}, [1467] = {.lex_state = 0}, - [1468] = {.lex_state = 0}, - [1469] = {.lex_state = 13}, - [1470] = {.lex_state = 179}, - [1471] = {.lex_state = 13}, - [1472] = {.lex_state = 0}, - [1473] = {.lex_state = 179}, - [1474] = {.lex_state = 179}, - [1475] = {.lex_state = 13}, + [1468] = {.lex_state = 174}, + [1469] = {.lex_state = 0}, + [1470] = {.lex_state = 0}, + [1471] = {.lex_state = 4}, + [1472] = {.lex_state = 4}, + [1473] = {.lex_state = 174}, + [1474] = {.lex_state = 0}, + [1475] = {.lex_state = 0}, [1476] = {.lex_state = 0}, [1477] = {.lex_state = 0}, - [1478] = {.lex_state = 179}, - [1479] = {.lex_state = 4}, + [1478] = {.lex_state = 0}, + [1479] = {.lex_state = 174}, [1480] = {.lex_state = 0}, - [1481] = {.lex_state = 0}, - [1482] = {.lex_state = 0}, + [1481] = {.lex_state = 174}, + [1482] = {.lex_state = 174}, [1483] = {.lex_state = 0}, - [1484] = {.lex_state = 12}, + [1484] = {.lex_state = 13, .external_lex_state = 3}, [1485] = {.lex_state = 0}, - [1486] = {.lex_state = 4}, - [1487] = {.lex_state = 13}, + [1486] = {.lex_state = 0}, + [1487] = {.lex_state = 0}, [1488] = {.lex_state = 0}, - [1489] = {.lex_state = 3}, - [1490] = {.lex_state = 0}, + [1489] = {.lex_state = 0}, + [1490] = {.lex_state = 174}, [1491] = {.lex_state = 0}, - [1492] = {.lex_state = 4}, + [1492] = {.lex_state = 174}, [1493] = {.lex_state = 0}, - [1494] = {.lex_state = 3}, - [1495] = {.lex_state = 0}, - [1496] = {.lex_state = 4}, - [1497] = {.lex_state = 0}, + [1494] = {.lex_state = 13}, + [1495] = {.lex_state = 13}, + [1496] = {.lex_state = 0}, + [1497] = {.lex_state = 3}, [1498] = {.lex_state = 0}, [1499] = {.lex_state = 0}, - [1500] = {.lex_state = 0}, + [1500] = {.lex_state = 12}, [1501] = {.lex_state = 0}, [1502] = {.lex_state = 0}, [1503] = {.lex_state = 0}, - [1504] = {.lex_state = 179}, - [1505] = {.lex_state = 0}, - [1506] = {.lex_state = 179}, - [1507] = {.lex_state = 13}, - [1508] = {.lex_state = 179}, + [1504] = {.lex_state = 0}, + [1505] = {.lex_state = 1}, + [1506] = {.lex_state = 0}, + [1507] = {.lex_state = 0}, + [1508] = {.lex_state = 0}, [1509] = {.lex_state = 0}, - [1510] = {.lex_state = 0}, - [1511] = {.lex_state = 0}, - [1512] = {.lex_state = 0}, + [1510] = {.lex_state = 1}, + [1511] = {.lex_state = 12}, + [1512] = {.lex_state = 174}, [1513] = {.lex_state = 0}, - [1514] = {.lex_state = 179}, - [1515] = {.lex_state = 13}, - [1516] = {.lex_state = 13}, - [1517] = {.lex_state = 13}, - [1518] = {.lex_state = 13}, + [1514] = {.lex_state = 0}, + [1515] = {.lex_state = 174}, + [1516] = {.lex_state = 0}, + [1517] = {.lex_state = 0}, + [1518] = {.lex_state = 1}, [1519] = {.lex_state = 13}, - [1520] = {.lex_state = 13}, + [1520] = {.lex_state = 0}, [1521] = {.lex_state = 0}, [1522] = {.lex_state = 0}, [1523] = {.lex_state = 0}, [1524] = {.lex_state = 0}, - [1525] = {.lex_state = 0}, - [1526] = {.lex_state = 0}, - [1527] = {.lex_state = 0}, - [1528] = {.lex_state = 179}, + [1525] = {.lex_state = 12}, + [1526] = {.lex_state = 12}, + [1527] = {.lex_state = 174}, + [1528] = {.lex_state = 174}, [1529] = {.lex_state = 0}, - [1530] = {.lex_state = 3}, + [1530] = {.lex_state = 0}, [1531] = {.lex_state = 0}, - [1532] = {.lex_state = 0}, - [1533] = {.lex_state = 0}, + [1532] = {.lex_state = 12}, + [1533] = {.lex_state = 12}, [1534] = {.lex_state = 0}, [1535] = {.lex_state = 0}, - [1536] = {.lex_state = 179}, + [1536] = {.lex_state = 0}, [1537] = {.lex_state = 0}, [1538] = {.lex_state = 0}, [1539] = {.lex_state = 0}, [1540] = {.lex_state = 0}, - [1541] = {.lex_state = 13}, - [1542] = {.lex_state = 0}, - [1543] = {.lex_state = 179}, + [1541] = {.lex_state = 0}, + [1542] = {.lex_state = 3}, + [1543] = {.lex_state = 0}, [1544] = {.lex_state = 0}, - [1545] = {.lex_state = 179}, - [1546] = {.lex_state = 1}, - [1547] = {.lex_state = 0}, - [1548] = {.lex_state = 0}, - [1549] = {.lex_state = 0}, - [1550] = {.lex_state = 0}, - [1551] = {.lex_state = 0}, + [1545] = {.lex_state = 12}, + [1546] = {.lex_state = 0}, + [1547] = {.lex_state = 12}, + [1548] = {.lex_state = 12}, + [1549] = {.lex_state = 12}, + [1550] = {.lex_state = 12}, + [1551] = {.lex_state = 12}, [1552] = {.lex_state = 0}, - [1553] = {.lex_state = 13}, + [1553] = {.lex_state = 174}, [1554] = {.lex_state = 0}, - [1555] = {.lex_state = 0}, - [1556] = {.lex_state = 0}, - [1557] = {.lex_state = 0}, + [1555] = {.lex_state = 12}, + [1556] = {.lex_state = 4}, + [1557] = {.lex_state = 174}, [1558] = {.lex_state = 3}, - [1559] = {.lex_state = 179}, - [1560] = {.lex_state = 1}, - [1561] = {.lex_state = 13}, - [1562] = {.lex_state = 0}, - [1563] = {.lex_state = 13}, - [1564] = {.lex_state = 179}, + [1559] = {.lex_state = 174}, + [1560] = {.lex_state = 12}, + [1561] = {.lex_state = 12}, + [1562] = {.lex_state = 12}, + [1563] = {.lex_state = 12}, + [1564] = {.lex_state = 12}, [1565] = {.lex_state = 0}, - [1566] = {.lex_state = 0}, + [1566] = {.lex_state = 174}, [1567] = {.lex_state = 0}, - [1568] = {.lex_state = 0}, + [1568] = {.lex_state = 12}, [1569] = {.lex_state = 0}, - [1570] = {.lex_state = 179}, + [1570] = {.lex_state = 0}, [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 179}, - [1573] = {.lex_state = 13}, - [1574] = {.lex_state = 13}, - [1575] = {.lex_state = 0}, - [1576] = {.lex_state = 179}, - [1577] = {.lex_state = 179}, - [1578] = {.lex_state = 0}, - [1579] = {.lex_state = 1}, + [1572] = {.lex_state = 12}, + [1573] = {.lex_state = 12}, + [1574] = {.lex_state = 12}, + [1575] = {.lex_state = 12}, + [1576] = {.lex_state = 12}, + [1577] = {.lex_state = 174}, + [1578] = {.lex_state = 174}, + [1579] = {.lex_state = 13}, [1580] = {.lex_state = 0}, - [1581] = {.lex_state = 0}, + [1581] = {.lex_state = 12}, [1582] = {.lex_state = 0}, [1583] = {.lex_state = 0}, [1584] = {.lex_state = 0}, - [1585] = {.lex_state = 0}, - [1586] = {.lex_state = 0}, - [1587] = {.lex_state = 179}, - [1588] = {.lex_state = 0}, - [1589] = {.lex_state = 0}, + [1585] = {.lex_state = 12}, + [1586] = {.lex_state = 12}, + [1587] = {.lex_state = 12}, + [1588] = {.lex_state = 12}, + [1589] = {.lex_state = 12}, [1590] = {.lex_state = 0}, - [1591] = {.lex_state = 0}, + [1591] = {.lex_state = 174}, [1592] = {.lex_state = 0}, - [1593] = {.lex_state = 0}, + [1593] = {.lex_state = 12}, [1594] = {.lex_state = 0}, [1595] = {.lex_state = 0}, [1596] = {.lex_state = 0}, - [1597] = {.lex_state = 0}, - [1598] = {.lex_state = 0}, - [1599] = {.lex_state = 0}, - [1600] = {.lex_state = 0}, - [1601] = {.lex_state = 0}, - [1602] = {.lex_state = 13}, - [1603] = {.lex_state = 0}, - [1604] = {.lex_state = 13}, - [1605] = {.lex_state = 13}, - [1606] = {.lex_state = 13}, + [1597] = {.lex_state = 12}, + [1598] = {.lex_state = 12}, + [1599] = {.lex_state = 12}, + [1600] = {.lex_state = 12}, + [1601] = {.lex_state = 12}, + [1602] = {.lex_state = 174}, + [1603] = {.lex_state = 12}, + [1604] = {.lex_state = 0}, + [1605] = {.lex_state = 12}, + [1606] = {.lex_state = 0}, [1607] = {.lex_state = 0}, [1608] = {.lex_state = 0}, [1609] = {.lex_state = 0}, - [1610] = {.lex_state = 0}, + [1610] = {.lex_state = 11}, [1611] = {.lex_state = 0}, - [1612] = {.lex_state = 0}, + [1612] = {.lex_state = 174}, [1613] = {.lex_state = 0}, [1614] = {.lex_state = 0}, - [1615] = {.lex_state = 179}, + [1615] = {.lex_state = 0}, [1616] = {.lex_state = 0}, - [1617] = {.lex_state = 0}, + [1617] = {.lex_state = 174}, [1618] = {.lex_state = 0}, [1619] = {.lex_state = 0}, [1620] = {.lex_state = 0}, [1621] = {.lex_state = 0}, - [1622] = {.lex_state = 179}, + [1622] = {.lex_state = 12}, [1623] = {.lex_state = 0}, - [1624] = {.lex_state = 0}, + [1624] = {.lex_state = 12}, [1625] = {.lex_state = 0}, [1626] = {.lex_state = 0}, [1627] = {.lex_state = 0}, [1628] = {.lex_state = 0}, [1629] = {.lex_state = 0}, - [1630] = {.lex_state = 0}, - [1631] = {.lex_state = 0}, - [1632] = {.lex_state = 179}, - [1633] = {.lex_state = 0}, - [1634] = {.lex_state = 0}, - [1635] = {.lex_state = 0}, - [1636] = {.lex_state = 179}, - [1637] = {.lex_state = 0}, - [1638] = {.lex_state = 0}, + [1630] = {.lex_state = 174}, + [1631] = {.lex_state = 174}, + [1632] = {.lex_state = 12}, + [1633] = {.lex_state = 12}, + [1634] = {.lex_state = 3}, + [1635] = {.lex_state = 174}, + [1636] = {.lex_state = 0}, + [1637] = {.lex_state = 174}, + [1638] = {.lex_state = 12}, [1639] = {.lex_state = 0}, [1640] = {.lex_state = 0}, - [1641] = {.lex_state = 0}, - [1642] = {.lex_state = 179}, + [1641] = {.lex_state = 13, .external_lex_state = 4}, + [1642] = {.lex_state = 0}, [1643] = {.lex_state = 0}, [1644] = {.lex_state = 0}, [1645] = {.lex_state = 0}, [1646] = {.lex_state = 0}, [1647] = {.lex_state = 0}, - [1648] = {.lex_state = 13}, - [1649] = {.lex_state = 0}, - [1650] = {.lex_state = 0}, - [1651] = {.lex_state = 0}, + [1648] = {.lex_state = 174}, + [1649] = {.lex_state = 12}, + [1650] = {.lex_state = 12}, + [1651] = {.lex_state = 174}, [1652] = {.lex_state = 0}, - [1653] = {.lex_state = 13}, + [1653] = {.lex_state = 0}, [1654] = {.lex_state = 0}, - [1655] = {.lex_state = 13}, + [1655] = {.lex_state = 174}, [1656] = {.lex_state = 0}, [1657] = {.lex_state = 0}, [1658] = {.lex_state = 0}, - [1659] = {.lex_state = 0}, + [1659] = {.lex_state = 174}, [1660] = {.lex_state = 0}, - [1661] = {.lex_state = 14}, - [1662] = {.lex_state = 179}, - [1663] = {.lex_state = 0}, - [1664] = {.lex_state = 179}, - [1665] = {.lex_state = 0}, - [1666] = {.lex_state = 0}, - [1667] = {.lex_state = 0}, + [1661] = {.lex_state = 0}, + [1662] = {.lex_state = 0}, + [1663] = {.lex_state = 174}, + [1664] = {.lex_state = 12}, + [1665] = {.lex_state = 12}, + [1666] = {.lex_state = 174}, + [1667] = {.lex_state = 174}, [1668] = {.lex_state = 0}, [1669] = {.lex_state = 0}, [1670] = {.lex_state = 0}, [1671] = {.lex_state = 0}, [1672] = {.lex_state = 0}, - [1673] = {.lex_state = 0}, - [1674] = {.lex_state = 12}, - [1675] = {.lex_state = 0}, - [1676] = {.lex_state = 0}, - [1677] = {.lex_state = 0}, - [1678] = {.lex_state = 0}, - [1679] = {.lex_state = 0}, + [1673] = {.lex_state = 1}, + [1674] = {.lex_state = 0}, + [1675] = {.lex_state = 174}, + [1676] = {.lex_state = 12}, + [1677] = {.lex_state = 12}, + [1678] = {.lex_state = 12}, + [1679] = {.lex_state = 174}, [1680] = {.lex_state = 0}, - [1681] = {.lex_state = 179}, + [1681] = {.lex_state = 0}, [1682] = {.lex_state = 0}, [1683] = {.lex_state = 0}, - [1684] = {.lex_state = 13}, + [1684] = {.lex_state = 0}, [1685] = {.lex_state = 0}, [1686] = {.lex_state = 0}, - [1687] = {.lex_state = 13}, - [1688] = {.lex_state = 13}, - [1689] = {.lex_state = 179}, - [1690] = {.lex_state = 0}, - [1691] = {.lex_state = 0}, - [1692] = {.lex_state = 0}, + [1687] = {.lex_state = 0}, + [1688] = {.lex_state = 174}, + [1689] = {.lex_state = 11}, + [1690] = {.lex_state = 12}, + [1691] = {.lex_state = 12}, + [1692] = {.lex_state = 174}, [1693] = {.lex_state = 0}, [1694] = {.lex_state = 0}, - [1695] = {.lex_state = 0}, - [1696] = {.lex_state = 0}, + [1695] = {.lex_state = 174}, + [1696] = {.lex_state = 174}, [1697] = {.lex_state = 0}, - [1698] = {.lex_state = 0}, + [1698] = {.lex_state = 174}, [1699] = {.lex_state = 0}, - [1700] = {.lex_state = 0}, + [1700] = {.lex_state = 174}, [1701] = {.lex_state = 0}, - [1702] = {.lex_state = 0}, - [1703] = {.lex_state = 0}, + [1702] = {.lex_state = 174}, + [1703] = {.lex_state = 174}, [1704] = {.lex_state = 0}, - [1705] = {.lex_state = 13}, - [1706] = {.lex_state = 179}, + [1705] = {.lex_state = 0}, + [1706] = {.lex_state = 0}, [1707] = {.lex_state = 0}, [1708] = {.lex_state = 0}, - [1709] = {.lex_state = 0}, - [1710] = {.lex_state = 13}, - [1711] = {.lex_state = 13}, + [1709] = {.lex_state = 174}, + [1710] = {.lex_state = 0}, + [1711] = {.lex_state = 0}, [1712] = {.lex_state = 0}, [1713] = {.lex_state = 0}, [1714] = {.lex_state = 0}, - [1715] = {.lex_state = 179}, + [1715] = {.lex_state = 0}, [1716] = {.lex_state = 0}, [1717] = {.lex_state = 0}, - [1718] = {.lex_state = 13}, + [1718] = {.lex_state = 0}, [1719] = {.lex_state = 0}, - [1720] = {.lex_state = 0}, - [1721] = {.lex_state = 13}, - [1722] = {.lex_state = 0}, + [1720] = {.lex_state = 174}, + [1721] = {.lex_state = 0}, + [1722] = {.lex_state = 15}, [1723] = {.lex_state = 0}, [1724] = {.lex_state = 0}, - [1725] = {.lex_state = 179}, + [1725] = {.lex_state = 0}, [1726] = {.lex_state = 0}, - [1727] = {.lex_state = 179}, + [1727] = {.lex_state = 174}, [1728] = {.lex_state = 0}, [1729] = {.lex_state = 0}, - [1730] = {.lex_state = 179}, - [1731] = {.lex_state = 0}, + [1730] = {.lex_state = 0}, + [1731] = {.lex_state = 12}, [1732] = {.lex_state = 0}, - [1733] = {.lex_state = 13}, - [1734] = {.lex_state = 13}, + [1733] = {.lex_state = 0}, + [1734] = {.lex_state = 12}, [1735] = {.lex_state = 0}, [1736] = {.lex_state = 0}, [1737] = {.lex_state = 0}, - [1738] = {.lex_state = 179}, + [1738] = {.lex_state = 0}, [1739] = {.lex_state = 0}, [1740] = {.lex_state = 0}, [1741] = {.lex_state = 0}, - [1742] = {.lex_state = 0}, + [1742] = {.lex_state = 174}, [1743] = {.lex_state = 0}, [1744] = {.lex_state = 0}, [1745] = {.lex_state = 0}, - [1746] = {.lex_state = 0}, - [1747] = {.lex_state = 0}, + [1746] = {.lex_state = 174}, + [1747] = {.lex_state = 12}, [1748] = {.lex_state = 0}, - [1749] = {.lex_state = 0}, + [1749] = {.lex_state = 12}, [1750] = {.lex_state = 0}, - [1751] = {.lex_state = 179}, + [1751] = {.lex_state = 0}, [1752] = {.lex_state = 0}, [1753] = {.lex_state = 0}, - [1754] = {.lex_state = 179}, - [1755] = {.lex_state = 179}, + [1754] = {.lex_state = 0}, + [1755] = {.lex_state = 4}, [1756] = {.lex_state = 0}, [1757] = {.lex_state = 0}, [1758] = {.lex_state = 0}, [1759] = {.lex_state = 0}, - [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 0}, + [1760] = {.lex_state = 174}, + [1761] = {.lex_state = 174}, [1762] = {.lex_state = 0}, [1763] = {.lex_state = 0}, - [1764] = {.lex_state = 0}, + [1764] = {.lex_state = 13}, [1765] = {.lex_state = 0}, [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 179}, + [1767] = {.lex_state = 0}, [1768] = {.lex_state = 0}, [1769] = {.lex_state = 0}, [1770] = {.lex_state = 0}, [1771] = {.lex_state = 0}, [1772] = {.lex_state = 0}, - [1773] = {.lex_state = 0}, + [1773] = {.lex_state = 12}, [1774] = {.lex_state = 0}, [1775] = {.lex_state = 0}, [1776] = {.lex_state = 0}, [1777] = {.lex_state = 0}, [1778] = {.lex_state = 0}, [1779] = {.lex_state = 0}, - [1780] = {.lex_state = 179}, + [1780] = {.lex_state = 0}, [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 0}, + [1782] = {.lex_state = 174}, [1783] = {.lex_state = 0}, - [1784] = {.lex_state = 0}, + [1784] = {.lex_state = 12}, [1785] = {.lex_state = 0}, [1786] = {.lex_state = 0}, [1787] = {.lex_state = 0}, [1788] = {.lex_state = 0}, [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 0}, + [1790] = {.lex_state = 2}, [1791] = {.lex_state = 0}, [1792] = {.lex_state = 0}, - [1793] = {.lex_state = 0}, + [1793] = {.lex_state = 4}, [1794] = {.lex_state = 0}, [1795] = {.lex_state = 0}, - [1796] = {.lex_state = 13}, - [1797] = {.lex_state = 13}, + [1796] = {.lex_state = 12}, + [1797] = {.lex_state = 0}, [1798] = {.lex_state = 0}, [1799] = {.lex_state = 0}, [1800] = {.lex_state = 0}, [1801] = {.lex_state = 0}, - [1802] = {.lex_state = 0}, + [1802] = {.lex_state = 12}, [1803] = {.lex_state = 0}, [1804] = {.lex_state = 0}, - [1805] = {.lex_state = 0}, + [1805] = {.lex_state = 11}, [1806] = {.lex_state = 0}, [1807] = {.lex_state = 0}, [1808] = {.lex_state = 0}, [1809] = {.lex_state = 0}, [1810] = {.lex_state = 0}, - [1811] = {.lex_state = 4}, - [1812] = {.lex_state = 179}, - [1813] = {.lex_state = 0}, + [1811] = {.lex_state = 0}, + [1812] = {.lex_state = 0}, + [1813] = {.lex_state = 174}, [1814] = {.lex_state = 0}, [1815] = {.lex_state = 0}, [1816] = {.lex_state = 0}, [1817] = {.lex_state = 0}, [1818] = {.lex_state = 0}, [1819] = {.lex_state = 0}, - [1820] = {.lex_state = 13}, - [1821] = {.lex_state = 0}, + [1820] = {.lex_state = 0}, + [1821] = {.lex_state = 174}, [1822] = {.lex_state = 0}, [1823] = {.lex_state = 0}, [1824] = {.lex_state = 0}, @@ -12241,7 +12559,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1835] = {.lex_state = 0}, [1836] = {.lex_state = 0}, [1837] = {.lex_state = 0}, - [1838] = {.lex_state = 179}, + [1838] = {.lex_state = 0}, [1839] = {.lex_state = 0}, [1840] = {.lex_state = 0}, [1841] = {.lex_state = 0}, @@ -12249,7 +12567,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1843] = {.lex_state = 0}, [1844] = {.lex_state = 0}, [1845] = {.lex_state = 0}, - [1846] = {.lex_state = 179}, + [1846] = {.lex_state = 0}, [1847] = {.lex_state = 0}, [1848] = {.lex_state = 0}, [1849] = {.lex_state = 0}, @@ -12257,39 +12575,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1851] = {.lex_state = 0}, [1852] = {.lex_state = 0}, [1853] = {.lex_state = 0}, - [1854] = {.lex_state = 12}, + [1854] = {.lex_state = 0}, [1855] = {.lex_state = 0}, [1856] = {.lex_state = 0}, [1857] = {.lex_state = 0}, - [1858] = {.lex_state = 179}, + [1858] = {.lex_state = 0}, [1859] = {.lex_state = 0}, - [1860] = {.lex_state = 0}, + [1860] = {.lex_state = 174}, [1861] = {.lex_state = 0}, - [1862] = {.lex_state = 179}, + [1862] = {.lex_state = 0}, [1863] = {.lex_state = 0}, - [1864] = {.lex_state = 4}, - [1865] = {.lex_state = 179}, + [1864] = {.lex_state = 0}, + [1865] = {.lex_state = 0}, [1866] = {.lex_state = 0}, [1867] = {.lex_state = 0}, - [1868] = {.lex_state = 0}, - [1869] = {.lex_state = 0}, + [1868] = {.lex_state = 174}, + [1869] = {.lex_state = 174}, [1870] = {.lex_state = 0}, [1871] = {.lex_state = 0}, [1872] = {.lex_state = 0}, [1873] = {.lex_state = 0}, - [1874] = {.lex_state = 0}, + [1874] = {.lex_state = 174}, [1875] = {.lex_state = 0}, [1876] = {.lex_state = 0}, - [1877] = {.lex_state = 13}, - [1878] = {.lex_state = 13}, + [1877] = {.lex_state = 0}, + [1878] = {.lex_state = 0}, [1879] = {.lex_state = 0}, [1880] = {.lex_state = 0}, [1881] = {.lex_state = 0}, - [1882] = {.lex_state = 179}, + [1882] = {.lex_state = 0}, [1883] = {.lex_state = 0}, [1884] = {.lex_state = 0}, [1885] = {.lex_state = 0}, - [1886] = {.lex_state = 13}, + [1886] = {.lex_state = 0}, [1887] = {.lex_state = 13}, [1888] = {.lex_state = 0}, [1889] = {.lex_state = 0}, @@ -12298,61 +12616,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1892] = {.lex_state = 0}, [1893] = {.lex_state = 0}, [1894] = {.lex_state = 0}, - [1895] = {.lex_state = 179}, + [1895] = {.lex_state = 0}, [1896] = {.lex_state = 0}, [1897] = {.lex_state = 0}, [1898] = {.lex_state = 0}, [1899] = {.lex_state = 0}, [1900] = {.lex_state = 0}, [1901] = {.lex_state = 0}, - [1902] = {.lex_state = 0}, + [1902] = {.lex_state = 174}, [1903] = {.lex_state = 0}, [1904] = {.lex_state = 0}, [1905] = {.lex_state = 0}, - [1906] = {.lex_state = 13}, + [1906] = {.lex_state = 0}, [1907] = {.lex_state = 0}, [1908] = {.lex_state = 0}, [1909] = {.lex_state = 0}, [1910] = {.lex_state = 0}, - [1911] = {.lex_state = 179}, + [1911] = {.lex_state = 0}, [1912] = {.lex_state = 0}, [1913] = {.lex_state = 0}, [1914] = {.lex_state = 0}, - [1915] = {.lex_state = 2}, + [1915] = {.lex_state = 0}, [1916] = {.lex_state = 0}, [1917] = {.lex_state = 0}, [1918] = {.lex_state = 0}, [1919] = {.lex_state = 0}, [1920] = {.lex_state = 0}, - [1921] = {.lex_state = 179}, - [1922] = {.lex_state = 179}, + [1921] = {.lex_state = 0}, + [1922] = {.lex_state = 0}, [1923] = {.lex_state = 0}, [1924] = {.lex_state = 0}, [1925] = {.lex_state = 0}, - [1926] = {.lex_state = 179}, - [1927] = {.lex_state = 15}, + [1926] = {.lex_state = 0}, + [1927] = {.lex_state = 0}, [1928] = {.lex_state = 0}, [1929] = {.lex_state = 0}, [1930] = {.lex_state = 0}, [1931] = {.lex_state = 0}, [1932] = {.lex_state = 0}, - [1933] = {.lex_state = 0}, + [1933] = {.lex_state = 12}, [1934] = {.lex_state = 0}, - [1935] = {.lex_state = 179}, - [1936] = {.lex_state = 0}, + [1935] = {.lex_state = 0}, + [1936] = {.lex_state = 174}, [1937] = {.lex_state = 0}, [1938] = {.lex_state = 0}, [1939] = {.lex_state = 0}, - [1940] = {.lex_state = 179}, + [1940] = {.lex_state = 0}, [1941] = {.lex_state = 0}, [1942] = {.lex_state = 0}, [1943] = {.lex_state = 0}, [1944] = {.lex_state = 0}, [1945] = {.lex_state = 0}, - [1946] = {.lex_state = 179}, + [1946] = {.lex_state = 0}, [1947] = {.lex_state = 0}, [1948] = {.lex_state = 0}, - [1949] = {.lex_state = 202}, + [1949] = {.lex_state = 0}, [1950] = {.lex_state = 0}, [1951] = {.lex_state = 0}, [1952] = {.lex_state = 0}, @@ -12378,33 +12696,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1972] = {.lex_state = 0}, [1973] = {.lex_state = 0}, [1974] = {.lex_state = 0}, - [1975] = {.lex_state = 0}, + [1975] = {.lex_state = 174}, [1976] = {.lex_state = 13}, [1977] = {.lex_state = 0}, [1978] = {.lex_state = 0}, - [1979] = {.lex_state = 15}, + [1979] = {.lex_state = 0}, [1980] = {.lex_state = 0}, [1981] = {.lex_state = 0}, - [1982] = {.lex_state = 179}, - [1983] = {.lex_state = 179}, + [1982] = {.lex_state = 0}, + [1983] = {.lex_state = 0}, [1984] = {.lex_state = 0}, - [1985] = {.lex_state = 179}, - [1986] = {.lex_state = 15}, - [1987] = {.lex_state = 0}, + [1985] = {.lex_state = 0}, + [1986] = {.lex_state = 0}, + [1987] = {.lex_state = 174}, [1988] = {.lex_state = 0}, [1989] = {.lex_state = 0}, - [1990] = {.lex_state = 179}, + [1990] = {.lex_state = 0}, [1991] = {.lex_state = 0}, - [1992] = {.lex_state = 0}, + [1992] = {.lex_state = 174}, [1993] = {.lex_state = 0}, [1994] = {.lex_state = 0}, [1995] = {.lex_state = 0}, - [1996] = {.lex_state = 179}, + [1996] = {.lex_state = 0}, [1997] = {.lex_state = 0}, [1998] = {.lex_state = 0}, [1999] = {.lex_state = 0}, [2000] = {.lex_state = 0}, - [2001] = {.lex_state = 179}, + [2001] = {.lex_state = 0}, [2002] = {.lex_state = 0}, [2003] = {.lex_state = 0}, [2004] = {.lex_state = 0}, @@ -12415,83 +12733,83 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2009] = {.lex_state = 0}, [2010] = {.lex_state = 0}, [2011] = {.lex_state = 0}, - [2012] = {.lex_state = 179}, - [2013] = {.lex_state = 179}, + [2012] = {.lex_state = 0}, + [2013] = {.lex_state = 0, .external_lex_state = 5}, [2014] = {.lex_state = 0}, [2015] = {.lex_state = 0}, [2016] = {.lex_state = 0}, - [2017] = {.lex_state = 179}, + [2017] = {.lex_state = 0}, [2018] = {.lex_state = 0}, [2019] = {.lex_state = 0}, [2020] = {.lex_state = 0}, - [2021] = {.lex_state = 13}, - [2022] = {.lex_state = 0}, + [2021] = {.lex_state = 0}, + [2022] = {.lex_state = 174}, [2023] = {.lex_state = 0}, - [2024] = {.lex_state = 0}, + [2024] = {.lex_state = 174}, [2025] = {.lex_state = 0}, [2026] = {.lex_state = 0}, [2027] = {.lex_state = 0}, [2028] = {.lex_state = 0}, [2029] = {.lex_state = 0}, [2030] = {.lex_state = 0}, - [2031] = {.lex_state = 179}, - [2032] = {.lex_state = 0}, + [2031] = {.lex_state = 0}, + [2032] = {.lex_state = 174}, [2033] = {.lex_state = 0}, [2034] = {.lex_state = 0}, [2035] = {.lex_state = 0}, [2036] = {.lex_state = 0}, [2037] = {.lex_state = 0}, [2038] = {.lex_state = 0}, - [2039] = {.lex_state = 15}, + [2039] = {.lex_state = 0}, [2040] = {.lex_state = 0}, [2041] = {.lex_state = 0}, [2042] = {.lex_state = 0}, [2043] = {.lex_state = 0}, - [2044] = {.lex_state = 179}, + [2044] = {.lex_state = 0}, [2045] = {.lex_state = 0}, [2046] = {.lex_state = 0}, [2047] = {.lex_state = 0}, [2048] = {.lex_state = 0}, [2049] = {.lex_state = 0}, - [2050] = {.lex_state = 0}, - [2051] = {.lex_state = 0}, + [2050] = {.lex_state = 174}, + [2051] = {.lex_state = 13}, [2052] = {.lex_state = 0}, [2053] = {.lex_state = 0}, - [2054] = {.lex_state = 3}, + [2054] = {.lex_state = 0}, [2055] = {.lex_state = 0}, - [2056] = {.lex_state = 15}, + [2056] = {.lex_state = 0}, [2057] = {.lex_state = 0}, - [2058] = {.lex_state = 179}, + [2058] = {.lex_state = 0}, [2059] = {.lex_state = 0}, [2060] = {.lex_state = 0}, - [2061] = {.lex_state = 179}, - [2062] = {.lex_state = 0}, - [2063] = {.lex_state = 179}, + [2061] = {.lex_state = 174}, + [2062] = {.lex_state = 174}, + [2063] = {.lex_state = 0}, [2064] = {.lex_state = 0}, [2065] = {.lex_state = 0}, - [2066] = {.lex_state = 13}, - [2067] = {.lex_state = 179}, - [2068] = {.lex_state = 179}, - [2069] = {.lex_state = 0}, + [2066] = {.lex_state = 0}, + [2067] = {.lex_state = 174}, + [2068] = {.lex_state = 174}, + [2069] = {.lex_state = 13}, [2070] = {.lex_state = 0}, [2071] = {.lex_state = 0}, [2072] = {.lex_state = 0}, [2073] = {.lex_state = 0}, - [2074] = {.lex_state = 0}, - [2075] = {.lex_state = 179}, - [2076] = {.lex_state = 179}, + [2074] = {.lex_state = 174}, + [2075] = {.lex_state = 0}, + [2076] = {.lex_state = 0}, [2077] = {.lex_state = 0}, [2078] = {.lex_state = 0}, [2079] = {.lex_state = 0}, [2080] = {.lex_state = 0}, [2081] = {.lex_state = 0}, [2082] = {.lex_state = 0}, - [2083] = {.lex_state = 13}, + [2083] = {.lex_state = 0}, [2084] = {.lex_state = 0}, [2085] = {.lex_state = 0}, [2086] = {.lex_state = 0}, - [2087] = {.lex_state = 0}, - [2088] = {.lex_state = 13}, + [2087] = {.lex_state = 12}, + [2088] = {.lex_state = 0}, [2089] = {.lex_state = 0}, [2090] = {.lex_state = 0}, [2091] = {.lex_state = 0}, @@ -12499,42 +12817,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2093] = {.lex_state = 0}, [2094] = {.lex_state = 0}, [2095] = {.lex_state = 0}, - [2096] = {.lex_state = 0}, + [2096] = {.lex_state = 174}, [2097] = {.lex_state = 0}, - [2098] = {.lex_state = 0}, + [2098] = {.lex_state = 174}, [2099] = {.lex_state = 0}, [2100] = {.lex_state = 0}, - [2101] = {.lex_state = 15}, - [2102] = {.lex_state = 179}, + [2101] = {.lex_state = 0}, + [2102] = {.lex_state = 0}, [2103] = {.lex_state = 0}, - [2104] = {.lex_state = 0}, + [2104] = {.lex_state = 174}, [2105] = {.lex_state = 0}, - [2106] = {.lex_state = 15}, + [2106] = {.lex_state = 174}, [2107] = {.lex_state = 0}, - [2108] = {.lex_state = 179}, - [2109] = {.lex_state = 0}, - [2110] = {.lex_state = 0}, + [2108] = {.lex_state = 0}, + [2109] = {.lex_state = 12}, + [2110] = {.lex_state = 174}, [2111] = {.lex_state = 0}, [2112] = {.lex_state = 0}, [2113] = {.lex_state = 0}, [2114] = {.lex_state = 0}, [2115] = {.lex_state = 0}, - [2116] = {.lex_state = 13}, + [2116] = {.lex_state = 0}, [2117] = {.lex_state = 0}, [2118] = {.lex_state = 0}, [2119] = {.lex_state = 0}, [2120] = {.lex_state = 0}, - [2121] = {.lex_state = 13}, + [2121] = {.lex_state = 0}, [2122] = {.lex_state = 0}, - [2123] = {.lex_state = 0}, - [2124] = {.lex_state = 0}, - [2125] = {.lex_state = 0}, + [2123] = {.lex_state = 174}, + [2124] = {.lex_state = 13}, + [2125] = {.lex_state = 12}, [2126] = {.lex_state = 0}, - [2127] = {.lex_state = 0}, + [2127] = {.lex_state = 174}, [2128] = {.lex_state = 0}, - [2129] = {.lex_state = 13}, + [2129] = {.lex_state = 0}, [2130] = {.lex_state = 0}, - [2131] = {.lex_state = 0}, + [2131] = {.lex_state = 13}, [2132] = {.lex_state = 0}, [2133] = {.lex_state = 0}, [2134] = {.lex_state = 0}, @@ -12543,12 +12861,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2137] = {.lex_state = 0}, [2138] = {.lex_state = 0}, [2139] = {.lex_state = 0}, - [2140] = {.lex_state = 179}, + [2140] = {.lex_state = 0}, [2141] = {.lex_state = 0}, [2142] = {.lex_state = 0}, [2143] = {.lex_state = 0}, - [2144] = {.lex_state = 179}, - [2145] = {.lex_state = 13}, + [2144] = {.lex_state = 0}, + [2145] = {.lex_state = 0}, [2146] = {.lex_state = 0}, [2147] = {.lex_state = 0}, [2148] = {.lex_state = 0}, @@ -12557,40 +12875,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2151] = {.lex_state = 0}, [2152] = {.lex_state = 0}, [2153] = {.lex_state = 0}, - [2154] = {.lex_state = 0}, + [2154] = {.lex_state = 174}, [2155] = {.lex_state = 0}, - [2156] = {.lex_state = 179}, - [2157] = {.lex_state = 0}, - [2158] = {.lex_state = 0}, + [2156] = {.lex_state = 0}, + [2157] = {.lex_state = 12}, + [2158] = {.lex_state = 174}, [2159] = {.lex_state = 0}, [2160] = {.lex_state = 0}, [2161] = {.lex_state = 0}, [2162] = {.lex_state = 0}, - [2163] = {.lex_state = 179}, - [2164] = {.lex_state = 0}, + [2163] = {.lex_state = 0}, + [2164] = {.lex_state = 12}, [2165] = {.lex_state = 0}, [2166] = {.lex_state = 0}, [2167] = {.lex_state = 0}, - [2168] = {.lex_state = 0}, + [2168] = {.lex_state = 12}, [2169] = {.lex_state = 0}, [2170] = {.lex_state = 0}, [2171] = {.lex_state = 0}, [2172] = {.lex_state = 0}, [2173] = {.lex_state = 0}, - [2174] = {.lex_state = 13}, - [2175] = {.lex_state = 13}, - [2176] = {.lex_state = 0}, + [2174] = {.lex_state = 0}, + [2175] = {.lex_state = 0}, + [2176] = {.lex_state = 174}, [2177] = {.lex_state = 0}, [2178] = {.lex_state = 0}, [2179] = {.lex_state = 0}, - [2180] = {.lex_state = 15}, + [2180] = {.lex_state = 0}, [2181] = {.lex_state = 0}, - [2182] = {.lex_state = 179}, + [2182] = {.lex_state = 0}, [2183] = {.lex_state = 0}, - [2184] = {.lex_state = 0}, - [2185] = {.lex_state = 0}, - [2186] = {.lex_state = 0}, - [2187] = {.lex_state = 179}, + [2184] = {.lex_state = 12}, + [2185] = {.lex_state = 174}, + [2186] = {.lex_state = 12}, + [2187] = {.lex_state = 0}, [2188] = {.lex_state = 0}, [2189] = {.lex_state = 0}, [2190] = {.lex_state = 0}, @@ -12602,48 +12920,88 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2196] = {.lex_state = 0}, [2197] = {.lex_state = 0}, [2198] = {.lex_state = 0}, - [2199] = {.lex_state = 0}, - [2200] = {.lex_state = 0}, + [2199] = {.lex_state = 174}, + [2200] = {.lex_state = 13}, [2201] = {.lex_state = 0}, [2202] = {.lex_state = 0}, - [2203] = {.lex_state = 13}, + [2203] = {.lex_state = 0}, [2204] = {.lex_state = 0}, [2205] = {.lex_state = 0}, [2206] = {.lex_state = 0}, [2207] = {.lex_state = 0}, [2208] = {.lex_state = 0}, [2209] = {.lex_state = 0}, - [2210] = {.lex_state = 0}, + [2210] = {.lex_state = 174}, [2211] = {.lex_state = 0}, [2212] = {.lex_state = 0}, [2213] = {.lex_state = 0}, [2214] = {.lex_state = 0}, - [2215] = {.lex_state = 0}, + [2215] = {.lex_state = 12}, [2216] = {.lex_state = 0}, [2217] = {.lex_state = 0}, [2218] = {.lex_state = 0}, [2219] = {.lex_state = 0}, [2220] = {.lex_state = 0}, - [2221] = {.lex_state = 0}, + [2221] = {.lex_state = 174}, [2222] = {.lex_state = 0}, - [2223] = {.lex_state = 0}, + [2223] = {.lex_state = 198}, [2224] = {.lex_state = 0}, [2225] = {.lex_state = 0}, [2226] = {.lex_state = 0}, [2227] = {.lex_state = 0}, - [2228] = {.lex_state = 0}, + [2228] = {.lex_state = 174}, [2229] = {.lex_state = 0}, [2230] = {.lex_state = 0}, [2231] = {.lex_state = 0}, - [2232] = {.lex_state = 0, .external_lex_state = 3}, + [2232] = {.lex_state = 0}, [2233] = {.lex_state = 0}, - [2234] = {.lex_state = 0, .external_lex_state = 4}, - [2235] = {.lex_state = 3}, + [2234] = {.lex_state = 0}, + [2235] = {.lex_state = 0}, [2236] = {.lex_state = 0}, [2237] = {.lex_state = 0}, - [2238] = {(TSStateId)(-1)}, - [2239] = {(TSStateId)(-1)}, - [2240] = {(TSStateId)(-1)}, + [2238] = {.lex_state = 0}, + [2239] = {.lex_state = 0}, + [2240] = {.lex_state = 0}, + [2241] = {.lex_state = 0}, + [2242] = {.lex_state = 12}, + [2243] = {.lex_state = 174}, + [2244] = {.lex_state = 0}, + [2245] = {.lex_state = 0}, + [2246] = {.lex_state = 13}, + [2247] = {.lex_state = 0}, + [2248] = {.lex_state = 0}, + [2249] = {.lex_state = 0}, + [2250] = {.lex_state = 0}, + [2251] = {.lex_state = 0}, + [2252] = {.lex_state = 0}, + [2253] = {.lex_state = 0}, + [2254] = {.lex_state = 0}, + [2255] = {.lex_state = 0}, + [2256] = {.lex_state = 0}, + [2257] = {.lex_state = 0}, + [2258] = {.lex_state = 0}, + [2259] = {.lex_state = 0}, + [2260] = {.lex_state = 0}, + [2261] = {.lex_state = 0}, + [2262] = {.lex_state = 0}, + [2263] = {.lex_state = 0}, + [2264] = {.lex_state = 0}, + [2265] = {.lex_state = 0}, + [2266] = {.lex_state = 0}, + [2267] = {.lex_state = 0}, + [2268] = {.lex_state = 0}, + [2269] = {.lex_state = 12}, + [2270] = {.lex_state = 0}, + [2271] = {.lex_state = 0}, + [2272] = {.lex_state = 0}, + [2273] = {.lex_state = 0}, + [2274] = {.lex_state = 0}, + [2275] = {.lex_state = 0}, + [2276] = {(TSStateId)(-1)}, + [2277] = {(TSStateId)(-1)}, + [2278] = {(TSStateId)(-1)}, + [2279] = {(TSStateId)(-1)}, + [2280] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -12660,7 +13018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1), [sym_bytes_literal] = ACTIONS(1), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1), [sym_at_ident] = ACTIONS(1), @@ -12672,6 +13030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_const_ident] = ACTIONS(1), [sym_builtin] = ACTIONS(1), [anon_sym_COLON_COLON] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), [anon_sym_LPAREN_LT] = ACTIONS(1), [anon_sym_GT_RPAREN] = ACTIONS(1), @@ -12703,7 +13062,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_fault] = ACTIONS(1), [anon_sym_enum] = ACTIONS(1), [anon_sym_interface] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), [anon_sym_EQ_GT] = ACTIONS(1), [anon_sym_macro] = ACTIONS(1), [anon_sym_var] = ACTIONS(1), @@ -12753,11 +13111,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1), [anon_sym_DOLLARoffsetof] = ACTIONS(1), [anon_sym_DOLLARqnameof] = ACTIONS(1), - [anon_sym_DOLLAReval] = ACTIONS(1), - [anon_sym_DOLLARdefined] = ACTIONS(1), - [anon_sym_DOLLARsizeof] = ACTIONS(1), - [anon_sym_DOLLARstringify] = ACTIONS(1), - [anon_sym_DOLLARis_const] = ACTIONS(1), [anon_sym_DOLLARvaconst] = ACTIONS(1), [anon_sym_DOLLARvaarg] = ACTIONS(1), [anon_sym_DOLLARvaref] = ACTIONS(1), @@ -12766,11 +13119,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1), [anon_sym_null] = ACTIONS(1), [anon_sym_DOLLARvacount] = ACTIONS(1), - [anon_sym_DOLLARfeature] = ACTIONS(1), + [anon_sym_DOLLAReval] = ACTIONS(1), + [anon_sym_DOLLARis_const] = ACTIONS(1), + [anon_sym_DOLLARsizeof] = ACTIONS(1), + [anon_sym_DOLLARstringify] = ACTIONS(1), + [anon_sym_DOLLARappend] = ACTIONS(1), + [anon_sym_DOLLARconcat] = ACTIONS(1), + [anon_sym_DOLLARdefined] = ACTIONS(1), + [anon_sym_DOLLARembed] = ACTIONS(1), [anon_sym_DOLLARand] = ACTIONS(1), [anon_sym_DOLLARor] = ACTIONS(1), + [anon_sym_DOLLARfeature] = ACTIONS(1), [anon_sym_DOLLARassignable] = ACTIONS(1), - [anon_sym_DOLLARembed] = ACTIONS(1), [anon_sym_PLUS_EQ] = ACTIONS(1), [anon_sym_DASH_EQ] = ACTIONS(1), [anon_sym_STAR_EQ] = ACTIONS(1), @@ -12799,6 +13159,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(1), [anon_sym_LT] = ACTIONS(1), [anon_sym_PIPE_PIPE] = ACTIONS(1), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1), [anon_sym_DOLLARvasplat] = ACTIONS(1), [anon_sym_BANG_BANG] = ACTIONS(1), [anon_sym_typeid] = ACTIONS(1), @@ -12828,52 +13191,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1), [anon_sym_DOLLARtypeof] = ACTIONS(1), [anon_sym_DOLLARtypefrom] = ACTIONS(1), - [anon_sym_DOLLARvatype] = ACTIONS(1), [anon_sym_DOLLARevaltype] = ACTIONS(1), + [anon_sym_DOLLARvatype] = ACTIONS(1), [anon_sym_LBRACK_LT] = ACTIONS(1), [anon_sym_GT_RBRACK] = ACTIONS(1), [sym_block_comment_text] = ACTIONS(1), [sym_doc_comment_text] = ACTIONS(1), + [sym_doc_comment_contract_text] = ACTIONS(1), [sym_real_literal] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(2157), + [sym_source_file] = STATE(1962), [sym_line_comment] = STATE(1), [sym_doc_comment] = STATE(1), [sym_block_comment] = STATE(1), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1440), - [sym_global_storage] = STATE(1030), - [sym_module] = STATE(811), - [sym_import_declaration] = STATE(811), - [sym_define_declaration] = STATE(811), - [sym_distinct_declaration] = STATE(811), - [sym_const_declaration] = STATE(811), - [sym_global_declaration] = STATE(811), - [sym__struct_or_union] = STATE(2136), - [sym_struct_declaration] = STATE(811), - [sym_bitstruct_declaration] = STATE(811), - [sym_fault_declaration] = STATE(811), - [sym_enum_declaration] = STATE(811), - [sym_interface_declaration] = STATE(811), - [sym_func_declaration] = STATE(811), - [sym_func_definition] = STATE(811), - [sym_macro_declaration] = STATE(811), - [sym_ct_assert_stmt] = STATE(811), - [sym_ct_include_stmt] = STATE(811), - [sym_ct_exec_stmt] = STATE(811), - [sym_ct_echo_stmt] = STATE(811), - [sym_module_type_ident] = STATE(912), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1100), - [sym__type_or_optional_type] = STATE(2115), - [sym_optional_type] = STATE(1106), - [aux_sym_source_file_repeat1] = STATE(794), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1541), + [sym_global_storage] = STATE(1183), + [sym_module] = STATE(923), + [sym_import_declaration] = STATE(923), + [sym_define_declaration] = STATE(923), + [sym_distinct_declaration] = STATE(923), + [sym_const_declaration] = STATE(923), + [sym_global_declaration] = STATE(923), + [sym__struct_or_union] = STATE(2086), + [sym_struct_declaration] = STATE(923), + [sym_bitstruct_declaration] = STATE(923), + [sym_fault_declaration] = STATE(923), + [sym_enum_declaration] = STATE(923), + [sym_interface_declaration] = STATE(923), + [sym_func_declaration] = STATE(923), + [sym_func_definition] = STATE(923), + [sym_macro_declaration] = STATE(923), + [sym_ct_assert_stmt] = STATE(923), + [sym_ct_include_stmt] = STATE(923), + [sym_ct_exec_stmt] = STATE(923), + [sym_ct_echo_stmt] = STATE(923), + [sym_module_type_ident] = STATE(1063), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(2094), + [aux_sym_source_file_repeat1] = STATE(829), [ts_builtin_sym_end] = ACTIONS(9), [sym_ident] = ACTIONS(11), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(15), @@ -12922,92 +13284,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), [anon_sym_DOLLARtypeof] = ACTIONS(57), - [anon_sym_DOLLARtypefrom] = ACTIONS(59), + [anon_sym_DOLLARtypefrom] = ACTIONS(57), + [anon_sym_DOLLARevaltype] = ACTIONS(57), [anon_sym_DOLLARvatype] = ACTIONS(59), - [anon_sym_DOLLARevaltype] = ACTIONS(59), }, [2] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(2), [sym_doc_comment] = STATE(2), [sym_block_comment] = STATE(2), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_case_stmt] = STATE(1634), - [sym_default_stmt] = STATE(1634), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1109), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1571), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1287), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(82), - [aux_sym_switch_body_repeat1] = STATE(1341), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_case_stmt] = STATE(1661), + [sym_default_stmt] = STATE(1661), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(71), + [aux_sym_switch_body_repeat1] = STATE(1428), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -13015,7 +13372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -13024,8 +13381,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_static] = ACTIONS(93), @@ -13035,176 +13392,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(99), [anon_sym_RBRACE] = ACTIONS(101), [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(119), - [anon_sym_default] = ACTIONS(121), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [3] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(3), [sym_doc_comment] = STATE(3), [sym_block_comment] = STATE(3), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_case_stmt] = STATE(1634), - [sym_default_stmt] = STATE(1634), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1109), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1571), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1287), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(84), - [aux_sym_switch_body_repeat1] = STATE(1315), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_case_stmt] = STATE(1661), + [sym_default_stmt] = STATE(1661), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(79), + [aux_sym_switch_body_repeat1] = STATE(1427), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -13212,7 +13564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -13221,8 +13573,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_static] = ACTIONS(93), @@ -13230,178 +13582,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(179), + [anon_sym_RBRACE] = ACTIONS(175), [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(119), - [anon_sym_default] = ACTIONS(121), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [4] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(4), [sym_doc_comment] = STATE(4), [sym_block_comment] = STATE(4), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_case_stmt] = STATE(1634), - [sym_default_stmt] = STATE(1634), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1109), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1571), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1287), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(65), - [aux_sym_switch_body_repeat1] = STATE(1342), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_case_stmt] = STATE(1661), + [sym_default_stmt] = STATE(1661), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(88), + [aux_sym_switch_body_repeat1] = STATE(1420), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -13409,7 +13756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -13418,8 +13765,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_static] = ACTIONS(93), @@ -13427,178 +13774,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(177), [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(119), - [anon_sym_default] = ACTIONS(121), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [5] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(5), [sym_doc_comment] = STATE(5), [sym_block_comment] = STATE(5), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_case_stmt] = STATE(1634), - [sym_default_stmt] = STATE(1634), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1109), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1571), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1287), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(66), - [aux_sym_switch_body_repeat1] = STATE(1336), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_case_stmt] = STATE(1661), + [sym_default_stmt] = STATE(1661), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(65), + [aux_sym_switch_body_repeat1] = STATE(1403), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -13606,7 +13948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -13615,8 +13957,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_static] = ACTIONS(93), @@ -13624,178 +13966,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(179), [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(119), - [anon_sym_default] = ACTIONS(121), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [6] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(6), [sym_doc_comment] = STATE(6), [sym_block_comment] = STATE(6), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_case_stmt] = STATE(1634), - [sym_default_stmt] = STATE(1634), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1109), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1571), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1287), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(55), - [aux_sym_switch_body_repeat1] = STATE(1328), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_case_stmt] = STATE(1661), + [sym_default_stmt] = STATE(1661), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(76), + [aux_sym_switch_body_repeat1] = STATE(1413), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -13803,7 +14140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -13812,8 +14149,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_static] = ACTIONS(93), @@ -13821,178 +14158,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(185), + [anon_sym_RBRACE] = ACTIONS(181), [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(119), - [anon_sym_default] = ACTIONS(121), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [7] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(7), [sym_doc_comment] = STATE(7), [sym_block_comment] = STATE(7), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_case_stmt] = STATE(1634), - [sym_default_stmt] = STATE(1634), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1109), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1571), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1287), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(71), - [aux_sym_switch_body_repeat1] = STATE(1366), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_case_stmt] = STATE(1661), + [sym_default_stmt] = STATE(1661), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(91), + [aux_sym_switch_body_repeat1] = STATE(1392), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -14000,7 +14332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -14009,8 +14341,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_static] = ACTIONS(93), @@ -14018,175 +14350,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(187), + [anon_sym_RBRACE] = ACTIONS(183), [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(119), - [anon_sym_default] = ACTIONS(121), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(117), + [anon_sym_default] = ACTIONS(119), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [8] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(8), [sym_doc_comment] = STATE(8), [sym_block_comment] = STATE(8), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1109), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1571), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1287), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(65), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(79), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -14194,7 +14521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -14203,8 +14530,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_static] = ACTIONS(93), @@ -14212,173 +14539,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(185), [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [9] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(9), [sym_doc_comment] = STATE(9), [sym_block_comment] = STATE(9), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1109), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1571), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1287), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(55), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(65), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -14386,7 +14708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -14395,8 +14717,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_static] = ACTIONS(93), @@ -14404,173 +14726,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(191), + [anon_sym_RBRACE] = ACTIONS(187), [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [10] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(10), [sym_doc_comment] = STATE(10), [sym_block_comment] = STATE(10), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1109), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1571), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1287), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(66), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(91), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -14578,7 +14895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -14587,8 +14904,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_static] = ACTIONS(93), @@ -14596,173 +14913,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(193), + [anon_sym_RBRACE] = ACTIONS(189), [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [11] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(11), [sym_doc_comment] = STATE(11), [sym_block_comment] = STATE(11), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1109), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1571), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1287), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(71), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(88), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -14770,7 +15082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -14779,8 +15091,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_static] = ACTIONS(93), @@ -14788,173 +15100,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(195), + [anon_sym_RBRACE] = ACTIONS(191), [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [12] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(12), [sym_doc_comment] = STATE(12), [sym_block_comment] = STATE(12), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1109), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1571), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1287), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(82), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(76), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -14962,7 +15269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -14971,8 +15278,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_static] = ACTIONS(93), @@ -14980,173 +15287,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(197), + [anon_sym_RBRACE] = ACTIONS(193), [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [13] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(13), [sym_doc_comment] = STATE(13), [sym_block_comment] = STATE(13), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1109), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1571), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1287), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(84), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1048), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(71), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -15154,7 +15456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -15163,8 +15465,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_static] = ACTIONS(93), @@ -15172,170 +15474,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(199), + [anon_sym_RBRACE] = ACTIONS(195), [anon_sym_const] = ACTIONS(103), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [14] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(14), [sym_doc_comment] = STATE(14), [sym_block_comment] = STATE(14), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1033), - [sym_const_declaration] = STATE(475), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(477), - [sym_expr_stmt] = STATE(477), - [sym_var_decl] = STATE(1953), - [sym_var_stmt] = STATE(477), - [sym_return_stmt] = STATE(477), - [sym_continue_stmt] = STATE(477), - [sym_break_stmt] = STATE(477), - [sym_defer_stmt] = STATE(477), - [sym_assert_stmt] = STATE(477), - [sym_declaration_stmt] = STATE(477), - [sym_nextcase_stmt] = STATE(477), - [sym_switch_stmt] = STATE(477), - [sym_if_stmt] = STATE(477), - [sym_for_stmt] = STATE(477), - [sym_foreach_stmt] = STATE(477), - [sym_while_stmt] = STATE(477), - [sym_do_stmt] = STATE(477), - [sym_asm_block_stmt] = STATE(477), - [sym_ct_stmt_body] = STATE(1754), - [sym_ct_assert_stmt] = STATE(477), - [sym_ct_echo_stmt] = STATE(477), - [sym_ct_if_stmt] = STATE(477), - [sym__ct_switch] = STATE(1474), - [sym_ct_switch_stmt] = STATE(477), - [sym_ct_for_stmt] = STATE(477), - [sym_ct_foreach_stmt] = STATE(477), - [sym__expr] = STATE(1153), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1475), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(17), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(475), + [sym_expr_stmt] = STATE(475), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(475), + [sym_return_stmt] = STATE(475), + [sym_continue_stmt] = STATE(475), + [sym_break_stmt] = STATE(475), + [sym_defer_stmt] = STATE(475), + [sym_assert_stmt] = STATE(475), + [sym_declaration_stmt] = STATE(475), + [sym_nextcase_stmt] = STATE(475), + [sym_switch_stmt] = STATE(475), + [sym_if_stmt] = STATE(475), + [sym_for_stmt] = STATE(475), + [sym_foreach_stmt] = STATE(475), + [sym_while_stmt] = STATE(475), + [sym_do_stmt] = STATE(475), + [sym_asm_block_stmt] = STATE(475), + [sym_ct_stmt_body] = STATE(1651), + [sym_ct_assert_stmt] = STATE(475), + [sym_ct_echo_stmt] = STATE(475), + [sym_ct_if_stmt] = STATE(475), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(475), + [sym_ct_for_stmt] = STATE(475), + [sym_ct_foreach_stmt] = STATE(475), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_compound_stmt_repeat1] = STATE(25), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -15343,7 +15640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -15352,177 +15649,358 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(201), + [anon_sym_SEMI] = ACTIONS(197), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_const] = ACTIONS(205), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_break] = ACTIONS(211), - [anon_sym_defer] = ACTIONS(213), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_nextcase] = ACTIONS(217), - [anon_sym_switch] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_foreach] = ACTIONS(225), - [anon_sym_foreach_r] = ACTIONS(225), - [anon_sym_while] = ACTIONS(227), - [anon_sym_do] = ACTIONS(229), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_const] = ACTIONS(201), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_defer] = ACTIONS(209), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_nextcase] = ACTIONS(213), + [anon_sym_switch] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_foreach] = ACTIONS(221), + [anon_sym_foreach_r] = ACTIONS(221), + [anon_sym_while] = ACTIONS(223), + [anon_sym_do] = ACTIONS(225), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(231), - [anon_sym_DOLLARassert] = ACTIONS(233), - [anon_sym_DOLLARerror] = ACTIONS(235), - [anon_sym_DOLLARecho] = ACTIONS(237), - [anon_sym_DOLLARif] = ACTIONS(239), - [anon_sym_DOLLARcase] = ACTIONS(241), - [anon_sym_DOLLARdefault] = ACTIONS(241), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARendswitch] = ACTIONS(241), - [anon_sym_DOLLARfor] = ACTIONS(243), - [anon_sym_DOLLARforeach] = ACTIONS(245), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(227), + [anon_sym_DOLLARassert] = ACTIONS(229), + [anon_sym_DOLLARerror] = ACTIONS(231), + [anon_sym_DOLLARecho] = ACTIONS(233), + [anon_sym_DOLLARif] = ACTIONS(235), + [anon_sym_DOLLARcase] = ACTIONS(237), + [anon_sym_DOLLARdefault] = ACTIONS(237), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARendswitch] = ACTIONS(237), + [anon_sym_DOLLARfor] = ACTIONS(239), + [anon_sym_DOLLARforeach] = ACTIONS(241), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [15] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(15), [sym_doc_comment] = STATE(15), [sym_block_comment] = STATE(15), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1033), - [sym_const_declaration] = STATE(475), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(477), - [sym_expr_stmt] = STATE(477), - [sym_var_decl] = STATE(1953), - [sym_var_stmt] = STATE(477), - [sym_return_stmt] = STATE(477), - [sym_continue_stmt] = STATE(477), - [sym_break_stmt] = STATE(477), - [sym_defer_stmt] = STATE(477), - [sym_assert_stmt] = STATE(477), - [sym_declaration_stmt] = STATE(477), - [sym_nextcase_stmt] = STATE(477), - [sym_switch_stmt] = STATE(477), - [sym_if_stmt] = STATE(477), - [sym_for_stmt] = STATE(477), - [sym_foreach_stmt] = STATE(477), - [sym_while_stmt] = STATE(477), - [sym_do_stmt] = STATE(477), - [sym_asm_block_stmt] = STATE(477), - [sym_ct_stmt_body] = STATE(1730), - [sym_ct_assert_stmt] = STATE(477), - [sym_ct_echo_stmt] = STATE(477), - [sym_ct_if_stmt] = STATE(477), - [sym__ct_switch] = STATE(1474), - [sym_ct_switch_stmt] = STATE(477), - [sym_ct_for_stmt] = STATE(477), - [sym_ct_foreach_stmt] = STATE(477), - [sym__expr] = STATE(1153), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1475), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(17), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(15), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(243), + [sym_integer_literal] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(255), + [sym_bytes_literal] = ACTIONS(258), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(261), + [sym_at_ident] = ACTIONS(264), + [sym_hash_ident] = ACTIONS(267), + [sym_type_ident] = ACTIONS(270), + [sym_ct_type_ident] = ACTIONS(273), + [sym_const_ident] = ACTIONS(276), + [sym_builtin] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_static] = ACTIONS(285), + [anon_sym_tlocal] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(288), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(294), + [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_const] = ACTIONS(299), + [anon_sym_var] = ACTIONS(302), + [anon_sym_return] = ACTIONS(305), + [anon_sym_continue] = ACTIONS(308), + [anon_sym_break] = ACTIONS(311), + [anon_sym_defer] = ACTIONS(314), + [anon_sym_assert] = ACTIONS(317), + [anon_sym_case] = ACTIONS(320), + [anon_sym_default] = ACTIONS(320), + [anon_sym_nextcase] = ACTIONS(322), + [anon_sym_switch] = ACTIONS(325), + [anon_sym_AMP_AMP] = ACTIONS(328), + [anon_sym_if] = ACTIONS(331), + [anon_sym_for] = ACTIONS(334), + [anon_sym_foreach] = ACTIONS(337), + [anon_sym_foreach_r] = ACTIONS(337), + [anon_sym_while] = ACTIONS(340), + [anon_sym_do] = ACTIONS(343), + [anon_sym_int] = ACTIONS(346), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(328), + [anon_sym_asm] = ACTIONS(349), + [anon_sym_DOLLARassert] = ACTIONS(352), + [anon_sym_DOLLARerror] = ACTIONS(355), + [anon_sym_DOLLARecho] = ACTIONS(358), + [anon_sym_DOLLARif] = ACTIONS(361), + [anon_sym_DOLLARswitch] = ACTIONS(364), + [anon_sym_DOLLARfor] = ACTIONS(367), + [anon_sym_DOLLARforeach] = ACTIONS(370), + [anon_sym_DOLLARalignof] = ACTIONS(373), + [anon_sym_DOLLARextnameof] = ACTIONS(373), + [anon_sym_DOLLARnameof] = ACTIONS(373), + [anon_sym_DOLLARoffsetof] = ACTIONS(373), + [anon_sym_DOLLARqnameof] = ACTIONS(373), + [anon_sym_DOLLARvaconst] = ACTIONS(376), + [anon_sym_DOLLARvaarg] = ACTIONS(376), + [anon_sym_DOLLARvaref] = ACTIONS(376), + [anon_sym_DOLLARvaexpr] = ACTIONS(376), + [anon_sym_true] = ACTIONS(379), + [anon_sym_false] = ACTIONS(379), + [anon_sym_null] = ACTIONS(379), + [anon_sym_DOLLARvacount] = ACTIONS(379), + [anon_sym_DOLLAReval] = ACTIONS(382), + [anon_sym_DOLLARis_const] = ACTIONS(382), + [anon_sym_DOLLARsizeof] = ACTIONS(382), + [anon_sym_DOLLARstringify] = ACTIONS(382), + [anon_sym_DOLLARappend] = ACTIONS(385), + [anon_sym_DOLLARconcat] = ACTIONS(385), + [anon_sym_DOLLARdefined] = ACTIONS(385), + [anon_sym_DOLLARembed] = ACTIONS(385), + [anon_sym_DOLLARand] = ACTIONS(385), + [anon_sym_DOLLARor] = ACTIONS(385), + [anon_sym_DOLLARfeature] = ACTIONS(388), + [anon_sym_DOLLARassignable] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(328), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_PLUS_PLUS] = ACTIONS(328), + [anon_sym_DASH_DASH] = ACTIONS(328), + [anon_sym_typeid] = ACTIONS(346), + [anon_sym_LBRACE_PIPE] = ACTIONS(394), + [anon_sym_PIPE_RBRACE] = ACTIONS(297), + [anon_sym_void] = ACTIONS(346), + [anon_sym_bool] = ACTIONS(346), + [anon_sym_char] = ACTIONS(346), + [anon_sym_ichar] = ACTIONS(346), + [anon_sym_short] = ACTIONS(346), + [anon_sym_ushort] = ACTIONS(346), + [anon_sym_uint] = ACTIONS(346), + [anon_sym_long] = ACTIONS(346), + [anon_sym_ulong] = ACTIONS(346), + [anon_sym_int128] = ACTIONS(346), + [anon_sym_uint128] = ACTIONS(346), + [anon_sym_float] = ACTIONS(346), + [anon_sym_double] = ACTIONS(346), + [anon_sym_float16] = ACTIONS(346), + [anon_sym_bfloat16] = ACTIONS(346), + [anon_sym_float128] = ACTIONS(346), + [anon_sym_iptr] = ACTIONS(346), + [anon_sym_uptr] = ACTIONS(346), + [anon_sym_isz] = ACTIONS(346), + [anon_sym_usz] = ACTIONS(346), + [anon_sym_anyfault] = ACTIONS(346), + [anon_sym_any] = ACTIONS(346), + [anon_sym_DOLLARtypeof] = ACTIONS(397), + [anon_sym_DOLLARtypefrom] = ACTIONS(397), + [anon_sym_DOLLARevaltype] = ACTIONS(397), + [anon_sym_DOLLARvatype] = ACTIONS(400), + [sym_real_literal] = ACTIONS(246), + }, + [16] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(16), + [sym_doc_comment] = STATE(16), + [sym_block_comment] = STATE(16), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(475), + [sym_expr_stmt] = STATE(475), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(475), + [sym_return_stmt] = STATE(475), + [sym_continue_stmt] = STATE(475), + [sym_break_stmt] = STATE(475), + [sym_defer_stmt] = STATE(475), + [sym_assert_stmt] = STATE(475), + [sym_declaration_stmt] = STATE(475), + [sym_nextcase_stmt] = STATE(475), + [sym_switch_stmt] = STATE(475), + [sym_if_stmt] = STATE(475), + [sym_for_stmt] = STATE(475), + [sym_foreach_stmt] = STATE(475), + [sym_while_stmt] = STATE(475), + [sym_do_stmt] = STATE(475), + [sym_asm_block_stmt] = STATE(475), + [sym_ct_stmt_body] = STATE(1727), + [sym_ct_assert_stmt] = STATE(475), + [sym_ct_echo_stmt] = STATE(475), + [sym_ct_if_stmt] = STATE(475), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(475), + [sym_ct_for_stmt] = STATE(475), + [sym_ct_foreach_stmt] = STATE(475), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_compound_stmt_repeat1] = STATE(25), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -15530,7 +16008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -15539,363 +16017,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(201), + [anon_sym_SEMI] = ACTIONS(197), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_const] = ACTIONS(205), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_break] = ACTIONS(211), - [anon_sym_defer] = ACTIONS(213), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_nextcase] = ACTIONS(217), - [anon_sym_switch] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_foreach] = ACTIONS(225), - [anon_sym_foreach_r] = ACTIONS(225), - [anon_sym_while] = ACTIONS(227), - [anon_sym_do] = ACTIONS(229), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_const] = ACTIONS(201), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_defer] = ACTIONS(209), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_nextcase] = ACTIONS(213), + [anon_sym_switch] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_foreach] = ACTIONS(221), + [anon_sym_foreach_r] = ACTIONS(221), + [anon_sym_while] = ACTIONS(223), + [anon_sym_do] = ACTIONS(225), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(231), - [anon_sym_DOLLARassert] = ACTIONS(233), - [anon_sym_DOLLARerror] = ACTIONS(235), - [anon_sym_DOLLARecho] = ACTIONS(237), - [anon_sym_DOLLARif] = ACTIONS(239), - [anon_sym_DOLLARcase] = ACTIONS(247), - [anon_sym_DOLLARdefault] = ACTIONS(247), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARendswitch] = ACTIONS(247), - [anon_sym_DOLLARfor] = ACTIONS(243), - [anon_sym_DOLLARforeach] = ACTIONS(245), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(227), + [anon_sym_DOLLARassert] = ACTIONS(229), + [anon_sym_DOLLARerror] = ACTIONS(231), + [anon_sym_DOLLARecho] = ACTIONS(233), + [anon_sym_DOLLARif] = ACTIONS(235), + [anon_sym_DOLLARcase] = ACTIONS(403), + [anon_sym_DOLLARdefault] = ACTIONS(403), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARendswitch] = ACTIONS(403), + [anon_sym_DOLLARfor] = ACTIONS(239), + [anon_sym_DOLLARforeach] = ACTIONS(241), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [16] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), - [sym_line_comment] = STATE(16), - [sym_doc_comment] = STATE(16), - [sym_block_comment] = STATE(16), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(249), - [sym_integer_literal] = ACTIONS(252), - [anon_sym_SQUOTE] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(258), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym_bytes_literal] = ACTIONS(264), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(267), - [sym_at_ident] = ACTIONS(270), - [sym_hash_ident] = ACTIONS(273), - [sym_type_ident] = ACTIONS(276), - [sym_ct_type_ident] = ACTIONS(279), - [sym_const_ident] = ACTIONS(282), - [sym_builtin] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(288), - [anon_sym_static] = ACTIONS(291), - [anon_sym_tlocal] = ACTIONS(291), - [anon_sym_SEMI] = ACTIONS(294), - [anon_sym_fn] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(300), - [anon_sym_RBRACE] = ACTIONS(303), - [anon_sym_const] = ACTIONS(305), - [anon_sym_var] = ACTIONS(308), - [anon_sym_return] = ACTIONS(311), - [anon_sym_continue] = ACTIONS(314), - [anon_sym_break] = ACTIONS(317), - [anon_sym_defer] = ACTIONS(320), - [anon_sym_assert] = ACTIONS(323), - [anon_sym_case] = ACTIONS(326), - [anon_sym_default] = ACTIONS(326), - [anon_sym_nextcase] = ACTIONS(328), - [anon_sym_switch] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(334), - [anon_sym_if] = ACTIONS(337), - [anon_sym_for] = ACTIONS(340), - [anon_sym_foreach] = ACTIONS(343), - [anon_sym_foreach_r] = ACTIONS(343), - [anon_sym_while] = ACTIONS(346), - [anon_sym_do] = ACTIONS(349), - [anon_sym_int] = ACTIONS(352), - [anon_sym_PLUS] = ACTIONS(288), - [anon_sym_DASH] = ACTIONS(288), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_asm] = ACTIONS(355), - [anon_sym_DOLLARassert] = ACTIONS(358), - [anon_sym_DOLLARerror] = ACTIONS(361), - [anon_sym_DOLLARecho] = ACTIONS(364), - [anon_sym_DOLLARif] = ACTIONS(367), - [anon_sym_DOLLARswitch] = ACTIONS(370), - [anon_sym_DOLLARfor] = ACTIONS(373), - [anon_sym_DOLLARforeach] = ACTIONS(376), - [anon_sym_DOLLARalignof] = ACTIONS(379), - [anon_sym_DOLLARextnameof] = ACTIONS(379), - [anon_sym_DOLLARnameof] = ACTIONS(379), - [anon_sym_DOLLARoffsetof] = ACTIONS(379), - [anon_sym_DOLLARqnameof] = ACTIONS(379), - [anon_sym_DOLLAReval] = ACTIONS(382), - [anon_sym_DOLLARdefined] = ACTIONS(382), - [anon_sym_DOLLARsizeof] = ACTIONS(382), - [anon_sym_DOLLARstringify] = ACTIONS(382), - [anon_sym_DOLLARis_const] = ACTIONS(382), - [anon_sym_DOLLARvaconst] = ACTIONS(385), - [anon_sym_DOLLARvaarg] = ACTIONS(385), - [anon_sym_DOLLARvaref] = ACTIONS(385), - [anon_sym_DOLLARvaexpr] = ACTIONS(385), - [anon_sym_true] = ACTIONS(388), - [anon_sym_false] = ACTIONS(388), - [anon_sym_null] = ACTIONS(388), - [anon_sym_DOLLARvacount] = ACTIONS(388), - [anon_sym_DOLLARfeature] = ACTIONS(391), - [anon_sym_DOLLARand] = ACTIONS(382), - [anon_sym_DOLLARor] = ACTIONS(382), - [anon_sym_DOLLARassignable] = ACTIONS(394), - [anon_sym_DOLLARembed] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(334), - [anon_sym_TILDE] = ACTIONS(334), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_typeid] = ACTIONS(352), - [anon_sym_LBRACE_PIPE] = ACTIONS(400), - [anon_sym_PIPE_RBRACE] = ACTIONS(303), - [anon_sym_void] = ACTIONS(352), - [anon_sym_bool] = ACTIONS(352), - [anon_sym_char] = ACTIONS(352), - [anon_sym_ichar] = ACTIONS(352), - [anon_sym_short] = ACTIONS(352), - [anon_sym_ushort] = ACTIONS(352), - [anon_sym_uint] = ACTIONS(352), - [anon_sym_long] = ACTIONS(352), - [anon_sym_ulong] = ACTIONS(352), - [anon_sym_int128] = ACTIONS(352), - [anon_sym_uint128] = ACTIONS(352), - [anon_sym_float] = ACTIONS(352), - [anon_sym_double] = ACTIONS(352), - [anon_sym_float16] = ACTIONS(352), - [anon_sym_bfloat16] = ACTIONS(352), - [anon_sym_float128] = ACTIONS(352), - [anon_sym_iptr] = ACTIONS(352), - [anon_sym_uptr] = ACTIONS(352), - [anon_sym_isz] = ACTIONS(352), - [anon_sym_usz] = ACTIONS(352), - [anon_sym_anyfault] = ACTIONS(352), - [anon_sym_any] = ACTIONS(352), - [anon_sym_DOLLARtypeof] = ACTIONS(403), - [anon_sym_DOLLARtypefrom] = ACTIONS(406), - [anon_sym_DOLLARvatype] = ACTIONS(406), - [anon_sym_DOLLARevaltype] = ACTIONS(406), - [sym_real_literal] = ACTIONS(252), - }, [17] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(17), [sym_doc_comment] = STATE(17), [sym_block_comment] = STATE(17), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1033), - [sym_const_declaration] = STATE(475), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(477), - [sym_expr_stmt] = STATE(477), - [sym_var_decl] = STATE(1953), - [sym_var_stmt] = STATE(477), - [sym_return_stmt] = STATE(477), - [sym_continue_stmt] = STATE(477), - [sym_break_stmt] = STATE(477), - [sym_defer_stmt] = STATE(477), - [sym_assert_stmt] = STATE(477), - [sym_declaration_stmt] = STATE(477), - [sym_nextcase_stmt] = STATE(477), - [sym_switch_stmt] = STATE(477), - [sym_if_stmt] = STATE(477), - [sym_for_stmt] = STATE(477), - [sym_foreach_stmt] = STATE(477), - [sym_while_stmt] = STATE(477), - [sym_do_stmt] = STATE(477), - [sym_asm_block_stmt] = STATE(477), - [sym_ct_assert_stmt] = STATE(477), - [sym_ct_echo_stmt] = STATE(477), - [sym_ct_if_stmt] = STATE(477), - [sym__ct_switch] = STATE(1474), - [sym_ct_switch_stmt] = STATE(477), - [sym_ct_for_stmt] = STATE(477), - [sym_ct_foreach_stmt] = STATE(477), - [sym__expr] = STATE(1153), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1475), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(28), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(475), + [sym_expr_stmt] = STATE(475), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(475), + [sym_return_stmt] = STATE(475), + [sym_continue_stmt] = STATE(475), + [sym_break_stmt] = STATE(475), + [sym_defer_stmt] = STATE(475), + [sym_assert_stmt] = STATE(475), + [sym_declaration_stmt] = STATE(475), + [sym_nextcase_stmt] = STATE(475), + [sym_switch_stmt] = STATE(475), + [sym_if_stmt] = STATE(475), + [sym_for_stmt] = STATE(475), + [sym_foreach_stmt] = STATE(475), + [sym_while_stmt] = STATE(475), + [sym_do_stmt] = STATE(475), + [sym_asm_block_stmt] = STATE(475), + [sym_ct_stmt_body] = STATE(1617), + [sym_ct_assert_stmt] = STATE(475), + [sym_ct_echo_stmt] = STATE(475), + [sym_ct_if_stmt] = STATE(475), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(475), + [sym_ct_for_stmt] = STATE(475), + [sym_ct_foreach_stmt] = STATE(475), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_compound_stmt_repeat1] = STATE(25), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -15903,7 +16192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -15912,176 +16201,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(201), + [anon_sym_SEMI] = ACTIONS(197), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_const] = ACTIONS(205), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_break] = ACTIONS(211), - [anon_sym_defer] = ACTIONS(213), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_nextcase] = ACTIONS(217), - [anon_sym_switch] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_foreach] = ACTIONS(225), - [anon_sym_foreach_r] = ACTIONS(225), - [anon_sym_while] = ACTIONS(227), - [anon_sym_do] = ACTIONS(229), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_const] = ACTIONS(201), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_defer] = ACTIONS(209), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_nextcase] = ACTIONS(213), + [anon_sym_switch] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_foreach] = ACTIONS(221), + [anon_sym_foreach_r] = ACTIONS(221), + [anon_sym_while] = ACTIONS(223), + [anon_sym_do] = ACTIONS(225), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(231), - [anon_sym_DOLLARassert] = ACTIONS(233), - [anon_sym_DOLLARerror] = ACTIONS(235), - [anon_sym_DOLLARecho] = ACTIONS(237), - [anon_sym_DOLLARif] = ACTIONS(239), - [anon_sym_DOLLARcase] = ACTIONS(409), - [anon_sym_DOLLARdefault] = ACTIONS(409), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARendswitch] = ACTIONS(409), - [anon_sym_DOLLARfor] = ACTIONS(243), - [anon_sym_DOLLARforeach] = ACTIONS(245), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(227), + [anon_sym_DOLLARassert] = ACTIONS(229), + [anon_sym_DOLLARerror] = ACTIONS(231), + [anon_sym_DOLLARecho] = ACTIONS(233), + [anon_sym_DOLLARif] = ACTIONS(235), + [anon_sym_DOLLARcase] = ACTIONS(405), + [anon_sym_DOLLARdefault] = ACTIONS(405), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARendswitch] = ACTIONS(405), + [anon_sym_DOLLARfor] = ACTIONS(239), + [anon_sym_DOLLARforeach] = ACTIONS(241), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [18] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(18), [sym_doc_comment] = STATE(18), [sym_block_comment] = STATE(18), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(24), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(508), + [sym_expr_stmt] = STATE(508), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(508), + [sym_return_stmt] = STATE(508), + [sym_continue_stmt] = STATE(508), + [sym_break_stmt] = STATE(508), + [sym_defer_stmt] = STATE(508), + [sym_assert_stmt] = STATE(508), + [sym_declaration_stmt] = STATE(508), + [sym_nextcase_stmt] = STATE(508), + [sym_switch_stmt] = STATE(508), + [sym_if_stmt] = STATE(508), + [sym_for_stmt] = STATE(508), + [sym_foreach_stmt] = STATE(508), + [sym_while_stmt] = STATE(508), + [sym_do_stmt] = STATE(508), + [sym_asm_block_stmt] = STATE(508), + [sym_ct_stmt_body] = STATE(1874), + [sym_ct_assert_stmt] = STATE(508), + [sym_ct_echo_stmt] = STATE(508), + [sym_ct_if_stmt] = STATE(508), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(508), + [sym_ct_for_stmt] = STATE(508), + [sym_ct_foreach_stmt] = STATE(508), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_compound_stmt_repeat1] = STATE(53), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -16089,7 +16376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -16098,177 +16385,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(407), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(411), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(413), - [anon_sym_default] = ACTIONS(413), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(409), + [anon_sym_const] = ACTIONS(411), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_DOLLARendif] = ACTIONS(447), + [anon_sym_DOLLARelse] = ACTIONS(449), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [19] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(19), [sym_doc_comment] = STATE(19), [sym_block_comment] = STATE(19), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1042), - [sym_const_declaration] = STATE(506), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(505), - [sym_expr_stmt] = STATE(505), - [sym_var_decl] = STATE(2226), - [sym_var_stmt] = STATE(505), - [sym_return_stmt] = STATE(505), - [sym_continue_stmt] = STATE(505), - [sym_break_stmt] = STATE(505), - [sym_defer_stmt] = STATE(505), - [sym_assert_stmt] = STATE(505), - [sym_declaration_stmt] = STATE(505), - [sym_nextcase_stmt] = STATE(505), - [sym_switch_stmt] = STATE(505), - [sym_if_stmt] = STATE(505), - [sym_for_stmt] = STATE(505), - [sym_foreach_stmt] = STATE(505), - [sym_while_stmt] = STATE(505), - [sym_do_stmt] = STATE(505), - [sym_asm_block_stmt] = STATE(505), - [sym_ct_stmt_body] = STATE(1865), - [sym_ct_assert_stmt] = STATE(505), - [sym_ct_echo_stmt] = STATE(505), - [sym_ct_if_stmt] = STATE(505), - [sym__ct_switch] = STATE(1559), - [sym_ct_switch_stmt] = STATE(505), - [sym_ct_for_stmt] = STATE(505), - [sym_ct_foreach_stmt] = STATE(505), - [sym__expr] = STATE(1140), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1553), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(43), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(22), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -16276,7 +16558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -16285,176 +16567,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_const] = ACTIONS(419), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_break] = ACTIONS(425), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_assert] = ACTIONS(429), - [anon_sym_nextcase] = ACTIONS(431), - [anon_sym_switch] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_foreach] = ACTIONS(439), - [anon_sym_foreach_r] = ACTIONS(439), - [anon_sym_while] = ACTIONS(441), - [anon_sym_do] = ACTIONS(443), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(455), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(457), + [anon_sym_default] = ACTIONS(457), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(445), - [anon_sym_DOLLARassert] = ACTIONS(447), - [anon_sym_DOLLARerror] = ACTIONS(449), - [anon_sym_DOLLARecho] = ACTIONS(451), - [anon_sym_DOLLARif] = ACTIONS(453), - [anon_sym_DOLLARendif] = ACTIONS(455), - [anon_sym_DOLLARelse] = ACTIONS(457), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(459), - [anon_sym_DOLLARforeach] = ACTIONS(461), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [20] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(20), [sym_doc_comment] = STATE(20), [sym_block_comment] = STATE(20), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1042), - [sym_const_declaration] = STATE(506), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(505), - [sym_expr_stmt] = STATE(505), - [sym_var_decl] = STATE(2226), - [sym_var_stmt] = STATE(505), - [sym_return_stmt] = STATE(505), - [sym_continue_stmt] = STATE(505), - [sym_break_stmt] = STATE(505), - [sym_defer_stmt] = STATE(505), - [sym_assert_stmt] = STATE(505), - [sym_declaration_stmt] = STATE(505), - [sym_nextcase_stmt] = STATE(505), - [sym_switch_stmt] = STATE(505), - [sym_if_stmt] = STATE(505), - [sym_for_stmt] = STATE(505), - [sym_foreach_stmt] = STATE(505), - [sym_while_stmt] = STATE(505), - [sym_do_stmt] = STATE(505), - [sym_asm_block_stmt] = STATE(505), - [sym_ct_stmt_body] = STATE(1838), - [sym_ct_assert_stmt] = STATE(505), - [sym_ct_echo_stmt] = STATE(505), - [sym_ct_if_stmt] = STATE(505), - [sym__ct_switch] = STATE(1559), - [sym_ct_switch_stmt] = STATE(505), - [sym_ct_for_stmt] = STATE(505), - [sym_ct_foreach_stmt] = STATE(505), - [sym__expr] = STATE(1140), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1553), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(43), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(23), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -16462,7 +16741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -16471,176 +16750,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_const] = ACTIONS(419), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_break] = ACTIONS(425), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_assert] = ACTIONS(429), - [anon_sym_nextcase] = ACTIONS(431), - [anon_sym_switch] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_foreach] = ACTIONS(439), - [anon_sym_foreach_r] = ACTIONS(439), - [anon_sym_while] = ACTIONS(441), - [anon_sym_do] = ACTIONS(443), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(459), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(461), + [anon_sym_default] = ACTIONS(461), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(445), - [anon_sym_DOLLARassert] = ACTIONS(447), - [anon_sym_DOLLARerror] = ACTIONS(449), - [anon_sym_DOLLARecho] = ACTIONS(451), - [anon_sym_DOLLARif] = ACTIONS(453), - [anon_sym_DOLLARendif] = ACTIONS(463), - [anon_sym_DOLLARelse] = ACTIONS(465), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(459), - [anon_sym_DOLLARforeach] = ACTIONS(461), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [21] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(21), [sym_doc_comment] = STATE(21), [sym_block_comment] = STATE(21), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1042), - [sym_const_declaration] = STATE(506), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(505), - [sym_expr_stmt] = STATE(505), - [sym_var_decl] = STATE(2226), - [sym_var_stmt] = STATE(505), - [sym_return_stmt] = STATE(505), - [sym_continue_stmt] = STATE(505), - [sym_break_stmt] = STATE(505), - [sym_defer_stmt] = STATE(505), - [sym_assert_stmt] = STATE(505), - [sym_declaration_stmt] = STATE(505), - [sym_nextcase_stmt] = STATE(505), - [sym_switch_stmt] = STATE(505), - [sym_if_stmt] = STATE(505), - [sym_for_stmt] = STATE(505), - [sym_foreach_stmt] = STATE(505), - [sym_while_stmt] = STATE(505), - [sym_do_stmt] = STATE(505), - [sym_asm_block_stmt] = STATE(505), - [sym_ct_stmt_body] = STATE(1780), - [sym_ct_assert_stmt] = STATE(505), - [sym_ct_echo_stmt] = STATE(505), - [sym_ct_if_stmt] = STATE(505), - [sym__ct_switch] = STATE(1559), - [sym_ct_switch_stmt] = STATE(505), - [sym_ct_for_stmt] = STATE(505), - [sym_ct_foreach_stmt] = STATE(505), - [sym__expr] = STATE(1140), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1553), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(43), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(24), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -16648,7 +16924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -16657,175 +16933,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_const] = ACTIONS(419), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_break] = ACTIONS(425), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_assert] = ACTIONS(429), - [anon_sym_nextcase] = ACTIONS(431), - [anon_sym_switch] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_foreach] = ACTIONS(439), - [anon_sym_foreach_r] = ACTIONS(439), - [anon_sym_while] = ACTIONS(441), - [anon_sym_do] = ACTIONS(443), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(463), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(465), + [anon_sym_default] = ACTIONS(465), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(445), - [anon_sym_DOLLARassert] = ACTIONS(447), - [anon_sym_DOLLARerror] = ACTIONS(449), - [anon_sym_DOLLARecho] = ACTIONS(451), - [anon_sym_DOLLARif] = ACTIONS(453), - [anon_sym_DOLLARendif] = ACTIONS(467), - [anon_sym_DOLLARelse] = ACTIONS(469), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(459), - [anon_sym_DOLLARforeach] = ACTIONS(461), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [22] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(22), [sym_doc_comment] = STATE(22), [sym_block_comment] = STATE(22), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(15), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -16833,7 +17107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -16842,176 +17116,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(471), + [anon_sym_RBRACE] = ACTIONS(467), [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(473), - [anon_sym_default] = ACTIONS(473), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(469), + [anon_sym_default] = ACTIONS(469), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [23] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(23), [sym_doc_comment] = STATE(23), [sym_block_comment] = STATE(23), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(22), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(15), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -17019,7 +17290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -17028,176 +17299,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym_RBRACE] = ACTIONS(471), [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(477), - [anon_sym_default] = ACTIONS(477), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(473), + [anon_sym_default] = ACTIONS(473), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [24] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(24), [sym_doc_comment] = STATE(24), [sym_block_comment] = STATE(24), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(15), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -17205,7 +17473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -17214,177 +17482,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(479), + [anon_sym_RBRACE] = ACTIONS(475), [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_case] = ACTIONS(481), - [anon_sym_default] = ACTIONS(481), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_case] = ACTIONS(477), + [anon_sym_default] = ACTIONS(477), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [25] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(25), [sym_doc_comment] = STATE(25), [sym_block_comment] = STATE(25), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1042), - [sym_const_declaration] = STATE(506), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(505), - [sym_expr_stmt] = STATE(505), - [sym_var_decl] = STATE(2226), - [sym_var_stmt] = STATE(505), - [sym_return_stmt] = STATE(505), - [sym_continue_stmt] = STATE(505), - [sym_break_stmt] = STATE(505), - [sym_defer_stmt] = STATE(505), - [sym_assert_stmt] = STATE(505), - [sym_declaration_stmt] = STATE(505), - [sym_nextcase_stmt] = STATE(505), - [sym_switch_stmt] = STATE(505), - [sym_if_stmt] = STATE(505), - [sym_for_stmt] = STATE(505), - [sym_foreach_stmt] = STATE(505), - [sym_while_stmt] = STATE(505), - [sym_do_stmt] = STATE(505), - [sym_asm_block_stmt] = STATE(505), - [sym_ct_stmt_body] = STATE(1911), - [sym_ct_assert_stmt] = STATE(505), - [sym_ct_echo_stmt] = STATE(505), - [sym_ct_if_stmt] = STATE(505), - [sym__ct_switch] = STATE(1559), - [sym_ct_switch_stmt] = STATE(505), - [sym_ct_for_stmt] = STATE(505), - [sym_ct_foreach_stmt] = STATE(505), - [sym__expr] = STATE(1140), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1553), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(43), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(475), + [sym_expr_stmt] = STATE(475), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(475), + [sym_return_stmt] = STATE(475), + [sym_continue_stmt] = STATE(475), + [sym_break_stmt] = STATE(475), + [sym_defer_stmt] = STATE(475), + [sym_assert_stmt] = STATE(475), + [sym_declaration_stmt] = STATE(475), + [sym_nextcase_stmt] = STATE(475), + [sym_switch_stmt] = STATE(475), + [sym_if_stmt] = STATE(475), + [sym_for_stmt] = STATE(475), + [sym_foreach_stmt] = STATE(475), + [sym_while_stmt] = STATE(475), + [sym_do_stmt] = STATE(475), + [sym_asm_block_stmt] = STATE(475), + [sym_ct_assert_stmt] = STATE(475), + [sym_ct_echo_stmt] = STATE(475), + [sym_ct_if_stmt] = STATE(475), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(475), + [sym_ct_for_stmt] = STATE(475), + [sym_ct_foreach_stmt] = STATE(475), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_compound_stmt_repeat1] = STATE(30), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -17392,7 +17656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -17401,176 +17665,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(197), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_const] = ACTIONS(419), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_break] = ACTIONS(425), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_assert] = ACTIONS(429), - [anon_sym_nextcase] = ACTIONS(431), - [anon_sym_switch] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_foreach] = ACTIONS(439), - [anon_sym_foreach_r] = ACTIONS(439), - [anon_sym_while] = ACTIONS(441), - [anon_sym_do] = ACTIONS(443), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_const] = ACTIONS(201), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_defer] = ACTIONS(209), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_nextcase] = ACTIONS(213), + [anon_sym_switch] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_foreach] = ACTIONS(221), + [anon_sym_foreach_r] = ACTIONS(221), + [anon_sym_while] = ACTIONS(223), + [anon_sym_do] = ACTIONS(225), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(445), - [anon_sym_DOLLARassert] = ACTIONS(447), - [anon_sym_DOLLARerror] = ACTIONS(449), - [anon_sym_DOLLARecho] = ACTIONS(451), - [anon_sym_DOLLARif] = ACTIONS(453), - [anon_sym_DOLLARendif] = ACTIONS(483), - [anon_sym_DOLLARelse] = ACTIONS(485), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(459), - [anon_sym_DOLLARforeach] = ACTIONS(461), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(227), + [anon_sym_DOLLARassert] = ACTIONS(229), + [anon_sym_DOLLARerror] = ACTIONS(231), + [anon_sym_DOLLARecho] = ACTIONS(233), + [anon_sym_DOLLARif] = ACTIONS(235), + [anon_sym_DOLLARcase] = ACTIONS(479), + [anon_sym_DOLLARdefault] = ACTIONS(479), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARendswitch] = ACTIONS(479), + [anon_sym_DOLLARfor] = ACTIONS(239), + [anon_sym_DOLLARforeach] = ACTIONS(241), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [26] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(26), [sym_doc_comment] = STATE(26), [sym_block_comment] = STATE(26), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1042), - [sym_const_declaration] = STATE(506), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(505), - [sym_expr_stmt] = STATE(505), - [sym_var_decl] = STATE(2226), - [sym_var_stmt] = STATE(505), - [sym_return_stmt] = STATE(505), - [sym_continue_stmt] = STATE(505), - [sym_break_stmt] = STATE(505), - [sym_defer_stmt] = STATE(505), - [sym_assert_stmt] = STATE(505), - [sym_declaration_stmt] = STATE(505), - [sym_nextcase_stmt] = STATE(505), - [sym_switch_stmt] = STATE(505), - [sym_if_stmt] = STATE(505), - [sym_for_stmt] = STATE(505), - [sym_foreach_stmt] = STATE(505), - [sym_while_stmt] = STATE(505), - [sym_do_stmt] = STATE(505), - [sym_asm_block_stmt] = STATE(505), - [sym_ct_stmt_body] = STATE(1858), - [sym_ct_assert_stmt] = STATE(505), - [sym_ct_echo_stmt] = STATE(505), - [sym_ct_if_stmt] = STATE(505), - [sym__ct_switch] = STATE(1559), - [sym_ct_switch_stmt] = STATE(505), - [sym_ct_for_stmt] = STATE(505), - [sym_ct_foreach_stmt] = STATE(505), - [sym__expr] = STATE(1140), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1553), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(43), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(508), + [sym_expr_stmt] = STATE(508), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(508), + [sym_return_stmt] = STATE(508), + [sym_continue_stmt] = STATE(508), + [sym_break_stmt] = STATE(508), + [sym_defer_stmt] = STATE(508), + [sym_assert_stmt] = STATE(508), + [sym_declaration_stmt] = STATE(508), + [sym_nextcase_stmt] = STATE(508), + [sym_switch_stmt] = STATE(508), + [sym_if_stmt] = STATE(508), + [sym_for_stmt] = STATE(508), + [sym_foreach_stmt] = STATE(508), + [sym_while_stmt] = STATE(508), + [sym_do_stmt] = STATE(508), + [sym_asm_block_stmt] = STATE(508), + [sym_ct_stmt_body] = STATE(1860), + [sym_ct_assert_stmt] = STATE(508), + [sym_ct_echo_stmt] = STATE(508), + [sym_ct_if_stmt] = STATE(508), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(508), + [sym_ct_for_stmt] = STATE(508), + [sym_ct_foreach_stmt] = STATE(508), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_compound_stmt_repeat1] = STATE(53), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -17578,7 +17840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -17587,176 +17849,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(407), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_const] = ACTIONS(419), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_break] = ACTIONS(425), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_assert] = ACTIONS(429), - [anon_sym_nextcase] = ACTIONS(431), - [anon_sym_switch] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_foreach] = ACTIONS(439), - [anon_sym_foreach_r] = ACTIONS(439), - [anon_sym_while] = ACTIONS(441), - [anon_sym_do] = ACTIONS(443), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(409), + [anon_sym_const] = ACTIONS(411), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(445), - [anon_sym_DOLLARassert] = ACTIONS(447), - [anon_sym_DOLLARerror] = ACTIONS(449), - [anon_sym_DOLLARecho] = ACTIONS(451), - [anon_sym_DOLLARif] = ACTIONS(453), - [anon_sym_DOLLARendif] = ACTIONS(487), - [anon_sym_DOLLARelse] = ACTIONS(489), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(459), - [anon_sym_DOLLARforeach] = ACTIONS(461), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_DOLLARendif] = ACTIONS(481), + [anon_sym_DOLLARelse] = ACTIONS(483), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [27] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(27), [sym_doc_comment] = STATE(27), [sym_block_comment] = STATE(27), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1042), - [sym_const_declaration] = STATE(506), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(505), - [sym_expr_stmt] = STATE(505), - [sym_var_decl] = STATE(2226), - [sym_var_stmt] = STATE(505), - [sym_return_stmt] = STATE(505), - [sym_continue_stmt] = STATE(505), - [sym_break_stmt] = STATE(505), - [sym_defer_stmt] = STATE(505), - [sym_assert_stmt] = STATE(505), - [sym_declaration_stmt] = STATE(505), - [sym_nextcase_stmt] = STATE(505), - [sym_switch_stmt] = STATE(505), - [sym_if_stmt] = STATE(505), - [sym_for_stmt] = STATE(505), - [sym_foreach_stmt] = STATE(505), - [sym_while_stmt] = STATE(505), - [sym_do_stmt] = STATE(505), - [sym_asm_block_stmt] = STATE(505), - [sym_ct_stmt_body] = STATE(1895), - [sym_ct_assert_stmt] = STATE(505), - [sym_ct_echo_stmt] = STATE(505), - [sym_ct_if_stmt] = STATE(505), - [sym__ct_switch] = STATE(1559), - [sym_ct_switch_stmt] = STATE(505), - [sym_ct_for_stmt] = STATE(505), - [sym_ct_foreach_stmt] = STATE(505), - [sym__expr] = STATE(1140), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1553), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(43), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(508), + [sym_expr_stmt] = STATE(508), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(508), + [sym_return_stmt] = STATE(508), + [sym_continue_stmt] = STATE(508), + [sym_break_stmt] = STATE(508), + [sym_defer_stmt] = STATE(508), + [sym_assert_stmt] = STATE(508), + [sym_declaration_stmt] = STATE(508), + [sym_nextcase_stmt] = STATE(508), + [sym_switch_stmt] = STATE(508), + [sym_if_stmt] = STATE(508), + [sym_for_stmt] = STATE(508), + [sym_foreach_stmt] = STATE(508), + [sym_while_stmt] = STATE(508), + [sym_do_stmt] = STATE(508), + [sym_asm_block_stmt] = STATE(508), + [sym_ct_stmt_body] = STATE(1742), + [sym_ct_assert_stmt] = STATE(508), + [sym_ct_echo_stmt] = STATE(508), + [sym_ct_if_stmt] = STATE(508), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(508), + [sym_ct_for_stmt] = STATE(508), + [sym_ct_foreach_stmt] = STATE(508), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_compound_stmt_repeat1] = STATE(53), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -17764,7 +18023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -17773,362 +18032,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(407), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_const] = ACTIONS(419), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_break] = ACTIONS(425), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_assert] = ACTIONS(429), - [anon_sym_nextcase] = ACTIONS(431), - [anon_sym_switch] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_foreach] = ACTIONS(439), - [anon_sym_foreach_r] = ACTIONS(439), - [anon_sym_while] = ACTIONS(441), - [anon_sym_do] = ACTIONS(443), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(409), + [anon_sym_const] = ACTIONS(411), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(445), - [anon_sym_DOLLARassert] = ACTIONS(447), - [anon_sym_DOLLARerror] = ACTIONS(449), - [anon_sym_DOLLARecho] = ACTIONS(451), - [anon_sym_DOLLARif] = ACTIONS(453), - [anon_sym_DOLLARendif] = ACTIONS(491), - [anon_sym_DOLLARelse] = ACTIONS(493), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(459), - [anon_sym_DOLLARforeach] = ACTIONS(461), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_DOLLARendif] = ACTIONS(485), + [anon_sym_DOLLARelse] = ACTIONS(487), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [28] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(28), [sym_doc_comment] = STATE(28), [sym_block_comment] = STATE(28), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1033), - [sym_const_declaration] = STATE(475), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(477), - [sym_expr_stmt] = STATE(477), - [sym_var_decl] = STATE(1953), - [sym_var_stmt] = STATE(477), - [sym_return_stmt] = STATE(477), - [sym_continue_stmt] = STATE(477), - [sym_break_stmt] = STATE(477), - [sym_defer_stmt] = STATE(477), - [sym_assert_stmt] = STATE(477), - [sym_declaration_stmt] = STATE(477), - [sym_nextcase_stmt] = STATE(477), - [sym_switch_stmt] = STATE(477), - [sym_if_stmt] = STATE(477), - [sym_for_stmt] = STATE(477), - [sym_foreach_stmt] = STATE(477), - [sym_while_stmt] = STATE(477), - [sym_do_stmt] = STATE(477), - [sym_asm_block_stmt] = STATE(477), - [sym_ct_assert_stmt] = STATE(477), - [sym_ct_echo_stmt] = STATE(477), - [sym_ct_if_stmt] = STATE(477), - [sym__ct_switch] = STATE(1474), - [sym_ct_switch_stmt] = STATE(477), - [sym_ct_for_stmt] = STATE(477), - [sym_ct_foreach_stmt] = STATE(477), - [sym__expr] = STATE(1153), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1475), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(28), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(249), - [sym_integer_literal] = ACTIONS(252), - [anon_sym_SQUOTE] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(258), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym_bytes_literal] = ACTIONS(264), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(267), - [sym_at_ident] = ACTIONS(270), - [sym_hash_ident] = ACTIONS(273), - [sym_type_ident] = ACTIONS(276), - [sym_ct_type_ident] = ACTIONS(279), - [sym_const_ident] = ACTIONS(282), - [sym_builtin] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(288), - [anon_sym_static] = ACTIONS(291), - [anon_sym_tlocal] = ACTIONS(291), - [anon_sym_SEMI] = ACTIONS(495), - [anon_sym_fn] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(498), - [anon_sym_const] = ACTIONS(501), - [anon_sym_var] = ACTIONS(308), - [anon_sym_return] = ACTIONS(504), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_break] = ACTIONS(510), - [anon_sym_defer] = ACTIONS(513), - [anon_sym_assert] = ACTIONS(516), - [anon_sym_nextcase] = ACTIONS(519), - [anon_sym_switch] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(334), - [anon_sym_if] = ACTIONS(525), - [anon_sym_for] = ACTIONS(528), - [anon_sym_foreach] = ACTIONS(531), - [anon_sym_foreach_r] = ACTIONS(531), - [anon_sym_while] = ACTIONS(534), - [anon_sym_do] = ACTIONS(537), - [anon_sym_int] = ACTIONS(352), - [anon_sym_PLUS] = ACTIONS(288), - [anon_sym_DASH] = ACTIONS(288), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_asm] = ACTIONS(540), - [anon_sym_DOLLARassert] = ACTIONS(543), - [anon_sym_DOLLARerror] = ACTIONS(546), - [anon_sym_DOLLARecho] = ACTIONS(549), - [anon_sym_DOLLARif] = ACTIONS(552), - [anon_sym_DOLLARcase] = ACTIONS(326), - [anon_sym_DOLLARdefault] = ACTIONS(326), - [anon_sym_DOLLARswitch] = ACTIONS(370), - [anon_sym_DOLLARendswitch] = ACTIONS(326), - [anon_sym_DOLLARfor] = ACTIONS(555), - [anon_sym_DOLLARforeach] = ACTIONS(558), - [anon_sym_DOLLARalignof] = ACTIONS(379), - [anon_sym_DOLLARextnameof] = ACTIONS(379), - [anon_sym_DOLLARnameof] = ACTIONS(379), - [anon_sym_DOLLARoffsetof] = ACTIONS(379), - [anon_sym_DOLLARqnameof] = ACTIONS(379), - [anon_sym_DOLLAReval] = ACTIONS(382), - [anon_sym_DOLLARdefined] = ACTIONS(382), - [anon_sym_DOLLARsizeof] = ACTIONS(382), - [anon_sym_DOLLARstringify] = ACTIONS(382), - [anon_sym_DOLLARis_const] = ACTIONS(382), - [anon_sym_DOLLARvaconst] = ACTIONS(385), - [anon_sym_DOLLARvaarg] = ACTIONS(385), - [anon_sym_DOLLARvaref] = ACTIONS(385), - [anon_sym_DOLLARvaexpr] = ACTIONS(385), - [anon_sym_true] = ACTIONS(388), - [anon_sym_false] = ACTIONS(388), - [anon_sym_null] = ACTIONS(388), - [anon_sym_DOLLARvacount] = ACTIONS(388), - [anon_sym_DOLLARfeature] = ACTIONS(391), - [anon_sym_DOLLARand] = ACTIONS(382), - [anon_sym_DOLLARor] = ACTIONS(382), - [anon_sym_DOLLARassignable] = ACTIONS(394), - [anon_sym_DOLLARembed] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(334), - [anon_sym_TILDE] = ACTIONS(334), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_typeid] = ACTIONS(352), - [anon_sym_LBRACE_PIPE] = ACTIONS(400), - [anon_sym_void] = ACTIONS(352), - [anon_sym_bool] = ACTIONS(352), - [anon_sym_char] = ACTIONS(352), - [anon_sym_ichar] = ACTIONS(352), - [anon_sym_short] = ACTIONS(352), - [anon_sym_ushort] = ACTIONS(352), - [anon_sym_uint] = ACTIONS(352), - [anon_sym_long] = ACTIONS(352), - [anon_sym_ulong] = ACTIONS(352), - [anon_sym_int128] = ACTIONS(352), - [anon_sym_uint128] = ACTIONS(352), - [anon_sym_float] = ACTIONS(352), - [anon_sym_double] = ACTIONS(352), - [anon_sym_float16] = ACTIONS(352), - [anon_sym_bfloat16] = ACTIONS(352), - [anon_sym_float128] = ACTIONS(352), - [anon_sym_iptr] = ACTIONS(352), - [anon_sym_uptr] = ACTIONS(352), - [anon_sym_isz] = ACTIONS(352), - [anon_sym_usz] = ACTIONS(352), - [anon_sym_anyfault] = ACTIONS(352), - [anon_sym_any] = ACTIONS(352), - [anon_sym_DOLLARtypeof] = ACTIONS(403), - [anon_sym_DOLLARtypefrom] = ACTIONS(406), - [anon_sym_DOLLARvatype] = ACTIONS(406), - [anon_sym_DOLLARevaltype] = ACTIONS(406), - [sym_real_literal] = ACTIONS(252), - }, - [29] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), - [sym_line_comment] = STATE(29), - [sym_doc_comment] = STATE(29), - [sym_block_comment] = STATE(29), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(694), - [sym_expr_stmt] = STATE(694), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(694), - [sym_return_stmt] = STATE(694), - [sym_continue_stmt] = STATE(694), - [sym_break_stmt] = STATE(694), - [sym_defer_stmt] = STATE(694), - [sym_assert_stmt] = STATE(694), - [sym_declaration_stmt] = STATE(694), - [sym_nextcase_stmt] = STATE(694), - [sym_switch_stmt] = STATE(694), - [sym_if_stmt] = STATE(694), - [sym_for_stmt] = STATE(694), - [sym_foreach_stmt] = STATE(694), - [sym_while_stmt] = STATE(694), - [sym_do_stmt] = STATE(694), - [sym_asm_block_stmt] = STATE(694), - [sym_ct_stmt_body] = STATE(2001), - [sym_ct_assert_stmt] = STATE(694), - [sym_ct_echo_stmt] = STATE(694), - [sym_ct_if_stmt] = STATE(694), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(694), - [sym_ct_for_stmt] = STATE(694), - [sym_ct_foreach_stmt] = STATE(694), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(76), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(508), + [sym_expr_stmt] = STATE(508), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(508), + [sym_return_stmt] = STATE(508), + [sym_continue_stmt] = STATE(508), + [sym_break_stmt] = STATE(508), + [sym_defer_stmt] = STATE(508), + [sym_assert_stmt] = STATE(508), + [sym_declaration_stmt] = STATE(508), + [sym_nextcase_stmt] = STATE(508), + [sym_switch_stmt] = STATE(508), + [sym_if_stmt] = STATE(508), + [sym_for_stmt] = STATE(508), + [sym_foreach_stmt] = STATE(508), + [sym_while_stmt] = STATE(508), + [sym_do_stmt] = STATE(508), + [sym_asm_block_stmt] = STATE(508), + [sym_ct_stmt_body] = STATE(1746), + [sym_ct_assert_stmt] = STATE(508), + [sym_ct_echo_stmt] = STATE(508), + [sym_ct_if_stmt] = STATE(508), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(508), + [sym_ct_for_stmt] = STATE(508), + [sym_ct_foreach_stmt] = STATE(508), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_compound_stmt_repeat1] = STATE(53), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -18136,7 +18206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -18145,175 +18215,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(407), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(409), + [anon_sym_const] = ACTIONS(411), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARendif] = ACTIONS(601), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_DOLLARendif] = ACTIONS(489), + [anon_sym_DOLLARelse] = ACTIONS(491), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [30] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), - [sym_line_comment] = STATE(30), - [sym_doc_comment] = STATE(30), - [sym_block_comment] = STATE(30), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(694), - [sym_expr_stmt] = STATE(694), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(694), - [sym_return_stmt] = STATE(694), - [sym_continue_stmt] = STATE(694), - [sym_break_stmt] = STATE(694), - [sym_defer_stmt] = STATE(694), - [sym_assert_stmt] = STATE(694), - [sym_declaration_stmt] = STATE(694), - [sym_nextcase_stmt] = STATE(694), - [sym_switch_stmt] = STATE(694), - [sym_if_stmt] = STATE(694), - [sym_for_stmt] = STATE(694), - [sym_foreach_stmt] = STATE(694), - [sym_while_stmt] = STATE(694), - [sym_do_stmt] = STATE(694), - [sym_asm_block_stmt] = STATE(694), - [sym_ct_stmt_body] = STATE(2163), - [sym_ct_assert_stmt] = STATE(694), - [sym_ct_echo_stmt] = STATE(694), - [sym_ct_if_stmt] = STATE(694), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(694), - [sym_ct_for_stmt] = STATE(694), - [sym_ct_foreach_stmt] = STATE(694), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(76), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [29] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(29), + [sym_doc_comment] = STATE(29), + [sym_block_comment] = STATE(29), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(508), + [sym_expr_stmt] = STATE(508), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(508), + [sym_return_stmt] = STATE(508), + [sym_continue_stmt] = STATE(508), + [sym_break_stmt] = STATE(508), + [sym_defer_stmt] = STATE(508), + [sym_assert_stmt] = STATE(508), + [sym_declaration_stmt] = STATE(508), + [sym_nextcase_stmt] = STATE(508), + [sym_switch_stmt] = STATE(508), + [sym_if_stmt] = STATE(508), + [sym_for_stmt] = STATE(508), + [sym_foreach_stmt] = STATE(508), + [sym_while_stmt] = STATE(508), + [sym_do_stmt] = STATE(508), + [sym_asm_block_stmt] = STATE(508), + [sym_ct_stmt_body] = STATE(1782), + [sym_ct_assert_stmt] = STATE(508), + [sym_ct_echo_stmt] = STATE(508), + [sym_ct_if_stmt] = STATE(508), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(508), + [sym_ct_for_stmt] = STATE(508), + [sym_ct_foreach_stmt] = STATE(508), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_compound_stmt_repeat1] = STATE(53), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -18321,7 +18389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -18330,175 +18398,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(407), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(409), + [anon_sym_const] = ACTIONS(411), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARendif] = ACTIONS(607), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_DOLLARendif] = ACTIONS(493), + [anon_sym_DOLLARelse] = ACTIONS(495), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, + [30] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(30), + [sym_doc_comment] = STATE(30), + [sym_block_comment] = STATE(30), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(475), + [sym_expr_stmt] = STATE(475), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(475), + [sym_return_stmt] = STATE(475), + [sym_continue_stmt] = STATE(475), + [sym_break_stmt] = STATE(475), + [sym_defer_stmt] = STATE(475), + [sym_assert_stmt] = STATE(475), + [sym_declaration_stmt] = STATE(475), + [sym_nextcase_stmt] = STATE(475), + [sym_switch_stmt] = STATE(475), + [sym_if_stmt] = STATE(475), + [sym_for_stmt] = STATE(475), + [sym_foreach_stmt] = STATE(475), + [sym_while_stmt] = STATE(475), + [sym_do_stmt] = STATE(475), + [sym_asm_block_stmt] = STATE(475), + [sym_ct_assert_stmt] = STATE(475), + [sym_ct_echo_stmt] = STATE(475), + [sym_ct_if_stmt] = STATE(475), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(475), + [sym_ct_for_stmt] = STATE(475), + [sym_ct_foreach_stmt] = STATE(475), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_compound_stmt_repeat1] = STATE(30), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(243), + [sym_integer_literal] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(255), + [sym_bytes_literal] = ACTIONS(258), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(261), + [sym_at_ident] = ACTIONS(264), + [sym_hash_ident] = ACTIONS(267), + [sym_type_ident] = ACTIONS(270), + [sym_ct_type_ident] = ACTIONS(273), + [sym_const_ident] = ACTIONS(276), + [sym_builtin] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_static] = ACTIONS(285), + [anon_sym_tlocal] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(497), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(500), + [anon_sym_const] = ACTIONS(503), + [anon_sym_var] = ACTIONS(302), + [anon_sym_return] = ACTIONS(506), + [anon_sym_continue] = ACTIONS(509), + [anon_sym_break] = ACTIONS(512), + [anon_sym_defer] = ACTIONS(515), + [anon_sym_assert] = ACTIONS(518), + [anon_sym_nextcase] = ACTIONS(521), + [anon_sym_switch] = ACTIONS(524), + [anon_sym_AMP_AMP] = ACTIONS(328), + [anon_sym_if] = ACTIONS(527), + [anon_sym_for] = ACTIONS(530), + [anon_sym_foreach] = ACTIONS(533), + [anon_sym_foreach_r] = ACTIONS(533), + [anon_sym_while] = ACTIONS(536), + [anon_sym_do] = ACTIONS(539), + [anon_sym_int] = ACTIONS(346), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(328), + [anon_sym_asm] = ACTIONS(542), + [anon_sym_DOLLARassert] = ACTIONS(545), + [anon_sym_DOLLARerror] = ACTIONS(548), + [anon_sym_DOLLARecho] = ACTIONS(551), + [anon_sym_DOLLARif] = ACTIONS(554), + [anon_sym_DOLLARcase] = ACTIONS(320), + [anon_sym_DOLLARdefault] = ACTIONS(320), + [anon_sym_DOLLARswitch] = ACTIONS(364), + [anon_sym_DOLLARendswitch] = ACTIONS(320), + [anon_sym_DOLLARfor] = ACTIONS(557), + [anon_sym_DOLLARforeach] = ACTIONS(560), + [anon_sym_DOLLARalignof] = ACTIONS(373), + [anon_sym_DOLLARextnameof] = ACTIONS(373), + [anon_sym_DOLLARnameof] = ACTIONS(373), + [anon_sym_DOLLARoffsetof] = ACTIONS(373), + [anon_sym_DOLLARqnameof] = ACTIONS(373), + [anon_sym_DOLLARvaconst] = ACTIONS(376), + [anon_sym_DOLLARvaarg] = ACTIONS(376), + [anon_sym_DOLLARvaref] = ACTIONS(376), + [anon_sym_DOLLARvaexpr] = ACTIONS(376), + [anon_sym_true] = ACTIONS(379), + [anon_sym_false] = ACTIONS(379), + [anon_sym_null] = ACTIONS(379), + [anon_sym_DOLLARvacount] = ACTIONS(379), + [anon_sym_DOLLAReval] = ACTIONS(382), + [anon_sym_DOLLARis_const] = ACTIONS(382), + [anon_sym_DOLLARsizeof] = ACTIONS(382), + [anon_sym_DOLLARstringify] = ACTIONS(382), + [anon_sym_DOLLARappend] = ACTIONS(385), + [anon_sym_DOLLARconcat] = ACTIONS(385), + [anon_sym_DOLLARdefined] = ACTIONS(385), + [anon_sym_DOLLARembed] = ACTIONS(385), + [anon_sym_DOLLARand] = ACTIONS(385), + [anon_sym_DOLLARor] = ACTIONS(385), + [anon_sym_DOLLARfeature] = ACTIONS(388), + [anon_sym_DOLLARassignable] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(328), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_PLUS_PLUS] = ACTIONS(328), + [anon_sym_DASH_DASH] = ACTIONS(328), + [anon_sym_typeid] = ACTIONS(346), + [anon_sym_LBRACE_PIPE] = ACTIONS(394), + [anon_sym_void] = ACTIONS(346), + [anon_sym_bool] = ACTIONS(346), + [anon_sym_char] = ACTIONS(346), + [anon_sym_ichar] = ACTIONS(346), + [anon_sym_short] = ACTIONS(346), + [anon_sym_ushort] = ACTIONS(346), + [anon_sym_uint] = ACTIONS(346), + [anon_sym_long] = ACTIONS(346), + [anon_sym_ulong] = ACTIONS(346), + [anon_sym_int128] = ACTIONS(346), + [anon_sym_uint128] = ACTIONS(346), + [anon_sym_float] = ACTIONS(346), + [anon_sym_double] = ACTIONS(346), + [anon_sym_float16] = ACTIONS(346), + [anon_sym_bfloat16] = ACTIONS(346), + [anon_sym_float128] = ACTIONS(346), + [anon_sym_iptr] = ACTIONS(346), + [anon_sym_uptr] = ACTIONS(346), + [anon_sym_isz] = ACTIONS(346), + [anon_sym_usz] = ACTIONS(346), + [anon_sym_anyfault] = ACTIONS(346), + [anon_sym_any] = ACTIONS(346), + [anon_sym_DOLLARtypeof] = ACTIONS(397), + [anon_sym_DOLLARtypefrom] = ACTIONS(397), + [anon_sym_DOLLARevaltype] = ACTIONS(397), + [anon_sym_DOLLARvatype] = ACTIONS(400), + [sym_real_literal] = ACTIONS(246), + }, [31] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(31), [sym_doc_comment] = STATE(31), [sym_block_comment] = STATE(31), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1034), - [sym_const_declaration] = STATE(600), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(599), - [sym_expr_stmt] = STATE(599), - [sym_var_decl] = STATE(2022), - [sym_var_stmt] = STATE(599), - [sym_return_stmt] = STATE(599), - [sym_continue_stmt] = STATE(599), - [sym_break_stmt] = STATE(599), - [sym_defer_stmt] = STATE(599), - [sym_assert_stmt] = STATE(599), - [sym_declaration_stmt] = STATE(599), - [sym_nextcase_stmt] = STATE(599), - [sym_switch_stmt] = STATE(599), - [sym_if_stmt] = STATE(599), - [sym_for_stmt] = STATE(599), - [sym_foreach_stmt] = STATE(599), - [sym_while_stmt] = STATE(599), - [sym_do_stmt] = STATE(599), - [sym_asm_block_stmt] = STATE(599), - [sym_ct_stmt_body] = STATE(2102), - [sym_ct_assert_stmt] = STATE(599), - [sym_ct_echo_stmt] = STATE(599), - [sym_ct_if_stmt] = STATE(599), - [sym__ct_switch] = STATE(1414), - [sym_ct_switch_stmt] = STATE(599), - [sym_ct_for_stmt] = STATE(599), - [sym_ct_foreach_stmt] = STATE(599), - [sym__expr] = STATE(1160), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1415), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(88), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(508), + [sym_expr_stmt] = STATE(508), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(508), + [sym_return_stmt] = STATE(508), + [sym_continue_stmt] = STATE(508), + [sym_break_stmt] = STATE(508), + [sym_defer_stmt] = STATE(508), + [sym_assert_stmt] = STATE(508), + [sym_declaration_stmt] = STATE(508), + [sym_nextcase_stmt] = STATE(508), + [sym_switch_stmt] = STATE(508), + [sym_if_stmt] = STATE(508), + [sym_for_stmt] = STATE(508), + [sym_foreach_stmt] = STATE(508), + [sym_while_stmt] = STATE(508), + [sym_do_stmt] = STATE(508), + [sym_asm_block_stmt] = STATE(508), + [sym_ct_stmt_body] = STATE(1813), + [sym_ct_assert_stmt] = STATE(508), + [sym_ct_echo_stmt] = STATE(508), + [sym_ct_if_stmt] = STATE(508), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(508), + [sym_ct_for_stmt] = STATE(508), + [sym_ct_foreach_stmt] = STATE(508), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_compound_stmt_repeat1] = STATE(53), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -18506,7 +18755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -18515,175 +18764,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_SEMI] = ACTIONS(407), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_const] = ACTIONS(613), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(617), - [anon_sym_break] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(621), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_nextcase] = ACTIONS(625), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(629), - [anon_sym_for] = ACTIONS(631), - [anon_sym_foreach] = ACTIONS(633), - [anon_sym_foreach_r] = ACTIONS(633), - [anon_sym_while] = ACTIONS(635), - [anon_sym_do] = ACTIONS(637), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(409), + [anon_sym_const] = ACTIONS(411), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(639), - [anon_sym_DOLLARassert] = ACTIONS(641), - [anon_sym_DOLLARerror] = ACTIONS(643), - [anon_sym_DOLLARecho] = ACTIONS(645), - [anon_sym_DOLLARif] = ACTIONS(647), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(649), - [anon_sym_DOLLARendfor] = ACTIONS(651), - [anon_sym_DOLLARforeach] = ACTIONS(653), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_DOLLARendif] = ACTIONS(563), + [anon_sym_DOLLARelse] = ACTIONS(565), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [32] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(32), [sym_doc_comment] = STATE(32), [sym_block_comment] = STATE(32), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(694), - [sym_expr_stmt] = STATE(694), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(694), - [sym_return_stmt] = STATE(694), - [sym_continue_stmt] = STATE(694), - [sym_break_stmt] = STATE(694), - [sym_defer_stmt] = STATE(694), - [sym_assert_stmt] = STATE(694), - [sym_declaration_stmt] = STATE(694), - [sym_nextcase_stmt] = STATE(694), - [sym_switch_stmt] = STATE(694), - [sym_if_stmt] = STATE(694), - [sym_for_stmt] = STATE(694), - [sym_foreach_stmt] = STATE(694), - [sym_while_stmt] = STATE(694), - [sym_do_stmt] = STATE(694), - [sym_asm_block_stmt] = STATE(694), - [sym_ct_stmt_body] = STATE(1935), - [sym_ct_assert_stmt] = STATE(694), - [sym_ct_echo_stmt] = STATE(694), - [sym_ct_if_stmt] = STATE(694), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(694), - [sym_ct_for_stmt] = STATE(694), - [sym_ct_foreach_stmt] = STATE(694), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(76), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(646), + [sym_expr_stmt] = STATE(646), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(646), + [sym_return_stmt] = STATE(646), + [sym_continue_stmt] = STATE(646), + [sym_break_stmt] = STATE(646), + [sym_defer_stmt] = STATE(646), + [sym_assert_stmt] = STATE(646), + [sym_declaration_stmt] = STATE(646), + [sym_nextcase_stmt] = STATE(646), + [sym_switch_stmt] = STATE(646), + [sym_if_stmt] = STATE(646), + [sym_for_stmt] = STATE(646), + [sym_foreach_stmt] = STATE(646), + [sym_while_stmt] = STATE(646), + [sym_do_stmt] = STATE(646), + [sym_asm_block_stmt] = STATE(646), + [sym_ct_stmt_body] = STATE(2131), + [sym_ct_assert_stmt] = STATE(646), + [sym_ct_echo_stmt] = STATE(646), + [sym_ct_if_stmt] = STATE(646), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(646), + [sym_ct_for_stmt] = STATE(646), + [sym_ct_foreach_stmt] = STATE(646), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_compound_stmt_repeat1] = STATE(85), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -18691,7 +18938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -18700,175 +18947,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(567), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARendif] = ACTIONS(655), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), + [anon_sym_DOLLARendforeach] = ACTIONS(611), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [33] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(33), [sym_doc_comment] = STATE(33), [sym_block_comment] = STATE(33), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(694), - [sym_expr_stmt] = STATE(694), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(694), - [sym_return_stmt] = STATE(694), - [sym_continue_stmt] = STATE(694), - [sym_break_stmt] = STATE(694), - [sym_defer_stmt] = STATE(694), - [sym_assert_stmt] = STATE(694), - [sym_declaration_stmt] = STATE(694), - [sym_nextcase_stmt] = STATE(694), - [sym_switch_stmt] = STATE(694), - [sym_if_stmt] = STATE(694), - [sym_for_stmt] = STATE(694), - [sym_foreach_stmt] = STATE(694), - [sym_while_stmt] = STATE(694), - [sym_do_stmt] = STATE(694), - [sym_asm_block_stmt] = STATE(694), - [sym_ct_stmt_body] = STATE(1940), - [sym_ct_assert_stmt] = STATE(694), - [sym_ct_echo_stmt] = STATE(694), - [sym_ct_if_stmt] = STATE(694), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(694), - [sym_ct_for_stmt] = STATE(694), - [sym_ct_foreach_stmt] = STATE(694), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(76), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(2067), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -18876,7 +19120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -18885,175 +19129,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(613), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARendif] = ACTIONS(657), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARendif] = ACTIONS(653), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [34] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(34), [sym_doc_comment] = STATE(34), [sym_block_comment] = STATE(34), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1035), - [sym_const_declaration] = STATE(760), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(759), - [sym_expr_stmt] = STATE(759), - [sym_var_decl] = STATE(2146), - [sym_var_stmt] = STATE(759), - [sym_return_stmt] = STATE(759), - [sym_continue_stmt] = STATE(759), - [sym_break_stmt] = STATE(759), - [sym_defer_stmt] = STATE(759), - [sym_assert_stmt] = STATE(759), - [sym_declaration_stmt] = STATE(759), - [sym_nextcase_stmt] = STATE(759), - [sym_switch_stmt] = STATE(759), - [sym_if_stmt] = STATE(759), - [sym_for_stmt] = STATE(759), - [sym_foreach_stmt] = STATE(759), - [sym_while_stmt] = STATE(759), - [sym_do_stmt] = STATE(759), - [sym_asm_block_stmt] = STATE(759), - [sym_ct_stmt_body] = STATE(2101), - [sym_ct_assert_stmt] = STATE(759), - [sym_ct_echo_stmt] = STATE(759), - [sym_ct_if_stmt] = STATE(759), - [sym__ct_switch] = STATE(1430), - [sym_ct_switch_stmt] = STATE(759), - [sym_ct_for_stmt] = STATE(759), - [sym_ct_foreach_stmt] = STATE(759), - [sym__expr] = STATE(1155), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1433), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(57), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(1936), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -19061,7 +19302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -19070,175 +19311,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(659), + [anon_sym_SEMI] = ACTIONS(613), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(661), - [anon_sym_const] = ACTIONS(663), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(667), - [anon_sym_break] = ACTIONS(669), - [anon_sym_defer] = ACTIONS(671), - [anon_sym_assert] = ACTIONS(673), - [anon_sym_nextcase] = ACTIONS(675), - [anon_sym_switch] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(679), - [anon_sym_for] = ACTIONS(681), - [anon_sym_foreach] = ACTIONS(683), - [anon_sym_foreach_r] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_do] = ACTIONS(687), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(689), - [anon_sym_DOLLARassert] = ACTIONS(691), - [anon_sym_DOLLARerror] = ACTIONS(693), - [anon_sym_DOLLARecho] = ACTIONS(695), - [anon_sym_DOLLARif] = ACTIONS(697), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(699), - [anon_sym_DOLLARforeach] = ACTIONS(701), - [anon_sym_DOLLARendforeach] = ACTIONS(703), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARendif] = ACTIONS(659), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [35] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(35), [sym_doc_comment] = STATE(35), [sym_block_comment] = STATE(35), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1034), - [sym_const_declaration] = STATE(600), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(599), - [sym_expr_stmt] = STATE(599), - [sym_var_decl] = STATE(2022), - [sym_var_stmt] = STATE(599), - [sym_return_stmt] = STATE(599), - [sym_continue_stmt] = STATE(599), - [sym_break_stmt] = STATE(599), - [sym_defer_stmt] = STATE(599), - [sym_assert_stmt] = STATE(599), - [sym_declaration_stmt] = STATE(599), - [sym_nextcase_stmt] = STATE(599), - [sym_switch_stmt] = STATE(599), - [sym_if_stmt] = STATE(599), - [sym_for_stmt] = STATE(599), - [sym_foreach_stmt] = STATE(599), - [sym_while_stmt] = STATE(599), - [sym_do_stmt] = STATE(599), - [sym_asm_block_stmt] = STATE(599), - [sym_ct_stmt_body] = STATE(1985), - [sym_ct_assert_stmt] = STATE(599), - [sym_ct_echo_stmt] = STATE(599), - [sym_ct_if_stmt] = STATE(599), - [sym__ct_switch] = STATE(1414), - [sym_ct_switch_stmt] = STATE(599), - [sym_ct_for_stmt] = STATE(599), - [sym_ct_foreach_stmt] = STATE(599), - [sym__expr] = STATE(1160), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1415), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(88), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(586), + [sym_expr_stmt] = STATE(586), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(586), + [sym_return_stmt] = STATE(586), + [sym_continue_stmt] = STATE(586), + [sym_break_stmt] = STATE(586), + [sym_defer_stmt] = STATE(586), + [sym_assert_stmt] = STATE(586), + [sym_declaration_stmt] = STATE(586), + [sym_nextcase_stmt] = STATE(586), + [sym_switch_stmt] = STATE(586), + [sym_if_stmt] = STATE(586), + [sym_for_stmt] = STATE(586), + [sym_foreach_stmt] = STATE(586), + [sym_while_stmt] = STATE(586), + [sym_do_stmt] = STATE(586), + [sym_asm_block_stmt] = STATE(586), + [sym_ct_stmt_body] = STATE(2127), + [sym_ct_assert_stmt] = STATE(586), + [sym_ct_echo_stmt] = STATE(586), + [sym_ct_if_stmt] = STATE(586), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(586), + [sym_ct_for_stmt] = STATE(586), + [sym_ct_foreach_stmt] = STATE(586), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_compound_stmt_repeat1] = STATE(78), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -19246,7 +19484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -19255,360 +19493,354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_SEMI] = ACTIONS(661), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_const] = ACTIONS(613), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(617), - [anon_sym_break] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(621), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_nextcase] = ACTIONS(625), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(629), - [anon_sym_for] = ACTIONS(631), - [anon_sym_foreach] = ACTIONS(633), - [anon_sym_foreach_r] = ACTIONS(633), - [anon_sym_while] = ACTIONS(635), - [anon_sym_do] = ACTIONS(637), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(639), - [anon_sym_DOLLARassert] = ACTIONS(641), - [anon_sym_DOLLARerror] = ACTIONS(643), - [anon_sym_DOLLARecho] = ACTIONS(645), - [anon_sym_DOLLARif] = ACTIONS(647), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(649), - [anon_sym_DOLLARendfor] = ACTIONS(705), - [anon_sym_DOLLARforeach] = ACTIONS(653), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARendfor] = ACTIONS(703), + [anon_sym_DOLLARforeach] = ACTIONS(705), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [36] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(36), [sym_doc_comment] = STATE(36), [sym_block_comment] = STATE(36), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1042), - [sym_const_declaration] = STATE(506), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(505), - [sym_expr_stmt] = STATE(505), - [sym_var_decl] = STATE(2226), - [sym_var_stmt] = STATE(505), - [sym_return_stmt] = STATE(505), - [sym_continue_stmt] = STATE(505), - [sym_break_stmt] = STATE(505), - [sym_defer_stmt] = STATE(505), - [sym_assert_stmt] = STATE(505), - [sym_declaration_stmt] = STATE(505), - [sym_nextcase_stmt] = STATE(505), - [sym_switch_stmt] = STATE(505), - [sym_if_stmt] = STATE(505), - [sym_for_stmt] = STATE(505), - [sym_foreach_stmt] = STATE(505), - [sym_while_stmt] = STATE(505), - [sym_do_stmt] = STATE(505), - [sym_asm_block_stmt] = STATE(505), - [sym_ct_assert_stmt] = STATE(505), - [sym_ct_echo_stmt] = STATE(505), - [sym_ct_if_stmt] = STATE(505), - [sym__ct_switch] = STATE(1559), - [sym_ct_switch_stmt] = STATE(505), - [sym_ct_for_stmt] = STATE(505), - [sym_ct_foreach_stmt] = STATE(505), - [sym__expr] = STATE(1140), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1553), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(36), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(249), - [sym_integer_literal] = ACTIONS(252), - [anon_sym_SQUOTE] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(258), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym_bytes_literal] = ACTIONS(264), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(267), - [sym_at_ident] = ACTIONS(270), - [sym_hash_ident] = ACTIONS(273), - [sym_type_ident] = ACTIONS(276), - [sym_ct_type_ident] = ACTIONS(279), - [sym_const_ident] = ACTIONS(282), - [sym_builtin] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(288), - [anon_sym_static] = ACTIONS(291), - [anon_sym_tlocal] = ACTIONS(291), - [anon_sym_SEMI] = ACTIONS(707), - [anon_sym_fn] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(710), - [anon_sym_const] = ACTIONS(713), - [anon_sym_var] = ACTIONS(308), - [anon_sym_return] = ACTIONS(716), - [anon_sym_continue] = ACTIONS(719), - [anon_sym_break] = ACTIONS(722), - [anon_sym_defer] = ACTIONS(725), - [anon_sym_assert] = ACTIONS(728), - [anon_sym_nextcase] = ACTIONS(731), - [anon_sym_switch] = ACTIONS(734), - [anon_sym_AMP_AMP] = ACTIONS(334), - [anon_sym_if] = ACTIONS(737), - [anon_sym_for] = ACTIONS(740), - [anon_sym_foreach] = ACTIONS(743), - [anon_sym_foreach_r] = ACTIONS(743), - [anon_sym_while] = ACTIONS(746), - [anon_sym_do] = ACTIONS(749), - [anon_sym_int] = ACTIONS(352), - [anon_sym_PLUS] = ACTIONS(288), - [anon_sym_DASH] = ACTIONS(288), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_asm] = ACTIONS(752), - [anon_sym_DOLLARassert] = ACTIONS(755), - [anon_sym_DOLLARerror] = ACTIONS(758), - [anon_sym_DOLLARecho] = ACTIONS(761), - [anon_sym_DOLLARif] = ACTIONS(764), - [anon_sym_DOLLARendif] = ACTIONS(326), - [anon_sym_DOLLARelse] = ACTIONS(326), - [anon_sym_DOLLARswitch] = ACTIONS(370), - [anon_sym_DOLLARfor] = ACTIONS(767), - [anon_sym_DOLLARforeach] = ACTIONS(770), - [anon_sym_DOLLARalignof] = ACTIONS(379), - [anon_sym_DOLLARextnameof] = ACTIONS(379), - [anon_sym_DOLLARnameof] = ACTIONS(379), - [anon_sym_DOLLARoffsetof] = ACTIONS(379), - [anon_sym_DOLLARqnameof] = ACTIONS(379), - [anon_sym_DOLLAReval] = ACTIONS(382), - [anon_sym_DOLLARdefined] = ACTIONS(382), - [anon_sym_DOLLARsizeof] = ACTIONS(382), - [anon_sym_DOLLARstringify] = ACTIONS(382), - [anon_sym_DOLLARis_const] = ACTIONS(382), - [anon_sym_DOLLARvaconst] = ACTIONS(385), - [anon_sym_DOLLARvaarg] = ACTIONS(385), - [anon_sym_DOLLARvaref] = ACTIONS(385), - [anon_sym_DOLLARvaexpr] = ACTIONS(385), - [anon_sym_true] = ACTIONS(388), - [anon_sym_false] = ACTIONS(388), - [anon_sym_null] = ACTIONS(388), - [anon_sym_DOLLARvacount] = ACTIONS(388), - [anon_sym_DOLLARfeature] = ACTIONS(391), - [anon_sym_DOLLARand] = ACTIONS(382), - [anon_sym_DOLLARor] = ACTIONS(382), - [anon_sym_DOLLARassignable] = ACTIONS(394), - [anon_sym_DOLLARembed] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(334), - [anon_sym_TILDE] = ACTIONS(334), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_typeid] = ACTIONS(352), - [anon_sym_LBRACE_PIPE] = ACTIONS(400), - [anon_sym_void] = ACTIONS(352), - [anon_sym_bool] = ACTIONS(352), - [anon_sym_char] = ACTIONS(352), - [anon_sym_ichar] = ACTIONS(352), - [anon_sym_short] = ACTIONS(352), - [anon_sym_ushort] = ACTIONS(352), - [anon_sym_uint] = ACTIONS(352), - [anon_sym_long] = ACTIONS(352), - [anon_sym_ulong] = ACTIONS(352), - [anon_sym_int128] = ACTIONS(352), - [anon_sym_uint128] = ACTIONS(352), - [anon_sym_float] = ACTIONS(352), - [anon_sym_double] = ACTIONS(352), - [anon_sym_float16] = ACTIONS(352), - [anon_sym_bfloat16] = ACTIONS(352), - [anon_sym_float128] = ACTIONS(352), - [anon_sym_iptr] = ACTIONS(352), - [anon_sym_uptr] = ACTIONS(352), - [anon_sym_isz] = ACTIONS(352), - [anon_sym_usz] = ACTIONS(352), - [anon_sym_anyfault] = ACTIONS(352), - [anon_sym_any] = ACTIONS(352), - [anon_sym_DOLLARtypeof] = ACTIONS(403), - [anon_sym_DOLLARtypefrom] = ACTIONS(406), - [anon_sym_DOLLARvatype] = ACTIONS(406), - [anon_sym_DOLLARevaltype] = ACTIONS(406), - [sym_real_literal] = ACTIONS(252), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(586), + [sym_expr_stmt] = STATE(586), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(586), + [sym_return_stmt] = STATE(586), + [sym_continue_stmt] = STATE(586), + [sym_break_stmt] = STATE(586), + [sym_defer_stmt] = STATE(586), + [sym_assert_stmt] = STATE(586), + [sym_declaration_stmt] = STATE(586), + [sym_nextcase_stmt] = STATE(586), + [sym_switch_stmt] = STATE(586), + [sym_if_stmt] = STATE(586), + [sym_for_stmt] = STATE(586), + [sym_foreach_stmt] = STATE(586), + [sym_while_stmt] = STATE(586), + [sym_do_stmt] = STATE(586), + [sym_asm_block_stmt] = STATE(586), + [sym_ct_stmt_body] = STATE(2243), + [sym_ct_assert_stmt] = STATE(586), + [sym_ct_echo_stmt] = STATE(586), + [sym_ct_if_stmt] = STATE(586), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(586), + [sym_ct_for_stmt] = STATE(586), + [sym_ct_foreach_stmt] = STATE(586), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_compound_stmt_repeat1] = STATE(78), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), + [sym_integer_literal] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_BQUOTE] = ACTIONS(69), + [sym_bytes_literal] = ACTIONS(71), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(73), + [sym_at_ident] = ACTIONS(75), + [sym_hash_ident] = ACTIONS(77), + [sym_type_ident] = ACTIONS(79), + [sym_ct_type_ident] = ACTIONS(81), + [sym_const_ident] = ACTIONS(83), + [sym_builtin] = ACTIONS(63), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_static] = ACTIONS(93), + [anon_sym_tlocal] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARendfor] = ACTIONS(707), + [anon_sym_DOLLARforeach] = ACTIONS(705), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), + [anon_sym_DOLLARfeature] = ACTIONS(165), + [anon_sym_DOLLARassignable] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), + [sym_real_literal] = ACTIONS(63), }, [37] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(37), [sym_doc_comment] = STATE(37), [sym_block_comment] = STATE(37), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1035), - [sym_const_declaration] = STATE(760), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(759), - [sym_expr_stmt] = STATE(759), - [sym_var_decl] = STATE(2146), - [sym_var_stmt] = STATE(759), - [sym_return_stmt] = STATE(759), - [sym_continue_stmt] = STATE(759), - [sym_break_stmt] = STATE(759), - [sym_defer_stmt] = STATE(759), - [sym_assert_stmt] = STATE(759), - [sym_declaration_stmt] = STATE(759), - [sym_nextcase_stmt] = STATE(759), - [sym_switch_stmt] = STATE(759), - [sym_if_stmt] = STATE(759), - [sym_for_stmt] = STATE(759), - [sym_foreach_stmt] = STATE(759), - [sym_while_stmt] = STATE(759), - [sym_do_stmt] = STATE(759), - [sym_asm_block_stmt] = STATE(759), - [sym_ct_stmt_body] = STATE(1986), - [sym_ct_assert_stmt] = STATE(759), - [sym_ct_echo_stmt] = STATE(759), - [sym_ct_if_stmt] = STATE(759), - [sym__ct_switch] = STATE(1430), - [sym_ct_switch_stmt] = STATE(759), - [sym_ct_for_stmt] = STATE(759), - [sym_ct_foreach_stmt] = STATE(759), - [sym__expr] = STATE(1155), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1433), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(57), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(2185), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -19616,7 +19848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -19625,175 +19857,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(659), + [anon_sym_SEMI] = ACTIONS(613), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(661), - [anon_sym_const] = ACTIONS(663), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(667), - [anon_sym_break] = ACTIONS(669), - [anon_sym_defer] = ACTIONS(671), - [anon_sym_assert] = ACTIONS(673), - [anon_sym_nextcase] = ACTIONS(675), - [anon_sym_switch] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(679), - [anon_sym_for] = ACTIONS(681), - [anon_sym_foreach] = ACTIONS(683), - [anon_sym_foreach_r] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_do] = ACTIONS(687), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(689), - [anon_sym_DOLLARassert] = ACTIONS(691), - [anon_sym_DOLLARerror] = ACTIONS(693), - [anon_sym_DOLLARecho] = ACTIONS(695), - [anon_sym_DOLLARif] = ACTIONS(697), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(699), - [anon_sym_DOLLARforeach] = ACTIONS(701), - [anon_sym_DOLLARendforeach] = ACTIONS(773), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARendif] = ACTIONS(709), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [38] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(38), [sym_doc_comment] = STATE(38), [sym_block_comment] = STATE(38), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(694), - [sym_expr_stmt] = STATE(694), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(694), - [sym_return_stmt] = STATE(694), - [sym_continue_stmt] = STATE(694), - [sym_break_stmt] = STATE(694), - [sym_defer_stmt] = STATE(694), - [sym_assert_stmt] = STATE(694), - [sym_declaration_stmt] = STATE(694), - [sym_nextcase_stmt] = STATE(694), - [sym_switch_stmt] = STATE(694), - [sym_if_stmt] = STATE(694), - [sym_for_stmt] = STATE(694), - [sym_foreach_stmt] = STATE(694), - [sym_while_stmt] = STATE(694), - [sym_do_stmt] = STATE(694), - [sym_asm_block_stmt] = STATE(694), - [sym_ct_stmt_body] = STATE(1921), - [sym_ct_assert_stmt] = STATE(694), - [sym_ct_echo_stmt] = STATE(694), - [sym_ct_if_stmt] = STATE(694), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(694), - [sym_ct_for_stmt] = STATE(694), - [sym_ct_foreach_stmt] = STATE(694), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(76), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(2210), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -19801,7 +20030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -19810,175 +20039,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(613), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARendif] = ACTIONS(775), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARendif] = ACTIONS(711), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [39] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(39), [sym_doc_comment] = STATE(39), [sym_block_comment] = STATE(39), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(694), - [sym_expr_stmt] = STATE(694), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(694), - [sym_return_stmt] = STATE(694), - [sym_continue_stmt] = STATE(694), - [sym_break_stmt] = STATE(694), - [sym_defer_stmt] = STATE(694), - [sym_assert_stmt] = STATE(694), - [sym_declaration_stmt] = STATE(694), - [sym_nextcase_stmt] = STATE(694), - [sym_switch_stmt] = STATE(694), - [sym_if_stmt] = STATE(694), - [sym_for_stmt] = STATE(694), - [sym_foreach_stmt] = STATE(694), - [sym_while_stmt] = STATE(694), - [sym_do_stmt] = STATE(694), - [sym_asm_block_stmt] = STATE(694), - [sym_ct_stmt_body] = STATE(2068), - [sym_ct_assert_stmt] = STATE(694), - [sym_ct_echo_stmt] = STATE(694), - [sym_ct_if_stmt] = STATE(694), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(694), - [sym_ct_for_stmt] = STATE(694), - [sym_ct_foreach_stmt] = STATE(694), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(76), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(646), + [sym_expr_stmt] = STATE(646), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(646), + [sym_return_stmt] = STATE(646), + [sym_continue_stmt] = STATE(646), + [sym_break_stmt] = STATE(646), + [sym_defer_stmt] = STATE(646), + [sym_assert_stmt] = STATE(646), + [sym_declaration_stmt] = STATE(646), + [sym_nextcase_stmt] = STATE(646), + [sym_switch_stmt] = STATE(646), + [sym_if_stmt] = STATE(646), + [sym_for_stmt] = STATE(646), + [sym_foreach_stmt] = STATE(646), + [sym_while_stmt] = STATE(646), + [sym_do_stmt] = STATE(646), + [sym_asm_block_stmt] = STATE(646), + [sym_ct_stmt_body] = STATE(2124), + [sym_ct_assert_stmt] = STATE(646), + [sym_ct_echo_stmt] = STATE(646), + [sym_ct_if_stmt] = STATE(646), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(646), + [sym_ct_for_stmt] = STATE(646), + [sym_ct_foreach_stmt] = STATE(646), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_compound_stmt_repeat1] = STATE(85), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -19986,7 +20212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -19995,175 +20221,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(567), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARendif] = ACTIONS(777), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), + [anon_sym_DOLLARendforeach] = ACTIONS(713), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [40] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(40), [sym_doc_comment] = STATE(40), [sym_block_comment] = STATE(40), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(694), - [sym_expr_stmt] = STATE(694), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(694), - [sym_return_stmt] = STATE(694), - [sym_continue_stmt] = STATE(694), - [sym_break_stmt] = STATE(694), - [sym_defer_stmt] = STATE(694), - [sym_assert_stmt] = STATE(694), - [sym_declaration_stmt] = STATE(694), - [sym_nextcase_stmt] = STATE(694), - [sym_switch_stmt] = STATE(694), - [sym_if_stmt] = STATE(694), - [sym_for_stmt] = STATE(694), - [sym_foreach_stmt] = STATE(694), - [sym_while_stmt] = STATE(694), - [sym_do_stmt] = STATE(694), - [sym_asm_block_stmt] = STATE(694), - [sym_ct_stmt_body] = STATE(2058), - [sym_ct_assert_stmt] = STATE(694), - [sym_ct_echo_stmt] = STATE(694), - [sym_ct_if_stmt] = STATE(694), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(694), - [sym_ct_for_stmt] = STATE(694), - [sym_ct_foreach_stmt] = STATE(694), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(76), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(586), + [sym_expr_stmt] = STATE(586), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(586), + [sym_return_stmt] = STATE(586), + [sym_continue_stmt] = STATE(586), + [sym_break_stmt] = STATE(586), + [sym_defer_stmt] = STATE(586), + [sym_assert_stmt] = STATE(586), + [sym_declaration_stmt] = STATE(586), + [sym_nextcase_stmt] = STATE(586), + [sym_switch_stmt] = STATE(586), + [sym_if_stmt] = STATE(586), + [sym_for_stmt] = STATE(586), + [sym_foreach_stmt] = STATE(586), + [sym_while_stmt] = STATE(586), + [sym_do_stmt] = STATE(586), + [sym_asm_block_stmt] = STATE(586), + [sym_ct_stmt_body] = STATE(2068), + [sym_ct_assert_stmt] = STATE(586), + [sym_ct_echo_stmt] = STATE(586), + [sym_ct_if_stmt] = STATE(586), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(586), + [sym_ct_for_stmt] = STATE(586), + [sym_ct_foreach_stmt] = STATE(586), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_compound_stmt_repeat1] = STATE(78), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -20171,7 +20394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -20180,175 +20403,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(661), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARendif] = ACTIONS(779), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARendfor] = ACTIONS(715), + [anon_sym_DOLLARforeach] = ACTIONS(705), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [41] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(41), [sym_doc_comment] = STATE(41), [sym_block_comment] = STATE(41), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1034), - [sym_const_declaration] = STATE(600), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(599), - [sym_expr_stmt] = STATE(599), - [sym_var_decl] = STATE(2022), - [sym_var_stmt] = STATE(599), - [sym_return_stmt] = STATE(599), - [sym_continue_stmt] = STATE(599), - [sym_break_stmt] = STATE(599), - [sym_defer_stmt] = STATE(599), - [sym_assert_stmt] = STATE(599), - [sym_declaration_stmt] = STATE(599), - [sym_nextcase_stmt] = STATE(599), - [sym_switch_stmt] = STATE(599), - [sym_if_stmt] = STATE(599), - [sym_for_stmt] = STATE(599), - [sym_foreach_stmt] = STATE(599), - [sym_while_stmt] = STATE(599), - [sym_do_stmt] = STATE(599), - [sym_asm_block_stmt] = STATE(599), - [sym_ct_stmt_body] = STATE(2061), - [sym_ct_assert_stmt] = STATE(599), - [sym_ct_echo_stmt] = STATE(599), - [sym_ct_if_stmt] = STATE(599), - [sym__ct_switch] = STATE(1414), - [sym_ct_switch_stmt] = STATE(599), - [sym_ct_for_stmt] = STATE(599), - [sym_ct_foreach_stmt] = STATE(599), - [sym__expr] = STATE(1160), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1415), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(88), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(646), + [sym_expr_stmt] = STATE(646), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(646), + [sym_return_stmt] = STATE(646), + [sym_continue_stmt] = STATE(646), + [sym_break_stmt] = STATE(646), + [sym_defer_stmt] = STATE(646), + [sym_assert_stmt] = STATE(646), + [sym_declaration_stmt] = STATE(646), + [sym_nextcase_stmt] = STATE(646), + [sym_switch_stmt] = STATE(646), + [sym_if_stmt] = STATE(646), + [sym_for_stmt] = STATE(646), + [sym_foreach_stmt] = STATE(646), + [sym_while_stmt] = STATE(646), + [sym_do_stmt] = STATE(646), + [sym_asm_block_stmt] = STATE(646), + [sym_ct_stmt_body] = STATE(2069), + [sym_ct_assert_stmt] = STATE(646), + [sym_ct_echo_stmt] = STATE(646), + [sym_ct_if_stmt] = STATE(646), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(646), + [sym_ct_for_stmt] = STATE(646), + [sym_ct_foreach_stmt] = STATE(646), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_compound_stmt_repeat1] = STATE(85), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -20356,7 +20576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -20365,175 +20585,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_SEMI] = ACTIONS(567), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_const] = ACTIONS(613), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(617), - [anon_sym_break] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(621), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_nextcase] = ACTIONS(625), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(629), - [anon_sym_for] = ACTIONS(631), - [anon_sym_foreach] = ACTIONS(633), - [anon_sym_foreach_r] = ACTIONS(633), - [anon_sym_while] = ACTIONS(635), - [anon_sym_do] = ACTIONS(637), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(639), - [anon_sym_DOLLARassert] = ACTIONS(641), - [anon_sym_DOLLARerror] = ACTIONS(643), - [anon_sym_DOLLARecho] = ACTIONS(645), - [anon_sym_DOLLARif] = ACTIONS(647), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(649), - [anon_sym_DOLLARendfor] = ACTIONS(781), - [anon_sym_DOLLARforeach] = ACTIONS(653), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), + [anon_sym_DOLLARendforeach] = ACTIONS(717), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [42] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(42), [sym_doc_comment] = STATE(42), [sym_block_comment] = STATE(42), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1035), - [sym_const_declaration] = STATE(760), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(759), - [sym_expr_stmt] = STATE(759), - [sym_var_decl] = STATE(2146), - [sym_var_stmt] = STATE(759), - [sym_return_stmt] = STATE(759), - [sym_continue_stmt] = STATE(759), - [sym_break_stmt] = STATE(759), - [sym_defer_stmt] = STATE(759), - [sym_assert_stmt] = STATE(759), - [sym_declaration_stmt] = STATE(759), - [sym_nextcase_stmt] = STATE(759), - [sym_switch_stmt] = STATE(759), - [sym_if_stmt] = STATE(759), - [sym_for_stmt] = STATE(759), - [sym_foreach_stmt] = STATE(759), - [sym_while_stmt] = STATE(759), - [sym_do_stmt] = STATE(759), - [sym_asm_block_stmt] = STATE(759), - [sym_ct_stmt_body] = STATE(2056), - [sym_ct_assert_stmt] = STATE(759), - [sym_ct_echo_stmt] = STATE(759), - [sym_ct_if_stmt] = STATE(759), - [sym__ct_switch] = STATE(1430), - [sym_ct_switch_stmt] = STATE(759), - [sym_ct_for_stmt] = STATE(759), - [sym_ct_foreach_stmt] = STATE(759), - [sym__expr] = STATE(1155), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1433), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(57), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(2096), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -20541,7 +20758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -20550,174 +20767,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(659), + [anon_sym_SEMI] = ACTIONS(613), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(661), - [anon_sym_const] = ACTIONS(663), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(667), - [anon_sym_break] = ACTIONS(669), - [anon_sym_defer] = ACTIONS(671), - [anon_sym_assert] = ACTIONS(673), - [anon_sym_nextcase] = ACTIONS(675), - [anon_sym_switch] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(679), - [anon_sym_for] = ACTIONS(681), - [anon_sym_foreach] = ACTIONS(683), - [anon_sym_foreach_r] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_do] = ACTIONS(687), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(689), - [anon_sym_DOLLARassert] = ACTIONS(691), - [anon_sym_DOLLARerror] = ACTIONS(693), - [anon_sym_DOLLARecho] = ACTIONS(695), - [anon_sym_DOLLARif] = ACTIONS(697), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(699), - [anon_sym_DOLLARforeach] = ACTIONS(701), - [anon_sym_DOLLARendforeach] = ACTIONS(783), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARendif] = ACTIONS(719), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [43] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(43), [sym_doc_comment] = STATE(43), [sym_block_comment] = STATE(43), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1042), - [sym_const_declaration] = STATE(506), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(505), - [sym_expr_stmt] = STATE(505), - [sym_var_decl] = STATE(2226), - [sym_var_stmt] = STATE(505), - [sym_return_stmt] = STATE(505), - [sym_continue_stmt] = STATE(505), - [sym_break_stmt] = STATE(505), - [sym_defer_stmt] = STATE(505), - [sym_assert_stmt] = STATE(505), - [sym_declaration_stmt] = STATE(505), - [sym_nextcase_stmt] = STATE(505), - [sym_switch_stmt] = STATE(505), - [sym_if_stmt] = STATE(505), - [sym_for_stmt] = STATE(505), - [sym_foreach_stmt] = STATE(505), - [sym_while_stmt] = STATE(505), - [sym_do_stmt] = STATE(505), - [sym_asm_block_stmt] = STATE(505), - [sym_ct_assert_stmt] = STATE(505), - [sym_ct_echo_stmt] = STATE(505), - [sym_ct_if_stmt] = STATE(505), - [sym__ct_switch] = STATE(1559), - [sym_ct_switch_stmt] = STATE(505), - [sym_ct_for_stmt] = STATE(505), - [sym_ct_foreach_stmt] = STATE(505), - [sym__expr] = STATE(1140), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1553), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(36), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(2104), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -20725,7 +20940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -20734,176 +20949,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_SEMI] = ACTIONS(613), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_const] = ACTIONS(419), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_break] = ACTIONS(425), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_assert] = ACTIONS(429), - [anon_sym_nextcase] = ACTIONS(431), - [anon_sym_switch] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_foreach] = ACTIONS(439), - [anon_sym_foreach_r] = ACTIONS(439), - [anon_sym_while] = ACTIONS(441), - [anon_sym_do] = ACTIONS(443), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(445), - [anon_sym_DOLLARassert] = ACTIONS(447), - [anon_sym_DOLLARerror] = ACTIONS(449), - [anon_sym_DOLLARecho] = ACTIONS(451), - [anon_sym_DOLLARif] = ACTIONS(453), - [anon_sym_DOLLARendif] = ACTIONS(409), - [anon_sym_DOLLARelse] = ACTIONS(409), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(459), - [anon_sym_DOLLARforeach] = ACTIONS(461), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARendif] = ACTIONS(721), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [44] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(44), [sym_doc_comment] = STATE(44), [sym_block_comment] = STATE(44), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(694), - [sym_expr_stmt] = STATE(694), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(694), - [sym_return_stmt] = STATE(694), - [sym_continue_stmt] = STATE(694), - [sym_break_stmt] = STATE(694), - [sym_defer_stmt] = STATE(694), - [sym_assert_stmt] = STATE(694), - [sym_declaration_stmt] = STATE(694), - [sym_nextcase_stmt] = STATE(694), - [sym_switch_stmt] = STATE(694), - [sym_if_stmt] = STATE(694), - [sym_for_stmt] = STATE(694), - [sym_foreach_stmt] = STATE(694), - [sym_while_stmt] = STATE(694), - [sym_do_stmt] = STATE(694), - [sym_asm_block_stmt] = STATE(694), - [sym_ct_stmt_body] = STATE(1990), - [sym_ct_assert_stmt] = STATE(694), - [sym_ct_echo_stmt] = STATE(694), - [sym_ct_if_stmt] = STATE(694), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(694), - [sym_ct_for_stmt] = STATE(694), - [sym_ct_foreach_stmt] = STATE(694), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(76), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(2158), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -20911,7 +21122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -20920,175 +21131,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(613), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARendif] = ACTIONS(785), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARendif] = ACTIONS(723), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [45] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(45), [sym_doc_comment] = STATE(45), [sym_block_comment] = STATE(45), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(694), - [sym_expr_stmt] = STATE(694), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(694), - [sym_return_stmt] = STATE(694), - [sym_continue_stmt] = STATE(694), - [sym_break_stmt] = STATE(694), - [sym_defer_stmt] = STATE(694), - [sym_assert_stmt] = STATE(694), - [sym_declaration_stmt] = STATE(694), - [sym_nextcase_stmt] = STATE(694), - [sym_switch_stmt] = STATE(694), - [sym_if_stmt] = STATE(694), - [sym_for_stmt] = STATE(694), - [sym_foreach_stmt] = STATE(694), - [sym_while_stmt] = STATE(694), - [sym_do_stmt] = STATE(694), - [sym_asm_block_stmt] = STATE(694), - [sym_ct_stmt_body] = STATE(1946), - [sym_ct_assert_stmt] = STATE(694), - [sym_ct_echo_stmt] = STATE(694), - [sym_ct_if_stmt] = STATE(694), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(694), - [sym_ct_for_stmt] = STATE(694), - [sym_ct_foreach_stmt] = STATE(694), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(76), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(646), + [sym_expr_stmt] = STATE(646), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(646), + [sym_return_stmt] = STATE(646), + [sym_continue_stmt] = STATE(646), + [sym_break_stmt] = STATE(646), + [sym_defer_stmt] = STATE(646), + [sym_assert_stmt] = STATE(646), + [sym_declaration_stmt] = STATE(646), + [sym_nextcase_stmt] = STATE(646), + [sym_switch_stmt] = STATE(646), + [sym_if_stmt] = STATE(646), + [sym_for_stmt] = STATE(646), + [sym_foreach_stmt] = STATE(646), + [sym_while_stmt] = STATE(646), + [sym_do_stmt] = STATE(646), + [sym_asm_block_stmt] = STATE(646), + [sym_ct_stmt_body] = STATE(2200), + [sym_ct_assert_stmt] = STATE(646), + [sym_ct_echo_stmt] = STATE(646), + [sym_ct_if_stmt] = STATE(646), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(646), + [sym_ct_for_stmt] = STATE(646), + [sym_ct_foreach_stmt] = STATE(646), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_compound_stmt_repeat1] = STATE(85), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -21096,7 +21304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -21105,360 +21313,354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(567), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARendif] = ACTIONS(787), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), + [anon_sym_DOLLARendforeach] = ACTIONS(725), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [46] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(46), [sym_doc_comment] = STATE(46), [sym_block_comment] = STATE(46), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(694), - [sym_expr_stmt] = STATE(694), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(694), - [sym_return_stmt] = STATE(694), - [sym_continue_stmt] = STATE(694), - [sym_break_stmt] = STATE(694), - [sym_defer_stmt] = STATE(694), - [sym_assert_stmt] = STATE(694), - [sym_declaration_stmt] = STATE(694), - [sym_nextcase_stmt] = STATE(694), - [sym_switch_stmt] = STATE(694), - [sym_if_stmt] = STATE(694), - [sym_for_stmt] = STATE(694), - [sym_foreach_stmt] = STATE(694), - [sym_while_stmt] = STATE(694), - [sym_do_stmt] = STATE(694), - [sym_asm_block_stmt] = STATE(694), - [sym_ct_stmt_body] = STATE(1996), - [sym_ct_assert_stmt] = STATE(694), - [sym_ct_echo_stmt] = STATE(694), - [sym_ct_if_stmt] = STATE(694), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(694), - [sym_ct_for_stmt] = STATE(694), - [sym_ct_foreach_stmt] = STATE(694), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(76), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(561), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARendif] = ACTIONS(789), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), - [sym_real_literal] = ACTIONS(63), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(508), + [sym_expr_stmt] = STATE(508), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(508), + [sym_return_stmt] = STATE(508), + [sym_continue_stmt] = STATE(508), + [sym_break_stmt] = STATE(508), + [sym_defer_stmt] = STATE(508), + [sym_assert_stmt] = STATE(508), + [sym_declaration_stmt] = STATE(508), + [sym_nextcase_stmt] = STATE(508), + [sym_switch_stmt] = STATE(508), + [sym_if_stmt] = STATE(508), + [sym_for_stmt] = STATE(508), + [sym_foreach_stmt] = STATE(508), + [sym_while_stmt] = STATE(508), + [sym_do_stmt] = STATE(508), + [sym_asm_block_stmt] = STATE(508), + [sym_ct_assert_stmt] = STATE(508), + [sym_ct_echo_stmt] = STATE(508), + [sym_ct_if_stmt] = STATE(508), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(508), + [sym_ct_for_stmt] = STATE(508), + [sym_ct_foreach_stmt] = STATE(508), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_compound_stmt_repeat1] = STATE(46), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(243), + [sym_integer_literal] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(255), + [sym_bytes_literal] = ACTIONS(258), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(261), + [sym_at_ident] = ACTIONS(264), + [sym_hash_ident] = ACTIONS(267), + [sym_type_ident] = ACTIONS(270), + [sym_ct_type_ident] = ACTIONS(273), + [sym_const_ident] = ACTIONS(276), + [sym_builtin] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_static] = ACTIONS(285), + [anon_sym_tlocal] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(730), + [anon_sym_const] = ACTIONS(733), + [anon_sym_var] = ACTIONS(302), + [anon_sym_return] = ACTIONS(736), + [anon_sym_continue] = ACTIONS(739), + [anon_sym_break] = ACTIONS(742), + [anon_sym_defer] = ACTIONS(745), + [anon_sym_assert] = ACTIONS(748), + [anon_sym_nextcase] = ACTIONS(751), + [anon_sym_switch] = ACTIONS(754), + [anon_sym_AMP_AMP] = ACTIONS(328), + [anon_sym_if] = ACTIONS(757), + [anon_sym_for] = ACTIONS(760), + [anon_sym_foreach] = ACTIONS(763), + [anon_sym_foreach_r] = ACTIONS(763), + [anon_sym_while] = ACTIONS(766), + [anon_sym_do] = ACTIONS(769), + [anon_sym_int] = ACTIONS(346), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(328), + [anon_sym_asm] = ACTIONS(772), + [anon_sym_DOLLARassert] = ACTIONS(775), + [anon_sym_DOLLARerror] = ACTIONS(778), + [anon_sym_DOLLARecho] = ACTIONS(781), + [anon_sym_DOLLARif] = ACTIONS(784), + [anon_sym_DOLLARendif] = ACTIONS(320), + [anon_sym_DOLLARelse] = ACTIONS(320), + [anon_sym_DOLLARswitch] = ACTIONS(364), + [anon_sym_DOLLARfor] = ACTIONS(787), + [anon_sym_DOLLARforeach] = ACTIONS(790), + [anon_sym_DOLLARalignof] = ACTIONS(373), + [anon_sym_DOLLARextnameof] = ACTIONS(373), + [anon_sym_DOLLARnameof] = ACTIONS(373), + [anon_sym_DOLLARoffsetof] = ACTIONS(373), + [anon_sym_DOLLARqnameof] = ACTIONS(373), + [anon_sym_DOLLARvaconst] = ACTIONS(376), + [anon_sym_DOLLARvaarg] = ACTIONS(376), + [anon_sym_DOLLARvaref] = ACTIONS(376), + [anon_sym_DOLLARvaexpr] = ACTIONS(376), + [anon_sym_true] = ACTIONS(379), + [anon_sym_false] = ACTIONS(379), + [anon_sym_null] = ACTIONS(379), + [anon_sym_DOLLARvacount] = ACTIONS(379), + [anon_sym_DOLLAReval] = ACTIONS(382), + [anon_sym_DOLLARis_const] = ACTIONS(382), + [anon_sym_DOLLARsizeof] = ACTIONS(382), + [anon_sym_DOLLARstringify] = ACTIONS(382), + [anon_sym_DOLLARappend] = ACTIONS(385), + [anon_sym_DOLLARconcat] = ACTIONS(385), + [anon_sym_DOLLARdefined] = ACTIONS(385), + [anon_sym_DOLLARembed] = ACTIONS(385), + [anon_sym_DOLLARand] = ACTIONS(385), + [anon_sym_DOLLARor] = ACTIONS(385), + [anon_sym_DOLLARfeature] = ACTIONS(388), + [anon_sym_DOLLARassignable] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(328), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_PLUS_PLUS] = ACTIONS(328), + [anon_sym_DASH_DASH] = ACTIONS(328), + [anon_sym_typeid] = ACTIONS(346), + [anon_sym_LBRACE_PIPE] = ACTIONS(394), + [anon_sym_void] = ACTIONS(346), + [anon_sym_bool] = ACTIONS(346), + [anon_sym_char] = ACTIONS(346), + [anon_sym_ichar] = ACTIONS(346), + [anon_sym_short] = ACTIONS(346), + [anon_sym_ushort] = ACTIONS(346), + [anon_sym_uint] = ACTIONS(346), + [anon_sym_long] = ACTIONS(346), + [anon_sym_ulong] = ACTIONS(346), + [anon_sym_int128] = ACTIONS(346), + [anon_sym_uint128] = ACTIONS(346), + [anon_sym_float] = ACTIONS(346), + [anon_sym_double] = ACTIONS(346), + [anon_sym_float16] = ACTIONS(346), + [anon_sym_bfloat16] = ACTIONS(346), + [anon_sym_float128] = ACTIONS(346), + [anon_sym_iptr] = ACTIONS(346), + [anon_sym_uptr] = ACTIONS(346), + [anon_sym_isz] = ACTIONS(346), + [anon_sym_usz] = ACTIONS(346), + [anon_sym_anyfault] = ACTIONS(346), + [anon_sym_any] = ACTIONS(346), + [anon_sym_DOLLARtypeof] = ACTIONS(397), + [anon_sym_DOLLARtypefrom] = ACTIONS(397), + [anon_sym_DOLLARevaltype] = ACTIONS(397), + [anon_sym_DOLLARvatype] = ACTIONS(400), + [sym_real_literal] = ACTIONS(246), }, [47] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(47), [sym_doc_comment] = STATE(47), [sym_block_comment] = STATE(47), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1035), - [sym_const_declaration] = STATE(760), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(759), - [sym_expr_stmt] = STATE(759), - [sym_var_decl] = STATE(2146), - [sym_var_stmt] = STATE(759), - [sym_return_stmt] = STATE(759), - [sym_continue_stmt] = STATE(759), - [sym_break_stmt] = STATE(759), - [sym_defer_stmt] = STATE(759), - [sym_assert_stmt] = STATE(759), - [sym_declaration_stmt] = STATE(759), - [sym_nextcase_stmt] = STATE(759), - [sym_switch_stmt] = STATE(759), - [sym_if_stmt] = STATE(759), - [sym_for_stmt] = STATE(759), - [sym_foreach_stmt] = STATE(759), - [sym_while_stmt] = STATE(759), - [sym_do_stmt] = STATE(759), - [sym_asm_block_stmt] = STATE(759), - [sym_ct_stmt_body] = STATE(1927), - [sym_ct_assert_stmt] = STATE(759), - [sym_ct_echo_stmt] = STATE(759), - [sym_ct_if_stmt] = STATE(759), - [sym__ct_switch] = STATE(1430), - [sym_ct_switch_stmt] = STATE(759), - [sym_ct_for_stmt] = STATE(759), - [sym_ct_foreach_stmt] = STATE(759), - [sym__expr] = STATE(1155), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1433), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(57), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(2221), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -21466,7 +21668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -21475,175 +21677,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(659), + [anon_sym_SEMI] = ACTIONS(613), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(661), - [anon_sym_const] = ACTIONS(663), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(667), - [anon_sym_break] = ACTIONS(669), - [anon_sym_defer] = ACTIONS(671), - [anon_sym_assert] = ACTIONS(673), - [anon_sym_nextcase] = ACTIONS(675), - [anon_sym_switch] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(679), - [anon_sym_for] = ACTIONS(681), - [anon_sym_foreach] = ACTIONS(683), - [anon_sym_foreach_r] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_do] = ACTIONS(687), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(689), - [anon_sym_DOLLARassert] = ACTIONS(691), - [anon_sym_DOLLARerror] = ACTIONS(693), - [anon_sym_DOLLARecho] = ACTIONS(695), - [anon_sym_DOLLARif] = ACTIONS(697), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(699), - [anon_sym_DOLLARforeach] = ACTIONS(701), - [anon_sym_DOLLARendforeach] = ACTIONS(791), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARendif] = ACTIONS(793), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [48] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(48), [sym_doc_comment] = STATE(48), [sym_block_comment] = STATE(48), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(694), - [sym_expr_stmt] = STATE(694), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(694), - [sym_return_stmt] = STATE(694), - [sym_continue_stmt] = STATE(694), - [sym_break_stmt] = STATE(694), - [sym_defer_stmt] = STATE(694), - [sym_assert_stmt] = STATE(694), - [sym_declaration_stmt] = STATE(694), - [sym_nextcase_stmt] = STATE(694), - [sym_switch_stmt] = STATE(694), - [sym_if_stmt] = STATE(694), - [sym_for_stmt] = STATE(694), - [sym_foreach_stmt] = STATE(694), - [sym_while_stmt] = STATE(694), - [sym_do_stmt] = STATE(694), - [sym_asm_block_stmt] = STATE(694), - [sym_ct_stmt_body] = STATE(2187), - [sym_ct_assert_stmt] = STATE(694), - [sym_ct_echo_stmt] = STATE(694), - [sym_ct_if_stmt] = STATE(694), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(694), - [sym_ct_for_stmt] = STATE(694), - [sym_ct_foreach_stmt] = STATE(694), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(76), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(2228), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -21651,7 +21850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -21660,175 +21859,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(613), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARendif] = ACTIONS(793), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARendif] = ACTIONS(795), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [49] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(49), [sym_doc_comment] = STATE(49), [sym_block_comment] = STATE(49), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1034), - [sym_const_declaration] = STATE(600), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(599), - [sym_expr_stmt] = STATE(599), - [sym_var_decl] = STATE(2022), - [sym_var_stmt] = STATE(599), - [sym_return_stmt] = STATE(599), - [sym_continue_stmt] = STATE(599), - [sym_break_stmt] = STATE(599), - [sym_defer_stmt] = STATE(599), - [sym_assert_stmt] = STATE(599), - [sym_declaration_stmt] = STATE(599), - [sym_nextcase_stmt] = STATE(599), - [sym_switch_stmt] = STATE(599), - [sym_if_stmt] = STATE(599), - [sym_for_stmt] = STATE(599), - [sym_foreach_stmt] = STATE(599), - [sym_while_stmt] = STATE(599), - [sym_do_stmt] = STATE(599), - [sym_asm_block_stmt] = STATE(599), - [sym_ct_stmt_body] = STATE(1926), - [sym_ct_assert_stmt] = STATE(599), - [sym_ct_echo_stmt] = STATE(599), - [sym_ct_if_stmt] = STATE(599), - [sym__ct_switch] = STATE(1414), - [sym_ct_switch_stmt] = STATE(599), - [sym_ct_for_stmt] = STATE(599), - [sym_ct_foreach_stmt] = STATE(599), - [sym__expr] = STATE(1160), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1415), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(88), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(586), + [sym_expr_stmt] = STATE(586), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(586), + [sym_return_stmt] = STATE(586), + [sym_continue_stmt] = STATE(586), + [sym_break_stmt] = STATE(586), + [sym_defer_stmt] = STATE(586), + [sym_assert_stmt] = STATE(586), + [sym_declaration_stmt] = STATE(586), + [sym_nextcase_stmt] = STATE(586), + [sym_switch_stmt] = STATE(586), + [sym_if_stmt] = STATE(586), + [sym_for_stmt] = STATE(586), + [sym_foreach_stmt] = STATE(586), + [sym_while_stmt] = STATE(586), + [sym_do_stmt] = STATE(586), + [sym_asm_block_stmt] = STATE(586), + [sym_ct_stmt_body] = STATE(1975), + [sym_ct_assert_stmt] = STATE(586), + [sym_ct_echo_stmt] = STATE(586), + [sym_ct_if_stmt] = STATE(586), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(586), + [sym_ct_for_stmt] = STATE(586), + [sym_ct_foreach_stmt] = STATE(586), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_compound_stmt_repeat1] = STATE(78), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -21836,7 +22032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -21845,175 +22041,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_SEMI] = ACTIONS(661), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_const] = ACTIONS(613), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(617), - [anon_sym_break] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(621), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_nextcase] = ACTIONS(625), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(629), - [anon_sym_for] = ACTIONS(631), - [anon_sym_foreach] = ACTIONS(633), - [anon_sym_foreach_r] = ACTIONS(633), - [anon_sym_while] = ACTIONS(635), - [anon_sym_do] = ACTIONS(637), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(639), - [anon_sym_DOLLARassert] = ACTIONS(641), - [anon_sym_DOLLARerror] = ACTIONS(643), - [anon_sym_DOLLARecho] = ACTIONS(645), - [anon_sym_DOLLARif] = ACTIONS(647), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(649), - [anon_sym_DOLLARendfor] = ACTIONS(795), - [anon_sym_DOLLARforeach] = ACTIONS(653), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARendfor] = ACTIONS(797), + [anon_sym_DOLLARforeach] = ACTIONS(705), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [50] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(50), [sym_doc_comment] = STATE(50), [sym_block_comment] = STATE(50), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1035), - [sym_const_declaration] = STATE(760), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(759), - [sym_expr_stmt] = STATE(759), - [sym_var_decl] = STATE(2146), - [sym_var_stmt] = STATE(759), - [sym_return_stmt] = STATE(759), - [sym_continue_stmt] = STATE(759), - [sym_break_stmt] = STATE(759), - [sym_defer_stmt] = STATE(759), - [sym_assert_stmt] = STATE(759), - [sym_declaration_stmt] = STATE(759), - [sym_nextcase_stmt] = STATE(759), - [sym_switch_stmt] = STATE(759), - [sym_if_stmt] = STATE(759), - [sym_for_stmt] = STATE(759), - [sym_foreach_stmt] = STATE(759), - [sym_while_stmt] = STATE(759), - [sym_do_stmt] = STATE(759), - [sym_asm_block_stmt] = STATE(759), - [sym_ct_stmt_body] = STATE(2039), - [sym_ct_assert_stmt] = STATE(759), - [sym_ct_echo_stmt] = STATE(759), - [sym_ct_if_stmt] = STATE(759), - [sym__ct_switch] = STATE(1430), - [sym_ct_switch_stmt] = STATE(759), - [sym_ct_for_stmt] = STATE(759), - [sym_ct_foreach_stmt] = STATE(759), - [sym__expr] = STATE(1155), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1433), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(57), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(646), + [sym_expr_stmt] = STATE(646), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(646), + [sym_return_stmt] = STATE(646), + [sym_continue_stmt] = STATE(646), + [sym_break_stmt] = STATE(646), + [sym_defer_stmt] = STATE(646), + [sym_assert_stmt] = STATE(646), + [sym_declaration_stmt] = STATE(646), + [sym_nextcase_stmt] = STATE(646), + [sym_switch_stmt] = STATE(646), + [sym_if_stmt] = STATE(646), + [sym_for_stmt] = STATE(646), + [sym_foreach_stmt] = STATE(646), + [sym_while_stmt] = STATE(646), + [sym_do_stmt] = STATE(646), + [sym_asm_block_stmt] = STATE(646), + [sym_ct_stmt_body] = STATE(1976), + [sym_ct_assert_stmt] = STATE(646), + [sym_ct_echo_stmt] = STATE(646), + [sym_ct_if_stmt] = STATE(646), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(646), + [sym_ct_for_stmt] = STATE(646), + [sym_ct_foreach_stmt] = STATE(646), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_compound_stmt_repeat1] = STATE(85), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -22021,7 +22214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -22030,175 +22223,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(659), + [anon_sym_SEMI] = ACTIONS(567), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(661), - [anon_sym_const] = ACTIONS(663), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(667), - [anon_sym_break] = ACTIONS(669), - [anon_sym_defer] = ACTIONS(671), - [anon_sym_assert] = ACTIONS(673), - [anon_sym_nextcase] = ACTIONS(675), - [anon_sym_switch] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(679), - [anon_sym_for] = ACTIONS(681), - [anon_sym_foreach] = ACTIONS(683), - [anon_sym_foreach_r] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_do] = ACTIONS(687), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(689), - [anon_sym_DOLLARassert] = ACTIONS(691), - [anon_sym_DOLLARerror] = ACTIONS(693), - [anon_sym_DOLLARecho] = ACTIONS(695), - [anon_sym_DOLLARif] = ACTIONS(697), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(699), - [anon_sym_DOLLARforeach] = ACTIONS(701), - [anon_sym_DOLLARendforeach] = ACTIONS(797), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), + [anon_sym_DOLLARendforeach] = ACTIONS(799), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [51] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(51), [sym_doc_comment] = STATE(51), [sym_block_comment] = STATE(51), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1034), - [sym_const_declaration] = STATE(600), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(599), - [sym_expr_stmt] = STATE(599), - [sym_var_decl] = STATE(2022), - [sym_var_stmt] = STATE(599), - [sym_return_stmt] = STATE(599), - [sym_continue_stmt] = STATE(599), - [sym_break_stmt] = STATE(599), - [sym_defer_stmt] = STATE(599), - [sym_assert_stmt] = STATE(599), - [sym_declaration_stmt] = STATE(599), - [sym_nextcase_stmt] = STATE(599), - [sym_switch_stmt] = STATE(599), - [sym_if_stmt] = STATE(599), - [sym_for_stmt] = STATE(599), - [sym_foreach_stmt] = STATE(599), - [sym_while_stmt] = STATE(599), - [sym_do_stmt] = STATE(599), - [sym_asm_block_stmt] = STATE(599), - [sym_ct_stmt_body] = STATE(2044), - [sym_ct_assert_stmt] = STATE(599), - [sym_ct_echo_stmt] = STATE(599), - [sym_ct_if_stmt] = STATE(599), - [sym__ct_switch] = STATE(1414), - [sym_ct_switch_stmt] = STATE(599), - [sym_ct_for_stmt] = STATE(599), - [sym_ct_foreach_stmt] = STATE(599), - [sym__expr] = STATE(1160), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1415), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(88), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(1987), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -22206,7 +22396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -22215,175 +22405,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_SEMI] = ACTIONS(613), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_const] = ACTIONS(613), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(617), - [anon_sym_break] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(621), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_nextcase] = ACTIONS(625), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(629), - [anon_sym_for] = ACTIONS(631), - [anon_sym_foreach] = ACTIONS(633), - [anon_sym_foreach_r] = ACTIONS(633), - [anon_sym_while] = ACTIONS(635), - [anon_sym_do] = ACTIONS(637), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(639), - [anon_sym_DOLLARassert] = ACTIONS(641), - [anon_sym_DOLLARerror] = ACTIONS(643), - [anon_sym_DOLLARecho] = ACTIONS(645), - [anon_sym_DOLLARif] = ACTIONS(647), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(649), - [anon_sym_DOLLARendfor] = ACTIONS(799), - [anon_sym_DOLLARforeach] = ACTIONS(653), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARendif] = ACTIONS(801), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [52] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(52), [sym_doc_comment] = STATE(52), [sym_block_comment] = STATE(52), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1034), - [sym_const_declaration] = STATE(600), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(599), - [sym_expr_stmt] = STATE(599), - [sym_var_decl] = STATE(2022), - [sym_var_stmt] = STATE(599), - [sym_return_stmt] = STATE(599), - [sym_continue_stmt] = STATE(599), - [sym_break_stmt] = STATE(599), - [sym_defer_stmt] = STATE(599), - [sym_assert_stmt] = STATE(599), - [sym_declaration_stmt] = STATE(599), - [sym_nextcase_stmt] = STATE(599), - [sym_switch_stmt] = STATE(599), - [sym_if_stmt] = STATE(599), - [sym_for_stmt] = STATE(599), - [sym_foreach_stmt] = STATE(599), - [sym_while_stmt] = STATE(599), - [sym_do_stmt] = STATE(599), - [sym_asm_block_stmt] = STATE(599), - [sym_ct_stmt_body] = STATE(2182), - [sym_ct_assert_stmt] = STATE(599), - [sym_ct_echo_stmt] = STATE(599), - [sym_ct_if_stmt] = STATE(599), - [sym__ct_switch] = STATE(1414), - [sym_ct_switch_stmt] = STATE(599), - [sym_ct_for_stmt] = STATE(599), - [sym_ct_foreach_stmt] = STATE(599), - [sym__expr] = STATE(1160), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1415), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(88), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(1992), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -22391,7 +22578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -22400,175 +22587,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_SEMI] = ACTIONS(613), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_const] = ACTIONS(613), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(617), - [anon_sym_break] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(621), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_nextcase] = ACTIONS(625), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(629), - [anon_sym_for] = ACTIONS(631), - [anon_sym_foreach] = ACTIONS(633), - [anon_sym_foreach_r] = ACTIONS(633), - [anon_sym_while] = ACTIONS(635), - [anon_sym_do] = ACTIONS(637), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(639), - [anon_sym_DOLLARassert] = ACTIONS(641), - [anon_sym_DOLLARerror] = ACTIONS(643), - [anon_sym_DOLLARecho] = ACTIONS(645), - [anon_sym_DOLLARif] = ACTIONS(647), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(649), - [anon_sym_DOLLARendfor] = ACTIONS(801), - [anon_sym_DOLLARforeach] = ACTIONS(653), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARendif] = ACTIONS(803), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [53] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(53), [sym_doc_comment] = STATE(53), [sym_block_comment] = STATE(53), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1035), - [sym_const_declaration] = STATE(760), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(759), - [sym_expr_stmt] = STATE(759), - [sym_var_decl] = STATE(2146), - [sym_var_stmt] = STATE(759), - [sym_return_stmt] = STATE(759), - [sym_continue_stmt] = STATE(759), - [sym_break_stmt] = STATE(759), - [sym_defer_stmt] = STATE(759), - [sym_assert_stmt] = STATE(759), - [sym_declaration_stmt] = STATE(759), - [sym_nextcase_stmt] = STATE(759), - [sym_switch_stmt] = STATE(759), - [sym_if_stmt] = STATE(759), - [sym_for_stmt] = STATE(759), - [sym_foreach_stmt] = STATE(759), - [sym_while_stmt] = STATE(759), - [sym_do_stmt] = STATE(759), - [sym_asm_block_stmt] = STATE(759), - [sym_ct_stmt_body] = STATE(2180), - [sym_ct_assert_stmt] = STATE(759), - [sym_ct_echo_stmt] = STATE(759), - [sym_ct_if_stmt] = STATE(759), - [sym__ct_switch] = STATE(1430), - [sym_ct_switch_stmt] = STATE(759), - [sym_ct_for_stmt] = STATE(759), - [sym_ct_foreach_stmt] = STATE(759), - [sym__expr] = STATE(1155), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1433), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(57), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(508), + [sym_expr_stmt] = STATE(508), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(508), + [sym_return_stmt] = STATE(508), + [sym_continue_stmt] = STATE(508), + [sym_break_stmt] = STATE(508), + [sym_defer_stmt] = STATE(508), + [sym_assert_stmt] = STATE(508), + [sym_declaration_stmt] = STATE(508), + [sym_nextcase_stmt] = STATE(508), + [sym_switch_stmt] = STATE(508), + [sym_if_stmt] = STATE(508), + [sym_for_stmt] = STATE(508), + [sym_foreach_stmt] = STATE(508), + [sym_while_stmt] = STATE(508), + [sym_do_stmt] = STATE(508), + [sym_asm_block_stmt] = STATE(508), + [sym_ct_assert_stmt] = STATE(508), + [sym_ct_echo_stmt] = STATE(508), + [sym_ct_if_stmt] = STATE(508), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(508), + [sym_ct_for_stmt] = STATE(508), + [sym_ct_foreach_stmt] = STATE(508), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_compound_stmt_repeat1] = STATE(46), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -22576,7 +22759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -22585,175 +22768,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(659), + [anon_sym_SEMI] = ACTIONS(407), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(661), - [anon_sym_const] = ACTIONS(663), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(667), - [anon_sym_break] = ACTIONS(669), - [anon_sym_defer] = ACTIONS(671), - [anon_sym_assert] = ACTIONS(673), - [anon_sym_nextcase] = ACTIONS(675), - [anon_sym_switch] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(679), - [anon_sym_for] = ACTIONS(681), - [anon_sym_foreach] = ACTIONS(683), - [anon_sym_foreach_r] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_do] = ACTIONS(687), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(409), + [anon_sym_const] = ACTIONS(411), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(689), - [anon_sym_DOLLARassert] = ACTIONS(691), - [anon_sym_DOLLARerror] = ACTIONS(693), - [anon_sym_DOLLARecho] = ACTIONS(695), - [anon_sym_DOLLARif] = ACTIONS(697), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(699), - [anon_sym_DOLLARforeach] = ACTIONS(701), - [anon_sym_DOLLARendforeach] = ACTIONS(803), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_DOLLARendif] = ACTIONS(479), + [anon_sym_DOLLARelse] = ACTIONS(479), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [54] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(54), [sym_doc_comment] = STATE(54), [sym_block_comment] = STATE(54), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(694), - [sym_expr_stmt] = STATE(694), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(694), - [sym_return_stmt] = STATE(694), - [sym_continue_stmt] = STATE(694), - [sym_break_stmt] = STATE(694), - [sym_defer_stmt] = STATE(694), - [sym_assert_stmt] = STATE(694), - [sym_declaration_stmt] = STATE(694), - [sym_nextcase_stmt] = STATE(694), - [sym_switch_stmt] = STATE(694), - [sym_if_stmt] = STATE(694), - [sym_for_stmt] = STATE(694), - [sym_foreach_stmt] = STATE(694), - [sym_while_stmt] = STATE(694), - [sym_do_stmt] = STATE(694), - [sym_asm_block_stmt] = STATE(694), - [sym_ct_stmt_body] = STATE(2156), - [sym_ct_assert_stmt] = STATE(694), - [sym_ct_echo_stmt] = STATE(694), - [sym_ct_if_stmt] = STATE(694), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(694), - [sym_ct_for_stmt] = STATE(694), - [sym_ct_foreach_stmt] = STATE(694), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(76), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(586), + [sym_expr_stmt] = STATE(586), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(586), + [sym_return_stmt] = STATE(586), + [sym_continue_stmt] = STATE(586), + [sym_break_stmt] = STATE(586), + [sym_defer_stmt] = STATE(586), + [sym_assert_stmt] = STATE(586), + [sym_declaration_stmt] = STATE(586), + [sym_nextcase_stmt] = STATE(586), + [sym_switch_stmt] = STATE(586), + [sym_if_stmt] = STATE(586), + [sym_for_stmt] = STATE(586), + [sym_foreach_stmt] = STATE(586), + [sym_while_stmt] = STATE(586), + [sym_do_stmt] = STATE(586), + [sym_asm_block_stmt] = STATE(586), + [sym_ct_stmt_body] = STATE(2050), + [sym_ct_assert_stmt] = STATE(586), + [sym_ct_echo_stmt] = STATE(586), + [sym_ct_if_stmt] = STATE(586), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(586), + [sym_ct_for_stmt] = STATE(586), + [sym_ct_foreach_stmt] = STATE(586), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_compound_stmt_repeat1] = STATE(78), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -22761,7 +22942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -22770,174 +22951,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(661), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARendif] = ACTIONS(805), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARendfor] = ACTIONS(805), + [anon_sym_DOLLARforeach] = ACTIONS(705), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [55] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(55), [sym_doc_comment] = STATE(55), [sym_block_comment] = STATE(55), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(646), + [sym_expr_stmt] = STATE(646), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(646), + [sym_return_stmt] = STATE(646), + [sym_continue_stmt] = STATE(646), + [sym_break_stmt] = STATE(646), + [sym_defer_stmt] = STATE(646), + [sym_assert_stmt] = STATE(646), + [sym_declaration_stmt] = STATE(646), + [sym_nextcase_stmt] = STATE(646), + [sym_switch_stmt] = STATE(646), + [sym_if_stmt] = STATE(646), + [sym_for_stmt] = STATE(646), + [sym_foreach_stmt] = STATE(646), + [sym_while_stmt] = STATE(646), + [sym_do_stmt] = STATE(646), + [sym_asm_block_stmt] = STATE(646), + [sym_ct_stmt_body] = STATE(2051), + [sym_ct_assert_stmt] = STATE(646), + [sym_ct_echo_stmt] = STATE(646), + [sym_ct_if_stmt] = STATE(646), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(646), + [sym_ct_for_stmt] = STATE(646), + [sym_ct_foreach_stmt] = STATE(646), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_compound_stmt_repeat1] = STATE(85), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -22945,7 +23124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -22954,174 +23133,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(567), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), + [anon_sym_DOLLARendforeach] = ACTIONS(807), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [56] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(56), [sym_doc_comment] = STATE(56), [sym_block_comment] = STATE(56), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_stmt_body] = STATE(2062), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(95), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -23129,7 +23306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -23138,174 +23315,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(613), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARendif] = ACTIONS(809), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [57] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(57), [sym_doc_comment] = STATE(57), [sym_block_comment] = STATE(57), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1035), - [sym_const_declaration] = STATE(760), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(759), - [sym_expr_stmt] = STATE(759), - [sym_var_decl] = STATE(2146), - [sym_var_stmt] = STATE(759), - [sym_return_stmt] = STATE(759), - [sym_continue_stmt] = STATE(759), - [sym_break_stmt] = STATE(759), - [sym_defer_stmt] = STATE(759), - [sym_assert_stmt] = STATE(759), - [sym_declaration_stmt] = STATE(759), - [sym_nextcase_stmt] = STATE(759), - [sym_switch_stmt] = STATE(759), - [sym_if_stmt] = STATE(759), - [sym_for_stmt] = STATE(759), - [sym_foreach_stmt] = STATE(759), - [sym_while_stmt] = STATE(759), - [sym_do_stmt] = STATE(759), - [sym_asm_block_stmt] = STATE(759), - [sym_ct_assert_stmt] = STATE(759), - [sym_ct_echo_stmt] = STATE(759), - [sym_ct_if_stmt] = STATE(759), - [sym__ct_switch] = STATE(1430), - [sym_ct_switch_stmt] = STATE(759), - [sym_ct_for_stmt] = STATE(759), - [sym_ct_foreach_stmt] = STATE(759), - [sym__expr] = STATE(1155), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1433), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(70), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(586), + [sym_expr_stmt] = STATE(586), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(586), + [sym_return_stmt] = STATE(586), + [sym_continue_stmt] = STATE(586), + [sym_break_stmt] = STATE(586), + [sym_defer_stmt] = STATE(586), + [sym_assert_stmt] = STATE(586), + [sym_declaration_stmt] = STATE(586), + [sym_nextcase_stmt] = STATE(586), + [sym_switch_stmt] = STATE(586), + [sym_if_stmt] = STATE(586), + [sym_for_stmt] = STATE(586), + [sym_foreach_stmt] = STATE(586), + [sym_while_stmt] = STATE(586), + [sym_do_stmt] = STATE(586), + [sym_asm_block_stmt] = STATE(586), + [sym_ct_stmt_body] = STATE(2199), + [sym_ct_assert_stmt] = STATE(586), + [sym_ct_echo_stmt] = STATE(586), + [sym_ct_if_stmt] = STATE(586), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(586), + [sym_ct_for_stmt] = STATE(586), + [sym_ct_foreach_stmt] = STATE(586), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_compound_stmt_repeat1] = STATE(78), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -23313,7 +23488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -23322,175 +23497,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(659), + [anon_sym_SEMI] = ACTIONS(661), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(661), - [anon_sym_const] = ACTIONS(663), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(667), - [anon_sym_break] = ACTIONS(669), - [anon_sym_defer] = ACTIONS(671), - [anon_sym_assert] = ACTIONS(673), - [anon_sym_nextcase] = ACTIONS(675), - [anon_sym_switch] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(679), - [anon_sym_for] = ACTIONS(681), - [anon_sym_foreach] = ACTIONS(683), - [anon_sym_foreach_r] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_do] = ACTIONS(687), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(689), - [anon_sym_DOLLARassert] = ACTIONS(691), - [anon_sym_DOLLARerror] = ACTIONS(693), - [anon_sym_DOLLARecho] = ACTIONS(695), - [anon_sym_DOLLARif] = ACTIONS(697), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(699), - [anon_sym_DOLLARforeach] = ACTIONS(701), - [anon_sym_DOLLARendforeach] = ACTIONS(409), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARendfor] = ACTIONS(811), + [anon_sym_DOLLARforeach] = ACTIONS(705), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [58] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(58), [sym_doc_comment] = STATE(58), [sym_block_comment] = STATE(58), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(361), - [sym_expr_stmt] = STATE(411), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(411), - [sym_return_stmt] = STATE(411), - [sym_continue_stmt] = STATE(411), - [sym_break_stmt] = STATE(411), - [sym_defer_stmt] = STATE(411), - [sym_assert_stmt] = STATE(411), - [sym_declaration_stmt] = STATE(411), - [sym_nextcase_stmt] = STATE(411), - [sym_switch_body] = STATE(361), - [sym_switch_stmt] = STATE(411), - [sym__if_body] = STATE(418), - [sym_if_stmt] = STATE(411), - [sym_for_stmt] = STATE(411), - [sym_foreach_stmt] = STATE(411), - [sym_while_stmt] = STATE(411), - [sym_do_stmt] = STATE(411), - [sym_asm_block_stmt] = STATE(411), - [sym_ct_assert_stmt] = STATE(411), - [sym_ct_echo_stmt] = STATE(411), - [sym_ct_if_stmt] = STATE(411), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(411), - [sym_ct_for_stmt] = STATE(411), - [sym_ct_foreach_stmt] = STATE(411), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(462), + [sym_expr_stmt] = STATE(749), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(749), + [sym_return_stmt] = STATE(749), + [sym_continue_stmt] = STATE(749), + [sym_break_stmt] = STATE(749), + [sym_defer_stmt] = STATE(749), + [sym_assert_stmt] = STATE(749), + [sym_declaration_stmt] = STATE(749), + [sym_nextcase_stmt] = STATE(749), + [sym_switch_body] = STATE(462), + [sym_switch_stmt] = STATE(749), + [sym__if_body] = STATE(750), + [sym_if_stmt] = STATE(749), + [sym_for_stmt] = STATE(749), + [sym_foreach_stmt] = STATE(749), + [sym_while_stmt] = STATE(749), + [sym_do_stmt] = STATE(749), + [sym_asm_block_stmt] = STATE(749), + [sym_ct_assert_stmt] = STATE(749), + [sym_ct_echo_stmt] = STATE(749), + [sym_ct_if_stmt] = STATE(749), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(749), + [sym_ct_for_stmt] = STATE(749), + [sym_ct_foreach_stmt] = STATE(749), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -23498,7 +23670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -23507,172 +23679,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(813), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(813), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [59] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(59), [sym_doc_comment] = STATE(59), [sym_block_comment] = STATE(59), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1035), - [sym_const_declaration] = STATE(760), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(777), - [sym_expr_stmt] = STATE(777), - [sym_var_decl] = STATE(2146), - [sym_var_stmt] = STATE(777), - [sym_return_stmt] = STATE(777), - [sym_continue_stmt] = STATE(777), - [sym_break_stmt] = STATE(777), - [sym_defer_stmt] = STATE(777), - [sym_assert_stmt] = STATE(777), - [sym_declaration_stmt] = STATE(777), - [sym_nextcase_stmt] = STATE(777), - [sym_switch_stmt] = STATE(777), - [sym_if_stmt] = STATE(777), - [sym_for_stmt] = STATE(777), - [sym_foreach_stmt] = STATE(777), - [sym_while_stmt] = STATE(777), - [sym_do_stmt] = STATE(777), - [sym_asm_block_stmt] = STATE(777), - [sym_ct_assert_stmt] = STATE(777), - [sym_ct_echo_stmt] = STATE(777), - [sym_ct_if_stmt] = STATE(777), - [sym__ct_switch] = STATE(1430), - [sym_ct_switch_stmt] = STATE(777), - [sym_ct_for_stmt] = STATE(777), - [sym_ct_foreach_stmt] = STATE(777), - [sym__expr] = STATE(1155), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1433), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(61), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -23680,7 +23850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -23689,175 +23859,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(815), + [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(661), - [anon_sym_const] = ACTIONS(663), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(667), - [anon_sym_break] = ACTIONS(669), - [anon_sym_defer] = ACTIONS(671), - [anon_sym_try] = ACTIONS(817), - [anon_sym_catch] = ACTIONS(817), - [anon_sym_assert] = ACTIONS(673), - [anon_sym_nextcase] = ACTIONS(675), - [anon_sym_switch] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(679), - [anon_sym_for] = ACTIONS(681), - [anon_sym_foreach] = ACTIONS(683), - [anon_sym_foreach_r] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_do] = ACTIONS(687), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(817), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(689), - [anon_sym_DOLLARassert] = ACTIONS(691), - [anon_sym_DOLLARerror] = ACTIONS(693), - [anon_sym_DOLLARecho] = ACTIONS(695), - [anon_sym_DOLLARif] = ACTIONS(697), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(699), - [anon_sym_DOLLARforeach] = ACTIONS(701), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [60] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(60), [sym_doc_comment] = STATE(60), [sym_block_comment] = STATE(60), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(55), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(79), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -23865,7 +24031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -23874,7 +24040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), @@ -23883,164 +24049,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(99), [anon_sym_RBRACE] = ACTIONS(819), [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [61] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(61), [sym_doc_comment] = STATE(61), [sym_block_comment] = STATE(61), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1042), - [sym_const_declaration] = STATE(506), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(503), - [sym_expr_stmt] = STATE(503), - [sym_var_decl] = STATE(2226), - [sym_var_stmt] = STATE(503), - [sym_return_stmt] = STATE(503), - [sym_continue_stmt] = STATE(503), - [sym_break_stmt] = STATE(503), - [sym_defer_stmt] = STATE(503), - [sym_assert_stmt] = STATE(503), - [sym_declaration_stmt] = STATE(503), - [sym_nextcase_stmt] = STATE(503), - [sym_switch_stmt] = STATE(503), - [sym_if_stmt] = STATE(503), - [sym_for_stmt] = STATE(503), - [sym_foreach_stmt] = STATE(503), - [sym_while_stmt] = STATE(503), - [sym_do_stmt] = STATE(503), - [sym_asm_block_stmt] = STATE(503), - [sym_ct_assert_stmt] = STATE(503), - [sym_ct_echo_stmt] = STATE(503), - [sym_ct_if_stmt] = STATE(503), - [sym__ct_switch] = STATE(1559), - [sym_ct_switch_stmt] = STATE(503), - [sym_ct_for_stmt] = STATE(503), - [sym_ct_foreach_stmt] = STATE(503), - [sym__expr] = STATE(1140), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1553), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(15), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -24048,7 +24212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -24057,176 +24221,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(821), + [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_const] = ACTIONS(419), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_break] = ACTIONS(425), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_try] = ACTIONS(823), - [anon_sym_catch] = ACTIONS(823), - [anon_sym_assert] = ACTIONS(429), - [anon_sym_nextcase] = ACTIONS(431), - [anon_sym_switch] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_foreach] = ACTIONS(439), - [anon_sym_foreach_r] = ACTIONS(439), - [anon_sym_while] = ACTIONS(441), - [anon_sym_do] = ACTIONS(443), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(821), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(445), - [anon_sym_DOLLARassert] = ACTIONS(447), - [anon_sym_DOLLARerror] = ACTIONS(449), - [anon_sym_DOLLARecho] = ACTIONS(451), - [anon_sym_DOLLARif] = ACTIONS(453), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(459), - [anon_sym_DOLLARforeach] = ACTIONS(461), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [62] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(62), [sym_doc_comment] = STATE(62), [sym_block_comment] = STATE(62), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1035), - [sym_const_declaration] = STATE(760), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(489), - [sym_expr_stmt] = STATE(753), - [sym_var_decl] = STATE(2146), - [sym_var_stmt] = STATE(753), - [sym_return_stmt] = STATE(753), - [sym_continue_stmt] = STATE(753), - [sym_break_stmt] = STATE(753), - [sym_defer_stmt] = STATE(753), - [sym_assert_stmt] = STATE(753), - [sym_declaration_stmt] = STATE(753), - [sym_nextcase_stmt] = STATE(753), - [sym_switch_body] = STATE(489), - [sym_switch_stmt] = STATE(753), - [sym__if_body] = STATE(752), - [sym_if_stmt] = STATE(753), - [sym_for_stmt] = STATE(753), - [sym_foreach_stmt] = STATE(753), - [sym_while_stmt] = STATE(753), - [sym_do_stmt] = STATE(753), - [sym_asm_block_stmt] = STATE(753), - [sym_ct_assert_stmt] = STATE(753), - [sym_ct_echo_stmt] = STATE(753), - [sym_ct_if_stmt] = STATE(753), - [sym__ct_switch] = STATE(1430), - [sym_ct_switch_stmt] = STATE(753), - [sym_ct_for_stmt] = STATE(753), - [sym_ct_foreach_stmt] = STATE(753), - [sym__expr] = STATE(1155), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1433), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(338), + [sym_expr_stmt] = STATE(348), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(348), + [sym_return_stmt] = STATE(348), + [sym_continue_stmt] = STATE(348), + [sym_break_stmt] = STATE(348), + [sym_defer_stmt] = STATE(348), + [sym_assert_stmt] = STATE(348), + [sym_declaration_stmt] = STATE(348), + [sym_nextcase_stmt] = STATE(348), + [sym_switch_body] = STATE(338), + [sym_switch_stmt] = STATE(348), + [sym__if_body] = STATE(367), + [sym_if_stmt] = STATE(348), + [sym_for_stmt] = STATE(348), + [sym_foreach_stmt] = STATE(348), + [sym_while_stmt] = STATE(348), + [sym_do_stmt] = STATE(348), + [sym_asm_block_stmt] = STATE(348), + [sym_ct_assert_stmt] = STATE(348), + [sym_ct_echo_stmt] = STATE(348), + [sym_ct_if_stmt] = STATE(348), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(348), + [sym_ct_for_stmt] = STATE(348), + [sym_ct_foreach_stmt] = STATE(348), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -24234,7 +24394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -24243,174 +24403,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(825), + [anon_sym_SEMI] = ACTIONS(823), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(827), - [anon_sym_const] = ACTIONS(663), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(667), - [anon_sym_break] = ACTIONS(669), - [anon_sym_defer] = ACTIONS(671), - [anon_sym_assert] = ACTIONS(673), - [anon_sym_nextcase] = ACTIONS(675), - [anon_sym_switch] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(679), - [anon_sym_for] = ACTIONS(681), - [anon_sym_foreach] = ACTIONS(683), - [anon_sym_foreach_r] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_do] = ACTIONS(687), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(689), - [anon_sym_DOLLARassert] = ACTIONS(691), - [anon_sym_DOLLARerror] = ACTIONS(693), - [anon_sym_DOLLARecho] = ACTIONS(695), - [anon_sym_DOLLARif] = ACTIONS(697), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(699), - [anon_sym_DOLLARforeach] = ACTIONS(701), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [63] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(63), [sym_doc_comment] = STATE(63), [sym_block_comment] = STATE(63), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1034), - [sym_const_declaration] = STATE(600), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(490), - [sym_expr_stmt] = STATE(642), - [sym_var_decl] = STATE(2022), - [sym_var_stmt] = STATE(642), - [sym_return_stmt] = STATE(642), - [sym_continue_stmt] = STATE(642), - [sym_break_stmt] = STATE(642), - [sym_defer_stmt] = STATE(642), - [sym_assert_stmt] = STATE(642), - [sym_declaration_stmt] = STATE(642), - [sym_nextcase_stmt] = STATE(642), - [sym_switch_body] = STATE(490), - [sym_switch_stmt] = STATE(642), - [sym__if_body] = STATE(696), - [sym_if_stmt] = STATE(642), - [sym_for_stmt] = STATE(642), - [sym_foreach_stmt] = STATE(642), - [sym_while_stmt] = STATE(642), - [sym_do_stmt] = STATE(642), - [sym_asm_block_stmt] = STATE(642), - [sym_ct_assert_stmt] = STATE(642), - [sym_ct_echo_stmt] = STATE(642), - [sym_ct_if_stmt] = STATE(642), - [sym__ct_switch] = STATE(1414), - [sym_ct_switch_stmt] = STATE(642), - [sym_ct_for_stmt] = STATE(642), - [sym_ct_foreach_stmt] = STATE(642), - [sym__expr] = STATE(1160), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1415), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(657), + [sym_expr_stmt] = STATE(657), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(657), + [sym_return_stmt] = STATE(657), + [sym_continue_stmt] = STATE(657), + [sym_break_stmt] = STATE(657), + [sym_defer_stmt] = STATE(657), + [sym_assert_stmt] = STATE(657), + [sym_declaration_stmt] = STATE(657), + [sym_nextcase_stmt] = STATE(657), + [sym_switch_stmt] = STATE(657), + [sym_if_stmt] = STATE(657), + [sym_for_stmt] = STATE(657), + [sym_foreach_stmt] = STATE(657), + [sym_while_stmt] = STATE(657), + [sym_do_stmt] = STATE(657), + [sym_asm_block_stmt] = STATE(657), + [sym_ct_assert_stmt] = STATE(657), + [sym_ct_echo_stmt] = STATE(657), + [sym_ct_if_stmt] = STATE(657), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(657), + [sym_ct_for_stmt] = STATE(657), + [sym_ct_foreach_stmt] = STATE(657), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -24418,7 +24573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -24427,174 +24582,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(827), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_const] = ACTIONS(613), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(617), - [anon_sym_break] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(621), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_nextcase] = ACTIONS(625), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(629), - [anon_sym_for] = ACTIONS(631), - [anon_sym_foreach] = ACTIONS(633), - [anon_sym_foreach_r] = ACTIONS(633), - [anon_sym_while] = ACTIONS(635), - [anon_sym_do] = ACTIONS(637), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_try] = ACTIONS(829), + [anon_sym_catch] = ACTIONS(829), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(639), - [anon_sym_DOLLARassert] = ACTIONS(641), - [anon_sym_DOLLARerror] = ACTIONS(643), - [anon_sym_DOLLARecho] = ACTIONS(645), - [anon_sym_DOLLARif] = ACTIONS(647), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(649), - [anon_sym_DOLLARforeach] = ACTIONS(653), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [64] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(64), [sym_doc_comment] = STATE(64), [sym_block_comment] = STATE(64), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1034), - [sym_const_declaration] = STATE(600), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(490), - [sym_expr_stmt] = STATE(642), - [sym_var_decl] = STATE(2022), - [sym_var_stmt] = STATE(642), - [sym_return_stmt] = STATE(642), - [sym_continue_stmt] = STATE(642), - [sym_break_stmt] = STATE(642), - [sym_defer_stmt] = STATE(642), - [sym_assert_stmt] = STATE(642), - [sym_declaration_stmt] = STATE(642), - [sym_nextcase_stmt] = STATE(642), - [sym_switch_body] = STATE(490), - [sym_switch_stmt] = STATE(642), - [sym__if_body] = STATE(647), - [sym_if_stmt] = STATE(642), - [sym_for_stmt] = STATE(642), - [sym_foreach_stmt] = STATE(642), - [sym_while_stmt] = STATE(642), - [sym_do_stmt] = STATE(642), - [sym_asm_block_stmt] = STATE(642), - [sym_ct_assert_stmt] = STATE(642), - [sym_ct_echo_stmt] = STATE(642), - [sym_ct_if_stmt] = STATE(642), - [sym__ct_switch] = STATE(1414), - [sym_ct_switch_stmt] = STATE(642), - [sym_ct_for_stmt] = STATE(642), - [sym_ct_foreach_stmt] = STATE(642), - [sym__expr] = STATE(1160), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1415), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(65), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -24602,7 +24755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -24611,173 +24764,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_const] = ACTIONS(613), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(617), - [anon_sym_break] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(621), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_nextcase] = ACTIONS(625), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(629), - [anon_sym_for] = ACTIONS(631), - [anon_sym_foreach] = ACTIONS(633), - [anon_sym_foreach_r] = ACTIONS(633), - [anon_sym_while] = ACTIONS(635), - [anon_sym_do] = ACTIONS(637), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(831), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(639), - [anon_sym_DOLLARassert] = ACTIONS(641), - [anon_sym_DOLLARerror] = ACTIONS(643), - [anon_sym_DOLLARecho] = ACTIONS(645), - [anon_sym_DOLLARif] = ACTIONS(647), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(649), - [anon_sym_DOLLARforeach] = ACTIONS(653), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [65] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(65), [sym_doc_comment] = STATE(65), [sym_block_comment] = STATE(65), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(15), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -24785,7 +24936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -24794,7 +24945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), @@ -24803,165 +24954,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(99), [anon_sym_RBRACE] = ACTIONS(833), [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [66] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(66), [sym_doc_comment] = STATE(66), [sym_block_comment] = STATE(66), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(448), + [sym_expr_stmt] = STATE(676), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(676), + [sym_return_stmt] = STATE(676), + [sym_continue_stmt] = STATE(676), + [sym_break_stmt] = STATE(676), + [sym_defer_stmt] = STATE(676), + [sym_assert_stmt] = STATE(676), + [sym_declaration_stmt] = STATE(676), + [sym_nextcase_stmt] = STATE(676), + [sym_switch_body] = STATE(448), + [sym_switch_stmt] = STATE(676), + [sym__if_body] = STATE(677), + [sym_if_stmt] = STATE(676), + [sym_for_stmt] = STATE(676), + [sym_foreach_stmt] = STATE(676), + [sym_while_stmt] = STATE(676), + [sym_do_stmt] = STATE(676), + [sym_asm_block_stmt] = STATE(676), + [sym_ct_assert_stmt] = STATE(676), + [sym_ct_echo_stmt] = STATE(676), + [sym_ct_if_stmt] = STATE(676), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(676), + [sym_ct_for_stmt] = STATE(676), + [sym_ct_foreach_stmt] = STATE(676), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -24969,7 +25118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -24978,174 +25127,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(835), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(837), + [anon_sym_const] = ACTIONS(571), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [67] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(67), [sym_doc_comment] = STATE(67), [sym_block_comment] = STATE(67), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(66), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(416), + [sym_expr_stmt] = STATE(546), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(546), + [sym_return_stmt] = STATE(546), + [sym_continue_stmt] = STATE(546), + [sym_break_stmt] = STATE(546), + [sym_defer_stmt] = STATE(546), + [sym_assert_stmt] = STATE(546), + [sym_declaration_stmt] = STATE(546), + [sym_nextcase_stmt] = STATE(546), + [sym_switch_body] = STATE(416), + [sym_switch_stmt] = STATE(546), + [sym__if_body] = STATE(548), + [sym_if_stmt] = STATE(546), + [sym_for_stmt] = STATE(546), + [sym_foreach_stmt] = STATE(546), + [sym_while_stmt] = STATE(546), + [sym_do_stmt] = STATE(546), + [sym_asm_block_stmt] = STATE(546), + [sym_ct_assert_stmt] = STATE(546), + [sym_ct_echo_stmt] = STATE(546), + [sym_ct_if_stmt] = STATE(546), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(546), + [sym_ct_for_stmt] = STATE(546), + [sym_ct_foreach_stmt] = STATE(546), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -25153,7 +25299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -25162,174 +25308,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(839), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(837), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_const] = ACTIONS(411), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [68] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(68), [sym_doc_comment] = STATE(68), [sym_block_comment] = STATE(68), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(65), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(94), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -25337,7 +25479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -25346,173 +25488,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(839), [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_PIPE_RBRACE] = ACTIONS(843), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [69] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(69), [sym_doc_comment] = STATE(69), [sym_block_comment] = STATE(69), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1034), - [sym_const_declaration] = STATE(600), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(613), - [sym_expr_stmt] = STATE(613), - [sym_var_decl] = STATE(2022), - [sym_var_stmt] = STATE(613), - [sym_return_stmt] = STATE(613), - [sym_continue_stmt] = STATE(613), - [sym_break_stmt] = STATE(613), - [sym_defer_stmt] = STATE(613), - [sym_assert_stmt] = STATE(613), - [sym_declaration_stmt] = STATE(613), - [sym_nextcase_stmt] = STATE(613), - [sym_switch_stmt] = STATE(613), - [sym_if_stmt] = STATE(613), - [sym_for_stmt] = STATE(613), - [sym_foreach_stmt] = STATE(613), - [sym_while_stmt] = STATE(613), - [sym_do_stmt] = STATE(613), - [sym_asm_block_stmt] = STATE(613), - [sym_ct_assert_stmt] = STATE(613), - [sym_ct_echo_stmt] = STATE(613), - [sym_ct_if_stmt] = STATE(613), - [sym__ct_switch] = STATE(1414), - [sym_ct_switch_stmt] = STATE(613), - [sym_ct_for_stmt] = STATE(613), - [sym_ct_foreach_stmt] = STATE(613), - [sym__expr] = STATE(1160), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1415), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(369), + [sym_expr_stmt] = STATE(369), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(369), + [sym_return_stmt] = STATE(369), + [sym_continue_stmt] = STATE(369), + [sym_break_stmt] = STATE(369), + [sym_defer_stmt] = STATE(369), + [sym_assert_stmt] = STATE(369), + [sym_declaration_stmt] = STATE(369), + [sym_nextcase_stmt] = STATE(369), + [sym_switch_stmt] = STATE(369), + [sym_if_stmt] = STATE(369), + [sym_for_stmt] = STATE(369), + [sym_foreach_stmt] = STATE(369), + [sym_while_stmt] = STATE(369), + [sym_do_stmt] = STATE(369), + [sym_asm_block_stmt] = STATE(369), + [sym_ct_assert_stmt] = STATE(369), + [sym_ct_echo_stmt] = STATE(369), + [sym_ct_if_stmt] = STATE(369), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(369), + [sym_ct_for_stmt] = STATE(369), + [sym_ct_foreach_stmt] = STATE(369), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -25520,7 +25659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -25529,359 +25668,353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(841), + [anon_sym_SEMI] = ACTIONS(845), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_const] = ACTIONS(613), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(617), - [anon_sym_break] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(621), - [anon_sym_try] = ACTIONS(843), - [anon_sym_catch] = ACTIONS(843), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_nextcase] = ACTIONS(625), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(629), - [anon_sym_for] = ACTIONS(631), - [anon_sym_foreach] = ACTIONS(633), - [anon_sym_foreach_r] = ACTIONS(633), - [anon_sym_while] = ACTIONS(635), - [anon_sym_do] = ACTIONS(637), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_try] = ACTIONS(847), + [anon_sym_catch] = ACTIONS(847), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(639), - [anon_sym_DOLLARassert] = ACTIONS(641), - [anon_sym_DOLLARerror] = ACTIONS(643), - [anon_sym_DOLLARecho] = ACTIONS(645), - [anon_sym_DOLLARif] = ACTIONS(647), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(649), - [anon_sym_DOLLARforeach] = ACTIONS(653), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [70] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(70), [sym_doc_comment] = STATE(70), [sym_block_comment] = STATE(70), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1035), - [sym_const_declaration] = STATE(760), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(759), - [sym_expr_stmt] = STATE(759), - [sym_var_decl] = STATE(2146), - [sym_var_stmt] = STATE(759), - [sym_return_stmt] = STATE(759), - [sym_continue_stmt] = STATE(759), - [sym_break_stmt] = STATE(759), - [sym_defer_stmt] = STATE(759), - [sym_assert_stmt] = STATE(759), - [sym_declaration_stmt] = STATE(759), - [sym_nextcase_stmt] = STATE(759), - [sym_switch_stmt] = STATE(759), - [sym_if_stmt] = STATE(759), - [sym_for_stmt] = STATE(759), - [sym_foreach_stmt] = STATE(759), - [sym_while_stmt] = STATE(759), - [sym_do_stmt] = STATE(759), - [sym_asm_block_stmt] = STATE(759), - [sym_ct_assert_stmt] = STATE(759), - [sym_ct_echo_stmt] = STATE(759), - [sym_ct_if_stmt] = STATE(759), - [sym__ct_switch] = STATE(1430), - [sym_ct_switch_stmt] = STATE(759), - [sym_ct_for_stmt] = STATE(759), - [sym_ct_foreach_stmt] = STATE(759), - [sym__expr] = STATE(1155), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1433), - [sym_optional_type] = STATE(1886), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), [aux_sym_compound_stmt_repeat1] = STATE(70), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(249), - [sym_integer_literal] = ACTIONS(252), - [anon_sym_SQUOTE] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(258), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym_bytes_literal] = ACTIONS(264), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(267), - [sym_at_ident] = ACTIONS(270), - [sym_hash_ident] = ACTIONS(273), - [sym_type_ident] = ACTIONS(276), - [sym_ct_type_ident] = ACTIONS(279), - [sym_const_ident] = ACTIONS(282), - [sym_builtin] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(288), - [anon_sym_static] = ACTIONS(291), - [anon_sym_tlocal] = ACTIONS(291), - [anon_sym_SEMI] = ACTIONS(845), - [anon_sym_fn] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_const] = ACTIONS(851), - [anon_sym_var] = ACTIONS(308), - [anon_sym_return] = ACTIONS(854), - [anon_sym_continue] = ACTIONS(857), - [anon_sym_break] = ACTIONS(860), - [anon_sym_defer] = ACTIONS(863), - [anon_sym_assert] = ACTIONS(866), - [anon_sym_nextcase] = ACTIONS(869), - [anon_sym_switch] = ACTIONS(872), - [anon_sym_AMP_AMP] = ACTIONS(334), - [anon_sym_if] = ACTIONS(875), - [anon_sym_for] = ACTIONS(878), - [anon_sym_foreach] = ACTIONS(881), - [anon_sym_foreach_r] = ACTIONS(881), - [anon_sym_while] = ACTIONS(884), - [anon_sym_do] = ACTIONS(887), - [anon_sym_int] = ACTIONS(352), - [anon_sym_PLUS] = ACTIONS(288), - [anon_sym_DASH] = ACTIONS(288), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_asm] = ACTIONS(890), - [anon_sym_DOLLARassert] = ACTIONS(893), - [anon_sym_DOLLARerror] = ACTIONS(896), - [anon_sym_DOLLARecho] = ACTIONS(899), - [anon_sym_DOLLARif] = ACTIONS(902), - [anon_sym_DOLLARswitch] = ACTIONS(370), - [anon_sym_DOLLARfor] = ACTIONS(905), - [anon_sym_DOLLARforeach] = ACTIONS(908), - [anon_sym_DOLLARendforeach] = ACTIONS(326), - [anon_sym_DOLLARalignof] = ACTIONS(379), - [anon_sym_DOLLARextnameof] = ACTIONS(379), - [anon_sym_DOLLARnameof] = ACTIONS(379), - [anon_sym_DOLLARoffsetof] = ACTIONS(379), - [anon_sym_DOLLARqnameof] = ACTIONS(379), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(243), + [sym_integer_literal] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(255), + [sym_bytes_literal] = ACTIONS(258), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(261), + [sym_at_ident] = ACTIONS(264), + [sym_hash_ident] = ACTIONS(267), + [sym_type_ident] = ACTIONS(270), + [sym_ct_type_ident] = ACTIONS(273), + [sym_const_ident] = ACTIONS(276), + [sym_builtin] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_static] = ACTIONS(285), + [anon_sym_tlocal] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(849), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(852), + [anon_sym_const] = ACTIONS(855), + [anon_sym_var] = ACTIONS(302), + [anon_sym_return] = ACTIONS(858), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_break] = ACTIONS(864), + [anon_sym_defer] = ACTIONS(867), + [anon_sym_assert] = ACTIONS(870), + [anon_sym_nextcase] = ACTIONS(873), + [anon_sym_switch] = ACTIONS(876), + [anon_sym_AMP_AMP] = ACTIONS(328), + [anon_sym_if] = ACTIONS(879), + [anon_sym_for] = ACTIONS(882), + [anon_sym_foreach] = ACTIONS(885), + [anon_sym_foreach_r] = ACTIONS(885), + [anon_sym_while] = ACTIONS(888), + [anon_sym_do] = ACTIONS(891), + [anon_sym_int] = ACTIONS(346), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(328), + [anon_sym_asm] = ACTIONS(894), + [anon_sym_DOLLARassert] = ACTIONS(897), + [anon_sym_DOLLARerror] = ACTIONS(900), + [anon_sym_DOLLARecho] = ACTIONS(903), + [anon_sym_DOLLARif] = ACTIONS(906), + [anon_sym_DOLLARendif] = ACTIONS(320), + [anon_sym_DOLLARswitch] = ACTIONS(364), + [anon_sym_DOLLARfor] = ACTIONS(909), + [anon_sym_DOLLARforeach] = ACTIONS(912), + [anon_sym_DOLLARalignof] = ACTIONS(373), + [anon_sym_DOLLARextnameof] = ACTIONS(373), + [anon_sym_DOLLARnameof] = ACTIONS(373), + [anon_sym_DOLLARoffsetof] = ACTIONS(373), + [anon_sym_DOLLARqnameof] = ACTIONS(373), + [anon_sym_DOLLARvaconst] = ACTIONS(376), + [anon_sym_DOLLARvaarg] = ACTIONS(376), + [anon_sym_DOLLARvaref] = ACTIONS(376), + [anon_sym_DOLLARvaexpr] = ACTIONS(376), + [anon_sym_true] = ACTIONS(379), + [anon_sym_false] = ACTIONS(379), + [anon_sym_null] = ACTIONS(379), + [anon_sym_DOLLARvacount] = ACTIONS(379), [anon_sym_DOLLAReval] = ACTIONS(382), - [anon_sym_DOLLARdefined] = ACTIONS(382), + [anon_sym_DOLLARis_const] = ACTIONS(382), [anon_sym_DOLLARsizeof] = ACTIONS(382), [anon_sym_DOLLARstringify] = ACTIONS(382), - [anon_sym_DOLLARis_const] = ACTIONS(382), - [anon_sym_DOLLARvaconst] = ACTIONS(385), - [anon_sym_DOLLARvaarg] = ACTIONS(385), - [anon_sym_DOLLARvaref] = ACTIONS(385), - [anon_sym_DOLLARvaexpr] = ACTIONS(385), - [anon_sym_true] = ACTIONS(388), - [anon_sym_false] = ACTIONS(388), - [anon_sym_null] = ACTIONS(388), - [anon_sym_DOLLARvacount] = ACTIONS(388), - [anon_sym_DOLLARfeature] = ACTIONS(391), - [anon_sym_DOLLARand] = ACTIONS(382), - [anon_sym_DOLLARor] = ACTIONS(382), - [anon_sym_DOLLARassignable] = ACTIONS(394), - [anon_sym_DOLLARembed] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(334), - [anon_sym_TILDE] = ACTIONS(334), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_typeid] = ACTIONS(352), - [anon_sym_LBRACE_PIPE] = ACTIONS(400), - [anon_sym_void] = ACTIONS(352), - [anon_sym_bool] = ACTIONS(352), - [anon_sym_char] = ACTIONS(352), - [anon_sym_ichar] = ACTIONS(352), - [anon_sym_short] = ACTIONS(352), - [anon_sym_ushort] = ACTIONS(352), - [anon_sym_uint] = ACTIONS(352), - [anon_sym_long] = ACTIONS(352), - [anon_sym_ulong] = ACTIONS(352), - [anon_sym_int128] = ACTIONS(352), - [anon_sym_uint128] = ACTIONS(352), - [anon_sym_float] = ACTIONS(352), - [anon_sym_double] = ACTIONS(352), - [anon_sym_float16] = ACTIONS(352), - [anon_sym_bfloat16] = ACTIONS(352), - [anon_sym_float128] = ACTIONS(352), - [anon_sym_iptr] = ACTIONS(352), - [anon_sym_uptr] = ACTIONS(352), - [anon_sym_isz] = ACTIONS(352), - [anon_sym_usz] = ACTIONS(352), - [anon_sym_anyfault] = ACTIONS(352), - [anon_sym_any] = ACTIONS(352), - [anon_sym_DOLLARtypeof] = ACTIONS(403), - [anon_sym_DOLLARtypefrom] = ACTIONS(406), - [anon_sym_DOLLARvatype] = ACTIONS(406), - [anon_sym_DOLLARevaltype] = ACTIONS(406), - [sym_real_literal] = ACTIONS(252), + [anon_sym_DOLLARappend] = ACTIONS(385), + [anon_sym_DOLLARconcat] = ACTIONS(385), + [anon_sym_DOLLARdefined] = ACTIONS(385), + [anon_sym_DOLLARembed] = ACTIONS(385), + [anon_sym_DOLLARand] = ACTIONS(385), + [anon_sym_DOLLARor] = ACTIONS(385), + [anon_sym_DOLLARfeature] = ACTIONS(388), + [anon_sym_DOLLARassignable] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(328), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_PLUS_PLUS] = ACTIONS(328), + [anon_sym_DASH_DASH] = ACTIONS(328), + [anon_sym_typeid] = ACTIONS(346), + [anon_sym_LBRACE_PIPE] = ACTIONS(394), + [anon_sym_void] = ACTIONS(346), + [anon_sym_bool] = ACTIONS(346), + [anon_sym_char] = ACTIONS(346), + [anon_sym_ichar] = ACTIONS(346), + [anon_sym_short] = ACTIONS(346), + [anon_sym_ushort] = ACTIONS(346), + [anon_sym_uint] = ACTIONS(346), + [anon_sym_long] = ACTIONS(346), + [anon_sym_ulong] = ACTIONS(346), + [anon_sym_int128] = ACTIONS(346), + [anon_sym_uint128] = ACTIONS(346), + [anon_sym_float] = ACTIONS(346), + [anon_sym_double] = ACTIONS(346), + [anon_sym_float16] = ACTIONS(346), + [anon_sym_bfloat16] = ACTIONS(346), + [anon_sym_float128] = ACTIONS(346), + [anon_sym_iptr] = ACTIONS(346), + [anon_sym_uptr] = ACTIONS(346), + [anon_sym_isz] = ACTIONS(346), + [anon_sym_usz] = ACTIONS(346), + [anon_sym_anyfault] = ACTIONS(346), + [anon_sym_any] = ACTIONS(346), + [anon_sym_DOLLARtypeof] = ACTIONS(397), + [anon_sym_DOLLARtypefrom] = ACTIONS(397), + [anon_sym_DOLLARevaltype] = ACTIONS(397), + [anon_sym_DOLLARvatype] = ACTIONS(400), + [sym_real_literal] = ACTIONS(246), }, [71] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(71), [sym_doc_comment] = STATE(71), [sym_block_comment] = STATE(71), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(15), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -25889,7 +26022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -25898,175 +26031,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(915), [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [72] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(72), [sym_doc_comment] = STATE(72), [sym_block_comment] = STATE(72), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1042), - [sym_const_declaration] = STATE(506), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(386), - [sym_expr_stmt] = STATE(522), - [sym_var_decl] = STATE(2226), - [sym_var_stmt] = STATE(522), - [sym_return_stmt] = STATE(522), - [sym_continue_stmt] = STATE(522), - [sym_break_stmt] = STATE(522), - [sym_defer_stmt] = STATE(522), - [sym_assert_stmt] = STATE(522), - [sym_declaration_stmt] = STATE(522), - [sym_nextcase_stmt] = STATE(522), - [sym_switch_body] = STATE(386), - [sym_switch_stmt] = STATE(522), - [sym__if_body] = STATE(523), - [sym_if_stmt] = STATE(522), - [sym_for_stmt] = STATE(522), - [sym_foreach_stmt] = STATE(522), - [sym_while_stmt] = STATE(522), - [sym_do_stmt] = STATE(522), - [sym_asm_block_stmt] = STATE(522), - [sym_ct_assert_stmt] = STATE(522), - [sym_ct_echo_stmt] = STATE(522), - [sym_ct_if_stmt] = STATE(522), - [sym__ct_switch] = STATE(1559), - [sym_ct_switch_stmt] = STATE(522), - [sym_ct_for_stmt] = STATE(522), - [sym_ct_foreach_stmt] = STATE(522), - [sym__expr] = STATE(1140), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1553), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(462), + [sym_expr_stmt] = STATE(749), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(749), + [sym_return_stmt] = STATE(749), + [sym_continue_stmt] = STATE(749), + [sym_break_stmt] = STATE(749), + [sym_defer_stmt] = STATE(749), + [sym_assert_stmt] = STATE(749), + [sym_declaration_stmt] = STATE(749), + [sym_nextcase_stmt] = STATE(749), + [sym_switch_body] = STATE(462), + [sym_switch_stmt] = STATE(749), + [sym__if_body] = STATE(767), + [sym_if_stmt] = STATE(749), + [sym_for_stmt] = STATE(749), + [sym_foreach_stmt] = STATE(749), + [sym_while_stmt] = STATE(749), + [sym_do_stmt] = STATE(749), + [sym_asm_block_stmt] = STATE(749), + [sym_ct_assert_stmt] = STATE(749), + [sym_ct_echo_stmt] = STATE(749), + [sym_ct_if_stmt] = STATE(749), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(749), + [sym_ct_for_stmt] = STATE(749), + [sym_ct_foreach_stmt] = STATE(749), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -26074,7 +26204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -26083,174 +26213,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(913), + [anon_sym_SEMI] = ACTIONS(813), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(915), - [anon_sym_const] = ACTIONS(419), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_break] = ACTIONS(425), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_assert] = ACTIONS(429), - [anon_sym_nextcase] = ACTIONS(431), - [anon_sym_switch] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_foreach] = ACTIONS(439), - [anon_sym_foreach_r] = ACTIONS(439), - [anon_sym_while] = ACTIONS(441), - [anon_sym_do] = ACTIONS(443), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(815), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(445), - [anon_sym_DOLLARassert] = ACTIONS(447), - [anon_sym_DOLLARerror] = ACTIONS(449), - [anon_sym_DOLLARecho] = ACTIONS(451), - [anon_sym_DOLLARif] = ACTIONS(453), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(459), - [anon_sym_DOLLARforeach] = ACTIONS(461), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [73] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(73), [sym_doc_comment] = STATE(73), [sym_block_comment] = STATE(73), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1035), - [sym_const_declaration] = STATE(760), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(489), - [sym_expr_stmt] = STATE(753), - [sym_var_decl] = STATE(2146), - [sym_var_stmt] = STATE(753), - [sym_return_stmt] = STATE(753), - [sym_continue_stmt] = STATE(753), - [sym_break_stmt] = STATE(753), - [sym_defer_stmt] = STATE(753), - [sym_assert_stmt] = STATE(753), - [sym_declaration_stmt] = STATE(753), - [sym_nextcase_stmt] = STATE(753), - [sym_switch_body] = STATE(489), - [sym_switch_stmt] = STATE(753), - [sym__if_body] = STATE(722), - [sym_if_stmt] = STATE(753), - [sym_for_stmt] = STATE(753), - [sym_foreach_stmt] = STATE(753), - [sym_while_stmt] = STATE(753), - [sym_do_stmt] = STATE(753), - [sym_asm_block_stmt] = STATE(753), - [sym_ct_assert_stmt] = STATE(753), - [sym_ct_echo_stmt] = STATE(753), - [sym_ct_if_stmt] = STATE(753), - [sym__ct_switch] = STATE(1430), - [sym_ct_switch_stmt] = STATE(753), - [sym_ct_for_stmt] = STATE(753), - [sym_ct_foreach_stmt] = STATE(753), - [sym__expr] = STATE(1155), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1433), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(416), + [sym_expr_stmt] = STATE(546), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(546), + [sym_return_stmt] = STATE(546), + [sym_continue_stmt] = STATE(546), + [sym_break_stmt] = STATE(546), + [sym_defer_stmt] = STATE(546), + [sym_assert_stmt] = STATE(546), + [sym_declaration_stmt] = STATE(546), + [sym_nextcase_stmt] = STATE(546), + [sym_switch_body] = STATE(416), + [sym_switch_stmt] = STATE(546), + [sym__if_body] = STATE(573), + [sym_if_stmt] = STATE(546), + [sym_for_stmt] = STATE(546), + [sym_foreach_stmt] = STATE(546), + [sym_while_stmt] = STATE(546), + [sym_do_stmt] = STATE(546), + [sym_asm_block_stmt] = STATE(546), + [sym_ct_assert_stmt] = STATE(546), + [sym_ct_echo_stmt] = STATE(546), + [sym_ct_if_stmt] = STATE(546), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(546), + [sym_ct_for_stmt] = STATE(546), + [sym_ct_foreach_stmt] = STATE(546), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -26258,7 +26385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -26267,173 +26394,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(825), + [anon_sym_SEMI] = ACTIONS(839), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(827), - [anon_sym_const] = ACTIONS(663), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(667), - [anon_sym_break] = ACTIONS(669), - [anon_sym_defer] = ACTIONS(671), - [anon_sym_assert] = ACTIONS(673), - [anon_sym_nextcase] = ACTIONS(675), - [anon_sym_switch] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(679), - [anon_sym_for] = ACTIONS(681), - [anon_sym_foreach] = ACTIONS(683), - [anon_sym_foreach_r] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_do] = ACTIONS(687), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_const] = ACTIONS(411), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(689), - [anon_sym_DOLLARassert] = ACTIONS(691), - [anon_sym_DOLLARerror] = ACTIONS(693), - [anon_sym_DOLLARecho] = ACTIONS(695), - [anon_sym_DOLLARif] = ACTIONS(697), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(699), - [anon_sym_DOLLARforeach] = ACTIONS(701), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [74] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(74), [sym_doc_comment] = STATE(74), [sym_block_comment] = STATE(74), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(520), + [sym_expr_stmt] = STATE(520), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(520), + [sym_return_stmt] = STATE(520), + [sym_continue_stmt] = STATE(520), + [sym_break_stmt] = STATE(520), + [sym_defer_stmt] = STATE(520), + [sym_assert_stmt] = STATE(520), + [sym_declaration_stmt] = STATE(520), + [sym_nextcase_stmt] = STATE(520), + [sym_switch_stmt] = STATE(520), + [sym_if_stmt] = STATE(520), + [sym_for_stmt] = STATE(520), + [sym_foreach_stmt] = STATE(520), + [sym_while_stmt] = STATE(520), + [sym_do_stmt] = STATE(520), + [sym_asm_block_stmt] = STATE(520), + [sym_ct_assert_stmt] = STATE(520), + [sym_ct_echo_stmt] = STATE(520), + [sym_ct_if_stmt] = STATE(520), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(520), + [sym_ct_for_stmt] = STATE(520), + [sym_ct_foreach_stmt] = STATE(520), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -26441,7 +26564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -26450,175 +26573,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(917), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(409), + [anon_sym_const] = ACTIONS(411), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_try] = ACTIONS(919), + [anon_sym_catch] = ACTIONS(919), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_PIPE_RBRACE] = ACTIONS(917), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [75] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(75), [sym_doc_comment] = STATE(75), [sym_block_comment] = STATE(75), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(361), - [sym_expr_stmt] = STATE(411), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(411), - [sym_return_stmt] = STATE(411), - [sym_continue_stmt] = STATE(411), - [sym_break_stmt] = STATE(411), - [sym_defer_stmt] = STATE(411), - [sym_assert_stmt] = STATE(411), - [sym_declaration_stmt] = STATE(411), - [sym_nextcase_stmt] = STATE(411), - [sym_switch_body] = STATE(361), - [sym_switch_stmt] = STATE(411), - [sym__if_body] = STATE(412), - [sym_if_stmt] = STATE(411), - [sym_for_stmt] = STATE(411), - [sym_foreach_stmt] = STATE(411), - [sym_while_stmt] = STATE(411), - [sym_do_stmt] = STATE(411), - [sym_asm_block_stmt] = STATE(411), - [sym_ct_assert_stmt] = STATE(411), - [sym_ct_echo_stmt] = STATE(411), - [sym_ct_if_stmt] = STATE(411), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(411), - [sym_ct_for_stmt] = STATE(411), - [sym_ct_foreach_stmt] = STATE(411), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(76), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -26626,7 +26746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -26635,173 +26755,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(811), + [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(813), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(921), [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [76] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(76), [sym_doc_comment] = STATE(76), [sym_block_comment] = STATE(76), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(694), - [sym_expr_stmt] = STATE(694), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(694), - [sym_return_stmt] = STATE(694), - [sym_continue_stmt] = STATE(694), - [sym_break_stmt] = STATE(694), - [sym_defer_stmt] = STATE(694), - [sym_assert_stmt] = STATE(694), - [sym_declaration_stmt] = STATE(694), - [sym_nextcase_stmt] = STATE(694), - [sym_switch_stmt] = STATE(694), - [sym_if_stmt] = STATE(694), - [sym_for_stmt] = STATE(694), - [sym_foreach_stmt] = STATE(694), - [sym_while_stmt] = STATE(694), - [sym_do_stmt] = STATE(694), - [sym_asm_block_stmt] = STATE(694), - [sym_ct_assert_stmt] = STATE(694), - [sym_ct_echo_stmt] = STATE(694), - [sym_ct_if_stmt] = STATE(694), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(694), - [sym_ct_for_stmt] = STATE(694), - [sym_ct_foreach_stmt] = STATE(694), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(77), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(15), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -26809,7 +26927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -26818,359 +26936,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARendif] = ACTIONS(409), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [77] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(77), [sym_doc_comment] = STATE(77), [sym_block_comment] = STATE(77), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(694), - [sym_expr_stmt] = STATE(694), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(694), - [sym_return_stmt] = STATE(694), - [sym_continue_stmt] = STATE(694), - [sym_break_stmt] = STATE(694), - [sym_defer_stmt] = STATE(694), - [sym_assert_stmt] = STATE(694), - [sym_declaration_stmt] = STATE(694), - [sym_nextcase_stmt] = STATE(694), - [sym_switch_stmt] = STATE(694), - [sym_if_stmt] = STATE(694), - [sym_for_stmt] = STATE(694), - [sym_foreach_stmt] = STATE(694), - [sym_while_stmt] = STATE(694), - [sym_do_stmt] = STATE(694), - [sym_asm_block_stmt] = STATE(694), - [sym_ct_assert_stmt] = STATE(694), - [sym_ct_echo_stmt] = STATE(694), - [sym_ct_if_stmt] = STATE(694), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(694), - [sym_ct_for_stmt] = STATE(694), - [sym_ct_foreach_stmt] = STATE(694), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(77), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(249), - [sym_integer_literal] = ACTIONS(252), - [anon_sym_SQUOTE] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(258), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym_bytes_literal] = ACTIONS(264), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(267), - [sym_at_ident] = ACTIONS(270), - [sym_hash_ident] = ACTIONS(273), - [sym_type_ident] = ACTIONS(276), - [sym_ct_type_ident] = ACTIONS(279), - [sym_const_ident] = ACTIONS(282), - [sym_builtin] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(288), - [anon_sym_static] = ACTIONS(291), - [anon_sym_tlocal] = ACTIONS(291), - [anon_sym_SEMI] = ACTIONS(919), - [anon_sym_fn] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_const] = ACTIONS(925), - [anon_sym_var] = ACTIONS(308), - [anon_sym_return] = ACTIONS(928), - [anon_sym_continue] = ACTIONS(931), - [anon_sym_break] = ACTIONS(934), - [anon_sym_defer] = ACTIONS(937), - [anon_sym_assert] = ACTIONS(940), - [anon_sym_nextcase] = ACTIONS(943), - [anon_sym_switch] = ACTIONS(946), - [anon_sym_AMP_AMP] = ACTIONS(334), - [anon_sym_if] = ACTIONS(949), - [anon_sym_for] = ACTIONS(952), - [anon_sym_foreach] = ACTIONS(955), - [anon_sym_foreach_r] = ACTIONS(955), - [anon_sym_while] = ACTIONS(958), - [anon_sym_do] = ACTIONS(961), - [anon_sym_int] = ACTIONS(352), - [anon_sym_PLUS] = ACTIONS(288), - [anon_sym_DASH] = ACTIONS(288), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_asm] = ACTIONS(964), - [anon_sym_DOLLARassert] = ACTIONS(967), - [anon_sym_DOLLARerror] = ACTIONS(970), - [anon_sym_DOLLARecho] = ACTIONS(973), - [anon_sym_DOLLARif] = ACTIONS(976), - [anon_sym_DOLLARendif] = ACTIONS(326), - [anon_sym_DOLLARswitch] = ACTIONS(370), - [anon_sym_DOLLARfor] = ACTIONS(979), - [anon_sym_DOLLARforeach] = ACTIONS(982), - [anon_sym_DOLLARalignof] = ACTIONS(379), - [anon_sym_DOLLARextnameof] = ACTIONS(379), - [anon_sym_DOLLARnameof] = ACTIONS(379), - [anon_sym_DOLLARoffsetof] = ACTIONS(379), - [anon_sym_DOLLARqnameof] = ACTIONS(379), - [anon_sym_DOLLAReval] = ACTIONS(382), - [anon_sym_DOLLARdefined] = ACTIONS(382), - [anon_sym_DOLLARsizeof] = ACTIONS(382), - [anon_sym_DOLLARstringify] = ACTIONS(382), - [anon_sym_DOLLARis_const] = ACTIONS(382), - [anon_sym_DOLLARvaconst] = ACTIONS(385), - [anon_sym_DOLLARvaarg] = ACTIONS(385), - [anon_sym_DOLLARvaref] = ACTIONS(385), - [anon_sym_DOLLARvaexpr] = ACTIONS(385), - [anon_sym_true] = ACTIONS(388), - [anon_sym_false] = ACTIONS(388), - [anon_sym_null] = ACTIONS(388), - [anon_sym_DOLLARvacount] = ACTIONS(388), - [anon_sym_DOLLARfeature] = ACTIONS(391), - [anon_sym_DOLLARand] = ACTIONS(382), - [anon_sym_DOLLARor] = ACTIONS(382), - [anon_sym_DOLLARassignable] = ACTIONS(394), - [anon_sym_DOLLARembed] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(334), - [anon_sym_TILDE] = ACTIONS(334), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_typeid] = ACTIONS(352), - [anon_sym_LBRACE_PIPE] = ACTIONS(400), - [anon_sym_void] = ACTIONS(352), - [anon_sym_bool] = ACTIONS(352), - [anon_sym_char] = ACTIONS(352), - [anon_sym_ichar] = ACTIONS(352), - [anon_sym_short] = ACTIONS(352), - [anon_sym_ushort] = ACTIONS(352), - [anon_sym_uint] = ACTIONS(352), - [anon_sym_long] = ACTIONS(352), - [anon_sym_ulong] = ACTIONS(352), - [anon_sym_int128] = ACTIONS(352), - [anon_sym_uint128] = ACTIONS(352), - [anon_sym_float] = ACTIONS(352), - [anon_sym_double] = ACTIONS(352), - [anon_sym_float16] = ACTIONS(352), - [anon_sym_bfloat16] = ACTIONS(352), - [anon_sym_float128] = ACTIONS(352), - [anon_sym_iptr] = ACTIONS(352), - [anon_sym_uptr] = ACTIONS(352), - [anon_sym_isz] = ACTIONS(352), - [anon_sym_usz] = ACTIONS(352), - [anon_sym_anyfault] = ACTIONS(352), - [anon_sym_any] = ACTIONS(352), - [anon_sym_DOLLARtypeof] = ACTIONS(403), - [anon_sym_DOLLARtypefrom] = ACTIONS(406), - [anon_sym_DOLLARvatype] = ACTIONS(406), - [anon_sym_DOLLARevaltype] = ACTIONS(406), - [sym_real_literal] = ACTIONS(252), - }, - [78] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), - [sym_line_comment] = STATE(78), - [sym_doc_comment] = STATE(78), - [sym_block_comment] = STATE(78), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(485), - [sym_expr_stmt] = STATE(660), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(660), - [sym_return_stmt] = STATE(660), - [sym_continue_stmt] = STATE(660), - [sym_break_stmt] = STATE(660), - [sym_defer_stmt] = STATE(660), - [sym_assert_stmt] = STATE(660), - [sym_declaration_stmt] = STATE(660), - [sym_nextcase_stmt] = STATE(660), - [sym_switch_body] = STATE(485), - [sym_switch_stmt] = STATE(660), - [sym__if_body] = STATE(659), - [sym_if_stmt] = STATE(660), - [sym_for_stmt] = STATE(660), - [sym_foreach_stmt] = STATE(660), - [sym_while_stmt] = STATE(660), - [sym_do_stmt] = STATE(660), - [sym_asm_block_stmt] = STATE(660), - [sym_ct_assert_stmt] = STATE(660), - [sym_ct_echo_stmt] = STATE(660), - [sym_ct_if_stmt] = STATE(660), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(660), - [sym_ct_for_stmt] = STATE(660), - [sym_ct_foreach_stmt] = STATE(660), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(448), + [sym_expr_stmt] = STATE(676), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(676), + [sym_return_stmt] = STATE(676), + [sym_continue_stmt] = STATE(676), + [sym_break_stmt] = STATE(676), + [sym_defer_stmt] = STATE(676), + [sym_assert_stmt] = STATE(676), + [sym_declaration_stmt] = STATE(676), + [sym_nextcase_stmt] = STATE(676), + [sym_switch_body] = STATE(448), + [sym_switch_stmt] = STATE(676), + [sym__if_body] = STATE(694), + [sym_if_stmt] = STATE(676), + [sym_for_stmt] = STATE(676), + [sym_foreach_stmt] = STATE(676), + [sym_while_stmt] = STATE(676), + [sym_do_stmt] = STATE(676), + [sym_asm_block_stmt] = STATE(676), + [sym_ct_assert_stmt] = STATE(676), + [sym_ct_echo_stmt] = STATE(676), + [sym_ct_if_stmt] = STATE(676), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(676), + [sym_ct_for_stmt] = STATE(676), + [sym_ct_foreach_stmt] = STATE(676), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -27178,7 +27109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -27187,173 +27118,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(835), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(837), + [anon_sym_const] = ACTIONS(571), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [79] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), - [sym_line_comment] = STATE(79), - [sym_doc_comment] = STATE(79), - [sym_block_comment] = STATE(79), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(74), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [78] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(78), + [sym_doc_comment] = STATE(78), + [sym_block_comment] = STATE(78), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(586), + [sym_expr_stmt] = STATE(586), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(586), + [sym_return_stmt] = STATE(586), + [sym_continue_stmt] = STATE(586), + [sym_break_stmt] = STATE(586), + [sym_defer_stmt] = STATE(586), + [sym_assert_stmt] = STATE(586), + [sym_declaration_stmt] = STATE(586), + [sym_nextcase_stmt] = STATE(586), + [sym_switch_stmt] = STATE(586), + [sym_if_stmt] = STATE(586), + [sym_for_stmt] = STATE(586), + [sym_foreach_stmt] = STATE(586), + [sym_while_stmt] = STATE(586), + [sym_do_stmt] = STATE(586), + [sym_asm_block_stmt] = STATE(586), + [sym_ct_assert_stmt] = STATE(586), + [sym_ct_echo_stmt] = STATE(586), + [sym_ct_if_stmt] = STATE(586), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(586), + [sym_ct_for_stmt] = STATE(586), + [sym_ct_foreach_stmt] = STATE(586), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_compound_stmt_repeat1] = STATE(81), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -27361,7 +27289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -27370,175 +27298,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(661), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARendfor] = ACTIONS(479), + [anon_sym_DOLLARforeach] = ACTIONS(705), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_PIPE_RBRACE] = ACTIONS(989), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [80] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), - [sym_line_comment] = STATE(80), - [sym_doc_comment] = STATE(80), - [sym_block_comment] = STATE(80), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1033), - [sym_const_declaration] = STATE(475), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(363), - [sym_expr_stmt] = STATE(435), - [sym_var_decl] = STATE(1953), - [sym_var_stmt] = STATE(435), - [sym_return_stmt] = STATE(435), - [sym_continue_stmt] = STATE(435), - [sym_break_stmt] = STATE(435), - [sym_defer_stmt] = STATE(435), - [sym_assert_stmt] = STATE(435), - [sym_declaration_stmt] = STATE(435), - [sym_nextcase_stmt] = STATE(435), - [sym_switch_body] = STATE(363), - [sym_switch_stmt] = STATE(435), - [sym__if_body] = STATE(437), - [sym_if_stmt] = STATE(435), - [sym_for_stmt] = STATE(435), - [sym_foreach_stmt] = STATE(435), - [sym_while_stmt] = STATE(435), - [sym_do_stmt] = STATE(435), - [sym_asm_block_stmt] = STATE(435), - [sym_ct_assert_stmt] = STATE(435), - [sym_ct_echo_stmt] = STATE(435), - [sym_ct_if_stmt] = STATE(435), - [sym__ct_switch] = STATE(1474), - [sym_ct_switch_stmt] = STATE(435), - [sym_ct_for_stmt] = STATE(435), - [sym_ct_foreach_stmt] = STATE(435), - [sym__expr] = STATE(1153), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1475), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [79] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(79), + [sym_doc_comment] = STATE(79), + [sym_block_comment] = STATE(79), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(15), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -27546,7 +27470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -27555,174 +27479,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_const] = ACTIONS(205), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_break] = ACTIONS(211), - [anon_sym_defer] = ACTIONS(213), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_nextcase] = ACTIONS(217), - [anon_sym_switch] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_foreach] = ACTIONS(225), - [anon_sym_foreach_r] = ACTIONS(225), - [anon_sym_while] = ACTIONS(227), - [anon_sym_do] = ACTIONS(229), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(231), - [anon_sym_DOLLARassert] = ACTIONS(233), - [anon_sym_DOLLARerror] = ACTIONS(235), - [anon_sym_DOLLARecho] = ACTIONS(237), - [anon_sym_DOLLARif] = ACTIONS(239), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(243), - [anon_sym_DOLLARforeach] = ACTIONS(245), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [81] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), - [sym_line_comment] = STATE(81), - [sym_doc_comment] = STATE(81), - [sym_block_comment] = STATE(81), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1042), - [sym_const_declaration] = STATE(506), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(386), - [sym_expr_stmt] = STATE(522), - [sym_var_decl] = STATE(2226), - [sym_var_stmt] = STATE(522), - [sym_return_stmt] = STATE(522), - [sym_continue_stmt] = STATE(522), - [sym_break_stmt] = STATE(522), - [sym_defer_stmt] = STATE(522), - [sym_assert_stmt] = STATE(522), - [sym_declaration_stmt] = STATE(522), - [sym_nextcase_stmt] = STATE(522), - [sym_switch_body] = STATE(386), - [sym_switch_stmt] = STATE(522), - [sym__if_body] = STATE(536), - [sym_if_stmt] = STATE(522), - [sym_for_stmt] = STATE(522), - [sym_foreach_stmt] = STATE(522), - [sym_while_stmt] = STATE(522), - [sym_do_stmt] = STATE(522), - [sym_asm_block_stmt] = STATE(522), - [sym_ct_assert_stmt] = STATE(522), - [sym_ct_echo_stmt] = STATE(522), - [sym_ct_if_stmt] = STATE(522), - [sym__ct_switch] = STATE(1559), - [sym_ct_switch_stmt] = STATE(522), - [sym_ct_for_stmt] = STATE(522), - [sym_ct_foreach_stmt] = STATE(522), - [sym__expr] = STATE(1140), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1553), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [80] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(80), + [sym_doc_comment] = STATE(80), + [sym_block_comment] = STATE(80), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(338), + [sym_expr_stmt] = STATE(348), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(348), + [sym_return_stmt] = STATE(348), + [sym_continue_stmt] = STATE(348), + [sym_break_stmt] = STATE(348), + [sym_defer_stmt] = STATE(348), + [sym_assert_stmt] = STATE(348), + [sym_declaration_stmt] = STATE(348), + [sym_nextcase_stmt] = STATE(348), + [sym_switch_body] = STATE(338), + [sym_switch_stmt] = STATE(348), + [sym__if_body] = STATE(349), + [sym_if_stmt] = STATE(348), + [sym_for_stmt] = STATE(348), + [sym_foreach_stmt] = STATE(348), + [sym_while_stmt] = STATE(348), + [sym_do_stmt] = STATE(348), + [sym_asm_block_stmt] = STATE(348), + [sym_ct_assert_stmt] = STATE(348), + [sym_ct_echo_stmt] = STATE(348), + [sym_ct_if_stmt] = STATE(348), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(348), + [sym_ct_for_stmt] = STATE(348), + [sym_ct_foreach_stmt] = STATE(348), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -27730,7 +27652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -27739,173 +27661,352 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(913), + [anon_sym_SEMI] = ACTIONS(823), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(915), - [anon_sym_const] = ACTIONS(419), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_break] = ACTIONS(425), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_assert] = ACTIONS(429), - [anon_sym_nextcase] = ACTIONS(431), - [anon_sym_switch] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_foreach] = ACTIONS(439), - [anon_sym_foreach_r] = ACTIONS(439), - [anon_sym_while] = ACTIONS(441), - [anon_sym_do] = ACTIONS(443), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(445), - [anon_sym_DOLLARassert] = ACTIONS(447), - [anon_sym_DOLLARerror] = ACTIONS(449), - [anon_sym_DOLLARecho] = ACTIONS(451), - [anon_sym_DOLLARif] = ACTIONS(453), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(459), - [anon_sym_DOLLARforeach] = ACTIONS(461), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, + [81] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(81), + [sym_doc_comment] = STATE(81), + [sym_block_comment] = STATE(81), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(586), + [sym_expr_stmt] = STATE(586), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(586), + [sym_return_stmt] = STATE(586), + [sym_continue_stmt] = STATE(586), + [sym_break_stmt] = STATE(586), + [sym_defer_stmt] = STATE(586), + [sym_assert_stmt] = STATE(586), + [sym_declaration_stmt] = STATE(586), + [sym_nextcase_stmt] = STATE(586), + [sym_switch_stmt] = STATE(586), + [sym_if_stmt] = STATE(586), + [sym_for_stmt] = STATE(586), + [sym_foreach_stmt] = STATE(586), + [sym_while_stmt] = STATE(586), + [sym_do_stmt] = STATE(586), + [sym_asm_block_stmt] = STATE(586), + [sym_ct_assert_stmt] = STATE(586), + [sym_ct_echo_stmt] = STATE(586), + [sym_ct_if_stmt] = STATE(586), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(586), + [sym_ct_for_stmt] = STATE(586), + [sym_ct_foreach_stmt] = STATE(586), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_compound_stmt_repeat1] = STATE(81), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(243), + [sym_integer_literal] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(255), + [sym_bytes_literal] = ACTIONS(258), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(261), + [sym_at_ident] = ACTIONS(264), + [sym_hash_ident] = ACTIONS(267), + [sym_type_ident] = ACTIONS(270), + [sym_ct_type_ident] = ACTIONS(273), + [sym_const_ident] = ACTIONS(276), + [sym_builtin] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_static] = ACTIONS(285), + [anon_sym_tlocal] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(927), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_const] = ACTIONS(933), + [anon_sym_var] = ACTIONS(302), + [anon_sym_return] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_break] = ACTIONS(942), + [anon_sym_defer] = ACTIONS(945), + [anon_sym_assert] = ACTIONS(948), + [anon_sym_nextcase] = ACTIONS(951), + [anon_sym_switch] = ACTIONS(954), + [anon_sym_AMP_AMP] = ACTIONS(328), + [anon_sym_if] = ACTIONS(957), + [anon_sym_for] = ACTIONS(960), + [anon_sym_foreach] = ACTIONS(963), + [anon_sym_foreach_r] = ACTIONS(963), + [anon_sym_while] = ACTIONS(966), + [anon_sym_do] = ACTIONS(969), + [anon_sym_int] = ACTIONS(346), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(328), + [anon_sym_asm] = ACTIONS(972), + [anon_sym_DOLLARassert] = ACTIONS(975), + [anon_sym_DOLLARerror] = ACTIONS(978), + [anon_sym_DOLLARecho] = ACTIONS(981), + [anon_sym_DOLLARif] = ACTIONS(984), + [anon_sym_DOLLARswitch] = ACTIONS(364), + [anon_sym_DOLLARfor] = ACTIONS(987), + [anon_sym_DOLLARendfor] = ACTIONS(320), + [anon_sym_DOLLARforeach] = ACTIONS(990), + [anon_sym_DOLLARalignof] = ACTIONS(373), + [anon_sym_DOLLARextnameof] = ACTIONS(373), + [anon_sym_DOLLARnameof] = ACTIONS(373), + [anon_sym_DOLLARoffsetof] = ACTIONS(373), + [anon_sym_DOLLARqnameof] = ACTIONS(373), + [anon_sym_DOLLARvaconst] = ACTIONS(376), + [anon_sym_DOLLARvaarg] = ACTIONS(376), + [anon_sym_DOLLARvaref] = ACTIONS(376), + [anon_sym_DOLLARvaexpr] = ACTIONS(376), + [anon_sym_true] = ACTIONS(379), + [anon_sym_false] = ACTIONS(379), + [anon_sym_null] = ACTIONS(379), + [anon_sym_DOLLARvacount] = ACTIONS(379), + [anon_sym_DOLLAReval] = ACTIONS(382), + [anon_sym_DOLLARis_const] = ACTIONS(382), + [anon_sym_DOLLARsizeof] = ACTIONS(382), + [anon_sym_DOLLARstringify] = ACTIONS(382), + [anon_sym_DOLLARappend] = ACTIONS(385), + [anon_sym_DOLLARconcat] = ACTIONS(385), + [anon_sym_DOLLARdefined] = ACTIONS(385), + [anon_sym_DOLLARembed] = ACTIONS(385), + [anon_sym_DOLLARand] = ACTIONS(385), + [anon_sym_DOLLARor] = ACTIONS(385), + [anon_sym_DOLLARfeature] = ACTIONS(388), + [anon_sym_DOLLARassignable] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(328), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_PLUS_PLUS] = ACTIONS(328), + [anon_sym_DASH_DASH] = ACTIONS(328), + [anon_sym_typeid] = ACTIONS(346), + [anon_sym_LBRACE_PIPE] = ACTIONS(394), + [anon_sym_void] = ACTIONS(346), + [anon_sym_bool] = ACTIONS(346), + [anon_sym_char] = ACTIONS(346), + [anon_sym_ichar] = ACTIONS(346), + [anon_sym_short] = ACTIONS(346), + [anon_sym_ushort] = ACTIONS(346), + [anon_sym_uint] = ACTIONS(346), + [anon_sym_long] = ACTIONS(346), + [anon_sym_ulong] = ACTIONS(346), + [anon_sym_int128] = ACTIONS(346), + [anon_sym_uint128] = ACTIONS(346), + [anon_sym_float] = ACTIONS(346), + [anon_sym_double] = ACTIONS(346), + [anon_sym_float16] = ACTIONS(346), + [anon_sym_bfloat16] = ACTIONS(346), + [anon_sym_float128] = ACTIONS(346), + [anon_sym_iptr] = ACTIONS(346), + [anon_sym_uptr] = ACTIONS(346), + [anon_sym_isz] = ACTIONS(346), + [anon_sym_usz] = ACTIONS(346), + [anon_sym_anyfault] = ACTIONS(346), + [anon_sym_any] = ACTIONS(346), + [anon_sym_DOLLARtypeof] = ACTIONS(397), + [anon_sym_DOLLARtypefrom] = ACTIONS(397), + [anon_sym_DOLLARevaltype] = ACTIONS(397), + [anon_sym_DOLLARvatype] = ACTIONS(400), + [sym_real_literal] = ACTIONS(246), + }, [82] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(82), [sym_doc_comment] = STATE(82), [sym_block_comment] = STATE(82), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(341), + [sym_expr_stmt] = STATE(472), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(472), + [sym_return_stmt] = STATE(472), + [sym_continue_stmt] = STATE(472), + [sym_break_stmt] = STATE(472), + [sym_defer_stmt] = STATE(472), + [sym_assert_stmt] = STATE(472), + [sym_declaration_stmt] = STATE(472), + [sym_nextcase_stmt] = STATE(472), + [sym_switch_body] = STATE(341), + [sym_switch_stmt] = STATE(472), + [sym__if_body] = STATE(429), + [sym_if_stmt] = STATE(472), + [sym_for_stmt] = STATE(472), + [sym_foreach_stmt] = STATE(472), + [sym_while_stmt] = STATE(472), + [sym_do_stmt] = STATE(472), + [sym_asm_block_stmt] = STATE(472), + [sym_ct_assert_stmt] = STATE(472), + [sym_ct_echo_stmt] = STATE(472), + [sym_ct_if_stmt] = STATE(472), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(472), + [sym_ct_for_stmt] = STATE(472), + [sym_ct_foreach_stmt] = STATE(472), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -27913,7 +28014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -27922,174 +28023,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(993), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_const] = ACTIONS(201), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_defer] = ACTIONS(209), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_nextcase] = ACTIONS(213), + [anon_sym_switch] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_foreach] = ACTIONS(221), + [anon_sym_foreach_r] = ACTIONS(221), + [anon_sym_while] = ACTIONS(223), + [anon_sym_do] = ACTIONS(225), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(227), + [anon_sym_DOLLARassert] = ACTIONS(229), + [anon_sym_DOLLARerror] = ACTIONS(231), + [anon_sym_DOLLARecho] = ACTIONS(233), + [anon_sym_DOLLARif] = ACTIONS(235), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(239), + [anon_sym_DOLLARforeach] = ACTIONS(241), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [83] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(83), [sym_doc_comment] = STATE(83), [sym_block_comment] = STATE(83), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(82), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(591), + [sym_expr_stmt] = STATE(591), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(591), + [sym_return_stmt] = STATE(591), + [sym_continue_stmt] = STATE(591), + [sym_break_stmt] = STATE(591), + [sym_defer_stmt] = STATE(591), + [sym_assert_stmt] = STATE(591), + [sym_declaration_stmt] = STATE(591), + [sym_nextcase_stmt] = STATE(591), + [sym_switch_stmt] = STATE(591), + [sym_if_stmt] = STATE(591), + [sym_for_stmt] = STATE(591), + [sym_foreach_stmt] = STATE(591), + [sym_while_stmt] = STATE(591), + [sym_do_stmt] = STATE(591), + [sym_asm_block_stmt] = STATE(591), + [sym_ct_assert_stmt] = STATE(591), + [sym_ct_echo_stmt] = STATE(591), + [sym_ct_if_stmt] = STATE(591), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(591), + [sym_ct_for_stmt] = STATE(591), + [sym_ct_foreach_stmt] = STATE(591), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -28097,7 +28193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -28106,174 +28202,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(997), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_try] = ACTIONS(999), + [anon_sym_catch] = ACTIONS(999), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARforeach] = ACTIONS(705), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [84] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(84), [sym_doc_comment] = STATE(84), [sym_block_comment] = STATE(84), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(16), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(431), + [sym_expr_stmt] = STATE(606), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(606), + [sym_return_stmt] = STATE(606), + [sym_continue_stmt] = STATE(606), + [sym_break_stmt] = STATE(606), + [sym_defer_stmt] = STATE(606), + [sym_assert_stmt] = STATE(606), + [sym_declaration_stmt] = STATE(606), + [sym_nextcase_stmt] = STATE(606), + [sym_switch_body] = STATE(431), + [sym_switch_stmt] = STATE(606), + [sym__if_body] = STATE(622), + [sym_if_stmt] = STATE(606), + [sym_for_stmt] = STATE(606), + [sym_foreach_stmt] = STATE(606), + [sym_while_stmt] = STATE(606), + [sym_do_stmt] = STATE(606), + [sym_asm_block_stmt] = STATE(606), + [sym_ct_assert_stmt] = STATE(606), + [sym_ct_echo_stmt] = STATE(606), + [sym_ct_if_stmt] = STATE(606), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(606), + [sym_ct_for_stmt] = STATE(606), + [sym_ct_foreach_stmt] = STATE(606), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -28281,7 +28376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -28290,173 +28385,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(1001), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_const] = ACTIONS(665), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARforeach] = ACTIONS(705), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [85] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(85), [sym_doc_comment] = STATE(85), [sym_block_comment] = STATE(85), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1033), - [sym_const_declaration] = STATE(475), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(458), - [sym_expr_stmt] = STATE(458), - [sym_var_decl] = STATE(1953), - [sym_var_stmt] = STATE(458), - [sym_return_stmt] = STATE(458), - [sym_continue_stmt] = STATE(458), - [sym_break_stmt] = STATE(458), - [sym_defer_stmt] = STATE(458), - [sym_assert_stmt] = STATE(458), - [sym_declaration_stmt] = STATE(458), - [sym_nextcase_stmt] = STATE(458), - [sym_switch_stmt] = STATE(458), - [sym_if_stmt] = STATE(458), - [sym_for_stmt] = STATE(458), - [sym_foreach_stmt] = STATE(458), - [sym_while_stmt] = STATE(458), - [sym_do_stmt] = STATE(458), - [sym_asm_block_stmt] = STATE(458), - [sym_ct_assert_stmt] = STATE(458), - [sym_ct_echo_stmt] = STATE(458), - [sym_ct_if_stmt] = STATE(458), - [sym__ct_switch] = STATE(1474), - [sym_ct_switch_stmt] = STATE(458), - [sym_ct_for_stmt] = STATE(458), - [sym_ct_foreach_stmt] = STATE(458), - [sym__expr] = STATE(1153), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1475), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(646), + [sym_expr_stmt] = STATE(646), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(646), + [sym_return_stmt] = STATE(646), + [sym_continue_stmt] = STATE(646), + [sym_break_stmt] = STATE(646), + [sym_defer_stmt] = STATE(646), + [sym_assert_stmt] = STATE(646), + [sym_declaration_stmt] = STATE(646), + [sym_nextcase_stmt] = STATE(646), + [sym_switch_stmt] = STATE(646), + [sym_if_stmt] = STATE(646), + [sym_for_stmt] = STATE(646), + [sym_foreach_stmt] = STATE(646), + [sym_while_stmt] = STATE(646), + [sym_do_stmt] = STATE(646), + [sym_asm_block_stmt] = STATE(646), + [sym_ct_assert_stmt] = STATE(646), + [sym_ct_echo_stmt] = STATE(646), + [sym_ct_if_stmt] = STATE(646), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(646), + [sym_ct_for_stmt] = STATE(646), + [sym_ct_foreach_stmt] = STATE(646), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_compound_stmt_repeat1] = STATE(93), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -28464,7 +28556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -28473,360 +28565,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(567), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_const] = ACTIONS(205), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_break] = ACTIONS(211), - [anon_sym_defer] = ACTIONS(213), - [anon_sym_try] = ACTIONS(1003), - [anon_sym_catch] = ACTIONS(1003), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_nextcase] = ACTIONS(217), - [anon_sym_switch] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_foreach] = ACTIONS(225), - [anon_sym_foreach_r] = ACTIONS(225), - [anon_sym_while] = ACTIONS(227), - [anon_sym_do] = ACTIONS(229), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(231), - [anon_sym_DOLLARassert] = ACTIONS(233), - [anon_sym_DOLLARerror] = ACTIONS(235), - [anon_sym_DOLLARecho] = ACTIONS(237), - [anon_sym_DOLLARif] = ACTIONS(239), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(243), - [anon_sym_DOLLARforeach] = ACTIONS(245), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), + [anon_sym_DOLLARendforeach] = ACTIONS(479), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [86] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(86), [sym_doc_comment] = STATE(86), [sym_block_comment] = STATE(86), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(84), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_static] = ACTIONS(93), - [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), - [sym_real_literal] = ACTIONS(63), - }, - [87] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), - [sym_line_comment] = STATE(87), - [sym_doc_comment] = STATE(87), - [sym_block_comment] = STATE(87), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), [sym_compound_stmt] = STATE(485), - [sym_expr_stmt] = STATE(660), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(660), - [sym_return_stmt] = STATE(660), - [sym_continue_stmt] = STATE(660), - [sym_break_stmt] = STATE(660), - [sym_defer_stmt] = STATE(660), - [sym_assert_stmt] = STATE(660), - [sym_declaration_stmt] = STATE(660), - [sym_nextcase_stmt] = STATE(660), - [sym_switch_body] = STATE(485), - [sym_switch_stmt] = STATE(660), - [sym__if_body] = STATE(634), - [sym_if_stmt] = STATE(660), - [sym_for_stmt] = STATE(660), - [sym_foreach_stmt] = STATE(660), - [sym_while_stmt] = STATE(660), - [sym_do_stmt] = STATE(660), - [sym_asm_block_stmt] = STATE(660), - [sym_ct_assert_stmt] = STATE(660), - [sym_ct_echo_stmt] = STATE(660), - [sym_ct_if_stmt] = STATE(660), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(660), - [sym_ct_for_stmt] = STATE(660), - [sym_ct_foreach_stmt] = STATE(660), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_expr_stmt] = STATE(485), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(485), + [sym_return_stmt] = STATE(485), + [sym_continue_stmt] = STATE(485), + [sym_break_stmt] = STATE(485), + [sym_defer_stmt] = STATE(485), + [sym_assert_stmt] = STATE(485), + [sym_declaration_stmt] = STATE(485), + [sym_nextcase_stmt] = STATE(485), + [sym_switch_stmt] = STATE(485), + [sym_if_stmt] = STATE(485), + [sym_for_stmt] = STATE(485), + [sym_foreach_stmt] = STATE(485), + [sym_while_stmt] = STATE(485), + [sym_do_stmt] = STATE(485), + [sym_asm_block_stmt] = STATE(485), + [sym_ct_assert_stmt] = STATE(485), + [sym_ct_echo_stmt] = STATE(485), + [sym_ct_if_stmt] = STATE(485), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(485), + [sym_ct_for_stmt] = STATE(485), + [sym_ct_foreach_stmt] = STATE(485), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -28834,7 +28736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -28843,173 +28745,353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_const] = ACTIONS(201), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_defer] = ACTIONS(209), + [anon_sym_try] = ACTIONS(1007), + [anon_sym_catch] = ACTIONS(1007), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_nextcase] = ACTIONS(213), + [anon_sym_switch] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_foreach] = ACTIONS(221), + [anon_sym_foreach_r] = ACTIONS(221), + [anon_sym_while] = ACTIONS(223), + [anon_sym_do] = ACTIONS(225), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(227), + [anon_sym_DOLLARassert] = ACTIONS(229), + [anon_sym_DOLLARerror] = ACTIONS(231), + [anon_sym_DOLLARecho] = ACTIONS(233), + [anon_sym_DOLLARif] = ACTIONS(235), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(239), + [anon_sym_DOLLARforeach] = ACTIONS(241), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), + [sym_real_literal] = ACTIONS(63), + }, + [87] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(87), + [sym_doc_comment] = STATE(87), + [sym_block_comment] = STATE(87), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(88), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), + [sym_integer_literal] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_BQUOTE] = ACTIONS(69), + [sym_bytes_literal] = ACTIONS(71), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(73), + [sym_at_ident] = ACTIONS(75), + [sym_hash_ident] = ACTIONS(77), + [sym_type_ident] = ACTIONS(79), + [sym_ct_type_ident] = ACTIONS(81), + [sym_const_ident] = ACTIONS(83), + [sym_builtin] = ACTIONS(63), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_static] = ACTIONS(93), + [anon_sym_tlocal] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_fn] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(1009), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), + [anon_sym_DOLLARfeature] = ACTIONS(165), + [anon_sym_DOLLARassignable] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [88] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(88), [sym_doc_comment] = STATE(88), [sym_block_comment] = STATE(88), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1034), - [sym_const_declaration] = STATE(600), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(599), - [sym_expr_stmt] = STATE(599), - [sym_var_decl] = STATE(2022), - [sym_var_stmt] = STATE(599), - [sym_return_stmt] = STATE(599), - [sym_continue_stmt] = STATE(599), - [sym_break_stmt] = STATE(599), - [sym_defer_stmt] = STATE(599), - [sym_assert_stmt] = STATE(599), - [sym_declaration_stmt] = STATE(599), - [sym_nextcase_stmt] = STATE(599), - [sym_switch_stmt] = STATE(599), - [sym_if_stmt] = STATE(599), - [sym_for_stmt] = STATE(599), - [sym_foreach_stmt] = STATE(599), - [sym_while_stmt] = STATE(599), - [sym_do_stmt] = STATE(599), - [sym_asm_block_stmt] = STATE(599), - [sym_ct_assert_stmt] = STATE(599), - [sym_ct_echo_stmt] = STATE(599), - [sym_ct_if_stmt] = STATE(599), - [sym__ct_switch] = STATE(1414), - [sym_ct_switch_stmt] = STATE(599), - [sym_ct_for_stmt] = STATE(599), - [sym_ct_foreach_stmt] = STATE(599), - [sym__expr] = STATE(1160), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1415), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(90), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(15), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -29017,7 +29099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -29026,174 +29108,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_const] = ACTIONS(613), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(617), - [anon_sym_break] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(621), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_nextcase] = ACTIONS(625), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(629), - [anon_sym_for] = ACTIONS(631), - [anon_sym_foreach] = ACTIONS(633), - [anon_sym_foreach_r] = ACTIONS(633), - [anon_sym_while] = ACTIONS(635), - [anon_sym_do] = ACTIONS(637), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(639), - [anon_sym_DOLLARassert] = ACTIONS(641), - [anon_sym_DOLLARerror] = ACTIONS(643), - [anon_sym_DOLLARecho] = ACTIONS(645), - [anon_sym_DOLLARif] = ACTIONS(647), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(649), - [anon_sym_DOLLARendfor] = ACTIONS(409), - [anon_sym_DOLLARforeach] = ACTIONS(653), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [89] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(89), [sym_doc_comment] = STATE(89), [sym_block_comment] = STATE(89), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(71), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(341), + [sym_expr_stmt] = STATE(472), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(472), + [sym_return_stmt] = STATE(472), + [sym_continue_stmt] = STATE(472), + [sym_break_stmt] = STATE(472), + [sym_defer_stmt] = STATE(472), + [sym_assert_stmt] = STATE(472), + [sym_declaration_stmt] = STATE(472), + [sym_nextcase_stmt] = STATE(472), + [sym_switch_body] = STATE(341), + [sym_switch_stmt] = STATE(472), + [sym__if_body] = STATE(473), + [sym_if_stmt] = STATE(472), + [sym_for_stmt] = STATE(472), + [sym_foreach_stmt] = STATE(472), + [sym_while_stmt] = STATE(472), + [sym_do_stmt] = STATE(472), + [sym_asm_block_stmt] = STATE(472), + [sym_ct_assert_stmt] = STATE(472), + [sym_ct_echo_stmt] = STATE(472), + [sym_ct_if_stmt] = STATE(472), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(472), + [sym_ct_for_stmt] = STATE(472), + [sym_ct_foreach_stmt] = STATE(472), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -29201,7 +29281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -29210,357 +29290,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(993), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(1007), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_const] = ACTIONS(201), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_defer] = ACTIONS(209), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_nextcase] = ACTIONS(213), + [anon_sym_switch] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_foreach] = ACTIONS(221), + [anon_sym_foreach_r] = ACTIONS(221), + [anon_sym_while] = ACTIONS(223), + [anon_sym_do] = ACTIONS(225), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(227), + [anon_sym_DOLLARassert] = ACTIONS(229), + [anon_sym_DOLLARerror] = ACTIONS(231), + [anon_sym_DOLLARecho] = ACTIONS(233), + [anon_sym_DOLLARif] = ACTIONS(235), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(239), + [anon_sym_DOLLARforeach] = ACTIONS(241), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [90] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(90), [sym_doc_comment] = STATE(90), [sym_block_comment] = STATE(90), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1034), - [sym_const_declaration] = STATE(600), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(599), - [sym_expr_stmt] = STATE(599), - [sym_var_decl] = STATE(2022), - [sym_var_stmt] = STATE(599), - [sym_return_stmt] = STATE(599), - [sym_continue_stmt] = STATE(599), - [sym_break_stmt] = STATE(599), - [sym_defer_stmt] = STATE(599), - [sym_assert_stmt] = STATE(599), - [sym_declaration_stmt] = STATE(599), - [sym_nextcase_stmt] = STATE(599), - [sym_switch_stmt] = STATE(599), - [sym_if_stmt] = STATE(599), - [sym_for_stmt] = STATE(599), - [sym_foreach_stmt] = STATE(599), - [sym_while_stmt] = STATE(599), - [sym_do_stmt] = STATE(599), - [sym_asm_block_stmt] = STATE(599), - [sym_ct_assert_stmt] = STATE(599), - [sym_ct_echo_stmt] = STATE(599), - [sym_ct_if_stmt] = STATE(599), - [sym__ct_switch] = STATE(1414), - [sym_ct_switch_stmt] = STATE(599), - [sym_ct_for_stmt] = STATE(599), - [sym_ct_foreach_stmt] = STATE(599), - [sym__expr] = STATE(1160), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1415), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(90), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(249), - [sym_integer_literal] = ACTIONS(252), - [anon_sym_SQUOTE] = ACTIONS(255), - [anon_sym_DQUOTE] = ACTIONS(258), - [anon_sym_BQUOTE] = ACTIONS(261), - [sym_bytes_literal] = ACTIONS(264), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(267), - [sym_at_ident] = ACTIONS(270), - [sym_hash_ident] = ACTIONS(273), - [sym_type_ident] = ACTIONS(276), - [sym_ct_type_ident] = ACTIONS(279), - [sym_const_ident] = ACTIONS(282), - [sym_builtin] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(285), - [anon_sym_AMP] = ACTIONS(288), - [anon_sym_static] = ACTIONS(291), - [anon_sym_tlocal] = ACTIONS(291), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_fn] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1015), - [anon_sym_var] = ACTIONS(308), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_break] = ACTIONS(1024), - [anon_sym_defer] = ACTIONS(1027), - [anon_sym_assert] = ACTIONS(1030), - [anon_sym_nextcase] = ACTIONS(1033), - [anon_sym_switch] = ACTIONS(1036), - [anon_sym_AMP_AMP] = ACTIONS(334), - [anon_sym_if] = ACTIONS(1039), - [anon_sym_for] = ACTIONS(1042), - [anon_sym_foreach] = ACTIONS(1045), - [anon_sym_foreach_r] = ACTIONS(1045), - [anon_sym_while] = ACTIONS(1048), - [anon_sym_do] = ACTIONS(1051), - [anon_sym_int] = ACTIONS(352), - [anon_sym_PLUS] = ACTIONS(288), - [anon_sym_DASH] = ACTIONS(288), - [anon_sym_STAR] = ACTIONS(334), - [anon_sym_asm] = ACTIONS(1054), - [anon_sym_DOLLARassert] = ACTIONS(1057), - [anon_sym_DOLLARerror] = ACTIONS(1060), - [anon_sym_DOLLARecho] = ACTIONS(1063), - [anon_sym_DOLLARif] = ACTIONS(1066), - [anon_sym_DOLLARswitch] = ACTIONS(370), - [anon_sym_DOLLARfor] = ACTIONS(1069), - [anon_sym_DOLLARendfor] = ACTIONS(326), - [anon_sym_DOLLARforeach] = ACTIONS(1072), - [anon_sym_DOLLARalignof] = ACTIONS(379), - [anon_sym_DOLLARextnameof] = ACTIONS(379), - [anon_sym_DOLLARnameof] = ACTIONS(379), - [anon_sym_DOLLARoffsetof] = ACTIONS(379), - [anon_sym_DOLLARqnameof] = ACTIONS(379), - [anon_sym_DOLLAReval] = ACTIONS(382), - [anon_sym_DOLLARdefined] = ACTIONS(382), - [anon_sym_DOLLARsizeof] = ACTIONS(382), - [anon_sym_DOLLARstringify] = ACTIONS(382), - [anon_sym_DOLLARis_const] = ACTIONS(382), - [anon_sym_DOLLARvaconst] = ACTIONS(385), - [anon_sym_DOLLARvaarg] = ACTIONS(385), - [anon_sym_DOLLARvaref] = ACTIONS(385), - [anon_sym_DOLLARvaexpr] = ACTIONS(385), - [anon_sym_true] = ACTIONS(388), - [anon_sym_false] = ACTIONS(388), - [anon_sym_null] = ACTIONS(388), - [anon_sym_DOLLARvacount] = ACTIONS(388), - [anon_sym_DOLLARfeature] = ACTIONS(391), - [anon_sym_DOLLARand] = ACTIONS(382), - [anon_sym_DOLLARor] = ACTIONS(382), - [anon_sym_DOLLARassignable] = ACTIONS(394), - [anon_sym_DOLLARembed] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(334), - [anon_sym_TILDE] = ACTIONS(334), - [anon_sym_PLUS_PLUS] = ACTIONS(334), - [anon_sym_DASH_DASH] = ACTIONS(334), - [anon_sym_typeid] = ACTIONS(352), - [anon_sym_LBRACE_PIPE] = ACTIONS(400), - [anon_sym_void] = ACTIONS(352), - [anon_sym_bool] = ACTIONS(352), - [anon_sym_char] = ACTIONS(352), - [anon_sym_ichar] = ACTIONS(352), - [anon_sym_short] = ACTIONS(352), - [anon_sym_ushort] = ACTIONS(352), - [anon_sym_uint] = ACTIONS(352), - [anon_sym_long] = ACTIONS(352), - [anon_sym_ulong] = ACTIONS(352), - [anon_sym_int128] = ACTIONS(352), - [anon_sym_uint128] = ACTIONS(352), - [anon_sym_float] = ACTIONS(352), - [anon_sym_double] = ACTIONS(352), - [anon_sym_float16] = ACTIONS(352), - [anon_sym_bfloat16] = ACTIONS(352), - [anon_sym_float128] = ACTIONS(352), - [anon_sym_iptr] = ACTIONS(352), - [anon_sym_uptr] = ACTIONS(352), - [anon_sym_isz] = ACTIONS(352), - [anon_sym_usz] = ACTIONS(352), - [anon_sym_anyfault] = ACTIONS(352), - [anon_sym_any] = ACTIONS(352), - [anon_sym_DOLLARtypeof] = ACTIONS(403), - [anon_sym_DOLLARtypefrom] = ACTIONS(406), - [anon_sym_DOLLARvatype] = ACTIONS(406), - [anon_sym_DOLLARevaltype] = ACTIONS(406), - [sym_real_literal] = ACTIONS(252), - }, - [91] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), - [sym_line_comment] = STATE(91), - [sym_doc_comment] = STATE(91), - [sym_block_comment] = STATE(91), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(680), - [sym_expr_stmt] = STATE(680), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(680), - [sym_return_stmt] = STATE(680), - [sym_continue_stmt] = STATE(680), - [sym_break_stmt] = STATE(680), - [sym_defer_stmt] = STATE(680), - [sym_assert_stmt] = STATE(680), - [sym_declaration_stmt] = STATE(680), - [sym_nextcase_stmt] = STATE(680), - [sym_switch_stmt] = STATE(680), - [sym_if_stmt] = STATE(680), - [sym_for_stmt] = STATE(680), - [sym_foreach_stmt] = STATE(680), - [sym_while_stmt] = STATE(680), - [sym_do_stmt] = STATE(680), - [sym_asm_block_stmt] = STATE(680), - [sym_ct_assert_stmt] = STATE(680), - [sym_ct_echo_stmt] = STATE(680), - [sym_ct_if_stmt] = STATE(680), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(680), - [sym_ct_for_stmt] = STATE(680), - [sym_ct_foreach_stmt] = STATE(680), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(91), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -29568,7 +29461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -29577,174 +29470,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1075), + [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_try] = ACTIONS(1077), - [anon_sym_catch] = ACTIONS(1077), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(1013), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [92] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), - [sym_line_comment] = STATE(92), - [sym_doc_comment] = STATE(92), - [sym_block_comment] = STATE(92), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(428), - [sym_expr_stmt] = STATE(428), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(428), - [sym_return_stmt] = STATE(428), - [sym_continue_stmt] = STATE(428), - [sym_break_stmt] = STATE(428), - [sym_defer_stmt] = STATE(428), - [sym_assert_stmt] = STATE(428), - [sym_declaration_stmt] = STATE(428), - [sym_nextcase_stmt] = STATE(428), - [sym_switch_stmt] = STATE(428), - [sym_if_stmt] = STATE(428), - [sym_for_stmt] = STATE(428), - [sym_foreach_stmt] = STATE(428), - [sym_while_stmt] = STATE(428), - [sym_do_stmt] = STATE(428), - [sym_asm_block_stmt] = STATE(428), - [sym_ct_assert_stmt] = STATE(428), - [sym_ct_echo_stmt] = STATE(428), - [sym_ct_if_stmt] = STATE(428), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(428), - [sym_ct_for_stmt] = STATE(428), - [sym_ct_foreach_stmt] = STATE(428), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [91] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(91), + [sym_doc_comment] = STATE(91), + [sym_block_comment] = STATE(91), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(15), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -29752,7 +29642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -29761,176 +29651,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(1015), [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_catch] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, - [93] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), - [sym_line_comment] = STATE(93), - [sym_doc_comment] = STATE(93), - [sym_block_comment] = STATE(93), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1033), - [sym_const_declaration] = STATE(475), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(363), - [sym_expr_stmt] = STATE(435), - [sym_var_decl] = STATE(1953), - [sym_var_stmt] = STATE(435), - [sym_return_stmt] = STATE(435), - [sym_continue_stmt] = STATE(435), - [sym_break_stmt] = STATE(435), - [sym_defer_stmt] = STATE(435), - [sym_assert_stmt] = STATE(435), - [sym_declaration_stmt] = STATE(435), - [sym_nextcase_stmt] = STATE(435), - [sym_switch_body] = STATE(363), - [sym_switch_stmt] = STATE(435), - [sym__if_body] = STATE(467), - [sym_if_stmt] = STATE(435), - [sym_for_stmt] = STATE(435), - [sym_foreach_stmt] = STATE(435), - [sym_while_stmt] = STATE(435), - [sym_do_stmt] = STATE(435), - [sym_asm_block_stmt] = STATE(435), - [sym_ct_assert_stmt] = STATE(435), - [sym_ct_echo_stmt] = STATE(435), - [sym_ct_if_stmt] = STATE(435), - [sym__ct_switch] = STATE(1474), - [sym_ct_switch_stmt] = STATE(435), - [sym_ct_for_stmt] = STATE(435), - [sym_ct_foreach_stmt] = STATE(435), - [sym__expr] = STATE(1153), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1475), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [92] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(92), + [sym_doc_comment] = STATE(92), + [sym_block_comment] = STATE(92), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(431), + [sym_expr_stmt] = STATE(606), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(606), + [sym_return_stmt] = STATE(606), + [sym_continue_stmt] = STATE(606), + [sym_break_stmt] = STATE(606), + [sym_defer_stmt] = STATE(606), + [sym_assert_stmt] = STATE(606), + [sym_declaration_stmt] = STATE(606), + [sym_nextcase_stmt] = STATE(606), + [sym_switch_body] = STATE(431), + [sym_switch_stmt] = STATE(606), + [sym__if_body] = STATE(607), + [sym_if_stmt] = STATE(606), + [sym_for_stmt] = STATE(606), + [sym_foreach_stmt] = STATE(606), + [sym_while_stmt] = STATE(606), + [sym_do_stmt] = STATE(606), + [sym_asm_block_stmt] = STATE(606), + [sym_ct_assert_stmt] = STATE(606), + [sym_ct_echo_stmt] = STATE(606), + [sym_ct_if_stmt] = STATE(606), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(606), + [sym_ct_for_stmt] = STATE(606), + [sym_ct_foreach_stmt] = STATE(606), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -29938,7 +29824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -29947,173 +29833,351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_SEMI] = ACTIONS(1001), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_const] = ACTIONS(205), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_break] = ACTIONS(211), - [anon_sym_defer] = ACTIONS(213), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_nextcase] = ACTIONS(217), - [anon_sym_switch] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_foreach] = ACTIONS(225), - [anon_sym_foreach_r] = ACTIONS(225), - [anon_sym_while] = ACTIONS(227), - [anon_sym_do] = ACTIONS(229), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_const] = ACTIONS(665), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(231), - [anon_sym_DOLLARassert] = ACTIONS(233), - [anon_sym_DOLLARerror] = ACTIONS(235), - [anon_sym_DOLLARecho] = ACTIONS(237), - [anon_sym_DOLLARif] = ACTIONS(239), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(243), - [anon_sym_DOLLARforeach] = ACTIONS(245), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARforeach] = ACTIONS(705), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, + [93] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(93), + [sym_doc_comment] = STATE(93), + [sym_block_comment] = STATE(93), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(646), + [sym_expr_stmt] = STATE(646), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(646), + [sym_return_stmt] = STATE(646), + [sym_continue_stmt] = STATE(646), + [sym_break_stmt] = STATE(646), + [sym_defer_stmt] = STATE(646), + [sym_assert_stmt] = STATE(646), + [sym_declaration_stmt] = STATE(646), + [sym_nextcase_stmt] = STATE(646), + [sym_switch_stmt] = STATE(646), + [sym_if_stmt] = STATE(646), + [sym_for_stmt] = STATE(646), + [sym_foreach_stmt] = STATE(646), + [sym_while_stmt] = STATE(646), + [sym_do_stmt] = STATE(646), + [sym_asm_block_stmt] = STATE(646), + [sym_ct_assert_stmt] = STATE(646), + [sym_ct_echo_stmt] = STATE(646), + [sym_ct_if_stmt] = STATE(646), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(646), + [sym_ct_for_stmt] = STATE(646), + [sym_ct_foreach_stmt] = STATE(646), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_compound_stmt_repeat1] = STATE(93), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(243), + [sym_integer_literal] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(252), + [anon_sym_BQUOTE] = ACTIONS(255), + [sym_bytes_literal] = ACTIONS(258), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(261), + [sym_at_ident] = ACTIONS(264), + [sym_hash_ident] = ACTIONS(267), + [sym_type_ident] = ACTIONS(270), + [sym_ct_type_ident] = ACTIONS(273), + [sym_const_ident] = ACTIONS(276), + [sym_builtin] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_static] = ACTIONS(285), + [anon_sym_tlocal] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(1017), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1023), + [anon_sym_var] = ACTIONS(302), + [anon_sym_return] = ACTIONS(1026), + [anon_sym_continue] = ACTIONS(1029), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_defer] = ACTIONS(1035), + [anon_sym_assert] = ACTIONS(1038), + [anon_sym_nextcase] = ACTIONS(1041), + [anon_sym_switch] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(328), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_foreach] = ACTIONS(1053), + [anon_sym_foreach_r] = ACTIONS(1053), + [anon_sym_while] = ACTIONS(1056), + [anon_sym_do] = ACTIONS(1059), + [anon_sym_int] = ACTIONS(346), + [anon_sym_PLUS] = ACTIONS(282), + [anon_sym_DASH] = ACTIONS(282), + [anon_sym_STAR] = ACTIONS(328), + [anon_sym_asm] = ACTIONS(1062), + [anon_sym_DOLLARassert] = ACTIONS(1065), + [anon_sym_DOLLARerror] = ACTIONS(1068), + [anon_sym_DOLLARecho] = ACTIONS(1071), + [anon_sym_DOLLARif] = ACTIONS(1074), + [anon_sym_DOLLARswitch] = ACTIONS(364), + [anon_sym_DOLLARfor] = ACTIONS(1077), + [anon_sym_DOLLARforeach] = ACTIONS(1080), + [anon_sym_DOLLARendforeach] = ACTIONS(320), + [anon_sym_DOLLARalignof] = ACTIONS(373), + [anon_sym_DOLLARextnameof] = ACTIONS(373), + [anon_sym_DOLLARnameof] = ACTIONS(373), + [anon_sym_DOLLARoffsetof] = ACTIONS(373), + [anon_sym_DOLLARqnameof] = ACTIONS(373), + [anon_sym_DOLLARvaconst] = ACTIONS(376), + [anon_sym_DOLLARvaarg] = ACTIONS(376), + [anon_sym_DOLLARvaref] = ACTIONS(376), + [anon_sym_DOLLARvaexpr] = ACTIONS(376), + [anon_sym_true] = ACTIONS(379), + [anon_sym_false] = ACTIONS(379), + [anon_sym_null] = ACTIONS(379), + [anon_sym_DOLLARvacount] = ACTIONS(379), + [anon_sym_DOLLAReval] = ACTIONS(382), + [anon_sym_DOLLARis_const] = ACTIONS(382), + [anon_sym_DOLLARsizeof] = ACTIONS(382), + [anon_sym_DOLLARstringify] = ACTIONS(382), + [anon_sym_DOLLARappend] = ACTIONS(385), + [anon_sym_DOLLARconcat] = ACTIONS(385), + [anon_sym_DOLLARdefined] = ACTIONS(385), + [anon_sym_DOLLARembed] = ACTIONS(385), + [anon_sym_DOLLARand] = ACTIONS(385), + [anon_sym_DOLLARor] = ACTIONS(385), + [anon_sym_DOLLARfeature] = ACTIONS(388), + [anon_sym_DOLLARassignable] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(328), + [anon_sym_TILDE] = ACTIONS(328), + [anon_sym_PLUS_PLUS] = ACTIONS(328), + [anon_sym_DASH_DASH] = ACTIONS(328), + [anon_sym_typeid] = ACTIONS(346), + [anon_sym_LBRACE_PIPE] = ACTIONS(394), + [anon_sym_void] = ACTIONS(346), + [anon_sym_bool] = ACTIONS(346), + [anon_sym_char] = ACTIONS(346), + [anon_sym_ichar] = ACTIONS(346), + [anon_sym_short] = ACTIONS(346), + [anon_sym_ushort] = ACTIONS(346), + [anon_sym_uint] = ACTIONS(346), + [anon_sym_long] = ACTIONS(346), + [anon_sym_ulong] = ACTIONS(346), + [anon_sym_int128] = ACTIONS(346), + [anon_sym_uint128] = ACTIONS(346), + [anon_sym_float] = ACTIONS(346), + [anon_sym_double] = ACTIONS(346), + [anon_sym_float16] = ACTIONS(346), + [anon_sym_bfloat16] = ACTIONS(346), + [anon_sym_float128] = ACTIONS(346), + [anon_sym_iptr] = ACTIONS(346), + [anon_sym_uptr] = ACTIONS(346), + [anon_sym_isz] = ACTIONS(346), + [anon_sym_usz] = ACTIONS(346), + [anon_sym_anyfault] = ACTIONS(346), + [anon_sym_any] = ACTIONS(346), + [anon_sym_DOLLARtypeof] = ACTIONS(397), + [anon_sym_DOLLARtypefrom] = ACTIONS(397), + [anon_sym_DOLLARevaltype] = ACTIONS(397), + [anon_sym_DOLLARvatype] = ACTIONS(400), + [sym_real_literal] = ACTIONS(246), + }, [94] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(94), [sym_doc_comment] = STATE(94), [sym_block_comment] = STATE(94), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(397), - [sym_expr_stmt] = STATE(397), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(397), - [sym_return_stmt] = STATE(397), - [sym_continue_stmt] = STATE(397), - [sym_break_stmt] = STATE(397), - [sym_defer_stmt] = STATE(397), - [sym_assert_stmt] = STATE(397), - [sym_declaration_stmt] = STATE(397), - [sym_nextcase_stmt] = STATE(397), - [sym_switch_stmt] = STATE(397), - [sym_if_stmt] = STATE(397), - [sym_for_stmt] = STATE(397), - [sym_foreach_stmt] = STATE(397), - [sym_while_stmt] = STATE(397), - [sym_do_stmt] = STATE(397), - [sym_asm_block_stmt] = STATE(397), - [sym_ct_assert_stmt] = STATE(397), - [sym_ct_echo_stmt] = STATE(397), - [sym_ct_if_stmt] = STATE(397), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(397), - [sym_ct_for_stmt] = STATE(397), - [sym_ct_foreach_stmt] = STATE(397), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_compound_stmt_repeat1] = STATE(56), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(15), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -30121,7 +30185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -30130,173 +30194,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(1083), [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_PIPE_RBRACE] = ACTIONS(1083), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [95] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(95), [sym_doc_comment] = STATE(95), [sym_block_comment] = STATE(95), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1042), - [sym_const_declaration] = STATE(506), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(537), - [sym_expr_stmt] = STATE(537), - [sym_var_decl] = STATE(2226), - [sym_var_stmt] = STATE(537), - [sym_return_stmt] = STATE(537), - [sym_continue_stmt] = STATE(537), - [sym_break_stmt] = STATE(537), - [sym_defer_stmt] = STATE(537), - [sym_assert_stmt] = STATE(537), - [sym_declaration_stmt] = STATE(537), - [sym_nextcase_stmt] = STATE(537), - [sym_switch_stmt] = STATE(537), - [sym_if_stmt] = STATE(537), - [sym_for_stmt] = STATE(537), - [sym_foreach_stmt] = STATE(537), - [sym_while_stmt] = STATE(537), - [sym_do_stmt] = STATE(537), - [sym_asm_block_stmt] = STATE(537), - [sym_ct_assert_stmt] = STATE(537), - [sym_ct_echo_stmt] = STATE(537), - [sym_ct_if_stmt] = STATE(537), - [sym__ct_switch] = STATE(1559), - [sym_ct_switch_stmt] = STATE(537), - [sym_ct_for_stmt] = STATE(537), - [sym_ct_foreach_stmt] = STATE(537), - [sym__expr] = STATE(1140), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1553), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(719), + [sym_expr_stmt] = STATE(719), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(719), + [sym_return_stmt] = STATE(719), + [sym_continue_stmt] = STATE(719), + [sym_break_stmt] = STATE(719), + [sym_defer_stmt] = STATE(719), + [sym_assert_stmt] = STATE(719), + [sym_declaration_stmt] = STATE(719), + [sym_nextcase_stmt] = STATE(719), + [sym_switch_stmt] = STATE(719), + [sym_if_stmt] = STATE(719), + [sym_for_stmt] = STATE(719), + [sym_foreach_stmt] = STATE(719), + [sym_while_stmt] = STATE(719), + [sym_do_stmt] = STATE(719), + [sym_asm_block_stmt] = STATE(719), + [sym_ct_assert_stmt] = STATE(719), + [sym_ct_echo_stmt] = STATE(719), + [sym_ct_if_stmt] = STATE(719), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(719), + [sym_ct_for_stmt] = STATE(719), + [sym_ct_foreach_stmt] = STATE(719), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_compound_stmt_repeat1] = STATE(70), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -30304,7 +30366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -30313,172 +30375,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1085), + [anon_sym_SEMI] = ACTIONS(613), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_const] = ACTIONS(419), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_break] = ACTIONS(425), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_assert] = ACTIONS(429), - [anon_sym_nextcase] = ACTIONS(431), - [anon_sym_switch] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_foreach] = ACTIONS(439), - [anon_sym_foreach_r] = ACTIONS(439), - [anon_sym_while] = ACTIONS(441), - [anon_sym_do] = ACTIONS(443), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(445), - [anon_sym_DOLLARassert] = ACTIONS(447), - [anon_sym_DOLLARerror] = ACTIONS(449), - [anon_sym_DOLLARecho] = ACTIONS(451), - [anon_sym_DOLLARif] = ACTIONS(453), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(459), - [anon_sym_DOLLARforeach] = ACTIONS(461), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARendif] = ACTIONS(479), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [96] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(96), [sym_doc_comment] = STATE(96), [sym_block_comment] = STATE(96), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1034), - [sym_const_declaration] = STATE(600), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(630), - [sym_expr_stmt] = STATE(630), - [sym_var_decl] = STATE(2022), - [sym_var_stmt] = STATE(630), - [sym_return_stmt] = STATE(630), - [sym_continue_stmt] = STATE(630), - [sym_break_stmt] = STATE(630), - [sym_defer_stmt] = STATE(630), - [sym_assert_stmt] = STATE(630), - [sym_declaration_stmt] = STATE(630), - [sym_nextcase_stmt] = STATE(630), - [sym_switch_stmt] = STATE(630), - [sym_if_stmt] = STATE(630), - [sym_for_stmt] = STATE(630), - [sym_foreach_stmt] = STATE(630), - [sym_while_stmt] = STATE(630), - [sym_do_stmt] = STATE(630), - [sym_asm_block_stmt] = STATE(630), - [sym_ct_assert_stmt] = STATE(630), - [sym_ct_echo_stmt] = STATE(630), - [sym_ct_if_stmt] = STATE(630), - [sym__ct_switch] = STATE(1414), - [sym_ct_switch_stmt] = STATE(630), - [sym_ct_for_stmt] = STATE(630), - [sym_ct_foreach_stmt] = STATE(630), - [sym__expr] = STATE(1160), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1415), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(360), + [sym_expr_stmt] = STATE(360), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(360), + [sym_return_stmt] = STATE(360), + [sym_continue_stmt] = STATE(360), + [sym_break_stmt] = STATE(360), + [sym_defer_stmt] = STATE(360), + [sym_assert_stmt] = STATE(360), + [sym_declaration_stmt] = STATE(360), + [sym_nextcase_stmt] = STATE(360), + [sym_switch_stmt] = STATE(360), + [sym_if_stmt] = STATE(360), + [sym_for_stmt] = STATE(360), + [sym_foreach_stmt] = STATE(360), + [sym_while_stmt] = STATE(360), + [sym_do_stmt] = STATE(360), + [sym_asm_block_stmt] = STATE(360), + [sym_ct_assert_stmt] = STATE(360), + [sym_ct_echo_stmt] = STATE(360), + [sym_ct_if_stmt] = STATE(360), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(360), + [sym_ct_for_stmt] = STATE(360), + [sym_ct_foreach_stmt] = STATE(360), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_compound_stmt_repeat1] = STATE(71), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -30486,7 +30547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -30495,172 +30556,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1087), + [anon_sym_SEMI] = ACTIONS(95), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_const] = ACTIONS(613), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(617), - [anon_sym_break] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(621), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_nextcase] = ACTIONS(625), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(629), - [anon_sym_for] = ACTIONS(631), - [anon_sym_foreach] = ACTIONS(633), - [anon_sym_foreach_r] = ACTIONS(633), - [anon_sym_while] = ACTIONS(635), - [anon_sym_do] = ACTIONS(637), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_RBRACE] = ACTIONS(1085), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(639), - [anon_sym_DOLLARassert] = ACTIONS(641), - [anon_sym_DOLLARerror] = ACTIONS(643), - [anon_sym_DOLLARecho] = ACTIONS(645), - [anon_sym_DOLLARif] = ACTIONS(647), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(649), - [anon_sym_DOLLARforeach] = ACTIONS(653), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [97] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(97), [sym_doc_comment] = STATE(97), [sym_block_comment] = STATE(97), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(420), - [sym_expr_stmt] = STATE(420), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(420), - [sym_return_stmt] = STATE(420), - [sym_continue_stmt] = STATE(420), - [sym_break_stmt] = STATE(420), - [sym_defer_stmt] = STATE(420), - [sym_assert_stmt] = STATE(420), - [sym_declaration_stmt] = STATE(420), - [sym_nextcase_stmt] = STATE(420), - [sym_switch_stmt] = STATE(420), - [sym_if_stmt] = STATE(420), - [sym_for_stmt] = STATE(420), - [sym_foreach_stmt] = STATE(420), - [sym_while_stmt] = STATE(420), - [sym_do_stmt] = STATE(420), - [sym_asm_block_stmt] = STATE(420), - [sym_ct_assert_stmt] = STATE(420), - [sym_ct_echo_stmt] = STATE(420), - [sym_ct_if_stmt] = STATE(420), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(420), - [sym_ct_for_stmt] = STATE(420), - [sym_ct_foreach_stmt] = STATE(420), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(730), + [sym_expr_stmt] = STATE(730), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(730), + [sym_return_stmt] = STATE(730), + [sym_continue_stmt] = STATE(730), + [sym_break_stmt] = STATE(730), + [sym_defer_stmt] = STATE(730), + [sym_assert_stmt] = STATE(730), + [sym_declaration_stmt] = STATE(730), + [sym_nextcase_stmt] = STATE(730), + [sym_switch_stmt] = STATE(730), + [sym_if_stmt] = STATE(730), + [sym_for_stmt] = STATE(730), + [sym_foreach_stmt] = STATE(730), + [sym_while_stmt] = STATE(730), + [sym_do_stmt] = STATE(730), + [sym_asm_block_stmt] = STATE(730), + [sym_ct_assert_stmt] = STATE(730), + [sym_ct_echo_stmt] = STATE(730), + [sym_ct_if_stmt] = STATE(730), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(730), + [sym_ct_for_stmt] = STATE(730), + [sym_ct_foreach_stmt] = STATE(730), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -30668,7 +30727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -30677,172 +30736,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), - [anon_sym_SEMI] = ACTIONS(1089), + [anon_sym_SEMI] = ACTIONS(1087), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_try] = ACTIONS(1089), + [anon_sym_catch] = ACTIONS(1089), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [98] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(98), [sym_doc_comment] = STATE(98), [sym_block_comment] = STATE(98), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1033), - [sym_const_declaration] = STATE(475), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(471), - [sym_expr_stmt] = STATE(471), - [sym_var_decl] = STATE(1953), - [sym_var_stmt] = STATE(471), - [sym_return_stmt] = STATE(471), - [sym_continue_stmt] = STATE(471), - [sym_break_stmt] = STATE(471), - [sym_defer_stmt] = STATE(471), - [sym_assert_stmt] = STATE(471), - [sym_declaration_stmt] = STATE(471), - [sym_nextcase_stmt] = STATE(471), - [sym_switch_stmt] = STATE(471), - [sym_if_stmt] = STATE(471), - [sym_for_stmt] = STATE(471), - [sym_foreach_stmt] = STATE(471), - [sym_while_stmt] = STATE(471), - [sym_do_stmt] = STATE(471), - [sym_asm_block_stmt] = STATE(471), - [sym_ct_assert_stmt] = STATE(471), - [sym_ct_echo_stmt] = STATE(471), - [sym_ct_if_stmt] = STATE(471), - [sym__ct_switch] = STATE(1474), - [sym_ct_switch_stmt] = STATE(471), - [sym_ct_for_stmt] = STATE(471), - [sym_ct_foreach_stmt] = STATE(471), - [sym__expr] = STATE(1153), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1475), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(608), + [sym_expr_stmt] = STATE(608), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(608), + [sym_return_stmt] = STATE(608), + [sym_continue_stmt] = STATE(608), + [sym_break_stmt] = STATE(608), + [sym_defer_stmt] = STATE(608), + [sym_assert_stmt] = STATE(608), + [sym_declaration_stmt] = STATE(608), + [sym_nextcase_stmt] = STATE(608), + [sym_switch_stmt] = STATE(608), + [sym_if_stmt] = STATE(608), + [sym_for_stmt] = STATE(608), + [sym_foreach_stmt] = STATE(608), + [sym_while_stmt] = STATE(608), + [sym_do_stmt] = STATE(608), + [sym_asm_block_stmt] = STATE(608), + [sym_ct_assert_stmt] = STATE(608), + [sym_ct_echo_stmt] = STATE(608), + [sym_ct_if_stmt] = STATE(608), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(608), + [sym_ct_for_stmt] = STATE(608), + [sym_ct_foreach_stmt] = STATE(608), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -30850,7 +30908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -30859,172 +30917,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1091), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_const] = ACTIONS(205), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_break] = ACTIONS(211), - [anon_sym_defer] = ACTIONS(213), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_nextcase] = ACTIONS(217), - [anon_sym_switch] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_foreach] = ACTIONS(225), - [anon_sym_foreach_r] = ACTIONS(225), - [anon_sym_while] = ACTIONS(227), - [anon_sym_do] = ACTIONS(229), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(231), - [anon_sym_DOLLARassert] = ACTIONS(233), - [anon_sym_DOLLARerror] = ACTIONS(235), - [anon_sym_DOLLARecho] = ACTIONS(237), - [anon_sym_DOLLARif] = ACTIONS(239), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(243), - [anon_sym_DOLLARforeach] = ACTIONS(245), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARforeach] = ACTIONS(705), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [99] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(99), [sym_doc_comment] = STATE(99), [sym_block_comment] = STATE(99), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1033), - [sym_const_declaration] = STATE(475), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(470), - [sym_expr_stmt] = STATE(470), - [sym_var_decl] = STATE(1953), - [sym_var_stmt] = STATE(470), - [sym_return_stmt] = STATE(470), - [sym_continue_stmt] = STATE(470), - [sym_break_stmt] = STATE(470), - [sym_defer_stmt] = STATE(470), - [sym_assert_stmt] = STATE(470), - [sym_declaration_stmt] = STATE(470), - [sym_nextcase_stmt] = STATE(470), - [sym_switch_stmt] = STATE(470), - [sym_if_stmt] = STATE(470), - [sym_for_stmt] = STATE(470), - [sym_foreach_stmt] = STATE(470), - [sym_while_stmt] = STATE(470), - [sym_do_stmt] = STATE(470), - [sym_asm_block_stmt] = STATE(470), - [sym_ct_assert_stmt] = STATE(470), - [sym_ct_echo_stmt] = STATE(470), - [sym_ct_if_stmt] = STATE(470), - [sym__ct_switch] = STATE(1474), - [sym_ct_switch_stmt] = STATE(470), - [sym_ct_for_stmt] = STATE(470), - [sym_ct_foreach_stmt] = STATE(470), - [sym__expr] = STATE(1153), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1475), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(351), + [sym_expr_stmt] = STATE(351), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(351), + [sym_return_stmt] = STATE(351), + [sym_continue_stmt] = STATE(351), + [sym_break_stmt] = STATE(351), + [sym_defer_stmt] = STATE(351), + [sym_assert_stmt] = STATE(351), + [sym_declaration_stmt] = STATE(351), + [sym_nextcase_stmt] = STATE(351), + [sym_switch_stmt] = STATE(351), + [sym_if_stmt] = STATE(351), + [sym_for_stmt] = STATE(351), + [sym_foreach_stmt] = STATE(351), + [sym_while_stmt] = STATE(351), + [sym_do_stmt] = STATE(351), + [sym_asm_block_stmt] = STATE(351), + [sym_ct_assert_stmt] = STATE(351), + [sym_ct_echo_stmt] = STATE(351), + [sym_ct_if_stmt] = STATE(351), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(351), + [sym_ct_for_stmt] = STATE(351), + [sym_ct_foreach_stmt] = STATE(351), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -31032,7 +31087,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -31041,172 +31096,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1093), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_const] = ACTIONS(205), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_break] = ACTIONS(211), - [anon_sym_defer] = ACTIONS(213), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_nextcase] = ACTIONS(217), - [anon_sym_switch] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_foreach] = ACTIONS(225), - [anon_sym_foreach_r] = ACTIONS(225), - [anon_sym_while] = ACTIONS(227), - [anon_sym_do] = ACTIONS(229), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(231), - [anon_sym_DOLLARassert] = ACTIONS(233), - [anon_sym_DOLLARerror] = ACTIONS(235), - [anon_sym_DOLLARecho] = ACTIONS(237), - [anon_sym_DOLLARif] = ACTIONS(239), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(243), - [anon_sym_DOLLARforeach] = ACTIONS(245), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [100] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(100), [sym_doc_comment] = STATE(100), [sym_block_comment] = STATE(100), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1033), - [sym_const_declaration] = STATE(475), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(469), - [sym_expr_stmt] = STATE(469), - [sym_var_decl] = STATE(1953), - [sym_var_stmt] = STATE(469), - [sym_return_stmt] = STATE(469), - [sym_continue_stmt] = STATE(469), - [sym_break_stmt] = STATE(469), - [sym_defer_stmt] = STATE(469), - [sym_assert_stmt] = STATE(469), - [sym_declaration_stmt] = STATE(469), - [sym_nextcase_stmt] = STATE(469), - [sym_switch_stmt] = STATE(469), - [sym_if_stmt] = STATE(469), - [sym_for_stmt] = STATE(469), - [sym_foreach_stmt] = STATE(469), - [sym_while_stmt] = STATE(469), - [sym_do_stmt] = STATE(469), - [sym_asm_block_stmt] = STATE(469), - [sym_ct_assert_stmt] = STATE(469), - [sym_ct_echo_stmt] = STATE(469), - [sym_ct_if_stmt] = STATE(469), - [sym__ct_switch] = STATE(1474), - [sym_ct_switch_stmt] = STATE(469), - [sym_ct_for_stmt] = STATE(469), - [sym_ct_foreach_stmt] = STATE(469), - [sym__expr] = STATE(1153), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1475), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(575), + [sym_expr_stmt] = STATE(575), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(575), + [sym_return_stmt] = STATE(575), + [sym_continue_stmt] = STATE(575), + [sym_break_stmt] = STATE(575), + [sym_defer_stmt] = STATE(575), + [sym_assert_stmt] = STATE(575), + [sym_declaration_stmt] = STATE(575), + [sym_nextcase_stmt] = STATE(575), + [sym_switch_stmt] = STATE(575), + [sym_if_stmt] = STATE(575), + [sym_for_stmt] = STATE(575), + [sym_foreach_stmt] = STATE(575), + [sym_while_stmt] = STATE(575), + [sym_do_stmt] = STATE(575), + [sym_asm_block_stmt] = STATE(575), + [sym_ct_assert_stmt] = STATE(575), + [sym_ct_echo_stmt] = STATE(575), + [sym_ct_if_stmt] = STATE(575), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(575), + [sym_ct_for_stmt] = STATE(575), + [sym_ct_foreach_stmt] = STATE(575), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -31214,7 +31266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -31223,172 +31275,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1095), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_const] = ACTIONS(205), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_break] = ACTIONS(211), - [anon_sym_defer] = ACTIONS(213), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_nextcase] = ACTIONS(217), - [anon_sym_switch] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_foreach] = ACTIONS(225), - [anon_sym_foreach_r] = ACTIONS(225), - [anon_sym_while] = ACTIONS(227), - [anon_sym_do] = ACTIONS(229), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(409), + [anon_sym_const] = ACTIONS(411), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(231), - [anon_sym_DOLLARassert] = ACTIONS(233), - [anon_sym_DOLLARerror] = ACTIONS(235), - [anon_sym_DOLLARecho] = ACTIONS(237), - [anon_sym_DOLLARif] = ACTIONS(239), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(243), - [anon_sym_DOLLARforeach] = ACTIONS(245), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [101] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(101), [sym_doc_comment] = STATE(101), [sym_block_comment] = STATE(101), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1033), - [sym_const_declaration] = STATE(475), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(448), - [sym_expr_stmt] = STATE(448), - [sym_var_decl] = STATE(1953), - [sym_var_stmt] = STATE(448), - [sym_return_stmt] = STATE(448), - [sym_continue_stmt] = STATE(448), - [sym_break_stmt] = STATE(448), - [sym_defer_stmt] = STATE(448), - [sym_assert_stmt] = STATE(448), - [sym_declaration_stmt] = STATE(448), - [sym_nextcase_stmt] = STATE(448), - [sym_switch_stmt] = STATE(448), - [sym_if_stmt] = STATE(448), - [sym_for_stmt] = STATE(448), - [sym_foreach_stmt] = STATE(448), - [sym_while_stmt] = STATE(448), - [sym_do_stmt] = STATE(448), - [sym_asm_block_stmt] = STATE(448), - [sym_ct_assert_stmt] = STATE(448), - [sym_ct_echo_stmt] = STATE(448), - [sym_ct_if_stmt] = STATE(448), - [sym__ct_switch] = STATE(1474), - [sym_ct_switch_stmt] = STATE(448), - [sym_ct_for_stmt] = STATE(448), - [sym_ct_foreach_stmt] = STATE(448), - [sym__expr] = STATE(1153), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1475), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(550), + [sym_expr_stmt] = STATE(550), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(550), + [sym_return_stmt] = STATE(550), + [sym_continue_stmt] = STATE(550), + [sym_break_stmt] = STATE(550), + [sym_defer_stmt] = STATE(550), + [sym_assert_stmt] = STATE(550), + [sym_declaration_stmt] = STATE(550), + [sym_nextcase_stmt] = STATE(550), + [sym_switch_stmt] = STATE(550), + [sym_if_stmt] = STATE(550), + [sym_for_stmt] = STATE(550), + [sym_foreach_stmt] = STATE(550), + [sym_while_stmt] = STATE(550), + [sym_do_stmt] = STATE(550), + [sym_asm_block_stmt] = STATE(550), + [sym_ct_assert_stmt] = STATE(550), + [sym_ct_echo_stmt] = STATE(550), + [sym_ct_if_stmt] = STATE(550), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(550), + [sym_ct_for_stmt] = STATE(550), + [sym_ct_foreach_stmt] = STATE(550), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -31396,7 +31445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -31405,172 +31454,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1097), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_const] = ACTIONS(205), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_break] = ACTIONS(211), - [anon_sym_defer] = ACTIONS(213), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_nextcase] = ACTIONS(217), - [anon_sym_switch] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_foreach] = ACTIONS(225), - [anon_sym_foreach_r] = ACTIONS(225), - [anon_sym_while] = ACTIONS(227), - [anon_sym_do] = ACTIONS(229), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(409), + [anon_sym_const] = ACTIONS(411), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(231), - [anon_sym_DOLLARassert] = ACTIONS(233), - [anon_sym_DOLLARerror] = ACTIONS(235), - [anon_sym_DOLLARecho] = ACTIONS(237), - [anon_sym_DOLLARif] = ACTIONS(239), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(243), - [anon_sym_DOLLARforeach] = ACTIONS(245), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [102] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(102), [sym_doc_comment] = STATE(102), [sym_block_comment] = STATE(102), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1033), - [sym_const_declaration] = STATE(475), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(444), - [sym_expr_stmt] = STATE(444), - [sym_var_decl] = STATE(1953), - [sym_var_stmt] = STATE(444), - [sym_return_stmt] = STATE(444), - [sym_continue_stmt] = STATE(444), - [sym_break_stmt] = STATE(444), - [sym_defer_stmt] = STATE(444), - [sym_assert_stmt] = STATE(444), - [sym_declaration_stmt] = STATE(444), - [sym_nextcase_stmt] = STATE(444), - [sym_switch_stmt] = STATE(444), - [sym_if_stmt] = STATE(444), - [sym_for_stmt] = STATE(444), - [sym_foreach_stmt] = STATE(444), - [sym_while_stmt] = STATE(444), - [sym_do_stmt] = STATE(444), - [sym_asm_block_stmt] = STATE(444), - [sym_ct_assert_stmt] = STATE(444), - [sym_ct_echo_stmt] = STATE(444), - [sym_ct_if_stmt] = STATE(444), - [sym__ct_switch] = STATE(1474), - [sym_ct_switch_stmt] = STATE(444), - [sym_ct_for_stmt] = STATE(444), - [sym_ct_foreach_stmt] = STATE(444), - [sym__expr] = STATE(1153), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1475), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(551), + [sym_expr_stmt] = STATE(551), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(551), + [sym_return_stmt] = STATE(551), + [sym_continue_stmt] = STATE(551), + [sym_break_stmt] = STATE(551), + [sym_defer_stmt] = STATE(551), + [sym_assert_stmt] = STATE(551), + [sym_declaration_stmt] = STATE(551), + [sym_nextcase_stmt] = STATE(551), + [sym_switch_stmt] = STATE(551), + [sym_if_stmt] = STATE(551), + [sym_for_stmt] = STATE(551), + [sym_foreach_stmt] = STATE(551), + [sym_while_stmt] = STATE(551), + [sym_do_stmt] = STATE(551), + [sym_asm_block_stmt] = STATE(551), + [sym_ct_assert_stmt] = STATE(551), + [sym_ct_echo_stmt] = STATE(551), + [sym_ct_if_stmt] = STATE(551), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(551), + [sym_ct_for_stmt] = STATE(551), + [sym_ct_foreach_stmt] = STATE(551), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -31578,7 +31624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -31587,172 +31633,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1099), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_const] = ACTIONS(205), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_break] = ACTIONS(211), - [anon_sym_defer] = ACTIONS(213), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_nextcase] = ACTIONS(217), - [anon_sym_switch] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_foreach] = ACTIONS(225), - [anon_sym_foreach_r] = ACTIONS(225), - [anon_sym_while] = ACTIONS(227), - [anon_sym_do] = ACTIONS(229), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(409), + [anon_sym_const] = ACTIONS(411), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(231), - [anon_sym_DOLLARassert] = ACTIONS(233), - [anon_sym_DOLLARerror] = ACTIONS(235), - [anon_sym_DOLLARecho] = ACTIONS(237), - [anon_sym_DOLLARif] = ACTIONS(239), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(243), - [anon_sym_DOLLARforeach] = ACTIONS(245), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [103] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(103), [sym_doc_comment] = STATE(103), [sym_block_comment] = STATE(103), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1033), - [sym_const_declaration] = STATE(475), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(443), - [sym_expr_stmt] = STATE(443), - [sym_var_decl] = STATE(1953), - [sym_var_stmt] = STATE(443), - [sym_return_stmt] = STATE(443), - [sym_continue_stmt] = STATE(443), - [sym_break_stmt] = STATE(443), - [sym_defer_stmt] = STATE(443), - [sym_assert_stmt] = STATE(443), - [sym_declaration_stmt] = STATE(443), - [sym_nextcase_stmt] = STATE(443), - [sym_switch_stmt] = STATE(443), - [sym_if_stmt] = STATE(443), - [sym_for_stmt] = STATE(443), - [sym_foreach_stmt] = STATE(443), - [sym_while_stmt] = STATE(443), - [sym_do_stmt] = STATE(443), - [sym_asm_block_stmt] = STATE(443), - [sym_ct_assert_stmt] = STATE(443), - [sym_ct_echo_stmt] = STATE(443), - [sym_ct_if_stmt] = STATE(443), - [sym__ct_switch] = STATE(1474), - [sym_ct_switch_stmt] = STATE(443), - [sym_ct_for_stmt] = STATE(443), - [sym_ct_foreach_stmt] = STATE(443), - [sym__expr] = STATE(1153), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1475), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(552), + [sym_expr_stmt] = STATE(552), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(552), + [sym_return_stmt] = STATE(552), + [sym_continue_stmt] = STATE(552), + [sym_break_stmt] = STATE(552), + [sym_defer_stmt] = STATE(552), + [sym_assert_stmt] = STATE(552), + [sym_declaration_stmt] = STATE(552), + [sym_nextcase_stmt] = STATE(552), + [sym_switch_stmt] = STATE(552), + [sym_if_stmt] = STATE(552), + [sym_for_stmt] = STATE(552), + [sym_foreach_stmt] = STATE(552), + [sym_while_stmt] = STATE(552), + [sym_do_stmt] = STATE(552), + [sym_asm_block_stmt] = STATE(552), + [sym_ct_assert_stmt] = STATE(552), + [sym_ct_echo_stmt] = STATE(552), + [sym_ct_if_stmt] = STATE(552), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(552), + [sym_ct_for_stmt] = STATE(552), + [sym_ct_foreach_stmt] = STATE(552), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -31760,7 +31803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -31769,172 +31812,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1101), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_const] = ACTIONS(205), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_break] = ACTIONS(211), - [anon_sym_defer] = ACTIONS(213), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_nextcase] = ACTIONS(217), - [anon_sym_switch] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_foreach] = ACTIONS(225), - [anon_sym_foreach_r] = ACTIONS(225), - [anon_sym_while] = ACTIONS(227), - [anon_sym_do] = ACTIONS(229), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(409), + [anon_sym_const] = ACTIONS(411), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(231), - [anon_sym_DOLLARassert] = ACTIONS(233), - [anon_sym_DOLLARerror] = ACTIONS(235), - [anon_sym_DOLLARecho] = ACTIONS(237), - [anon_sym_DOLLARif] = ACTIONS(239), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(243), - [anon_sym_DOLLARforeach] = ACTIONS(245), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [104] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(104), [sym_doc_comment] = STATE(104), [sym_block_comment] = STATE(104), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1033), - [sym_const_declaration] = STATE(475), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(442), - [sym_expr_stmt] = STATE(442), - [sym_var_decl] = STATE(1953), - [sym_var_stmt] = STATE(442), - [sym_return_stmt] = STATE(442), - [sym_continue_stmt] = STATE(442), - [sym_break_stmt] = STATE(442), - [sym_defer_stmt] = STATE(442), - [sym_assert_stmt] = STATE(442), - [sym_declaration_stmt] = STATE(442), - [sym_nextcase_stmt] = STATE(442), - [sym_switch_stmt] = STATE(442), - [sym_if_stmt] = STATE(442), - [sym_for_stmt] = STATE(442), - [sym_foreach_stmt] = STATE(442), - [sym_while_stmt] = STATE(442), - [sym_do_stmt] = STATE(442), - [sym_asm_block_stmt] = STATE(442), - [sym_ct_assert_stmt] = STATE(442), - [sym_ct_echo_stmt] = STATE(442), - [sym_ct_if_stmt] = STATE(442), - [sym__ct_switch] = STATE(1474), - [sym_ct_switch_stmt] = STATE(442), - [sym_ct_for_stmt] = STATE(442), - [sym_ct_foreach_stmt] = STATE(442), - [sym__expr] = STATE(1153), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1475), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(561), + [sym_expr_stmt] = STATE(561), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(561), + [sym_return_stmt] = STATE(561), + [sym_continue_stmt] = STATE(561), + [sym_break_stmt] = STATE(561), + [sym_defer_stmt] = STATE(561), + [sym_assert_stmt] = STATE(561), + [sym_declaration_stmt] = STATE(561), + [sym_nextcase_stmt] = STATE(561), + [sym_switch_stmt] = STATE(561), + [sym_if_stmt] = STATE(561), + [sym_for_stmt] = STATE(561), + [sym_foreach_stmt] = STATE(561), + [sym_while_stmt] = STATE(561), + [sym_do_stmt] = STATE(561), + [sym_asm_block_stmt] = STATE(561), + [sym_ct_assert_stmt] = STATE(561), + [sym_ct_echo_stmt] = STATE(561), + [sym_ct_if_stmt] = STATE(561), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(561), + [sym_ct_for_stmt] = STATE(561), + [sym_ct_foreach_stmt] = STATE(561), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -31942,7 +31982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -31951,172 +31991,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1103), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(203), - [anon_sym_const] = ACTIONS(205), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(207), - [anon_sym_continue] = ACTIONS(209), - [anon_sym_break] = ACTIONS(211), - [anon_sym_defer] = ACTIONS(213), - [anon_sym_assert] = ACTIONS(215), - [anon_sym_nextcase] = ACTIONS(217), - [anon_sym_switch] = ACTIONS(219), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(221), - [anon_sym_for] = ACTIONS(223), - [anon_sym_foreach] = ACTIONS(225), - [anon_sym_foreach_r] = ACTIONS(225), - [anon_sym_while] = ACTIONS(227), - [anon_sym_do] = ACTIONS(229), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(409), + [anon_sym_const] = ACTIONS(411), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(231), - [anon_sym_DOLLARassert] = ACTIONS(233), - [anon_sym_DOLLARerror] = ACTIONS(235), - [anon_sym_DOLLARecho] = ACTIONS(237), - [anon_sym_DOLLARif] = ACTIONS(239), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(243), - [anon_sym_DOLLARforeach] = ACTIONS(245), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [105] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(105), [sym_doc_comment] = STATE(105), [sym_block_comment] = STATE(105), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(416), - [sym_expr_stmt] = STATE(416), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(416), - [sym_return_stmt] = STATE(416), - [sym_continue_stmt] = STATE(416), - [sym_break_stmt] = STATE(416), - [sym_defer_stmt] = STATE(416), - [sym_assert_stmt] = STATE(416), - [sym_declaration_stmt] = STATE(416), - [sym_nextcase_stmt] = STATE(416), - [sym_switch_stmt] = STATE(416), - [sym_if_stmt] = STATE(416), - [sym_for_stmt] = STATE(416), - [sym_foreach_stmt] = STATE(416), - [sym_while_stmt] = STATE(416), - [sym_do_stmt] = STATE(416), - [sym_asm_block_stmt] = STATE(416), - [sym_ct_assert_stmt] = STATE(416), - [sym_ct_echo_stmt] = STATE(416), - [sym_ct_if_stmt] = STATE(416), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(416), - [sym_ct_for_stmt] = STATE(416), - [sym_ct_foreach_stmt] = STATE(416), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(557), + [sym_expr_stmt] = STATE(557), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(557), + [sym_return_stmt] = STATE(557), + [sym_continue_stmt] = STATE(557), + [sym_break_stmt] = STATE(557), + [sym_defer_stmt] = STATE(557), + [sym_assert_stmt] = STATE(557), + [sym_declaration_stmt] = STATE(557), + [sym_nextcase_stmt] = STATE(557), + [sym_switch_stmt] = STATE(557), + [sym_if_stmt] = STATE(557), + [sym_for_stmt] = STATE(557), + [sym_foreach_stmt] = STATE(557), + [sym_while_stmt] = STATE(557), + [sym_do_stmt] = STATE(557), + [sym_asm_block_stmt] = STATE(557), + [sym_ct_assert_stmt] = STATE(557), + [sym_ct_echo_stmt] = STATE(557), + [sym_ct_if_stmt] = STATE(557), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(557), + [sym_ct_for_stmt] = STATE(557), + [sym_ct_foreach_stmt] = STATE(557), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -32124,7 +32161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -32133,172 +32170,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1105), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(409), + [anon_sym_const] = ACTIONS(411), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [106] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(106), [sym_doc_comment] = STATE(106), [sym_block_comment] = STATE(106), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(415), - [sym_expr_stmt] = STATE(415), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(415), - [sym_return_stmt] = STATE(415), - [sym_continue_stmt] = STATE(415), - [sym_break_stmt] = STATE(415), - [sym_defer_stmt] = STATE(415), - [sym_assert_stmt] = STATE(415), - [sym_declaration_stmt] = STATE(415), - [sym_nextcase_stmt] = STATE(415), - [sym_switch_stmt] = STATE(415), - [sym_if_stmt] = STATE(415), - [sym_for_stmt] = STATE(415), - [sym_foreach_stmt] = STATE(415), - [sym_while_stmt] = STATE(415), - [sym_do_stmt] = STATE(415), - [sym_asm_block_stmt] = STATE(415), - [sym_ct_assert_stmt] = STATE(415), - [sym_ct_echo_stmt] = STATE(415), - [sym_ct_if_stmt] = STATE(415), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(415), - [sym_ct_for_stmt] = STATE(415), - [sym_ct_foreach_stmt] = STATE(415), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1190), + [sym_const_declaration] = STATE(509), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(504), + [sym_expr_stmt] = STATE(504), + [sym_var_decl] = STATE(2095), + [sym_var_stmt] = STATE(504), + [sym_return_stmt] = STATE(504), + [sym_continue_stmt] = STATE(504), + [sym_break_stmt] = STATE(504), + [sym_defer_stmt] = STATE(504), + [sym_assert_stmt] = STATE(504), + [sym_declaration_stmt] = STATE(504), + [sym_nextcase_stmt] = STATE(504), + [sym_switch_stmt] = STATE(504), + [sym_if_stmt] = STATE(504), + [sym_for_stmt] = STATE(504), + [sym_foreach_stmt] = STATE(504), + [sym_while_stmt] = STATE(504), + [sym_do_stmt] = STATE(504), + [sym_asm_block_stmt] = STATE(504), + [sym_ct_assert_stmt] = STATE(504), + [sym_ct_echo_stmt] = STATE(504), + [sym_ct_if_stmt] = STATE(504), + [sym__ct_switch] = STATE(1553), + [sym_ct_switch_stmt] = STATE(504), + [sym_ct_for_stmt] = STATE(504), + [sym_ct_foreach_stmt] = STATE(504), + [sym__expr] = STATE(1098), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1369), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -32306,7 +32340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -32315,172 +32349,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1107), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(409), + [anon_sym_const] = ACTIONS(411), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(415), + [anon_sym_break] = ACTIONS(417), + [anon_sym_defer] = ACTIONS(419), + [anon_sym_assert] = ACTIONS(421), + [anon_sym_nextcase] = ACTIONS(423), + [anon_sym_switch] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(427), + [anon_sym_for] = ACTIONS(429), + [anon_sym_foreach] = ACTIONS(431), + [anon_sym_foreach_r] = ACTIONS(431), + [anon_sym_while] = ACTIONS(433), + [anon_sym_do] = ACTIONS(435), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(437), + [anon_sym_DOLLARassert] = ACTIONS(439), + [anon_sym_DOLLARerror] = ACTIONS(441), + [anon_sym_DOLLARecho] = ACTIONS(443), + [anon_sym_DOLLARif] = ACTIONS(445), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(451), + [anon_sym_DOLLARforeach] = ACTIONS(453), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [107] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(107), [sym_doc_comment] = STATE(107), [sym_block_comment] = STATE(107), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(629), - [sym_expr_stmt] = STATE(629), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(629), - [sym_return_stmt] = STATE(629), - [sym_continue_stmt] = STATE(629), - [sym_break_stmt] = STATE(629), - [sym_defer_stmt] = STATE(629), - [sym_assert_stmt] = STATE(629), - [sym_declaration_stmt] = STATE(629), - [sym_nextcase_stmt] = STATE(629), - [sym_switch_stmt] = STATE(629), - [sym_if_stmt] = STATE(629), - [sym_for_stmt] = STATE(629), - [sym_foreach_stmt] = STATE(629), - [sym_while_stmt] = STATE(629), - [sym_do_stmt] = STATE(629), - [sym_asm_block_stmt] = STATE(629), - [sym_ct_assert_stmt] = STATE(629), - [sym_ct_echo_stmt] = STATE(629), - [sym_ct_if_stmt] = STATE(629), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(629), - [sym_ct_for_stmt] = STATE(629), - [sym_ct_foreach_stmt] = STATE(629), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(370), + [sym_expr_stmt] = STATE(370), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(370), + [sym_return_stmt] = STATE(370), + [sym_continue_stmt] = STATE(370), + [sym_break_stmt] = STATE(370), + [sym_defer_stmt] = STATE(370), + [sym_assert_stmt] = STATE(370), + [sym_declaration_stmt] = STATE(370), + [sym_nextcase_stmt] = STATE(370), + [sym_switch_stmt] = STATE(370), + [sym_if_stmt] = STATE(370), + [sym_for_stmt] = STATE(370), + [sym_foreach_stmt] = STATE(370), + [sym_while_stmt] = STATE(370), + [sym_do_stmt] = STATE(370), + [sym_asm_block_stmt] = STATE(370), + [sym_ct_assert_stmt] = STATE(370), + [sym_ct_echo_stmt] = STATE(370), + [sym_ct_if_stmt] = STATE(370), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(370), + [sym_ct_for_stmt] = STATE(370), + [sym_ct_foreach_stmt] = STATE(370), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -32488,7 +32519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -32497,172 +32528,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1109), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [108] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(108), [sym_doc_comment] = STATE(108), [sym_block_comment] = STATE(108), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(631), - [sym_expr_stmt] = STATE(631), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(631), - [sym_return_stmt] = STATE(631), - [sym_continue_stmt] = STATE(631), - [sym_break_stmt] = STATE(631), - [sym_defer_stmt] = STATE(631), - [sym_assert_stmt] = STATE(631), - [sym_declaration_stmt] = STATE(631), - [sym_nextcase_stmt] = STATE(631), - [sym_switch_stmt] = STATE(631), - [sym_if_stmt] = STATE(631), - [sym_for_stmt] = STATE(631), - [sym_foreach_stmt] = STATE(631), - [sym_while_stmt] = STATE(631), - [sym_do_stmt] = STATE(631), - [sym_asm_block_stmt] = STATE(631), - [sym_ct_assert_stmt] = STATE(631), - [sym_ct_echo_stmt] = STATE(631), - [sym_ct_if_stmt] = STATE(631), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(631), - [sym_ct_for_stmt] = STATE(631), - [sym_ct_foreach_stmt] = STATE(631), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(371), + [sym_expr_stmt] = STATE(371), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(371), + [sym_return_stmt] = STATE(371), + [sym_continue_stmt] = STATE(371), + [sym_break_stmt] = STATE(371), + [sym_defer_stmt] = STATE(371), + [sym_assert_stmt] = STATE(371), + [sym_declaration_stmt] = STATE(371), + [sym_nextcase_stmt] = STATE(371), + [sym_switch_stmt] = STATE(371), + [sym_if_stmt] = STATE(371), + [sym_for_stmt] = STATE(371), + [sym_foreach_stmt] = STATE(371), + [sym_while_stmt] = STATE(371), + [sym_do_stmt] = STATE(371), + [sym_asm_block_stmt] = STATE(371), + [sym_ct_assert_stmt] = STATE(371), + [sym_ct_echo_stmt] = STATE(371), + [sym_ct_if_stmt] = STATE(371), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(371), + [sym_ct_for_stmt] = STATE(371), + [sym_ct_foreach_stmt] = STATE(371), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -32670,7 +32698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -32679,172 +32707,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1111), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [109] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(109), [sym_doc_comment] = STATE(109), [sym_block_comment] = STATE(109), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(633), - [sym_expr_stmt] = STATE(633), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(633), - [sym_return_stmt] = STATE(633), - [sym_continue_stmt] = STATE(633), - [sym_break_stmt] = STATE(633), - [sym_defer_stmt] = STATE(633), - [sym_assert_stmt] = STATE(633), - [sym_declaration_stmt] = STATE(633), - [sym_nextcase_stmt] = STATE(633), - [sym_switch_stmt] = STATE(633), - [sym_if_stmt] = STATE(633), - [sym_for_stmt] = STATE(633), - [sym_foreach_stmt] = STATE(633), - [sym_while_stmt] = STATE(633), - [sym_do_stmt] = STATE(633), - [sym_asm_block_stmt] = STATE(633), - [sym_ct_assert_stmt] = STATE(633), - [sym_ct_echo_stmt] = STATE(633), - [sym_ct_if_stmt] = STATE(633), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(633), - [sym_ct_for_stmt] = STATE(633), - [sym_ct_foreach_stmt] = STATE(633), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(372), + [sym_expr_stmt] = STATE(372), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(372), + [sym_return_stmt] = STATE(372), + [sym_continue_stmt] = STATE(372), + [sym_break_stmt] = STATE(372), + [sym_defer_stmt] = STATE(372), + [sym_assert_stmt] = STATE(372), + [sym_declaration_stmt] = STATE(372), + [sym_nextcase_stmt] = STATE(372), + [sym_switch_stmt] = STATE(372), + [sym_if_stmt] = STATE(372), + [sym_for_stmt] = STATE(372), + [sym_foreach_stmt] = STATE(372), + [sym_while_stmt] = STATE(372), + [sym_do_stmt] = STATE(372), + [sym_asm_block_stmt] = STATE(372), + [sym_ct_assert_stmt] = STATE(372), + [sym_ct_echo_stmt] = STATE(372), + [sym_ct_if_stmt] = STATE(372), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(372), + [sym_ct_for_stmt] = STATE(372), + [sym_ct_foreach_stmt] = STATE(372), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -32852,7 +32877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -32861,172 +32886,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1113), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [110] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(110), [sym_doc_comment] = STATE(110), [sym_block_comment] = STATE(110), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(414), - [sym_expr_stmt] = STATE(414), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(414), - [sym_return_stmt] = STATE(414), - [sym_continue_stmt] = STATE(414), - [sym_break_stmt] = STATE(414), - [sym_defer_stmt] = STATE(414), - [sym_assert_stmt] = STATE(414), - [sym_declaration_stmt] = STATE(414), - [sym_nextcase_stmt] = STATE(414), - [sym_switch_stmt] = STATE(414), - [sym_if_stmt] = STATE(414), - [sym_for_stmt] = STATE(414), - [sym_foreach_stmt] = STATE(414), - [sym_while_stmt] = STATE(414), - [sym_do_stmt] = STATE(414), - [sym_asm_block_stmt] = STATE(414), - [sym_ct_assert_stmt] = STATE(414), - [sym_ct_echo_stmt] = STATE(414), - [sym_ct_if_stmt] = STATE(414), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(414), - [sym_ct_for_stmt] = STATE(414), - [sym_ct_foreach_stmt] = STATE(414), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(599), + [sym_expr_stmt] = STATE(599), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(599), + [sym_return_stmt] = STATE(599), + [sym_continue_stmt] = STATE(599), + [sym_break_stmt] = STATE(599), + [sym_defer_stmt] = STATE(599), + [sym_assert_stmt] = STATE(599), + [sym_declaration_stmt] = STATE(599), + [sym_nextcase_stmt] = STATE(599), + [sym_switch_stmt] = STATE(599), + [sym_if_stmt] = STATE(599), + [sym_for_stmt] = STATE(599), + [sym_foreach_stmt] = STATE(599), + [sym_while_stmt] = STATE(599), + [sym_do_stmt] = STATE(599), + [sym_asm_block_stmt] = STATE(599), + [sym_ct_assert_stmt] = STATE(599), + [sym_ct_echo_stmt] = STATE(599), + [sym_ct_if_stmt] = STATE(599), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(599), + [sym_ct_for_stmt] = STATE(599), + [sym_ct_foreach_stmt] = STATE(599), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -33034,7 +33056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -33043,172 +33065,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1115), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARforeach] = ACTIONS(705), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [111] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(111), [sym_doc_comment] = STATE(111), [sym_block_comment] = STATE(111), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(655), - [sym_expr_stmt] = STATE(655), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(655), - [sym_return_stmt] = STATE(655), - [sym_continue_stmt] = STATE(655), - [sym_break_stmt] = STATE(655), - [sym_defer_stmt] = STATE(655), - [sym_assert_stmt] = STATE(655), - [sym_declaration_stmt] = STATE(655), - [sym_nextcase_stmt] = STATE(655), - [sym_switch_stmt] = STATE(655), - [sym_if_stmt] = STATE(655), - [sym_for_stmt] = STATE(655), - [sym_foreach_stmt] = STATE(655), - [sym_while_stmt] = STATE(655), - [sym_do_stmt] = STATE(655), - [sym_asm_block_stmt] = STATE(655), - [sym_ct_assert_stmt] = STATE(655), - [sym_ct_echo_stmt] = STATE(655), - [sym_ct_if_stmt] = STATE(655), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(655), - [sym_ct_for_stmt] = STATE(655), - [sym_ct_foreach_stmt] = STATE(655), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(609), + [sym_expr_stmt] = STATE(609), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(609), + [sym_return_stmt] = STATE(609), + [sym_continue_stmt] = STATE(609), + [sym_break_stmt] = STATE(609), + [sym_defer_stmt] = STATE(609), + [sym_assert_stmt] = STATE(609), + [sym_declaration_stmt] = STATE(609), + [sym_nextcase_stmt] = STATE(609), + [sym_switch_stmt] = STATE(609), + [sym_if_stmt] = STATE(609), + [sym_for_stmt] = STATE(609), + [sym_foreach_stmt] = STATE(609), + [sym_while_stmt] = STATE(609), + [sym_do_stmt] = STATE(609), + [sym_asm_block_stmt] = STATE(609), + [sym_ct_assert_stmt] = STATE(609), + [sym_ct_echo_stmt] = STATE(609), + [sym_ct_if_stmt] = STATE(609), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(609), + [sym_ct_for_stmt] = STATE(609), + [sym_ct_foreach_stmt] = STATE(609), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -33216,7 +33235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -33225,172 +33244,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1117), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARforeach] = ACTIONS(705), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [112] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(112), [sym_doc_comment] = STATE(112), [sym_block_comment] = STATE(112), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(657), - [sym_expr_stmt] = STATE(657), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(657), - [sym_return_stmt] = STATE(657), - [sym_continue_stmt] = STATE(657), - [sym_break_stmt] = STATE(657), - [sym_defer_stmt] = STATE(657), - [sym_assert_stmt] = STATE(657), - [sym_declaration_stmt] = STATE(657), - [sym_nextcase_stmt] = STATE(657), - [sym_switch_stmt] = STATE(657), - [sym_if_stmt] = STATE(657), - [sym_for_stmt] = STATE(657), - [sym_foreach_stmt] = STATE(657), - [sym_while_stmt] = STATE(657), - [sym_do_stmt] = STATE(657), - [sym_asm_block_stmt] = STATE(657), - [sym_ct_assert_stmt] = STATE(657), - [sym_ct_echo_stmt] = STATE(657), - [sym_ct_if_stmt] = STATE(657), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(657), - [sym_ct_for_stmt] = STATE(657), - [sym_ct_foreach_stmt] = STATE(657), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(610), + [sym_expr_stmt] = STATE(610), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(610), + [sym_return_stmt] = STATE(610), + [sym_continue_stmt] = STATE(610), + [sym_break_stmt] = STATE(610), + [sym_defer_stmt] = STATE(610), + [sym_assert_stmt] = STATE(610), + [sym_declaration_stmt] = STATE(610), + [sym_nextcase_stmt] = STATE(610), + [sym_switch_stmt] = STATE(610), + [sym_if_stmt] = STATE(610), + [sym_for_stmt] = STATE(610), + [sym_foreach_stmt] = STATE(610), + [sym_while_stmt] = STATE(610), + [sym_do_stmt] = STATE(610), + [sym_asm_block_stmt] = STATE(610), + [sym_ct_assert_stmt] = STATE(610), + [sym_ct_echo_stmt] = STATE(610), + [sym_ct_if_stmt] = STATE(610), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(610), + [sym_ct_for_stmt] = STATE(610), + [sym_ct_foreach_stmt] = STATE(610), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -33398,7 +33414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -33407,172 +33423,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1119), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARforeach] = ACTIONS(705), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [113] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(113), [sym_doc_comment] = STATE(113), [sym_block_comment] = STATE(113), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(658), - [sym_expr_stmt] = STATE(658), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(658), - [sym_return_stmt] = STATE(658), - [sym_continue_stmt] = STATE(658), - [sym_break_stmt] = STATE(658), - [sym_defer_stmt] = STATE(658), - [sym_assert_stmt] = STATE(658), - [sym_declaration_stmt] = STATE(658), - [sym_nextcase_stmt] = STATE(658), - [sym_switch_stmt] = STATE(658), - [sym_if_stmt] = STATE(658), - [sym_for_stmt] = STATE(658), - [sym_foreach_stmt] = STATE(658), - [sym_while_stmt] = STATE(658), - [sym_do_stmt] = STATE(658), - [sym_asm_block_stmt] = STATE(658), - [sym_ct_assert_stmt] = STATE(658), - [sym_ct_echo_stmt] = STATE(658), - [sym_ct_if_stmt] = STATE(658), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(658), - [sym_ct_for_stmt] = STATE(658), - [sym_ct_foreach_stmt] = STATE(658), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(623), + [sym_expr_stmt] = STATE(623), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(623), + [sym_return_stmt] = STATE(623), + [sym_continue_stmt] = STATE(623), + [sym_break_stmt] = STATE(623), + [sym_defer_stmt] = STATE(623), + [sym_assert_stmt] = STATE(623), + [sym_declaration_stmt] = STATE(623), + [sym_nextcase_stmt] = STATE(623), + [sym_switch_stmt] = STATE(623), + [sym_if_stmt] = STATE(623), + [sym_for_stmt] = STATE(623), + [sym_foreach_stmt] = STATE(623), + [sym_while_stmt] = STATE(623), + [sym_do_stmt] = STATE(623), + [sym_asm_block_stmt] = STATE(623), + [sym_ct_assert_stmt] = STATE(623), + [sym_ct_echo_stmt] = STATE(623), + [sym_ct_if_stmt] = STATE(623), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(623), + [sym_ct_for_stmt] = STATE(623), + [sym_ct_foreach_stmt] = STATE(623), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -33580,7 +33593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -33589,172 +33602,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1121), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARforeach] = ACTIONS(705), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [114] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(114), [sym_doc_comment] = STATE(114), [sym_block_comment] = STATE(114), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1039), - [sym_const_declaration] = STATE(693), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(665), - [sym_expr_stmt] = STATE(665), - [sym_var_decl] = STATE(2051), - [sym_var_stmt] = STATE(665), - [sym_return_stmt] = STATE(665), - [sym_continue_stmt] = STATE(665), - [sym_break_stmt] = STATE(665), - [sym_defer_stmt] = STATE(665), - [sym_assert_stmt] = STATE(665), - [sym_declaration_stmt] = STATE(665), - [sym_nextcase_stmt] = STATE(665), - [sym_switch_stmt] = STATE(665), - [sym_if_stmt] = STATE(665), - [sym_for_stmt] = STATE(665), - [sym_foreach_stmt] = STATE(665), - [sym_while_stmt] = STATE(665), - [sym_do_stmt] = STATE(665), - [sym_asm_block_stmt] = STATE(665), - [sym_ct_assert_stmt] = STATE(665), - [sym_ct_echo_stmt] = STATE(665), - [sym_ct_if_stmt] = STATE(665), - [sym__ct_switch] = STATE(1448), - [sym_ct_switch_stmt] = STATE(665), - [sym_ct_for_stmt] = STATE(665), - [sym_ct_foreach_stmt] = STATE(665), - [sym__expr] = STATE(1149), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1432), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(624), + [sym_expr_stmt] = STATE(624), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(624), + [sym_return_stmt] = STATE(624), + [sym_continue_stmt] = STATE(624), + [sym_break_stmt] = STATE(624), + [sym_defer_stmt] = STATE(624), + [sym_assert_stmt] = STATE(624), + [sym_declaration_stmt] = STATE(624), + [sym_nextcase_stmt] = STATE(624), + [sym_switch_stmt] = STATE(624), + [sym_if_stmt] = STATE(624), + [sym_for_stmt] = STATE(624), + [sym_foreach_stmt] = STATE(624), + [sym_while_stmt] = STATE(624), + [sym_do_stmt] = STATE(624), + [sym_asm_block_stmt] = STATE(624), + [sym_ct_assert_stmt] = STATE(624), + [sym_ct_echo_stmt] = STATE(624), + [sym_ct_if_stmt] = STATE(624), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(624), + [sym_ct_for_stmt] = STATE(624), + [sym_ct_foreach_stmt] = STATE(624), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -33762,7 +33772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -33771,172 +33781,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1123), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(565), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_defer] = ACTIONS(573), - [anon_sym_assert] = ACTIONS(575), - [anon_sym_nextcase] = ACTIONS(577), - [anon_sym_switch] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(581), - [anon_sym_for] = ACTIONS(583), - [anon_sym_foreach] = ACTIONS(585), - [anon_sym_foreach_r] = ACTIONS(585), - [anon_sym_while] = ACTIONS(587), - [anon_sym_do] = ACTIONS(589), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(591), - [anon_sym_DOLLARassert] = ACTIONS(593), - [anon_sym_DOLLARerror] = ACTIONS(595), - [anon_sym_DOLLARecho] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(599), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(603), - [anon_sym_DOLLARforeach] = ACTIONS(605), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARforeach] = ACTIONS(705), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [115] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(115), [sym_doc_comment] = STATE(115), [sym_block_comment] = STATE(115), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(410), - [sym_expr_stmt] = STATE(410), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(410), - [sym_return_stmt] = STATE(410), - [sym_continue_stmt] = STATE(410), - [sym_break_stmt] = STATE(410), - [sym_defer_stmt] = STATE(410), - [sym_assert_stmt] = STATE(410), - [sym_declaration_stmt] = STATE(410), - [sym_nextcase_stmt] = STATE(410), - [sym_switch_stmt] = STATE(410), - [sym_if_stmt] = STATE(410), - [sym_for_stmt] = STATE(410), - [sym_foreach_stmt] = STATE(410), - [sym_while_stmt] = STATE(410), - [sym_do_stmt] = STATE(410), - [sym_asm_block_stmt] = STATE(410), - [sym_ct_assert_stmt] = STATE(410), - [sym_ct_echo_stmt] = STATE(410), - [sym_ct_if_stmt] = STATE(410), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(410), - [sym_ct_for_stmt] = STATE(410), - [sym_ct_foreach_stmt] = STATE(410), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1191), + [sym_const_declaration] = STATE(587), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(625), + [sym_expr_stmt] = STATE(625), + [sym_var_decl] = STATE(1948), + [sym_var_stmt] = STATE(625), + [sym_return_stmt] = STATE(625), + [sym_continue_stmt] = STATE(625), + [sym_break_stmt] = STATE(625), + [sym_defer_stmt] = STATE(625), + [sym_assert_stmt] = STATE(625), + [sym_declaration_stmt] = STATE(625), + [sym_nextcase_stmt] = STATE(625), + [sym_switch_stmt] = STATE(625), + [sym_if_stmt] = STATE(625), + [sym_for_stmt] = STATE(625), + [sym_foreach_stmt] = STATE(625), + [sym_while_stmt] = STATE(625), + [sym_do_stmt] = STATE(625), + [sym_asm_block_stmt] = STATE(625), + [sym_ct_assert_stmt] = STATE(625), + [sym_ct_echo_stmt] = STATE(625), + [sym_ct_if_stmt] = STATE(625), + [sym__ct_switch] = STATE(1566), + [sym_ct_switch_stmt] = STATE(625), + [sym_ct_for_stmt] = STATE(625), + [sym_ct_foreach_stmt] = STATE(625), + [sym__expr] = STATE(1070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1373), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -33944,7 +33951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -33953,172 +33960,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1125), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(667), + [anon_sym_continue] = ACTIONS(669), + [anon_sym_break] = ACTIONS(671), + [anon_sym_defer] = ACTIONS(673), + [anon_sym_assert] = ACTIONS(675), + [anon_sym_nextcase] = ACTIONS(677), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(681), + [anon_sym_for] = ACTIONS(683), + [anon_sym_foreach] = ACTIONS(685), + [anon_sym_foreach_r] = ACTIONS(685), + [anon_sym_while] = ACTIONS(687), + [anon_sym_do] = ACTIONS(689), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(691), + [anon_sym_DOLLARassert] = ACTIONS(693), + [anon_sym_DOLLARerror] = ACTIONS(695), + [anon_sym_DOLLARecho] = ACTIONS(697), + [anon_sym_DOLLARif] = ACTIONS(699), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(701), + [anon_sym_DOLLARforeach] = ACTIONS(705), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [116] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(116), [sym_doc_comment] = STATE(116), [sym_block_comment] = STATE(116), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(409), - [sym_expr_stmt] = STATE(409), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(409), - [sym_return_stmt] = STATE(409), - [sym_continue_stmt] = STATE(409), - [sym_break_stmt] = STATE(409), - [sym_defer_stmt] = STATE(409), - [sym_assert_stmt] = STATE(409), - [sym_declaration_stmt] = STATE(409), - [sym_nextcase_stmt] = STATE(409), - [sym_switch_stmt] = STATE(409), - [sym_if_stmt] = STATE(409), - [sym_for_stmt] = STATE(409), - [sym_foreach_stmt] = STATE(409), - [sym_while_stmt] = STATE(409), - [sym_do_stmt] = STATE(409), - [sym_asm_block_stmt] = STATE(409), - [sym_ct_assert_stmt] = STATE(409), - [sym_ct_echo_stmt] = STATE(409), - [sym_ct_if_stmt] = STATE(409), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(409), - [sym_ct_for_stmt] = STATE(409), - [sym_ct_foreach_stmt] = STATE(409), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(669), + [sym_expr_stmt] = STATE(669), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(669), + [sym_return_stmt] = STATE(669), + [sym_continue_stmt] = STATE(669), + [sym_break_stmt] = STATE(669), + [sym_defer_stmt] = STATE(669), + [sym_assert_stmt] = STATE(669), + [sym_declaration_stmt] = STATE(669), + [sym_nextcase_stmt] = STATE(669), + [sym_switch_stmt] = STATE(669), + [sym_if_stmt] = STATE(669), + [sym_for_stmt] = STATE(669), + [sym_foreach_stmt] = STATE(669), + [sym_while_stmt] = STATE(669), + [sym_do_stmt] = STATE(669), + [sym_asm_block_stmt] = STATE(669), + [sym_ct_assert_stmt] = STATE(669), + [sym_ct_echo_stmt] = STATE(669), + [sym_ct_if_stmt] = STATE(669), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(669), + [sym_ct_for_stmt] = STATE(669), + [sym_ct_foreach_stmt] = STATE(669), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -34126,7 +34130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -34135,172 +34139,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1127), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [117] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(117), [sym_doc_comment] = STATE(117), [sym_block_comment] = STATE(117), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1035), - [sym_const_declaration] = STATE(760), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(719), - [sym_expr_stmt] = STATE(719), - [sym_var_decl] = STATE(2146), - [sym_var_stmt] = STATE(719), - [sym_return_stmt] = STATE(719), - [sym_continue_stmt] = STATE(719), - [sym_break_stmt] = STATE(719), - [sym_defer_stmt] = STATE(719), - [sym_assert_stmt] = STATE(719), - [sym_declaration_stmt] = STATE(719), - [sym_nextcase_stmt] = STATE(719), - [sym_switch_stmt] = STATE(719), - [sym_if_stmt] = STATE(719), - [sym_for_stmt] = STATE(719), - [sym_foreach_stmt] = STATE(719), - [sym_while_stmt] = STATE(719), - [sym_do_stmt] = STATE(719), - [sym_asm_block_stmt] = STATE(719), - [sym_ct_assert_stmt] = STATE(719), - [sym_ct_echo_stmt] = STATE(719), - [sym_ct_if_stmt] = STATE(719), - [sym__ct_switch] = STATE(1430), - [sym_ct_switch_stmt] = STATE(719), - [sym_ct_for_stmt] = STATE(719), - [sym_ct_foreach_stmt] = STATE(719), - [sym__expr] = STATE(1155), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1433), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(352), + [sym_expr_stmt] = STATE(352), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(352), + [sym_return_stmt] = STATE(352), + [sym_continue_stmt] = STATE(352), + [sym_break_stmt] = STATE(352), + [sym_defer_stmt] = STATE(352), + [sym_assert_stmt] = STATE(352), + [sym_declaration_stmt] = STATE(352), + [sym_nextcase_stmt] = STATE(352), + [sym_switch_stmt] = STATE(352), + [sym_if_stmt] = STATE(352), + [sym_for_stmt] = STATE(352), + [sym_foreach_stmt] = STATE(352), + [sym_while_stmt] = STATE(352), + [sym_do_stmt] = STATE(352), + [sym_asm_block_stmt] = STATE(352), + [sym_ct_assert_stmt] = STATE(352), + [sym_ct_echo_stmt] = STATE(352), + [sym_ct_if_stmt] = STATE(352), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(352), + [sym_ct_for_stmt] = STATE(352), + [sym_ct_foreach_stmt] = STATE(352), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -34308,7 +34309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -34317,172 +34318,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1129), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(661), - [anon_sym_const] = ACTIONS(663), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(667), - [anon_sym_break] = ACTIONS(669), - [anon_sym_defer] = ACTIONS(671), - [anon_sym_assert] = ACTIONS(673), - [anon_sym_nextcase] = ACTIONS(675), - [anon_sym_switch] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(679), - [anon_sym_for] = ACTIONS(681), - [anon_sym_foreach] = ACTIONS(683), - [anon_sym_foreach_r] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_do] = ACTIONS(687), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(689), - [anon_sym_DOLLARassert] = ACTIONS(691), - [anon_sym_DOLLARerror] = ACTIONS(693), - [anon_sym_DOLLARecho] = ACTIONS(695), - [anon_sym_DOLLARif] = ACTIONS(697), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(699), - [anon_sym_DOLLARforeach] = ACTIONS(701), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [118] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(118), [sym_doc_comment] = STATE(118), [sym_block_comment] = STATE(118), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1035), - [sym_const_declaration] = STATE(760), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(720), - [sym_expr_stmt] = STATE(720), - [sym_var_decl] = STATE(2146), - [sym_var_stmt] = STATE(720), - [sym_return_stmt] = STATE(720), - [sym_continue_stmt] = STATE(720), - [sym_break_stmt] = STATE(720), - [sym_defer_stmt] = STATE(720), - [sym_assert_stmt] = STATE(720), - [sym_declaration_stmt] = STATE(720), - [sym_nextcase_stmt] = STATE(720), - [sym_switch_stmt] = STATE(720), - [sym_if_stmt] = STATE(720), - [sym_for_stmt] = STATE(720), - [sym_foreach_stmt] = STATE(720), - [sym_while_stmt] = STATE(720), - [sym_do_stmt] = STATE(720), - [sym_asm_block_stmt] = STATE(720), - [sym_ct_assert_stmt] = STATE(720), - [sym_ct_echo_stmt] = STATE(720), - [sym_ct_if_stmt] = STATE(720), - [sym__ct_switch] = STATE(1430), - [sym_ct_switch_stmt] = STATE(720), - [sym_ct_for_stmt] = STATE(720), - [sym_ct_foreach_stmt] = STATE(720), - [sym__expr] = STATE(1155), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1433), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(679), + [sym_expr_stmt] = STATE(679), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(679), + [sym_return_stmt] = STATE(679), + [sym_continue_stmt] = STATE(679), + [sym_break_stmt] = STATE(679), + [sym_defer_stmt] = STATE(679), + [sym_assert_stmt] = STATE(679), + [sym_declaration_stmt] = STATE(679), + [sym_nextcase_stmt] = STATE(679), + [sym_switch_stmt] = STATE(679), + [sym_if_stmt] = STATE(679), + [sym_for_stmt] = STATE(679), + [sym_foreach_stmt] = STATE(679), + [sym_while_stmt] = STATE(679), + [sym_do_stmt] = STATE(679), + [sym_asm_block_stmt] = STATE(679), + [sym_ct_assert_stmt] = STATE(679), + [sym_ct_echo_stmt] = STATE(679), + [sym_ct_if_stmt] = STATE(679), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(679), + [sym_ct_for_stmt] = STATE(679), + [sym_ct_foreach_stmt] = STATE(679), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -34490,7 +34488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -34499,172 +34497,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1131), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(661), - [anon_sym_const] = ACTIONS(663), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(667), - [anon_sym_break] = ACTIONS(669), - [anon_sym_defer] = ACTIONS(671), - [anon_sym_assert] = ACTIONS(673), - [anon_sym_nextcase] = ACTIONS(675), - [anon_sym_switch] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(679), - [anon_sym_for] = ACTIONS(681), - [anon_sym_foreach] = ACTIONS(683), - [anon_sym_foreach_r] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_do] = ACTIONS(687), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(689), - [anon_sym_DOLLARassert] = ACTIONS(691), - [anon_sym_DOLLARerror] = ACTIONS(693), - [anon_sym_DOLLARecho] = ACTIONS(695), - [anon_sym_DOLLARif] = ACTIONS(697), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(699), - [anon_sym_DOLLARforeach] = ACTIONS(701), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [119] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(119), [sym_doc_comment] = STATE(119), [sym_block_comment] = STATE(119), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1035), - [sym_const_declaration] = STATE(760), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(721), - [sym_expr_stmt] = STATE(721), - [sym_var_decl] = STATE(2146), - [sym_var_stmt] = STATE(721), - [sym_return_stmt] = STATE(721), - [sym_continue_stmt] = STATE(721), - [sym_break_stmt] = STATE(721), - [sym_defer_stmt] = STATE(721), - [sym_assert_stmt] = STATE(721), - [sym_declaration_stmt] = STATE(721), - [sym_nextcase_stmt] = STATE(721), - [sym_switch_stmt] = STATE(721), - [sym_if_stmt] = STATE(721), - [sym_for_stmt] = STATE(721), - [sym_foreach_stmt] = STATE(721), - [sym_while_stmt] = STATE(721), - [sym_do_stmt] = STATE(721), - [sym_asm_block_stmt] = STATE(721), - [sym_ct_assert_stmt] = STATE(721), - [sym_ct_echo_stmt] = STATE(721), - [sym_ct_if_stmt] = STATE(721), - [sym__ct_switch] = STATE(1430), - [sym_ct_switch_stmt] = STATE(721), - [sym_ct_for_stmt] = STATE(721), - [sym_ct_foreach_stmt] = STATE(721), - [sym__expr] = STATE(1155), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1433), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(680), + [sym_expr_stmt] = STATE(680), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(680), + [sym_return_stmt] = STATE(680), + [sym_continue_stmt] = STATE(680), + [sym_break_stmt] = STATE(680), + [sym_defer_stmt] = STATE(680), + [sym_assert_stmt] = STATE(680), + [sym_declaration_stmt] = STATE(680), + [sym_nextcase_stmt] = STATE(680), + [sym_switch_stmt] = STATE(680), + [sym_if_stmt] = STATE(680), + [sym_for_stmt] = STATE(680), + [sym_foreach_stmt] = STATE(680), + [sym_while_stmt] = STATE(680), + [sym_do_stmt] = STATE(680), + [sym_asm_block_stmt] = STATE(680), + [sym_ct_assert_stmt] = STATE(680), + [sym_ct_echo_stmt] = STATE(680), + [sym_ct_if_stmt] = STATE(680), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(680), + [sym_ct_for_stmt] = STATE(680), + [sym_ct_foreach_stmt] = STATE(680), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -34672,7 +34667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -34681,172 +34676,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1133), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(661), - [anon_sym_const] = ACTIONS(663), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(667), - [anon_sym_break] = ACTIONS(669), - [anon_sym_defer] = ACTIONS(671), - [anon_sym_assert] = ACTIONS(673), - [anon_sym_nextcase] = ACTIONS(675), - [anon_sym_switch] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(679), - [anon_sym_for] = ACTIONS(681), - [anon_sym_foreach] = ACTIONS(683), - [anon_sym_foreach_r] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_do] = ACTIONS(687), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(689), - [anon_sym_DOLLARassert] = ACTIONS(691), - [anon_sym_DOLLARerror] = ACTIONS(693), - [anon_sym_DOLLARecho] = ACTIONS(695), - [anon_sym_DOLLARif] = ACTIONS(697), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(699), - [anon_sym_DOLLARforeach] = ACTIONS(701), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [120] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(120), [sym_doc_comment] = STATE(120), [sym_block_comment] = STATE(120), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1042), - [sym_const_declaration] = STATE(506), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(517), - [sym_expr_stmt] = STATE(517), - [sym_var_decl] = STATE(2226), - [sym_var_stmt] = STATE(517), - [sym_return_stmt] = STATE(517), - [sym_continue_stmt] = STATE(517), - [sym_break_stmt] = STATE(517), - [sym_defer_stmt] = STATE(517), - [sym_assert_stmt] = STATE(517), - [sym_declaration_stmt] = STATE(517), - [sym_nextcase_stmt] = STATE(517), - [sym_switch_stmt] = STATE(517), - [sym_if_stmt] = STATE(517), - [sym_for_stmt] = STATE(517), - [sym_foreach_stmt] = STATE(517), - [sym_while_stmt] = STATE(517), - [sym_do_stmt] = STATE(517), - [sym_asm_block_stmt] = STATE(517), - [sym_ct_assert_stmt] = STATE(517), - [sym_ct_echo_stmt] = STATE(517), - [sym_ct_if_stmt] = STATE(517), - [sym__ct_switch] = STATE(1559), - [sym_ct_switch_stmt] = STATE(517), - [sym_ct_for_stmt] = STATE(517), - [sym_ct_foreach_stmt] = STATE(517), - [sym__expr] = STATE(1140), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1553), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(695), + [sym_expr_stmt] = STATE(695), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(695), + [sym_return_stmt] = STATE(695), + [sym_continue_stmt] = STATE(695), + [sym_break_stmt] = STATE(695), + [sym_defer_stmt] = STATE(695), + [sym_assert_stmt] = STATE(695), + [sym_declaration_stmt] = STATE(695), + [sym_nextcase_stmt] = STATE(695), + [sym_switch_stmt] = STATE(695), + [sym_if_stmt] = STATE(695), + [sym_for_stmt] = STATE(695), + [sym_foreach_stmt] = STATE(695), + [sym_while_stmt] = STATE(695), + [sym_do_stmt] = STATE(695), + [sym_asm_block_stmt] = STATE(695), + [sym_ct_assert_stmt] = STATE(695), + [sym_ct_echo_stmt] = STATE(695), + [sym_ct_if_stmt] = STATE(695), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(695), + [sym_ct_for_stmt] = STATE(695), + [sym_ct_foreach_stmt] = STATE(695), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -34854,7 +34846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -34863,172 +34855,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1135), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_const] = ACTIONS(419), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_break] = ACTIONS(425), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_assert] = ACTIONS(429), - [anon_sym_nextcase] = ACTIONS(431), - [anon_sym_switch] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_foreach] = ACTIONS(439), - [anon_sym_foreach_r] = ACTIONS(439), - [anon_sym_while] = ACTIONS(441), - [anon_sym_do] = ACTIONS(443), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(445), - [anon_sym_DOLLARassert] = ACTIONS(447), - [anon_sym_DOLLARerror] = ACTIONS(449), - [anon_sym_DOLLARecho] = ACTIONS(451), - [anon_sym_DOLLARif] = ACTIONS(453), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(459), - [anon_sym_DOLLARforeach] = ACTIONS(461), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [121] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(121), [sym_doc_comment] = STATE(121), [sym_block_comment] = STATE(121), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1035), - [sym_const_declaration] = STATE(760), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(749), - [sym_expr_stmt] = STATE(749), - [sym_var_decl] = STATE(2146), - [sym_var_stmt] = STATE(749), - [sym_return_stmt] = STATE(749), - [sym_continue_stmt] = STATE(749), - [sym_break_stmt] = STATE(749), - [sym_defer_stmt] = STATE(749), - [sym_assert_stmt] = STATE(749), - [sym_declaration_stmt] = STATE(749), - [sym_nextcase_stmt] = STATE(749), - [sym_switch_stmt] = STATE(749), - [sym_if_stmt] = STATE(749), - [sym_for_stmt] = STATE(749), - [sym_foreach_stmt] = STATE(749), - [sym_while_stmt] = STATE(749), - [sym_do_stmt] = STATE(749), - [sym_asm_block_stmt] = STATE(749), - [sym_ct_assert_stmt] = STATE(749), - [sym_ct_echo_stmt] = STATE(749), - [sym_ct_if_stmt] = STATE(749), - [sym__ct_switch] = STATE(1430), - [sym_ct_switch_stmt] = STATE(749), - [sym_ct_for_stmt] = STATE(749), - [sym_ct_foreach_stmt] = STATE(749), - [sym__expr] = STATE(1155), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1433), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(696), + [sym_expr_stmt] = STATE(696), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(696), + [sym_return_stmt] = STATE(696), + [sym_continue_stmt] = STATE(696), + [sym_break_stmt] = STATE(696), + [sym_defer_stmt] = STATE(696), + [sym_assert_stmt] = STATE(696), + [sym_declaration_stmt] = STATE(696), + [sym_nextcase_stmt] = STATE(696), + [sym_switch_stmt] = STATE(696), + [sym_if_stmt] = STATE(696), + [sym_for_stmt] = STATE(696), + [sym_foreach_stmt] = STATE(696), + [sym_while_stmt] = STATE(696), + [sym_do_stmt] = STATE(696), + [sym_asm_block_stmt] = STATE(696), + [sym_ct_assert_stmt] = STATE(696), + [sym_ct_echo_stmt] = STATE(696), + [sym_ct_if_stmt] = STATE(696), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(696), + [sym_ct_for_stmt] = STATE(696), + [sym_ct_foreach_stmt] = STATE(696), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -35036,7 +35025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -35045,172 +35034,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1137), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(661), - [anon_sym_const] = ACTIONS(663), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(667), - [anon_sym_break] = ACTIONS(669), - [anon_sym_defer] = ACTIONS(671), - [anon_sym_assert] = ACTIONS(673), - [anon_sym_nextcase] = ACTIONS(675), - [anon_sym_switch] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(679), - [anon_sym_for] = ACTIONS(681), - [anon_sym_foreach] = ACTIONS(683), - [anon_sym_foreach_r] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_do] = ACTIONS(687), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(689), - [anon_sym_DOLLARassert] = ACTIONS(691), - [anon_sym_DOLLARerror] = ACTIONS(693), - [anon_sym_DOLLARecho] = ACTIONS(695), - [anon_sym_DOLLARif] = ACTIONS(697), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(699), - [anon_sym_DOLLARforeach] = ACTIONS(701), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [122] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(122), [sym_doc_comment] = STATE(122), [sym_block_comment] = STATE(122), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1035), - [sym_const_declaration] = STATE(760), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(750), - [sym_expr_stmt] = STATE(750), - [sym_var_decl] = STATE(2146), - [sym_var_stmt] = STATE(750), - [sym_return_stmt] = STATE(750), - [sym_continue_stmt] = STATE(750), - [sym_break_stmt] = STATE(750), - [sym_defer_stmt] = STATE(750), - [sym_assert_stmt] = STATE(750), - [sym_declaration_stmt] = STATE(750), - [sym_nextcase_stmt] = STATE(750), - [sym_switch_stmt] = STATE(750), - [sym_if_stmt] = STATE(750), - [sym_for_stmt] = STATE(750), - [sym_foreach_stmt] = STATE(750), - [sym_while_stmt] = STATE(750), - [sym_do_stmt] = STATE(750), - [sym_asm_block_stmt] = STATE(750), - [sym_ct_assert_stmt] = STATE(750), - [sym_ct_echo_stmt] = STATE(750), - [sym_ct_if_stmt] = STATE(750), - [sym__ct_switch] = STATE(1430), - [sym_ct_switch_stmt] = STATE(750), - [sym_ct_for_stmt] = STATE(750), - [sym_ct_foreach_stmt] = STATE(750), - [sym__expr] = STATE(1155), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1433), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(697), + [sym_expr_stmt] = STATE(697), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(697), + [sym_return_stmt] = STATE(697), + [sym_continue_stmt] = STATE(697), + [sym_break_stmt] = STATE(697), + [sym_defer_stmt] = STATE(697), + [sym_assert_stmt] = STATE(697), + [sym_declaration_stmt] = STATE(697), + [sym_nextcase_stmt] = STATE(697), + [sym_switch_stmt] = STATE(697), + [sym_if_stmt] = STATE(697), + [sym_for_stmt] = STATE(697), + [sym_foreach_stmt] = STATE(697), + [sym_while_stmt] = STATE(697), + [sym_do_stmt] = STATE(697), + [sym_asm_block_stmt] = STATE(697), + [sym_ct_assert_stmt] = STATE(697), + [sym_ct_echo_stmt] = STATE(697), + [sym_ct_if_stmt] = STATE(697), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(697), + [sym_ct_for_stmt] = STATE(697), + [sym_ct_foreach_stmt] = STATE(697), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -35218,7 +35204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -35227,172 +35213,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1139), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(661), - [anon_sym_const] = ACTIONS(663), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(667), - [anon_sym_break] = ACTIONS(669), - [anon_sym_defer] = ACTIONS(671), - [anon_sym_assert] = ACTIONS(673), - [anon_sym_nextcase] = ACTIONS(675), - [anon_sym_switch] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(679), - [anon_sym_for] = ACTIONS(681), - [anon_sym_foreach] = ACTIONS(683), - [anon_sym_foreach_r] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_do] = ACTIONS(687), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(689), - [anon_sym_DOLLARassert] = ACTIONS(691), - [anon_sym_DOLLARerror] = ACTIONS(693), - [anon_sym_DOLLARecho] = ACTIONS(695), - [anon_sym_DOLLARif] = ACTIONS(697), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(699), - [anon_sym_DOLLARforeach] = ACTIONS(701), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [123] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(123), [sym_doc_comment] = STATE(123), [sym_block_comment] = STATE(123), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1042), - [sym_const_declaration] = STATE(506), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(524), - [sym_expr_stmt] = STATE(524), - [sym_var_decl] = STATE(2226), - [sym_var_stmt] = STATE(524), - [sym_return_stmt] = STATE(524), - [sym_continue_stmt] = STATE(524), - [sym_break_stmt] = STATE(524), - [sym_defer_stmt] = STATE(524), - [sym_assert_stmt] = STATE(524), - [sym_declaration_stmt] = STATE(524), - [sym_nextcase_stmt] = STATE(524), - [sym_switch_stmt] = STATE(524), - [sym_if_stmt] = STATE(524), - [sym_for_stmt] = STATE(524), - [sym_foreach_stmt] = STATE(524), - [sym_while_stmt] = STATE(524), - [sym_do_stmt] = STATE(524), - [sym_asm_block_stmt] = STATE(524), - [sym_ct_assert_stmt] = STATE(524), - [sym_ct_echo_stmt] = STATE(524), - [sym_ct_if_stmt] = STATE(524), - [sym__ct_switch] = STATE(1559), - [sym_ct_switch_stmt] = STATE(524), - [sym_ct_for_stmt] = STATE(524), - [sym_ct_foreach_stmt] = STATE(524), - [sym__expr] = STATE(1140), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1553), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(742), + [sym_expr_stmt] = STATE(742), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(742), + [sym_return_stmt] = STATE(742), + [sym_continue_stmt] = STATE(742), + [sym_break_stmt] = STATE(742), + [sym_defer_stmt] = STATE(742), + [sym_assert_stmt] = STATE(742), + [sym_declaration_stmt] = STATE(742), + [sym_nextcase_stmt] = STATE(742), + [sym_switch_stmt] = STATE(742), + [sym_if_stmt] = STATE(742), + [sym_for_stmt] = STATE(742), + [sym_foreach_stmt] = STATE(742), + [sym_while_stmt] = STATE(742), + [sym_do_stmt] = STATE(742), + [sym_asm_block_stmt] = STATE(742), + [sym_ct_assert_stmt] = STATE(742), + [sym_ct_echo_stmt] = STATE(742), + [sym_ct_if_stmt] = STATE(742), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(742), + [sym_ct_for_stmt] = STATE(742), + [sym_ct_foreach_stmt] = STATE(742), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -35400,7 +35383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -35409,113 +35392,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1141), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_const] = ACTIONS(419), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_break] = ACTIONS(425), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_assert] = ACTIONS(429), - [anon_sym_nextcase] = ACTIONS(431), - [anon_sym_switch] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_foreach] = ACTIONS(439), - [anon_sym_foreach_r] = ACTIONS(439), - [anon_sym_while] = ACTIONS(441), - [anon_sym_do] = ACTIONS(443), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(445), - [anon_sym_DOLLARassert] = ACTIONS(447), - [anon_sym_DOLLARerror] = ACTIONS(449), - [anon_sym_DOLLARecho] = ACTIONS(451), - [anon_sym_DOLLARif] = ACTIONS(453), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(459), - [anon_sym_DOLLARforeach] = ACTIONS(461), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [124] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(124), [sym_doc_comment] = STATE(124), [sym_block_comment] = STATE(124), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1035), - [sym_const_declaration] = STATE(760), - [sym_lambda_declaration] = STATE(1486), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), [sym_compound_stmt] = STATE(751), [sym_expr_stmt] = STATE(751), - [sym_var_decl] = STATE(2146), + [sym_var_decl] = STATE(2258), [sym_var_stmt] = STATE(751), [sym_return_stmt] = STATE(751), [sym_continue_stmt] = STATE(751), @@ -35534,47 +35519,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_assert_stmt] = STATE(751), [sym_ct_echo_stmt] = STATE(751), [sym_ct_if_stmt] = STATE(751), - [sym__ct_switch] = STATE(1430), + [sym__ct_switch] = STATE(1591), [sym_ct_switch_stmt] = STATE(751), [sym_ct_for_stmt] = STATE(751), [sym_ct_foreach_stmt] = STATE(751), - [sym__expr] = STATE(1155), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1433), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -35582,7 +35562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -35591,172 +35571,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1143), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(661), - [anon_sym_const] = ACTIONS(663), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(667), - [anon_sym_break] = ACTIONS(669), - [anon_sym_defer] = ACTIONS(671), - [anon_sym_assert] = ACTIONS(673), - [anon_sym_nextcase] = ACTIONS(675), - [anon_sym_switch] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(679), - [anon_sym_for] = ACTIONS(681), - [anon_sym_foreach] = ACTIONS(683), - [anon_sym_foreach_r] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_do] = ACTIONS(687), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(689), - [anon_sym_DOLLARassert] = ACTIONS(691), - [anon_sym_DOLLARerror] = ACTIONS(693), - [anon_sym_DOLLARecho] = ACTIONS(695), - [anon_sym_DOLLARif] = ACTIONS(697), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(699), - [anon_sym_DOLLARforeach] = ACTIONS(701), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [125] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(125), [sym_doc_comment] = STATE(125), [sym_block_comment] = STATE(125), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1042), - [sym_const_declaration] = STATE(506), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(525), - [sym_expr_stmt] = STATE(525), - [sym_var_decl] = STATE(2226), - [sym_var_stmt] = STATE(525), - [sym_return_stmt] = STATE(525), - [sym_continue_stmt] = STATE(525), - [sym_break_stmt] = STATE(525), - [sym_defer_stmt] = STATE(525), - [sym_assert_stmt] = STATE(525), - [sym_declaration_stmt] = STATE(525), - [sym_nextcase_stmt] = STATE(525), - [sym_switch_stmt] = STATE(525), - [sym_if_stmt] = STATE(525), - [sym_for_stmt] = STATE(525), - [sym_foreach_stmt] = STATE(525), - [sym_while_stmt] = STATE(525), - [sym_do_stmt] = STATE(525), - [sym_asm_block_stmt] = STATE(525), - [sym_ct_assert_stmt] = STATE(525), - [sym_ct_echo_stmt] = STATE(525), - [sym_ct_if_stmt] = STATE(525), - [sym__ct_switch] = STATE(1559), - [sym_ct_switch_stmt] = STATE(525), - [sym_ct_for_stmt] = STATE(525), - [sym_ct_foreach_stmt] = STATE(525), - [sym__expr] = STATE(1140), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1553), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(752), + [sym_expr_stmt] = STATE(752), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(752), + [sym_return_stmt] = STATE(752), + [sym_continue_stmt] = STATE(752), + [sym_break_stmt] = STATE(752), + [sym_defer_stmt] = STATE(752), + [sym_assert_stmt] = STATE(752), + [sym_declaration_stmt] = STATE(752), + [sym_nextcase_stmt] = STATE(752), + [sym_switch_stmt] = STATE(752), + [sym_if_stmt] = STATE(752), + [sym_for_stmt] = STATE(752), + [sym_foreach_stmt] = STATE(752), + [sym_while_stmt] = STATE(752), + [sym_do_stmt] = STATE(752), + [sym_asm_block_stmt] = STATE(752), + [sym_ct_assert_stmt] = STATE(752), + [sym_ct_echo_stmt] = STATE(752), + [sym_ct_if_stmt] = STATE(752), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(752), + [sym_ct_for_stmt] = STATE(752), + [sym_ct_foreach_stmt] = STATE(752), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -35764,7 +35741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -35773,172 +35750,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1145), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_const] = ACTIONS(419), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_break] = ACTIONS(425), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_assert] = ACTIONS(429), - [anon_sym_nextcase] = ACTIONS(431), - [anon_sym_switch] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_foreach] = ACTIONS(439), - [anon_sym_foreach_r] = ACTIONS(439), - [anon_sym_while] = ACTIONS(441), - [anon_sym_do] = ACTIONS(443), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(445), - [anon_sym_DOLLARassert] = ACTIONS(447), - [anon_sym_DOLLARerror] = ACTIONS(449), - [anon_sym_DOLLARecho] = ACTIONS(451), - [anon_sym_DOLLARif] = ACTIONS(453), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(459), - [anon_sym_DOLLARforeach] = ACTIONS(461), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [126] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(126), [sym_doc_comment] = STATE(126), [sym_block_comment] = STATE(126), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1042), - [sym_const_declaration] = STATE(506), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(526), - [sym_expr_stmt] = STATE(526), - [sym_var_decl] = STATE(2226), - [sym_var_stmt] = STATE(526), - [sym_return_stmt] = STATE(526), - [sym_continue_stmt] = STATE(526), - [sym_break_stmt] = STATE(526), - [sym_defer_stmt] = STATE(526), - [sym_assert_stmt] = STATE(526), - [sym_declaration_stmt] = STATE(526), - [sym_nextcase_stmt] = STATE(526), - [sym_switch_stmt] = STATE(526), - [sym_if_stmt] = STATE(526), - [sym_for_stmt] = STATE(526), - [sym_foreach_stmt] = STATE(526), - [sym_while_stmt] = STATE(526), - [sym_do_stmt] = STATE(526), - [sym_asm_block_stmt] = STATE(526), - [sym_ct_assert_stmt] = STATE(526), - [sym_ct_echo_stmt] = STATE(526), - [sym_ct_if_stmt] = STATE(526), - [sym__ct_switch] = STATE(1559), - [sym_ct_switch_stmt] = STATE(526), - [sym_ct_for_stmt] = STATE(526), - [sym_ct_foreach_stmt] = STATE(526), - [sym__expr] = STATE(1140), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1553), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(753), + [sym_expr_stmt] = STATE(753), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(753), + [sym_return_stmt] = STATE(753), + [sym_continue_stmt] = STATE(753), + [sym_break_stmt] = STATE(753), + [sym_defer_stmt] = STATE(753), + [sym_assert_stmt] = STATE(753), + [sym_declaration_stmt] = STATE(753), + [sym_nextcase_stmt] = STATE(753), + [sym_switch_stmt] = STATE(753), + [sym_if_stmt] = STATE(753), + [sym_for_stmt] = STATE(753), + [sym_foreach_stmt] = STATE(753), + [sym_while_stmt] = STATE(753), + [sym_do_stmt] = STATE(753), + [sym_asm_block_stmt] = STATE(753), + [sym_ct_assert_stmt] = STATE(753), + [sym_ct_echo_stmt] = STATE(753), + [sym_ct_if_stmt] = STATE(753), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(753), + [sym_ct_for_stmt] = STATE(753), + [sym_ct_foreach_stmt] = STATE(753), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -35946,7 +35920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -35955,172 +35929,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1147), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_const] = ACTIONS(419), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_break] = ACTIONS(425), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_assert] = ACTIONS(429), - [anon_sym_nextcase] = ACTIONS(431), - [anon_sym_switch] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_foreach] = ACTIONS(439), - [anon_sym_foreach_r] = ACTIONS(439), - [anon_sym_while] = ACTIONS(441), - [anon_sym_do] = ACTIONS(443), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(445), - [anon_sym_DOLLARassert] = ACTIONS(447), - [anon_sym_DOLLARerror] = ACTIONS(449), - [anon_sym_DOLLARecho] = ACTIONS(451), - [anon_sym_DOLLARif] = ACTIONS(453), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(459), - [anon_sym_DOLLARforeach] = ACTIONS(461), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [127] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(127), [sym_doc_comment] = STATE(127), [sym_block_comment] = STATE(127), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1038), - [sym_const_declaration] = STATE(376), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(392), - [sym_expr_stmt] = STATE(392), - [sym_var_decl] = STATE(2139), - [sym_var_stmt] = STATE(392), - [sym_return_stmt] = STATE(392), - [sym_continue_stmt] = STATE(392), - [sym_break_stmt] = STATE(392), - [sym_defer_stmt] = STATE(392), - [sym_assert_stmt] = STATE(392), - [sym_declaration_stmt] = STATE(392), - [sym_nextcase_stmt] = STATE(392), - [sym_switch_stmt] = STATE(392), - [sym_if_stmt] = STATE(392), - [sym_for_stmt] = STATE(392), - [sym_foreach_stmt] = STATE(392), - [sym_while_stmt] = STATE(392), - [sym_do_stmt] = STATE(392), - [sym_asm_block_stmt] = STATE(392), - [sym_ct_assert_stmt] = STATE(392), - [sym_ct_echo_stmt] = STATE(392), - [sym_ct_if_stmt] = STATE(392), - [sym__ct_switch] = STATE(1508), - [sym_ct_switch_stmt] = STATE(392), - [sym_ct_for_stmt] = STATE(392), - [sym_ct_foreach_stmt] = STATE(392), - [sym__expr] = STATE(1130), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1405), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(768), + [sym_expr_stmt] = STATE(768), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(768), + [sym_return_stmt] = STATE(768), + [sym_continue_stmt] = STATE(768), + [sym_break_stmt] = STATE(768), + [sym_defer_stmt] = STATE(768), + [sym_assert_stmt] = STATE(768), + [sym_declaration_stmt] = STATE(768), + [sym_nextcase_stmt] = STATE(768), + [sym_switch_stmt] = STATE(768), + [sym_if_stmt] = STATE(768), + [sym_for_stmt] = STATE(768), + [sym_foreach_stmt] = STATE(768), + [sym_while_stmt] = STATE(768), + [sym_do_stmt] = STATE(768), + [sym_asm_block_stmt] = STATE(768), + [sym_ct_assert_stmt] = STATE(768), + [sym_ct_echo_stmt] = STATE(768), + [sym_ct_if_stmt] = STATE(768), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(768), + [sym_ct_for_stmt] = STATE(768), + [sym_ct_foreach_stmt] = STATE(768), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -36128,7 +36099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -36137,172 +36108,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1149), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(99), - [anon_sym_const] = ACTIONS(103), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(111), - [anon_sym_break] = ACTIONS(113), - [anon_sym_defer] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(117), - [anon_sym_nextcase] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(129), - [anon_sym_for] = ACTIONS(131), - [anon_sym_foreach] = ACTIONS(133), - [anon_sym_foreach_r] = ACTIONS(133), - [anon_sym_while] = ACTIONS(135), - [anon_sym_do] = ACTIONS(137), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(141), - [anon_sym_DOLLARassert] = ACTIONS(143), - [anon_sym_DOLLARerror] = ACTIONS(145), - [anon_sym_DOLLARecho] = ACTIONS(147), - [anon_sym_DOLLARif] = ACTIONS(149), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(153), - [anon_sym_DOLLARforeach] = ACTIONS(155), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [128] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(128), [sym_doc_comment] = STATE(128), [sym_block_comment] = STATE(128), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1035), - [sym_const_declaration] = STATE(760), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(758), - [sym_expr_stmt] = STATE(758), - [sym_var_decl] = STATE(2146), - [sym_var_stmt] = STATE(758), - [sym_return_stmt] = STATE(758), - [sym_continue_stmt] = STATE(758), - [sym_break_stmt] = STATE(758), - [sym_defer_stmt] = STATE(758), - [sym_assert_stmt] = STATE(758), - [sym_declaration_stmt] = STATE(758), - [sym_nextcase_stmt] = STATE(758), - [sym_switch_stmt] = STATE(758), - [sym_if_stmt] = STATE(758), - [sym_for_stmt] = STATE(758), - [sym_foreach_stmt] = STATE(758), - [sym_while_stmt] = STATE(758), - [sym_do_stmt] = STATE(758), - [sym_asm_block_stmt] = STATE(758), - [sym_ct_assert_stmt] = STATE(758), - [sym_ct_echo_stmt] = STATE(758), - [sym_ct_if_stmt] = STATE(758), - [sym__ct_switch] = STATE(1430), - [sym_ct_switch_stmt] = STATE(758), - [sym_ct_for_stmt] = STATE(758), - [sym_ct_foreach_stmt] = STATE(758), - [sym__expr] = STATE(1155), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1433), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(769), + [sym_expr_stmt] = STATE(769), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(769), + [sym_return_stmt] = STATE(769), + [sym_continue_stmt] = STATE(769), + [sym_break_stmt] = STATE(769), + [sym_defer_stmt] = STATE(769), + [sym_assert_stmt] = STATE(769), + [sym_declaration_stmt] = STATE(769), + [sym_nextcase_stmt] = STATE(769), + [sym_switch_stmt] = STATE(769), + [sym_if_stmt] = STATE(769), + [sym_for_stmt] = STATE(769), + [sym_foreach_stmt] = STATE(769), + [sym_while_stmt] = STATE(769), + [sym_do_stmt] = STATE(769), + [sym_asm_block_stmt] = STATE(769), + [sym_ct_assert_stmt] = STATE(769), + [sym_ct_echo_stmt] = STATE(769), + [sym_ct_if_stmt] = STATE(769), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(769), + [sym_ct_for_stmt] = STATE(769), + [sym_ct_foreach_stmt] = STATE(769), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -36310,7 +36278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -36319,172 +36287,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1151), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(661), - [anon_sym_const] = ACTIONS(663), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(665), - [anon_sym_continue] = ACTIONS(667), - [anon_sym_break] = ACTIONS(669), - [anon_sym_defer] = ACTIONS(671), - [anon_sym_assert] = ACTIONS(673), - [anon_sym_nextcase] = ACTIONS(675), - [anon_sym_switch] = ACTIONS(677), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(679), - [anon_sym_for] = ACTIONS(681), - [anon_sym_foreach] = ACTIONS(683), - [anon_sym_foreach_r] = ACTIONS(683), - [anon_sym_while] = ACTIONS(685), - [anon_sym_do] = ACTIONS(687), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(689), - [anon_sym_DOLLARassert] = ACTIONS(691), - [anon_sym_DOLLARerror] = ACTIONS(693), - [anon_sym_DOLLARecho] = ACTIONS(695), - [anon_sym_DOLLARif] = ACTIONS(697), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(699), - [anon_sym_DOLLARforeach] = ACTIONS(701), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [129] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(129), [sym_doc_comment] = STATE(129), [sym_block_comment] = STATE(129), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1042), - [sym_const_declaration] = STATE(506), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(538), - [sym_expr_stmt] = STATE(538), - [sym_var_decl] = STATE(2226), - [sym_var_stmt] = STATE(538), - [sym_return_stmt] = STATE(538), - [sym_continue_stmt] = STATE(538), - [sym_break_stmt] = STATE(538), - [sym_defer_stmt] = STATE(538), - [sym_assert_stmt] = STATE(538), - [sym_declaration_stmt] = STATE(538), - [sym_nextcase_stmt] = STATE(538), - [sym_switch_stmt] = STATE(538), - [sym_if_stmt] = STATE(538), - [sym_for_stmt] = STATE(538), - [sym_foreach_stmt] = STATE(538), - [sym_while_stmt] = STATE(538), - [sym_do_stmt] = STATE(538), - [sym_asm_block_stmt] = STATE(538), - [sym_ct_assert_stmt] = STATE(538), - [sym_ct_echo_stmt] = STATE(538), - [sym_ct_if_stmt] = STATE(538), - [sym__ct_switch] = STATE(1559), - [sym_ct_switch_stmt] = STATE(538), - [sym_ct_for_stmt] = STATE(538), - [sym_ct_foreach_stmt] = STATE(538), - [sym__expr] = STATE(1140), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1553), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1194), + [sym_const_declaration] = STATE(720), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(770), + [sym_expr_stmt] = STATE(770), + [sym_var_decl] = STATE(2258), + [sym_var_stmt] = STATE(770), + [sym_return_stmt] = STATE(770), + [sym_continue_stmt] = STATE(770), + [sym_break_stmt] = STATE(770), + [sym_defer_stmt] = STATE(770), + [sym_assert_stmt] = STATE(770), + [sym_declaration_stmt] = STATE(770), + [sym_nextcase_stmt] = STATE(770), + [sym_switch_stmt] = STATE(770), + [sym_if_stmt] = STATE(770), + [sym_for_stmt] = STATE(770), + [sym_foreach_stmt] = STATE(770), + [sym_while_stmt] = STATE(770), + [sym_do_stmt] = STATE(770), + [sym_asm_block_stmt] = STATE(770), + [sym_ct_assert_stmt] = STATE(770), + [sym_ct_echo_stmt] = STATE(770), + [sym_ct_if_stmt] = STATE(770), + [sym__ct_switch] = STATE(1591), + [sym_ct_switch_stmt] = STATE(770), + [sym_ct_for_stmt] = STATE(770), + [sym_ct_foreach_stmt] = STATE(770), + [sym__expr] = STATE(1094), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1374), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -36492,7 +36457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -36501,172 +36466,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1153), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_const] = ACTIONS(419), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_break] = ACTIONS(425), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_assert] = ACTIONS(429), - [anon_sym_nextcase] = ACTIONS(431), - [anon_sym_switch] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_foreach] = ACTIONS(439), - [anon_sym_foreach_r] = ACTIONS(439), - [anon_sym_while] = ACTIONS(441), - [anon_sym_do] = ACTIONS(443), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_const] = ACTIONS(617), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(621), + [anon_sym_break] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(625), + [anon_sym_assert] = ACTIONS(627), + [anon_sym_nextcase] = ACTIONS(629), + [anon_sym_switch] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(633), + [anon_sym_for] = ACTIONS(635), + [anon_sym_foreach] = ACTIONS(637), + [anon_sym_foreach_r] = ACTIONS(637), + [anon_sym_while] = ACTIONS(639), + [anon_sym_do] = ACTIONS(641), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(445), - [anon_sym_DOLLARassert] = ACTIONS(447), - [anon_sym_DOLLARerror] = ACTIONS(449), - [anon_sym_DOLLARecho] = ACTIONS(451), - [anon_sym_DOLLARif] = ACTIONS(453), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(459), - [anon_sym_DOLLARforeach] = ACTIONS(461), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(643), + [anon_sym_DOLLARassert] = ACTIONS(645), + [anon_sym_DOLLARerror] = ACTIONS(647), + [anon_sym_DOLLARecho] = ACTIONS(649), + [anon_sym_DOLLARif] = ACTIONS(651), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(655), + [anon_sym_DOLLARforeach] = ACTIONS(657), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [130] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(130), [sym_doc_comment] = STATE(130), [sym_block_comment] = STATE(130), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1042), - [sym_const_declaration] = STATE(506), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(539), - [sym_expr_stmt] = STATE(539), - [sym_var_decl] = STATE(2226), - [sym_var_stmt] = STATE(539), - [sym_return_stmt] = STATE(539), - [sym_continue_stmt] = STATE(539), - [sym_break_stmt] = STATE(539), - [sym_defer_stmt] = STATE(539), - [sym_assert_stmt] = STATE(539), - [sym_declaration_stmt] = STATE(539), - [sym_nextcase_stmt] = STATE(539), - [sym_switch_stmt] = STATE(539), - [sym_if_stmt] = STATE(539), - [sym_for_stmt] = STATE(539), - [sym_foreach_stmt] = STATE(539), - [sym_while_stmt] = STATE(539), - [sym_do_stmt] = STATE(539), - [sym_asm_block_stmt] = STATE(539), - [sym_ct_assert_stmt] = STATE(539), - [sym_ct_echo_stmt] = STATE(539), - [sym_ct_if_stmt] = STATE(539), - [sym__ct_switch] = STATE(1559), - [sym_ct_switch_stmt] = STATE(539), - [sym_ct_for_stmt] = STATE(539), - [sym_ct_foreach_stmt] = STATE(539), - [sym__expr] = STATE(1140), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1553), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(395), + [sym_expr_stmt] = STATE(395), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(395), + [sym_return_stmt] = STATE(395), + [sym_continue_stmt] = STATE(395), + [sym_break_stmt] = STATE(395), + [sym_defer_stmt] = STATE(395), + [sym_assert_stmt] = STATE(395), + [sym_declaration_stmt] = STATE(395), + [sym_nextcase_stmt] = STATE(395), + [sym_switch_stmt] = STATE(395), + [sym_if_stmt] = STATE(395), + [sym_for_stmt] = STATE(395), + [sym_foreach_stmt] = STATE(395), + [sym_while_stmt] = STATE(395), + [sym_do_stmt] = STATE(395), + [sym_asm_block_stmt] = STATE(395), + [sym_ct_assert_stmt] = STATE(395), + [sym_ct_echo_stmt] = STATE(395), + [sym_ct_if_stmt] = STATE(395), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(395), + [sym_ct_for_stmt] = STATE(395), + [sym_ct_foreach_stmt] = STATE(395), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -36674,7 +36636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -36683,172 +36645,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1155), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_const] = ACTIONS(419), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_break] = ACTIONS(425), - [anon_sym_defer] = ACTIONS(427), - [anon_sym_assert] = ACTIONS(429), - [anon_sym_nextcase] = ACTIONS(431), - [anon_sym_switch] = ACTIONS(433), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(435), - [anon_sym_for] = ACTIONS(437), - [anon_sym_foreach] = ACTIONS(439), - [anon_sym_foreach_r] = ACTIONS(439), - [anon_sym_while] = ACTIONS(441), - [anon_sym_do] = ACTIONS(443), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(445), - [anon_sym_DOLLARassert] = ACTIONS(447), - [anon_sym_DOLLARerror] = ACTIONS(449), - [anon_sym_DOLLARecho] = ACTIONS(451), - [anon_sym_DOLLARif] = ACTIONS(453), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(459), - [anon_sym_DOLLARforeach] = ACTIONS(461), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [131] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(131), [sym_doc_comment] = STATE(131), [sym_block_comment] = STATE(131), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1034), - [sym_const_declaration] = STATE(600), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(648), - [sym_expr_stmt] = STATE(648), - [sym_var_decl] = STATE(2022), - [sym_var_stmt] = STATE(648), - [sym_return_stmt] = STATE(648), - [sym_continue_stmt] = STATE(648), - [sym_break_stmt] = STATE(648), - [sym_defer_stmt] = STATE(648), - [sym_assert_stmt] = STATE(648), - [sym_declaration_stmt] = STATE(648), - [sym_nextcase_stmt] = STATE(648), - [sym_switch_stmt] = STATE(648), - [sym_if_stmt] = STATE(648), - [sym_for_stmt] = STATE(648), - [sym_foreach_stmt] = STATE(648), - [sym_while_stmt] = STATE(648), - [sym_do_stmt] = STATE(648), - [sym_asm_block_stmt] = STATE(648), - [sym_ct_assert_stmt] = STATE(648), - [sym_ct_echo_stmt] = STATE(648), - [sym_ct_if_stmt] = STATE(648), - [sym__ct_switch] = STATE(1414), - [sym_ct_switch_stmt] = STATE(648), - [sym_ct_for_stmt] = STATE(648), - [sym_ct_foreach_stmt] = STATE(648), - [sym__expr] = STATE(1160), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1415), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(458), + [sym_expr_stmt] = STATE(458), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(458), + [sym_return_stmt] = STATE(458), + [sym_continue_stmt] = STATE(458), + [sym_break_stmt] = STATE(458), + [sym_defer_stmt] = STATE(458), + [sym_assert_stmt] = STATE(458), + [sym_declaration_stmt] = STATE(458), + [sym_nextcase_stmt] = STATE(458), + [sym_switch_stmt] = STATE(458), + [sym_if_stmt] = STATE(458), + [sym_for_stmt] = STATE(458), + [sym_foreach_stmt] = STATE(458), + [sym_while_stmt] = STATE(458), + [sym_do_stmt] = STATE(458), + [sym_asm_block_stmt] = STATE(458), + [sym_ct_assert_stmt] = STATE(458), + [sym_ct_echo_stmt] = STATE(458), + [sym_ct_if_stmt] = STATE(458), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(458), + [sym_ct_for_stmt] = STATE(458), + [sym_ct_foreach_stmt] = STATE(458), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -36856,7 +36815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -36865,172 +36824,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1157), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_const] = ACTIONS(613), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(617), - [anon_sym_break] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(621), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_nextcase] = ACTIONS(625), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(629), - [anon_sym_for] = ACTIONS(631), - [anon_sym_foreach] = ACTIONS(633), - [anon_sym_foreach_r] = ACTIONS(633), - [anon_sym_while] = ACTIONS(635), - [anon_sym_do] = ACTIONS(637), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_const] = ACTIONS(201), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_defer] = ACTIONS(209), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_nextcase] = ACTIONS(213), + [anon_sym_switch] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_foreach] = ACTIONS(221), + [anon_sym_foreach_r] = ACTIONS(221), + [anon_sym_while] = ACTIONS(223), + [anon_sym_do] = ACTIONS(225), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(639), - [anon_sym_DOLLARassert] = ACTIONS(641), - [anon_sym_DOLLARerror] = ACTIONS(643), - [anon_sym_DOLLARecho] = ACTIONS(645), - [anon_sym_DOLLARif] = ACTIONS(647), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(649), - [anon_sym_DOLLARforeach] = ACTIONS(653), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(227), + [anon_sym_DOLLARassert] = ACTIONS(229), + [anon_sym_DOLLARerror] = ACTIONS(231), + [anon_sym_DOLLARecho] = ACTIONS(233), + [anon_sym_DOLLARif] = ACTIONS(235), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(239), + [anon_sym_DOLLARforeach] = ACTIONS(241), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [132] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(132), [sym_doc_comment] = STATE(132), [sym_block_comment] = STATE(132), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1034), - [sym_const_declaration] = STATE(600), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(651), - [sym_expr_stmt] = STATE(651), - [sym_var_decl] = STATE(2022), - [sym_var_stmt] = STATE(651), - [sym_return_stmt] = STATE(651), - [sym_continue_stmt] = STATE(651), - [sym_break_stmt] = STATE(651), - [sym_defer_stmt] = STATE(651), - [sym_assert_stmt] = STATE(651), - [sym_declaration_stmt] = STATE(651), - [sym_nextcase_stmt] = STATE(651), - [sym_switch_stmt] = STATE(651), - [sym_if_stmt] = STATE(651), - [sym_for_stmt] = STATE(651), - [sym_foreach_stmt] = STATE(651), - [sym_while_stmt] = STATE(651), - [sym_do_stmt] = STATE(651), - [sym_asm_block_stmt] = STATE(651), - [sym_ct_assert_stmt] = STATE(651), - [sym_ct_echo_stmt] = STATE(651), - [sym_ct_if_stmt] = STATE(651), - [sym__ct_switch] = STATE(1414), - [sym_ct_switch_stmt] = STATE(651), - [sym_ct_for_stmt] = STATE(651), - [sym_ct_foreach_stmt] = STATE(651), - [sym__expr] = STATE(1160), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1415), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(477), + [sym_expr_stmt] = STATE(477), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(477), + [sym_return_stmt] = STATE(477), + [sym_continue_stmt] = STATE(477), + [sym_break_stmt] = STATE(477), + [sym_defer_stmt] = STATE(477), + [sym_assert_stmt] = STATE(477), + [sym_declaration_stmt] = STATE(477), + [sym_nextcase_stmt] = STATE(477), + [sym_switch_stmt] = STATE(477), + [sym_if_stmt] = STATE(477), + [sym_for_stmt] = STATE(477), + [sym_foreach_stmt] = STATE(477), + [sym_while_stmt] = STATE(477), + [sym_do_stmt] = STATE(477), + [sym_asm_block_stmt] = STATE(477), + [sym_ct_assert_stmt] = STATE(477), + [sym_ct_echo_stmt] = STATE(477), + [sym_ct_if_stmt] = STATE(477), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(477), + [sym_ct_for_stmt] = STATE(477), + [sym_ct_foreach_stmt] = STATE(477), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -37038,7 +36994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -37047,172 +37003,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1159), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_const] = ACTIONS(613), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(617), - [anon_sym_break] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(621), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_nextcase] = ACTIONS(625), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(629), - [anon_sym_for] = ACTIONS(631), - [anon_sym_foreach] = ACTIONS(633), - [anon_sym_foreach_r] = ACTIONS(633), - [anon_sym_while] = ACTIONS(635), - [anon_sym_do] = ACTIONS(637), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_const] = ACTIONS(201), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_defer] = ACTIONS(209), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_nextcase] = ACTIONS(213), + [anon_sym_switch] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_foreach] = ACTIONS(221), + [anon_sym_foreach_r] = ACTIONS(221), + [anon_sym_while] = ACTIONS(223), + [anon_sym_do] = ACTIONS(225), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(639), - [anon_sym_DOLLARassert] = ACTIONS(641), - [anon_sym_DOLLARerror] = ACTIONS(643), - [anon_sym_DOLLARecho] = ACTIONS(645), - [anon_sym_DOLLARif] = ACTIONS(647), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(649), - [anon_sym_DOLLARforeach] = ACTIONS(653), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(227), + [anon_sym_DOLLARassert] = ACTIONS(229), + [anon_sym_DOLLARerror] = ACTIONS(231), + [anon_sym_DOLLARecho] = ACTIONS(233), + [anon_sym_DOLLARif] = ACTIONS(235), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(239), + [anon_sym_DOLLARforeach] = ACTIONS(241), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [133] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(133), [sym_doc_comment] = STATE(133), [sym_block_comment] = STATE(133), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1034), - [sym_const_declaration] = STATE(600), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(652), - [sym_expr_stmt] = STATE(652), - [sym_var_decl] = STATE(2022), - [sym_var_stmt] = STATE(652), - [sym_return_stmt] = STATE(652), - [sym_continue_stmt] = STATE(652), - [sym_break_stmt] = STATE(652), - [sym_defer_stmt] = STATE(652), - [sym_assert_stmt] = STATE(652), - [sym_declaration_stmt] = STATE(652), - [sym_nextcase_stmt] = STATE(652), - [sym_switch_stmt] = STATE(652), - [sym_if_stmt] = STATE(652), - [sym_for_stmt] = STATE(652), - [sym_foreach_stmt] = STATE(652), - [sym_while_stmt] = STATE(652), - [sym_do_stmt] = STATE(652), - [sym_asm_block_stmt] = STATE(652), - [sym_ct_assert_stmt] = STATE(652), - [sym_ct_echo_stmt] = STATE(652), - [sym_ct_if_stmt] = STATE(652), - [sym__ct_switch] = STATE(1414), - [sym_ct_switch_stmt] = STATE(652), - [sym_ct_for_stmt] = STATE(652), - [sym_ct_foreach_stmt] = STATE(652), - [sym__expr] = STATE(1160), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1415), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(479), + [sym_expr_stmt] = STATE(479), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(479), + [sym_return_stmt] = STATE(479), + [sym_continue_stmt] = STATE(479), + [sym_break_stmt] = STATE(479), + [sym_defer_stmt] = STATE(479), + [sym_assert_stmt] = STATE(479), + [sym_declaration_stmt] = STATE(479), + [sym_nextcase_stmt] = STATE(479), + [sym_switch_stmt] = STATE(479), + [sym_if_stmt] = STATE(479), + [sym_for_stmt] = STATE(479), + [sym_foreach_stmt] = STATE(479), + [sym_while_stmt] = STATE(479), + [sym_do_stmt] = STATE(479), + [sym_asm_block_stmt] = STATE(479), + [sym_ct_assert_stmt] = STATE(479), + [sym_ct_echo_stmt] = STATE(479), + [sym_ct_if_stmt] = STATE(479), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(479), + [sym_ct_for_stmt] = STATE(479), + [sym_ct_foreach_stmt] = STATE(479), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -37220,7 +37173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -37229,172 +37182,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1161), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_const] = ACTIONS(613), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(617), - [anon_sym_break] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(621), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_nextcase] = ACTIONS(625), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(629), - [anon_sym_for] = ACTIONS(631), - [anon_sym_foreach] = ACTIONS(633), - [anon_sym_foreach_r] = ACTIONS(633), - [anon_sym_while] = ACTIONS(635), - [anon_sym_do] = ACTIONS(637), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_const] = ACTIONS(201), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_defer] = ACTIONS(209), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_nextcase] = ACTIONS(213), + [anon_sym_switch] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_foreach] = ACTIONS(221), + [anon_sym_foreach_r] = ACTIONS(221), + [anon_sym_while] = ACTIONS(223), + [anon_sym_do] = ACTIONS(225), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(639), - [anon_sym_DOLLARassert] = ACTIONS(641), - [anon_sym_DOLLARerror] = ACTIONS(643), - [anon_sym_DOLLARecho] = ACTIONS(645), - [anon_sym_DOLLARif] = ACTIONS(647), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(649), - [anon_sym_DOLLARforeach] = ACTIONS(653), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(227), + [anon_sym_DOLLARassert] = ACTIONS(229), + [anon_sym_DOLLARerror] = ACTIONS(231), + [anon_sym_DOLLARecho] = ACTIONS(233), + [anon_sym_DOLLARif] = ACTIONS(235), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(239), + [anon_sym_DOLLARforeach] = ACTIONS(241), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [134] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(134), [sym_doc_comment] = STATE(134), [sym_block_comment] = STATE(134), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1034), - [sym_const_declaration] = STATE(600), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(700), - [sym_expr_stmt] = STATE(700), - [sym_var_decl] = STATE(2022), - [sym_var_stmt] = STATE(700), - [sym_return_stmt] = STATE(700), - [sym_continue_stmt] = STATE(700), - [sym_break_stmt] = STATE(700), - [sym_defer_stmt] = STATE(700), - [sym_assert_stmt] = STATE(700), - [sym_declaration_stmt] = STATE(700), - [sym_nextcase_stmt] = STATE(700), - [sym_switch_stmt] = STATE(700), - [sym_if_stmt] = STATE(700), - [sym_for_stmt] = STATE(700), - [sym_foreach_stmt] = STATE(700), - [sym_while_stmt] = STATE(700), - [sym_do_stmt] = STATE(700), - [sym_asm_block_stmt] = STATE(700), - [sym_ct_assert_stmt] = STATE(700), - [sym_ct_echo_stmt] = STATE(700), - [sym_ct_if_stmt] = STATE(700), - [sym__ct_switch] = STATE(1414), - [sym_ct_switch_stmt] = STATE(700), - [sym_ct_for_stmt] = STATE(700), - [sym_ct_foreach_stmt] = STATE(700), - [sym__expr] = STATE(1160), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1415), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(480), + [sym_expr_stmt] = STATE(480), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(480), + [sym_return_stmt] = STATE(480), + [sym_continue_stmt] = STATE(480), + [sym_break_stmt] = STATE(480), + [sym_defer_stmt] = STATE(480), + [sym_assert_stmt] = STATE(480), + [sym_declaration_stmt] = STATE(480), + [sym_nextcase_stmt] = STATE(480), + [sym_switch_stmt] = STATE(480), + [sym_if_stmt] = STATE(480), + [sym_for_stmt] = STATE(480), + [sym_foreach_stmt] = STATE(480), + [sym_while_stmt] = STATE(480), + [sym_do_stmt] = STATE(480), + [sym_asm_block_stmt] = STATE(480), + [sym_ct_assert_stmt] = STATE(480), + [sym_ct_echo_stmt] = STATE(480), + [sym_ct_if_stmt] = STATE(480), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(480), + [sym_ct_for_stmt] = STATE(480), + [sym_ct_foreach_stmt] = STATE(480), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -37402,7 +37352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -37411,172 +37361,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1163), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_const] = ACTIONS(613), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(617), - [anon_sym_break] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(621), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_nextcase] = ACTIONS(625), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(629), - [anon_sym_for] = ACTIONS(631), - [anon_sym_foreach] = ACTIONS(633), - [anon_sym_foreach_r] = ACTIONS(633), - [anon_sym_while] = ACTIONS(635), - [anon_sym_do] = ACTIONS(637), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_const] = ACTIONS(201), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_defer] = ACTIONS(209), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_nextcase] = ACTIONS(213), + [anon_sym_switch] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_foreach] = ACTIONS(221), + [anon_sym_foreach_r] = ACTIONS(221), + [anon_sym_while] = ACTIONS(223), + [anon_sym_do] = ACTIONS(225), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(639), - [anon_sym_DOLLARassert] = ACTIONS(641), - [anon_sym_DOLLARerror] = ACTIONS(643), - [anon_sym_DOLLARecho] = ACTIONS(645), - [anon_sym_DOLLARif] = ACTIONS(647), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(649), - [anon_sym_DOLLARforeach] = ACTIONS(653), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(227), + [anon_sym_DOLLARassert] = ACTIONS(229), + [anon_sym_DOLLARerror] = ACTIONS(231), + [anon_sym_DOLLARecho] = ACTIONS(233), + [anon_sym_DOLLARif] = ACTIONS(235), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(239), + [anon_sym_DOLLARforeach] = ACTIONS(241), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [135] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(135), [sym_doc_comment] = STATE(135), [sym_block_comment] = STATE(135), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1034), - [sym_const_declaration] = STATE(600), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(704), - [sym_expr_stmt] = STATE(704), - [sym_var_decl] = STATE(2022), - [sym_var_stmt] = STATE(704), - [sym_return_stmt] = STATE(704), - [sym_continue_stmt] = STATE(704), - [sym_break_stmt] = STATE(704), - [sym_defer_stmt] = STATE(704), - [sym_assert_stmt] = STATE(704), - [sym_declaration_stmt] = STATE(704), - [sym_nextcase_stmt] = STATE(704), - [sym_switch_stmt] = STATE(704), - [sym_if_stmt] = STATE(704), - [sym_for_stmt] = STATE(704), - [sym_foreach_stmt] = STATE(704), - [sym_while_stmt] = STATE(704), - [sym_do_stmt] = STATE(704), - [sym_asm_block_stmt] = STATE(704), - [sym_ct_assert_stmt] = STATE(704), - [sym_ct_echo_stmt] = STATE(704), - [sym_ct_if_stmt] = STATE(704), - [sym__ct_switch] = STATE(1414), - [sym_ct_switch_stmt] = STATE(704), - [sym_ct_for_stmt] = STATE(704), - [sym_ct_foreach_stmt] = STATE(704), - [sym__expr] = STATE(1160), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1415), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1186), + [sym_const_declaration] = STATE(384), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(350), + [sym_expr_stmt] = STATE(350), + [sym_var_decl] = STATE(2011), + [sym_var_stmt] = STATE(350), + [sym_return_stmt] = STATE(350), + [sym_continue_stmt] = STATE(350), + [sym_break_stmt] = STATE(350), + [sym_defer_stmt] = STATE(350), + [sym_assert_stmt] = STATE(350), + [sym_declaration_stmt] = STATE(350), + [sym_nextcase_stmt] = STATE(350), + [sym_switch_stmt] = STATE(350), + [sym_if_stmt] = STATE(350), + [sym_for_stmt] = STATE(350), + [sym_foreach_stmt] = STATE(350), + [sym_while_stmt] = STATE(350), + [sym_do_stmt] = STATE(350), + [sym_asm_block_stmt] = STATE(350), + [sym_ct_assert_stmt] = STATE(350), + [sym_ct_echo_stmt] = STATE(350), + [sym_ct_if_stmt] = STATE(350), + [sym__ct_switch] = STATE(1528), + [sym_ct_switch_stmt] = STATE(350), + [sym_ct_for_stmt] = STATE(350), + [sym_ct_foreach_stmt] = STATE(350), + [sym__expr] = STATE(1101), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1376), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -37584,7 +37531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -37593,172 +37540,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1165), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_const] = ACTIONS(613), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(617), - [anon_sym_break] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(621), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_nextcase] = ACTIONS(625), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(629), - [anon_sym_for] = ACTIONS(631), - [anon_sym_foreach] = ACTIONS(633), - [anon_sym_foreach_r] = ACTIONS(633), - [anon_sym_while] = ACTIONS(635), - [anon_sym_do] = ACTIONS(637), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(99), + [anon_sym_const] = ACTIONS(103), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(107), + [anon_sym_continue] = ACTIONS(109), + [anon_sym_break] = ACTIONS(111), + [anon_sym_defer] = ACTIONS(113), + [anon_sym_assert] = ACTIONS(115), + [anon_sym_nextcase] = ACTIONS(121), + [anon_sym_switch] = ACTIONS(123), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_for] = ACTIONS(129), + [anon_sym_foreach] = ACTIONS(131), + [anon_sym_foreach_r] = ACTIONS(131), + [anon_sym_while] = ACTIONS(133), + [anon_sym_do] = ACTIONS(135), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(639), - [anon_sym_DOLLARassert] = ACTIONS(641), - [anon_sym_DOLLARerror] = ACTIONS(643), - [anon_sym_DOLLARecho] = ACTIONS(645), - [anon_sym_DOLLARif] = ACTIONS(647), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(649), - [anon_sym_DOLLARforeach] = ACTIONS(653), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(139), + [anon_sym_DOLLARassert] = ACTIONS(141), + [anon_sym_DOLLARerror] = ACTIONS(143), + [anon_sym_DOLLARecho] = ACTIONS(145), + [anon_sym_DOLLARif] = ACTIONS(147), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(151), + [anon_sym_DOLLARforeach] = ACTIONS(153), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [136] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(136), [sym_doc_comment] = STATE(136), [sym_block_comment] = STATE(136), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_local_decl_storage] = STATE(1034), - [sym_const_declaration] = STATE(600), - [sym_lambda_declaration] = STATE(1486), - [sym_compound_stmt] = STATE(707), - [sym_expr_stmt] = STATE(707), - [sym_var_decl] = STATE(2022), - [sym_var_stmt] = STATE(707), - [sym_return_stmt] = STATE(707), - [sym_continue_stmt] = STATE(707), - [sym_break_stmt] = STATE(707), - [sym_defer_stmt] = STATE(707), - [sym_assert_stmt] = STATE(707), - [sym_declaration_stmt] = STATE(707), - [sym_nextcase_stmt] = STATE(707), - [sym_switch_stmt] = STATE(707), - [sym_if_stmt] = STATE(707), - [sym_for_stmt] = STATE(707), - [sym_foreach_stmt] = STATE(707), - [sym_while_stmt] = STATE(707), - [sym_do_stmt] = STATE(707), - [sym_asm_block_stmt] = STATE(707), - [sym_ct_assert_stmt] = STATE(707), - [sym_ct_echo_stmt] = STATE(707), - [sym_ct_if_stmt] = STATE(707), - [sym__ct_switch] = STATE(1414), - [sym_ct_switch_stmt] = STATE(707), - [sym_ct_for_stmt] = STATE(707), - [sym_ct_foreach_stmt] = STATE(707), - [sym__expr] = STATE(1160), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1415), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(430), + [sym_expr_stmt] = STATE(430), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(430), + [sym_return_stmt] = STATE(430), + [sym_continue_stmt] = STATE(430), + [sym_break_stmt] = STATE(430), + [sym_defer_stmt] = STATE(430), + [sym_assert_stmt] = STATE(430), + [sym_declaration_stmt] = STATE(430), + [sym_nextcase_stmt] = STATE(430), + [sym_switch_stmt] = STATE(430), + [sym_if_stmt] = STATE(430), + [sym_for_stmt] = STATE(430), + [sym_foreach_stmt] = STATE(430), + [sym_while_stmt] = STATE(430), + [sym_do_stmt] = STATE(430), + [sym_asm_block_stmt] = STATE(430), + [sym_ct_assert_stmt] = STATE(430), + [sym_ct_echo_stmt] = STATE(430), + [sym_ct_if_stmt] = STATE(430), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(430), + [sym_ct_for_stmt] = STATE(430), + [sym_ct_foreach_stmt] = STATE(430), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -37766,7 +37710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -37775,143 +37719,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_static] = ACTIONS(93), [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1167), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(611), - [anon_sym_const] = ACTIONS(613), - [anon_sym_var] = ACTIONS(107), - [anon_sym_return] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(617), - [anon_sym_break] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(621), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_nextcase] = ACTIONS(625), - [anon_sym_switch] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_if] = ACTIONS(629), - [anon_sym_for] = ACTIONS(631), - [anon_sym_foreach] = ACTIONS(633), - [anon_sym_foreach_r] = ACTIONS(633), - [anon_sym_while] = ACTIONS(635), - [anon_sym_do] = ACTIONS(637), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_const] = ACTIONS(201), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_defer] = ACTIONS(209), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_nextcase] = ACTIONS(213), + [anon_sym_switch] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_foreach] = ACTIONS(221), + [anon_sym_foreach_r] = ACTIONS(221), + [anon_sym_while] = ACTIONS(223), + [anon_sym_do] = ACTIONS(225), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(639), - [anon_sym_DOLLARassert] = ACTIONS(641), - [anon_sym_DOLLARerror] = ACTIONS(643), - [anon_sym_DOLLARecho] = ACTIONS(645), - [anon_sym_DOLLARif] = ACTIONS(647), - [anon_sym_DOLLARswitch] = ACTIONS(151), - [anon_sym_DOLLARfor] = ACTIONS(649), - [anon_sym_DOLLARforeach] = ACTIONS(653), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(227), + [anon_sym_DOLLARassert] = ACTIONS(229), + [anon_sym_DOLLARerror] = ACTIONS(231), + [anon_sym_DOLLARecho] = ACTIONS(233), + [anon_sym_DOLLARif] = ACTIONS(235), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(239), + [anon_sym_DOLLARforeach] = ACTIONS(241), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [137] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(137), [sym_doc_comment] = STATE(137), [sym_block_comment] = STATE(137), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1136), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(432), + [sym_expr_stmt] = STATE(432), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(432), + [sym_return_stmt] = STATE(432), + [sym_continue_stmt] = STATE(432), + [sym_break_stmt] = STATE(432), + [sym_defer_stmt] = STATE(432), + [sym_assert_stmt] = STATE(432), + [sym_declaration_stmt] = STATE(432), + [sym_nextcase_stmt] = STATE(432), + [sym_switch_stmt] = STATE(432), + [sym_if_stmt] = STATE(432), + [sym_for_stmt] = STATE(432), + [sym_foreach_stmt] = STATE(432), + [sym_while_stmt] = STATE(432), + [sym_do_stmt] = STATE(432), + [sym_asm_block_stmt] = STATE(432), + [sym_ct_assert_stmt] = STATE(432), + [sym_ct_echo_stmt] = STATE(432), + [sym_ct_if_stmt] = STATE(432), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(432), + [sym_ct_for_stmt] = STATE(432), + [sym_ct_foreach_stmt] = STATE(432), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -37919,162 +37889,509 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), + [sym_type_ident] = ACTIONS(79), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_COMMA] = ACTIONS(1169), - [anon_sym_EQ] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_RPAREN] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(1169), + [anon_sym_static] = ACTIONS(93), + [anon_sym_tlocal] = ACTIONS(93), [anon_sym_SEMI] = ACTIONS(1169), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_RBRACE] = ACTIONS(1169), - [anon_sym_COLON] = ACTIONS(1169), - [anon_sym_DOT_DOT] = ACTIONS(1169), - [anon_sym_DOT] = ACTIONS(1171), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_const] = ACTIONS(201), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_defer] = ACTIONS(209), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_nextcase] = ACTIONS(213), + [anon_sym_switch] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_foreach] = ACTIONS(221), + [anon_sym_foreach_r] = ACTIONS(221), + [anon_sym_while] = ACTIONS(223), + [anon_sym_do] = ACTIONS(225), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_LT_LT] = ACTIONS(1171), - [anon_sym_GT_GT] = ACTIONS(1171), - [anon_sym_STAR] = ACTIONS(89), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(227), + [anon_sym_DOLLARassert] = ACTIONS(229), + [anon_sym_DOLLARerror] = ACTIONS(231), + [anon_sym_DOLLARecho] = ACTIONS(233), + [anon_sym_DOLLARif] = ACTIONS(235), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(239), + [anon_sym_DOLLARforeach] = ACTIONS(241), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(1169), - [anon_sym_DASH_EQ] = ACTIONS(1169), - [anon_sym_STAR_EQ] = ACTIONS(1169), - [anon_sym_SLASH_EQ] = ACTIONS(1169), - [anon_sym_PERCENT_EQ] = ACTIONS(1169), - [anon_sym_LT_LT_EQ] = ACTIONS(1169), - [anon_sym_GT_GT_EQ] = ACTIONS(1169), - [anon_sym_AMP_EQ] = ACTIONS(1169), - [anon_sym_CARET_EQ] = ACTIONS(1169), - [anon_sym_PIPE_EQ] = ACTIONS(1169), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_QMARK_COLON] = ACTIONS(1169), - [anon_sym_QMARK_QMARK] = ACTIONS(1169), - [anon_sym_BANG] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(1171), - [anon_sym_PERCENT] = ACTIONS(1171), - [anon_sym_PIPE] = ACTIONS(1171), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_EQ_EQ] = ACTIONS(1169), - [anon_sym_BANG_EQ] = ACTIONS(1169), - [anon_sym_GT] = ACTIONS(1171), - [anon_sym_GT_EQ] = ACTIONS(1169), - [anon_sym_LT_EQ] = ACTIONS(1169), - [anon_sym_LT] = ACTIONS(1171), - [anon_sym_PIPE_PIPE] = ACTIONS(1169), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [anon_sym_GT_RBRACK] = ACTIONS(1169), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [138] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(138), [sym_doc_comment] = STATE(138), [sym_block_comment] = STATE(138), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1145), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1197), + [sym_const_declaration] = STATE(476), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(433), + [sym_expr_stmt] = STATE(433), + [sym_var_decl] = STATE(2006), + [sym_var_stmt] = STATE(433), + [sym_return_stmt] = STATE(433), + [sym_continue_stmt] = STATE(433), + [sym_break_stmt] = STATE(433), + [sym_defer_stmt] = STATE(433), + [sym_assert_stmt] = STATE(433), + [sym_declaration_stmt] = STATE(433), + [sym_nextcase_stmt] = STATE(433), + [sym_switch_stmt] = STATE(433), + [sym_if_stmt] = STATE(433), + [sym_for_stmt] = STATE(433), + [sym_foreach_stmt] = STATE(433), + [sym_while_stmt] = STATE(433), + [sym_do_stmt] = STATE(433), + [sym_asm_block_stmt] = STATE(433), + [sym_ct_assert_stmt] = STATE(433), + [sym_ct_echo_stmt] = STATE(433), + [sym_ct_if_stmt] = STATE(433), + [sym__ct_switch] = STATE(1602), + [sym_ct_switch_stmt] = STATE(433), + [sym_ct_for_stmt] = STATE(433), + [sym_ct_foreach_stmt] = STATE(433), + [sym__expr] = STATE(1099), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1377), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), + [sym_integer_literal] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_BQUOTE] = ACTIONS(69), + [sym_bytes_literal] = ACTIONS(71), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(73), + [sym_at_ident] = ACTIONS(75), + [sym_hash_ident] = ACTIONS(77), + [sym_type_ident] = ACTIONS(79), + [sym_ct_type_ident] = ACTIONS(81), + [sym_const_ident] = ACTIONS(83), + [sym_builtin] = ACTIONS(63), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_static] = ACTIONS(93), + [anon_sym_tlocal] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(1171), + [anon_sym_fn] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(199), + [anon_sym_const] = ACTIONS(201), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(205), + [anon_sym_break] = ACTIONS(207), + [anon_sym_defer] = ACTIONS(209), + [anon_sym_assert] = ACTIONS(211), + [anon_sym_nextcase] = ACTIONS(213), + [anon_sym_switch] = ACTIONS(215), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_foreach] = ACTIONS(221), + [anon_sym_foreach_r] = ACTIONS(221), + [anon_sym_while] = ACTIONS(223), + [anon_sym_do] = ACTIONS(225), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(227), + [anon_sym_DOLLARassert] = ACTIONS(229), + [anon_sym_DOLLARerror] = ACTIONS(231), + [anon_sym_DOLLARecho] = ACTIONS(233), + [anon_sym_DOLLARif] = ACTIONS(235), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(239), + [anon_sym_DOLLARforeach] = ACTIONS(241), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), + [anon_sym_DOLLARfeature] = ACTIONS(165), + [anon_sym_DOLLARassignable] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), + [sym_real_literal] = ACTIONS(63), + }, + [139] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(139), + [sym_doc_comment] = STATE(139), + [sym_block_comment] = STATE(139), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_local_decl_storage] = STATE(1193), + [sym_const_declaration] = STATE(647), + [sym_lambda_declaration] = STATE(1556), + [sym_compound_stmt] = STATE(678), + [sym_expr_stmt] = STATE(678), + [sym_var_decl] = STATE(2136), + [sym_var_stmt] = STATE(678), + [sym_return_stmt] = STATE(678), + [sym_continue_stmt] = STATE(678), + [sym_break_stmt] = STATE(678), + [sym_defer_stmt] = STATE(678), + [sym_assert_stmt] = STATE(678), + [sym_declaration_stmt] = STATE(678), + [sym_nextcase_stmt] = STATE(678), + [sym_switch_stmt] = STATE(678), + [sym_if_stmt] = STATE(678), + [sym_for_stmt] = STATE(678), + [sym_foreach_stmt] = STATE(678), + [sym_while_stmt] = STATE(678), + [sym_do_stmt] = STATE(678), + [sym_asm_block_stmt] = STATE(678), + [sym_ct_assert_stmt] = STATE(678), + [sym_ct_echo_stmt] = STATE(678), + [sym_ct_if_stmt] = STATE(678), + [sym__ct_switch] = STATE(1578), + [sym_ct_switch_stmt] = STATE(678), + [sym_ct_for_stmt] = STATE(678), + [sym_ct_foreach_stmt] = STATE(678), + [sym__expr] = STATE(1085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1372), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), + [sym_integer_literal] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_BQUOTE] = ACTIONS(69), + [sym_bytes_literal] = ACTIONS(71), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(73), + [sym_at_ident] = ACTIONS(75), + [sym_hash_ident] = ACTIONS(77), + [sym_type_ident] = ACTIONS(79), + [sym_ct_type_ident] = ACTIONS(81), + [sym_const_ident] = ACTIONS(83), + [sym_builtin] = ACTIONS(63), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_static] = ACTIONS(93), + [anon_sym_tlocal] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(1173), + [anon_sym_fn] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_const] = ACTIONS(571), + [anon_sym_var] = ACTIONS(105), + [anon_sym_return] = ACTIONS(573), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_break] = ACTIONS(577), + [anon_sym_defer] = ACTIONS(579), + [anon_sym_assert] = ACTIONS(581), + [anon_sym_nextcase] = ACTIONS(583), + [anon_sym_switch] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_if] = ACTIONS(587), + [anon_sym_for] = ACTIONS(589), + [anon_sym_foreach] = ACTIONS(591), + [anon_sym_foreach_r] = ACTIONS(591), + [anon_sym_while] = ACTIONS(593), + [anon_sym_do] = ACTIONS(595), + [anon_sym_int] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_DOLLARassert] = ACTIONS(599), + [anon_sym_DOLLARerror] = ACTIONS(601), + [anon_sym_DOLLARecho] = ACTIONS(603), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_DOLLARswitch] = ACTIONS(149), + [anon_sym_DOLLARfor] = ACTIONS(607), + [anon_sym_DOLLARforeach] = ACTIONS(609), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), + [anon_sym_DOLLARfeature] = ACTIONS(165), + [anon_sym_DOLLARassignable] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), + [sym_real_literal] = ACTIONS(63), + }, + [140] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(140), + [sym_doc_comment] = STATE(140), + [sym_block_comment] = STATE(140), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1091), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -38082,7 +38399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -38091,76 +38408,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_COMMA] = ACTIONS(1169), - [anon_sym_GT_RPAREN] = ACTIONS(1169), - [anon_sym_EQ] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_RPAREN] = ACTIONS(1169), + [anon_sym_DOT] = ACTIONS(1175), + [anon_sym_COMMA] = ACTIONS(1177), + [anon_sym_LPAREN_LT] = ACTIONS(1177), + [anon_sym_GT_RPAREN] = ACTIONS(1177), + [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1179), + [anon_sym_RPAREN] = ACTIONS(1177), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(1177), + [anon_sym_RBRACK] = ACTIONS(1177), + [anon_sym_SEMI] = ACTIONS(1177), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_RBRACE] = ACTIONS(1169), - [anon_sym_DOT] = ACTIONS(1169), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1177), + [anon_sym_COLON] = ACTIONS(1177), + [anon_sym_DOT_DOT] = ACTIONS(1177), + [anon_sym_AMP_AMP] = ACTIONS(89), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_LT_LT] = ACTIONS(1171), - [anon_sym_GT_GT] = ACTIONS(1171), + [anon_sym_LT_LT] = ACTIONS(1175), + [anon_sym_GT_GT] = ACTIONS(1175), [anon_sym_STAR] = ACTIONS(89), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_PLUS_EQ] = ACTIONS(1169), - [anon_sym_DASH_EQ] = ACTIONS(1169), - [anon_sym_STAR_EQ] = ACTIONS(1169), - [anon_sym_SLASH_EQ] = ACTIONS(1169), - [anon_sym_PERCENT_EQ] = ACTIONS(1169), - [anon_sym_LT_LT_EQ] = ACTIONS(1169), - [anon_sym_GT_GT_EQ] = ACTIONS(1169), - [anon_sym_AMP_EQ] = ACTIONS(1169), - [anon_sym_CARET_EQ] = ACTIONS(1169), - [anon_sym_PIPE_EQ] = ACTIONS(1169), - [anon_sym_QMARK] = ACTIONS(1171), - [anon_sym_QMARK_COLON] = ACTIONS(1169), - [anon_sym_QMARK_QMARK] = ACTIONS(1169), - [anon_sym_BANG] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(1171), - [anon_sym_PERCENT] = ACTIONS(1171), - [anon_sym_PIPE] = ACTIONS(1171), - [anon_sym_CARET] = ACTIONS(1171), - [anon_sym_EQ_EQ] = ACTIONS(1169), - [anon_sym_BANG_EQ] = ACTIONS(1169), - [anon_sym_GT] = ACTIONS(1171), - [anon_sym_GT_EQ] = ACTIONS(1169), - [anon_sym_LT_EQ] = ACTIONS(1169), - [anon_sym_LT] = ACTIONS(1171), - [anon_sym_PIPE_PIPE] = ACTIONS(1169), + [anon_sym_PLUS_EQ] = ACTIONS(1177), + [anon_sym_DASH_EQ] = ACTIONS(1177), + [anon_sym_STAR_EQ] = ACTIONS(1177), + [anon_sym_SLASH_EQ] = ACTIONS(1177), + [anon_sym_PERCENT_EQ] = ACTIONS(1177), + [anon_sym_LT_LT_EQ] = ACTIONS(1177), + [anon_sym_GT_GT_EQ] = ACTIONS(1177), + [anon_sym_AMP_EQ] = ACTIONS(1177), + [anon_sym_CARET_EQ] = ACTIONS(1177), + [anon_sym_PIPE_EQ] = ACTIONS(1177), + [anon_sym_QMARK] = ACTIONS(1175), + [anon_sym_QMARK_COLON] = ACTIONS(1177), + [anon_sym_QMARK_QMARK] = ACTIONS(1177), + [anon_sym_BANG] = ACTIONS(1183), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(1175), + [anon_sym_PERCENT] = ACTIONS(1175), + [anon_sym_PIPE] = ACTIONS(1175), + [anon_sym_CARET] = ACTIONS(1175), + [anon_sym_EQ_EQ] = ACTIONS(1177), + [anon_sym_BANG_EQ] = ACTIONS(1177), + [anon_sym_GT] = ACTIONS(1175), + [anon_sym_GT_EQ] = ACTIONS(1177), + [anon_sym_LT_EQ] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_PIPE_PIPE] = ACTIONS(1175), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1177), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1177), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1177), + [anon_sym_BANG_BANG] = ACTIONS(1177), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -38183,2090 +38512,1868 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), + [anon_sym_GT_RBRACK] = ACTIONS(1177), [sym_real_literal] = ACTIONS(63), }, - [139] = { - [sym_line_comment] = STATE(139), - [sym_doc_comment] = STATE(139), - [sym_block_comment] = STATE(139), - [sym_ident] = ACTIONS(1181), - [sym_integer_literal] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [sym_bytes_literal] = ACTIONS(1183), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1181), - [sym_at_ident] = ACTIONS(1183), - [sym_hash_ident] = ACTIONS(1183), - [sym_type_ident] = ACTIONS(1183), - [sym_ct_type_ident] = ACTIONS(1183), - [sym_const_ident] = ACTIONS(1181), - [sym_builtin] = ACTIONS(1183), - [anon_sym_LPAREN_LT] = ACTIONS(1185), - [anon_sym_EQ] = ACTIONS(1187), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_tlocal] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_fn] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_DOT] = ACTIONS(1185), - [anon_sym_var] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_defer] = ACTIONS(1181), - [anon_sym_assert] = ACTIONS(1181), - [anon_sym_case] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1181), - [anon_sym_nextcase] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_foreach] = ACTIONS(1181), - [anon_sym_foreach_r] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym_DOLLARassert] = ACTIONS(1181), - [anon_sym_DOLLARerror] = ACTIONS(1181), - [anon_sym_DOLLARecho] = ACTIONS(1181), - [anon_sym_DOLLARif] = ACTIONS(1181), - [anon_sym_DOLLARswitch] = ACTIONS(1181), - [anon_sym_DOLLARfor] = ACTIONS(1181), - [anon_sym_DOLLARforeach] = ACTIONS(1181), - [anon_sym_DOLLARalignof] = ACTIONS(1181), - [anon_sym_DOLLARextnameof] = ACTIONS(1181), - [anon_sym_DOLLARnameof] = ACTIONS(1181), - [anon_sym_DOLLARoffsetof] = ACTIONS(1181), - [anon_sym_DOLLARqnameof] = ACTIONS(1181), - [anon_sym_DOLLAReval] = ACTIONS(1181), - [anon_sym_DOLLARdefined] = ACTIONS(1181), - [anon_sym_DOLLARsizeof] = ACTIONS(1181), - [anon_sym_DOLLARstringify] = ACTIONS(1181), - [anon_sym_DOLLARis_const] = ACTIONS(1181), - [anon_sym_DOLLARvaconst] = ACTIONS(1181), - [anon_sym_DOLLARvaarg] = ACTIONS(1181), - [anon_sym_DOLLARvaref] = ACTIONS(1181), - [anon_sym_DOLLARvaexpr] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_null] = ACTIONS(1181), - [anon_sym_DOLLARvacount] = ACTIONS(1181), - [anon_sym_DOLLARfeature] = ACTIONS(1181), - [anon_sym_DOLLARand] = ACTIONS(1181), - [anon_sym_DOLLARor] = ACTIONS(1181), - [anon_sym_DOLLARassignable] = ACTIONS(1181), - [anon_sym_DOLLARembed] = ACTIONS(1181), - [anon_sym_PLUS_EQ] = ACTIONS(1185), - [anon_sym_DASH_EQ] = ACTIONS(1185), - [anon_sym_STAR_EQ] = ACTIONS(1185), - [anon_sym_SLASH_EQ] = ACTIONS(1185), - [anon_sym_PERCENT_EQ] = ACTIONS(1185), - [anon_sym_LT_LT_EQ] = ACTIONS(1185), - [anon_sym_GT_GT_EQ] = ACTIONS(1185), - [anon_sym_AMP_EQ] = ACTIONS(1185), - [anon_sym_CARET_EQ] = ACTIONS(1185), - [anon_sym_PIPE_EQ] = ACTIONS(1185), - [anon_sym_QMARK] = ACTIONS(1187), - [anon_sym_QMARK_COLON] = ACTIONS(1185), - [anon_sym_QMARK_QMARK] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_SLASH] = ACTIONS(1187), - [anon_sym_PERCENT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1187), - [anon_sym_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_BANG_BANG] = ACTIONS(1185), - [anon_sym_typeid] = ACTIONS(1181), - [anon_sym_LBRACE_PIPE] = ACTIONS(1183), - [anon_sym_PIPE_RBRACE] = ACTIONS(1183), - [anon_sym_void] = ACTIONS(1181), - [anon_sym_bool] = ACTIONS(1181), - [anon_sym_char] = ACTIONS(1181), - [anon_sym_ichar] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_ushort] = ACTIONS(1181), - [anon_sym_uint] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_ulong] = ACTIONS(1181), - [anon_sym_int128] = ACTIONS(1181), - [anon_sym_uint128] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_double] = ACTIONS(1181), - [anon_sym_float16] = ACTIONS(1181), - [anon_sym_bfloat16] = ACTIONS(1181), - [anon_sym_float128] = ACTIONS(1181), - [anon_sym_iptr] = ACTIONS(1181), - [anon_sym_uptr] = ACTIONS(1181), - [anon_sym_isz] = ACTIONS(1181), - [anon_sym_usz] = ACTIONS(1181), - [anon_sym_anyfault] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_DOLLARtypeof] = ACTIONS(1181), - [anon_sym_DOLLARtypefrom] = ACTIONS(1181), - [anon_sym_DOLLARvatype] = ACTIONS(1181), - [anon_sym_DOLLARevaltype] = ACTIONS(1181), - [sym_real_literal] = ACTIONS(1183), - }, - [140] = { - [sym_line_comment] = STATE(140), - [sym_doc_comment] = STATE(140), - [sym_block_comment] = STATE(140), - [sym_ident] = ACTIONS(1181), - [sym_integer_literal] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [sym_bytes_literal] = ACTIONS(1183), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1181), - [sym_at_ident] = ACTIONS(1183), - [sym_hash_ident] = ACTIONS(1183), - [sym_type_ident] = ACTIONS(1183), - [sym_ct_type_ident] = ACTIONS(1183), - [sym_const_ident] = ACTIONS(1181), - [sym_builtin] = ACTIONS(1183), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_LPAREN_LT] = ACTIONS(1185), - [anon_sym_EQ] = ACTIONS(1187), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_tlocal] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_fn] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_DOT] = ACTIONS(1185), - [anon_sym_var] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_defer] = ACTIONS(1181), - [anon_sym_assert] = ACTIONS(1181), - [anon_sym_case] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1181), - [anon_sym_nextcase] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_foreach] = ACTIONS(1181), - [anon_sym_foreach_r] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym_DOLLARassert] = ACTIONS(1181), - [anon_sym_DOLLARerror] = ACTIONS(1181), - [anon_sym_DOLLARecho] = ACTIONS(1181), - [anon_sym_DOLLARif] = ACTIONS(1181), - [anon_sym_DOLLARswitch] = ACTIONS(1181), - [anon_sym_DOLLARfor] = ACTIONS(1181), - [anon_sym_DOLLARforeach] = ACTIONS(1181), - [anon_sym_DOLLARalignof] = ACTIONS(1181), - [anon_sym_DOLLARextnameof] = ACTIONS(1181), - [anon_sym_DOLLARnameof] = ACTIONS(1181), - [anon_sym_DOLLARoffsetof] = ACTIONS(1181), - [anon_sym_DOLLARqnameof] = ACTIONS(1181), - [anon_sym_DOLLAReval] = ACTIONS(1181), - [anon_sym_DOLLARdefined] = ACTIONS(1181), - [anon_sym_DOLLARsizeof] = ACTIONS(1181), - [anon_sym_DOLLARstringify] = ACTIONS(1181), - [anon_sym_DOLLARis_const] = ACTIONS(1181), - [anon_sym_DOLLARvaconst] = ACTIONS(1181), - [anon_sym_DOLLARvaarg] = ACTIONS(1181), - [anon_sym_DOLLARvaref] = ACTIONS(1181), - [anon_sym_DOLLARvaexpr] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_null] = ACTIONS(1181), - [anon_sym_DOLLARvacount] = ACTIONS(1181), - [anon_sym_DOLLARfeature] = ACTIONS(1181), - [anon_sym_DOLLARand] = ACTIONS(1181), - [anon_sym_DOLLARor] = ACTIONS(1181), - [anon_sym_DOLLARassignable] = ACTIONS(1181), - [anon_sym_DOLLARembed] = ACTIONS(1181), - [anon_sym_PLUS_EQ] = ACTIONS(1185), - [anon_sym_DASH_EQ] = ACTIONS(1185), - [anon_sym_STAR_EQ] = ACTIONS(1185), - [anon_sym_SLASH_EQ] = ACTIONS(1185), - [anon_sym_PERCENT_EQ] = ACTIONS(1185), - [anon_sym_LT_LT_EQ] = ACTIONS(1185), - [anon_sym_GT_GT_EQ] = ACTIONS(1185), - [anon_sym_AMP_EQ] = ACTIONS(1185), - [anon_sym_CARET_EQ] = ACTIONS(1185), - [anon_sym_PIPE_EQ] = ACTIONS(1185), - [anon_sym_QMARK] = ACTIONS(1187), - [anon_sym_QMARK_COLON] = ACTIONS(1185), - [anon_sym_QMARK_QMARK] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_SLASH] = ACTIONS(1187), - [anon_sym_PERCENT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1187), - [anon_sym_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_BANG_BANG] = ACTIONS(1185), - [anon_sym_typeid] = ACTIONS(1181), - [anon_sym_LBRACE_PIPE] = ACTIONS(1183), - [anon_sym_PIPE_RBRACE] = ACTIONS(1183), - [anon_sym_void] = ACTIONS(1181), - [anon_sym_bool] = ACTIONS(1181), - [anon_sym_char] = ACTIONS(1181), - [anon_sym_ichar] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_ushort] = ACTIONS(1181), - [anon_sym_uint] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_ulong] = ACTIONS(1181), - [anon_sym_int128] = ACTIONS(1181), - [anon_sym_uint128] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_double] = ACTIONS(1181), - [anon_sym_float16] = ACTIONS(1181), - [anon_sym_bfloat16] = ACTIONS(1181), - [anon_sym_float128] = ACTIONS(1181), - [anon_sym_iptr] = ACTIONS(1181), - [anon_sym_uptr] = ACTIONS(1181), - [anon_sym_isz] = ACTIONS(1181), - [anon_sym_usz] = ACTIONS(1181), - [anon_sym_anyfault] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_DOLLARtypeof] = ACTIONS(1181), - [anon_sym_DOLLARtypefrom] = ACTIONS(1181), - [anon_sym_DOLLARvatype] = ACTIONS(1181), - [anon_sym_DOLLARevaltype] = ACTIONS(1181), - [sym_real_literal] = ACTIONS(1183), - }, [141] = { [sym_line_comment] = STATE(141), [sym_doc_comment] = STATE(141), [sym_block_comment] = STATE(141), - [sym_ident] = ACTIONS(1181), - [sym_integer_literal] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [sym_bytes_literal] = ACTIONS(1183), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1181), - [sym_at_ident] = ACTIONS(1183), - [sym_hash_ident] = ACTIONS(1183), - [sym_type_ident] = ACTIONS(1183), - [sym_ct_type_ident] = ACTIONS(1183), - [sym_const_ident] = ACTIONS(1181), - [sym_builtin] = ACTIONS(1183), - [anon_sym_LPAREN_LT] = ACTIONS(1185), - [anon_sym_EQ] = ACTIONS(1187), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_tlocal] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_fn] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_DOT] = ACTIONS(1185), - [anon_sym_var] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_defer] = ACTIONS(1181), - [anon_sym_assert] = ACTIONS(1181), - [anon_sym_nextcase] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_foreach] = ACTIONS(1181), - [anon_sym_foreach_r] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym_DOLLARassert] = ACTIONS(1181), - [anon_sym_DOLLARerror] = ACTIONS(1181), - [anon_sym_DOLLARecho] = ACTIONS(1181), - [anon_sym_DOLLARif] = ACTIONS(1181), - [anon_sym_DOLLARcase] = ACTIONS(1181), - [anon_sym_DOLLARdefault] = ACTIONS(1181), - [anon_sym_DOLLARswitch] = ACTIONS(1181), - [anon_sym_DOLLARendswitch] = ACTIONS(1181), - [anon_sym_DOLLARfor] = ACTIONS(1181), - [anon_sym_DOLLARforeach] = ACTIONS(1181), - [anon_sym_DOLLARalignof] = ACTIONS(1181), - [anon_sym_DOLLARextnameof] = ACTIONS(1181), - [anon_sym_DOLLARnameof] = ACTIONS(1181), - [anon_sym_DOLLARoffsetof] = ACTIONS(1181), - [anon_sym_DOLLARqnameof] = ACTIONS(1181), - [anon_sym_DOLLAReval] = ACTIONS(1181), - [anon_sym_DOLLARdefined] = ACTIONS(1181), - [anon_sym_DOLLARsizeof] = ACTIONS(1181), - [anon_sym_DOLLARstringify] = ACTIONS(1181), - [anon_sym_DOLLARis_const] = ACTIONS(1181), - [anon_sym_DOLLARvaconst] = ACTIONS(1181), - [anon_sym_DOLLARvaarg] = ACTIONS(1181), - [anon_sym_DOLLARvaref] = ACTIONS(1181), - [anon_sym_DOLLARvaexpr] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_null] = ACTIONS(1181), - [anon_sym_DOLLARvacount] = ACTIONS(1181), - [anon_sym_DOLLARfeature] = ACTIONS(1181), - [anon_sym_DOLLARand] = ACTIONS(1181), - [anon_sym_DOLLARor] = ACTIONS(1181), - [anon_sym_DOLLARassignable] = ACTIONS(1181), - [anon_sym_DOLLARembed] = ACTIONS(1181), - [anon_sym_PLUS_EQ] = ACTIONS(1185), - [anon_sym_DASH_EQ] = ACTIONS(1185), - [anon_sym_STAR_EQ] = ACTIONS(1185), - [anon_sym_SLASH_EQ] = ACTIONS(1185), - [anon_sym_PERCENT_EQ] = ACTIONS(1185), - [anon_sym_LT_LT_EQ] = ACTIONS(1185), - [anon_sym_GT_GT_EQ] = ACTIONS(1185), - [anon_sym_AMP_EQ] = ACTIONS(1185), - [anon_sym_CARET_EQ] = ACTIONS(1185), - [anon_sym_PIPE_EQ] = ACTIONS(1185), - [anon_sym_QMARK] = ACTIONS(1187), - [anon_sym_QMARK_COLON] = ACTIONS(1185), - [anon_sym_QMARK_QMARK] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_SLASH] = ACTIONS(1187), - [anon_sym_PERCENT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1187), - [anon_sym_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_BANG_BANG] = ACTIONS(1185), - [anon_sym_typeid] = ACTIONS(1181), - [anon_sym_LBRACE_PIPE] = ACTIONS(1183), - [anon_sym_void] = ACTIONS(1181), - [anon_sym_bool] = ACTIONS(1181), - [anon_sym_char] = ACTIONS(1181), - [anon_sym_ichar] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_ushort] = ACTIONS(1181), - [anon_sym_uint] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_ulong] = ACTIONS(1181), - [anon_sym_int128] = ACTIONS(1181), - [anon_sym_uint128] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_double] = ACTIONS(1181), - [anon_sym_float16] = ACTIONS(1181), - [anon_sym_bfloat16] = ACTIONS(1181), - [anon_sym_float128] = ACTIONS(1181), - [anon_sym_iptr] = ACTIONS(1181), - [anon_sym_uptr] = ACTIONS(1181), - [anon_sym_isz] = ACTIONS(1181), - [anon_sym_usz] = ACTIONS(1181), - [anon_sym_anyfault] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_DOLLARtypeof] = ACTIONS(1181), - [anon_sym_DOLLARtypefrom] = ACTIONS(1181), - [anon_sym_DOLLARvatype] = ACTIONS(1181), - [anon_sym_DOLLARevaltype] = ACTIONS(1181), - [sym_real_literal] = ACTIONS(1183), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LPAREN_LT] = ACTIONS(1193), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_case] = ACTIONS(1189), + [anon_sym_default] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_else] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_PLUS_EQ] = ACTIONS(1193), + [anon_sym_DASH_EQ] = ACTIONS(1193), + [anon_sym_STAR_EQ] = ACTIONS(1193), + [anon_sym_SLASH_EQ] = ACTIONS(1193), + [anon_sym_PERCENT_EQ] = ACTIONS(1193), + [anon_sym_LT_LT_EQ] = ACTIONS(1193), + [anon_sym_GT_GT_EQ] = ACTIONS(1193), + [anon_sym_AMP_EQ] = ACTIONS(1193), + [anon_sym_CARET_EQ] = ACTIONS(1193), + [anon_sym_PIPE_EQ] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_QMARK_COLON] = ACTIONS(1193), + [anon_sym_QMARK_QMARK] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE_PIPE] = ACTIONS(1195), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_BANG_BANG] = ACTIONS(1193), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_PIPE_RBRACE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), }, [142] = { [sym_line_comment] = STATE(142), [sym_doc_comment] = STATE(142), [sym_block_comment] = STATE(142), - [sym_ident] = ACTIONS(1181), - [sym_integer_literal] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [sym_bytes_literal] = ACTIONS(1183), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1181), - [sym_at_ident] = ACTIONS(1183), - [sym_hash_ident] = ACTIONS(1183), - [sym_type_ident] = ACTIONS(1183), - [sym_ct_type_ident] = ACTIONS(1183), - [sym_const_ident] = ACTIONS(1181), - [sym_builtin] = ACTIONS(1183), - [anon_sym_LPAREN_LT] = ACTIONS(1185), - [anon_sym_EQ] = ACTIONS(1187), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_tlocal] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_fn] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_DOT] = ACTIONS(1185), - [anon_sym_var] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_defer] = ACTIONS(1181), - [anon_sym_assert] = ACTIONS(1181), - [anon_sym_nextcase] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_foreach] = ACTIONS(1181), - [anon_sym_foreach_r] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym_DOLLARassert] = ACTIONS(1181), - [anon_sym_DOLLARerror] = ACTIONS(1181), - [anon_sym_DOLLARecho] = ACTIONS(1181), - [anon_sym_DOLLARif] = ACTIONS(1181), - [anon_sym_DOLLARendif] = ACTIONS(1181), - [anon_sym_DOLLARelse] = ACTIONS(1181), - [anon_sym_DOLLARswitch] = ACTIONS(1181), - [anon_sym_DOLLARfor] = ACTIONS(1181), - [anon_sym_DOLLARforeach] = ACTIONS(1181), - [anon_sym_DOLLARalignof] = ACTIONS(1181), - [anon_sym_DOLLARextnameof] = ACTIONS(1181), - [anon_sym_DOLLARnameof] = ACTIONS(1181), - [anon_sym_DOLLARoffsetof] = ACTIONS(1181), - [anon_sym_DOLLARqnameof] = ACTIONS(1181), - [anon_sym_DOLLAReval] = ACTIONS(1181), - [anon_sym_DOLLARdefined] = ACTIONS(1181), - [anon_sym_DOLLARsizeof] = ACTIONS(1181), - [anon_sym_DOLLARstringify] = ACTIONS(1181), - [anon_sym_DOLLARis_const] = ACTIONS(1181), - [anon_sym_DOLLARvaconst] = ACTIONS(1181), - [anon_sym_DOLLARvaarg] = ACTIONS(1181), - [anon_sym_DOLLARvaref] = ACTIONS(1181), - [anon_sym_DOLLARvaexpr] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_null] = ACTIONS(1181), - [anon_sym_DOLLARvacount] = ACTIONS(1181), - [anon_sym_DOLLARfeature] = ACTIONS(1181), - [anon_sym_DOLLARand] = ACTIONS(1181), - [anon_sym_DOLLARor] = ACTIONS(1181), - [anon_sym_DOLLARassignable] = ACTIONS(1181), - [anon_sym_DOLLARembed] = ACTIONS(1181), - [anon_sym_PLUS_EQ] = ACTIONS(1185), - [anon_sym_DASH_EQ] = ACTIONS(1185), - [anon_sym_STAR_EQ] = ACTIONS(1185), - [anon_sym_SLASH_EQ] = ACTIONS(1185), - [anon_sym_PERCENT_EQ] = ACTIONS(1185), - [anon_sym_LT_LT_EQ] = ACTIONS(1185), - [anon_sym_GT_GT_EQ] = ACTIONS(1185), - [anon_sym_AMP_EQ] = ACTIONS(1185), - [anon_sym_CARET_EQ] = ACTIONS(1185), - [anon_sym_PIPE_EQ] = ACTIONS(1185), - [anon_sym_QMARK] = ACTIONS(1187), - [anon_sym_QMARK_COLON] = ACTIONS(1185), - [anon_sym_QMARK_QMARK] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_SLASH] = ACTIONS(1187), - [anon_sym_PERCENT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1187), - [anon_sym_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_BANG_BANG] = ACTIONS(1185), - [anon_sym_typeid] = ACTIONS(1181), - [anon_sym_LBRACE_PIPE] = ACTIONS(1183), - [anon_sym_void] = ACTIONS(1181), - [anon_sym_bool] = ACTIONS(1181), - [anon_sym_char] = ACTIONS(1181), - [anon_sym_ichar] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_ushort] = ACTIONS(1181), - [anon_sym_uint] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_ulong] = ACTIONS(1181), - [anon_sym_int128] = ACTIONS(1181), - [anon_sym_uint128] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_double] = ACTIONS(1181), - [anon_sym_float16] = ACTIONS(1181), - [anon_sym_bfloat16] = ACTIONS(1181), - [anon_sym_float128] = ACTIONS(1181), - [anon_sym_iptr] = ACTIONS(1181), - [anon_sym_uptr] = ACTIONS(1181), - [anon_sym_isz] = ACTIONS(1181), - [anon_sym_usz] = ACTIONS(1181), - [anon_sym_anyfault] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_DOLLARtypeof] = ACTIONS(1181), - [anon_sym_DOLLARtypefrom] = ACTIONS(1181), - [anon_sym_DOLLARvatype] = ACTIONS(1181), - [anon_sym_DOLLARevaltype] = ACTIONS(1181), - [sym_real_literal] = ACTIONS(1183), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_LPAREN_LT] = ACTIONS(1193), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_case] = ACTIONS(1189), + [anon_sym_default] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_PLUS_EQ] = ACTIONS(1193), + [anon_sym_DASH_EQ] = ACTIONS(1193), + [anon_sym_STAR_EQ] = ACTIONS(1193), + [anon_sym_SLASH_EQ] = ACTIONS(1193), + [anon_sym_PERCENT_EQ] = ACTIONS(1193), + [anon_sym_LT_LT_EQ] = ACTIONS(1193), + [anon_sym_GT_GT_EQ] = ACTIONS(1193), + [anon_sym_AMP_EQ] = ACTIONS(1193), + [anon_sym_CARET_EQ] = ACTIONS(1193), + [anon_sym_PIPE_EQ] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_QMARK_COLON] = ACTIONS(1193), + [anon_sym_QMARK_QMARK] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE_PIPE] = ACTIONS(1195), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_BANG_BANG] = ACTIONS(1193), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_PIPE_RBRACE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), }, [143] = { [sym_line_comment] = STATE(143), [sym_doc_comment] = STATE(143), [sym_block_comment] = STATE(143), - [sym_ident] = ACTIONS(1181), - [sym_integer_literal] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [sym_bytes_literal] = ACTIONS(1183), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1181), - [sym_at_ident] = ACTIONS(1183), - [sym_hash_ident] = ACTIONS(1183), - [sym_type_ident] = ACTIONS(1183), - [sym_ct_type_ident] = ACTIONS(1183), - [sym_const_ident] = ACTIONS(1181), - [sym_builtin] = ACTIONS(1183), - [anon_sym_LPAREN_LT] = ACTIONS(1185), - [anon_sym_EQ] = ACTIONS(1187), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_tlocal] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_fn] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_DOT] = ACTIONS(1185), - [anon_sym_var] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_defer] = ACTIONS(1181), - [anon_sym_assert] = ACTIONS(1181), - [anon_sym_nextcase] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_foreach] = ACTIONS(1181), - [anon_sym_foreach_r] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym_DOLLARassert] = ACTIONS(1181), - [anon_sym_DOLLARerror] = ACTIONS(1181), - [anon_sym_DOLLARecho] = ACTIONS(1181), - [anon_sym_DOLLARif] = ACTIONS(1181), - [anon_sym_DOLLARcase] = ACTIONS(1181), - [anon_sym_DOLLARdefault] = ACTIONS(1181), - [anon_sym_DOLLARswitch] = ACTIONS(1181), - [anon_sym_DOLLARendswitch] = ACTIONS(1181), - [anon_sym_DOLLARfor] = ACTIONS(1181), - [anon_sym_DOLLARforeach] = ACTIONS(1181), - [anon_sym_DOLLARalignof] = ACTIONS(1181), - [anon_sym_DOLLARextnameof] = ACTIONS(1181), - [anon_sym_DOLLARnameof] = ACTIONS(1181), - [anon_sym_DOLLARoffsetof] = ACTIONS(1181), - [anon_sym_DOLLARqnameof] = ACTIONS(1181), - [anon_sym_DOLLAReval] = ACTIONS(1181), - [anon_sym_DOLLARdefined] = ACTIONS(1181), - [anon_sym_DOLLARsizeof] = ACTIONS(1181), - [anon_sym_DOLLARstringify] = ACTIONS(1181), - [anon_sym_DOLLARis_const] = ACTIONS(1181), - [anon_sym_DOLLARvaconst] = ACTIONS(1181), - [anon_sym_DOLLARvaarg] = ACTIONS(1181), - [anon_sym_DOLLARvaref] = ACTIONS(1181), - [anon_sym_DOLLARvaexpr] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_null] = ACTIONS(1181), - [anon_sym_DOLLARvacount] = ACTIONS(1181), - [anon_sym_DOLLARfeature] = ACTIONS(1181), - [anon_sym_DOLLARand] = ACTIONS(1181), - [anon_sym_DOLLARor] = ACTIONS(1181), - [anon_sym_DOLLARassignable] = ACTIONS(1181), - [anon_sym_DOLLARembed] = ACTIONS(1181), - [anon_sym_PLUS_EQ] = ACTIONS(1185), - [anon_sym_DASH_EQ] = ACTIONS(1185), - [anon_sym_STAR_EQ] = ACTIONS(1185), - [anon_sym_SLASH_EQ] = ACTIONS(1185), - [anon_sym_PERCENT_EQ] = ACTIONS(1185), - [anon_sym_LT_LT_EQ] = ACTIONS(1185), - [anon_sym_GT_GT_EQ] = ACTIONS(1185), - [anon_sym_AMP_EQ] = ACTIONS(1185), - [anon_sym_CARET_EQ] = ACTIONS(1185), - [anon_sym_PIPE_EQ] = ACTIONS(1185), - [anon_sym_QMARK] = ACTIONS(1187), - [anon_sym_QMARK_COLON] = ACTIONS(1185), - [anon_sym_QMARK_QMARK] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_SLASH] = ACTIONS(1187), - [anon_sym_PERCENT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1187), - [anon_sym_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_BANG_BANG] = ACTIONS(1185), - [anon_sym_typeid] = ACTIONS(1181), - [anon_sym_LBRACE_PIPE] = ACTIONS(1183), - [anon_sym_void] = ACTIONS(1181), - [anon_sym_bool] = ACTIONS(1181), - [anon_sym_char] = ACTIONS(1181), - [anon_sym_ichar] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_ushort] = ACTIONS(1181), - [anon_sym_uint] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_ulong] = ACTIONS(1181), - [anon_sym_int128] = ACTIONS(1181), - [anon_sym_uint128] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_double] = ACTIONS(1181), - [anon_sym_float16] = ACTIONS(1181), - [anon_sym_bfloat16] = ACTIONS(1181), - [anon_sym_float128] = ACTIONS(1181), - [anon_sym_iptr] = ACTIONS(1181), - [anon_sym_uptr] = ACTIONS(1181), - [anon_sym_isz] = ACTIONS(1181), - [anon_sym_usz] = ACTIONS(1181), - [anon_sym_anyfault] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_DOLLARtypeof] = ACTIONS(1181), - [anon_sym_DOLLARtypefrom] = ACTIONS(1181), - [anon_sym_DOLLARvatype] = ACTIONS(1181), - [anon_sym_DOLLARevaltype] = ACTIONS(1181), - [sym_real_literal] = ACTIONS(1183), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LPAREN_LT] = ACTIONS(1193), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_else] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARcase] = ACTIONS(1189), + [anon_sym_DOLLARdefault] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARendswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_PLUS_EQ] = ACTIONS(1193), + [anon_sym_DASH_EQ] = ACTIONS(1193), + [anon_sym_STAR_EQ] = ACTIONS(1193), + [anon_sym_SLASH_EQ] = ACTIONS(1193), + [anon_sym_PERCENT_EQ] = ACTIONS(1193), + [anon_sym_LT_LT_EQ] = ACTIONS(1193), + [anon_sym_GT_GT_EQ] = ACTIONS(1193), + [anon_sym_AMP_EQ] = ACTIONS(1193), + [anon_sym_CARET_EQ] = ACTIONS(1193), + [anon_sym_PIPE_EQ] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_QMARK_COLON] = ACTIONS(1193), + [anon_sym_QMARK_QMARK] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE_PIPE] = ACTIONS(1195), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_BANG_BANG] = ACTIONS(1193), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), }, [144] = { [sym_line_comment] = STATE(144), [sym_doc_comment] = STATE(144), [sym_block_comment] = STATE(144), - [sym_ident] = ACTIONS(1181), - [sym_integer_literal] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [sym_bytes_literal] = ACTIONS(1183), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1181), - [sym_at_ident] = ACTIONS(1183), - [sym_hash_ident] = ACTIONS(1183), - [sym_type_ident] = ACTIONS(1183), - [sym_ct_type_ident] = ACTIONS(1183), - [sym_const_ident] = ACTIONS(1181), - [sym_builtin] = ACTIONS(1183), - [anon_sym_LPAREN_LT] = ACTIONS(1185), - [anon_sym_EQ] = ACTIONS(1187), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_tlocal] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_fn] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_DOT] = ACTIONS(1185), - [anon_sym_var] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_defer] = ACTIONS(1181), - [anon_sym_assert] = ACTIONS(1181), - [anon_sym_nextcase] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_foreach] = ACTIONS(1181), - [anon_sym_foreach_r] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym_DOLLARassert] = ACTIONS(1181), - [anon_sym_DOLLARerror] = ACTIONS(1181), - [anon_sym_DOLLARecho] = ACTIONS(1181), - [anon_sym_DOLLARif] = ACTIONS(1181), - [anon_sym_DOLLARswitch] = ACTIONS(1181), - [anon_sym_DOLLARfor] = ACTIONS(1181), - [anon_sym_DOLLARendfor] = ACTIONS(1181), - [anon_sym_DOLLARforeach] = ACTIONS(1181), - [anon_sym_DOLLARalignof] = ACTIONS(1181), - [anon_sym_DOLLARextnameof] = ACTIONS(1181), - [anon_sym_DOLLARnameof] = ACTIONS(1181), - [anon_sym_DOLLARoffsetof] = ACTIONS(1181), - [anon_sym_DOLLARqnameof] = ACTIONS(1181), - [anon_sym_DOLLAReval] = ACTIONS(1181), - [anon_sym_DOLLARdefined] = ACTIONS(1181), - [anon_sym_DOLLARsizeof] = ACTIONS(1181), - [anon_sym_DOLLARstringify] = ACTIONS(1181), - [anon_sym_DOLLARis_const] = ACTIONS(1181), - [anon_sym_DOLLARvaconst] = ACTIONS(1181), - [anon_sym_DOLLARvaarg] = ACTIONS(1181), - [anon_sym_DOLLARvaref] = ACTIONS(1181), - [anon_sym_DOLLARvaexpr] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_null] = ACTIONS(1181), - [anon_sym_DOLLARvacount] = ACTIONS(1181), - [anon_sym_DOLLARfeature] = ACTIONS(1181), - [anon_sym_DOLLARand] = ACTIONS(1181), - [anon_sym_DOLLARor] = ACTIONS(1181), - [anon_sym_DOLLARassignable] = ACTIONS(1181), - [anon_sym_DOLLARembed] = ACTIONS(1181), - [anon_sym_PLUS_EQ] = ACTIONS(1185), - [anon_sym_DASH_EQ] = ACTIONS(1185), - [anon_sym_STAR_EQ] = ACTIONS(1185), - [anon_sym_SLASH_EQ] = ACTIONS(1185), - [anon_sym_PERCENT_EQ] = ACTIONS(1185), - [anon_sym_LT_LT_EQ] = ACTIONS(1185), - [anon_sym_GT_GT_EQ] = ACTIONS(1185), - [anon_sym_AMP_EQ] = ACTIONS(1185), - [anon_sym_CARET_EQ] = ACTIONS(1185), - [anon_sym_PIPE_EQ] = ACTIONS(1185), - [anon_sym_QMARK] = ACTIONS(1187), - [anon_sym_QMARK_COLON] = ACTIONS(1185), - [anon_sym_QMARK_QMARK] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_SLASH] = ACTIONS(1187), - [anon_sym_PERCENT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1187), - [anon_sym_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_BANG_BANG] = ACTIONS(1185), - [anon_sym_typeid] = ACTIONS(1181), - [anon_sym_LBRACE_PIPE] = ACTIONS(1183), - [anon_sym_void] = ACTIONS(1181), - [anon_sym_bool] = ACTIONS(1181), - [anon_sym_char] = ACTIONS(1181), - [anon_sym_ichar] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_ushort] = ACTIONS(1181), - [anon_sym_uint] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_ulong] = ACTIONS(1181), - [anon_sym_int128] = ACTIONS(1181), - [anon_sym_uint128] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_double] = ACTIONS(1181), - [anon_sym_float16] = ACTIONS(1181), - [anon_sym_bfloat16] = ACTIONS(1181), - [anon_sym_float128] = ACTIONS(1181), - [anon_sym_iptr] = ACTIONS(1181), - [anon_sym_uptr] = ACTIONS(1181), - [anon_sym_isz] = ACTIONS(1181), - [anon_sym_usz] = ACTIONS(1181), - [anon_sym_anyfault] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_DOLLARtypeof] = ACTIONS(1181), - [anon_sym_DOLLARtypefrom] = ACTIONS(1181), - [anon_sym_DOLLARvatype] = ACTIONS(1181), - [anon_sym_DOLLARevaltype] = ACTIONS(1181), - [sym_real_literal] = ACTIONS(1183), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LPAREN_LT] = ACTIONS(1193), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARcase] = ACTIONS(1189), + [anon_sym_DOLLARdefault] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARendswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_PLUS_EQ] = ACTIONS(1193), + [anon_sym_DASH_EQ] = ACTIONS(1193), + [anon_sym_STAR_EQ] = ACTIONS(1193), + [anon_sym_SLASH_EQ] = ACTIONS(1193), + [anon_sym_PERCENT_EQ] = ACTIONS(1193), + [anon_sym_LT_LT_EQ] = ACTIONS(1193), + [anon_sym_GT_GT_EQ] = ACTIONS(1193), + [anon_sym_AMP_EQ] = ACTIONS(1193), + [anon_sym_CARET_EQ] = ACTIONS(1193), + [anon_sym_PIPE_EQ] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_QMARK_COLON] = ACTIONS(1193), + [anon_sym_QMARK_QMARK] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE_PIPE] = ACTIONS(1195), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_BANG_BANG] = ACTIONS(1193), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), }, [145] = { [sym_line_comment] = STATE(145), [sym_doc_comment] = STATE(145), [sym_block_comment] = STATE(145), - [sym_ident] = ACTIONS(1181), - [sym_integer_literal] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [sym_bytes_literal] = ACTIONS(1183), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1181), - [sym_at_ident] = ACTIONS(1183), - [sym_hash_ident] = ACTIONS(1183), - [sym_type_ident] = ACTIONS(1183), - [sym_ct_type_ident] = ACTIONS(1183), - [sym_const_ident] = ACTIONS(1181), - [sym_builtin] = ACTIONS(1183), - [anon_sym_LPAREN_LT] = ACTIONS(1185), - [anon_sym_EQ] = ACTIONS(1187), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_tlocal] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_fn] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_DOT] = ACTIONS(1185), - [anon_sym_var] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_defer] = ACTIONS(1181), - [anon_sym_assert] = ACTIONS(1181), - [anon_sym_nextcase] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_foreach] = ACTIONS(1181), - [anon_sym_foreach_r] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym_DOLLARassert] = ACTIONS(1181), - [anon_sym_DOLLARerror] = ACTIONS(1181), - [anon_sym_DOLLARecho] = ACTIONS(1181), - [anon_sym_DOLLARif] = ACTIONS(1181), - [anon_sym_DOLLARswitch] = ACTIONS(1181), - [anon_sym_DOLLARfor] = ACTIONS(1181), - [anon_sym_DOLLARforeach] = ACTIONS(1181), - [anon_sym_DOLLARendforeach] = ACTIONS(1181), - [anon_sym_DOLLARalignof] = ACTIONS(1181), - [anon_sym_DOLLARextnameof] = ACTIONS(1181), - [anon_sym_DOLLARnameof] = ACTIONS(1181), - [anon_sym_DOLLARoffsetof] = ACTIONS(1181), - [anon_sym_DOLLARqnameof] = ACTIONS(1181), - [anon_sym_DOLLAReval] = ACTIONS(1181), - [anon_sym_DOLLARdefined] = ACTIONS(1181), - [anon_sym_DOLLARsizeof] = ACTIONS(1181), - [anon_sym_DOLLARstringify] = ACTIONS(1181), - [anon_sym_DOLLARis_const] = ACTIONS(1181), - [anon_sym_DOLLARvaconst] = ACTIONS(1181), - [anon_sym_DOLLARvaarg] = ACTIONS(1181), - [anon_sym_DOLLARvaref] = ACTIONS(1181), - [anon_sym_DOLLARvaexpr] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_null] = ACTIONS(1181), - [anon_sym_DOLLARvacount] = ACTIONS(1181), - [anon_sym_DOLLARfeature] = ACTIONS(1181), - [anon_sym_DOLLARand] = ACTIONS(1181), - [anon_sym_DOLLARor] = ACTIONS(1181), - [anon_sym_DOLLARassignable] = ACTIONS(1181), - [anon_sym_DOLLARembed] = ACTIONS(1181), - [anon_sym_PLUS_EQ] = ACTIONS(1185), - [anon_sym_DASH_EQ] = ACTIONS(1185), - [anon_sym_STAR_EQ] = ACTIONS(1185), - [anon_sym_SLASH_EQ] = ACTIONS(1185), - [anon_sym_PERCENT_EQ] = ACTIONS(1185), - [anon_sym_LT_LT_EQ] = ACTIONS(1185), - [anon_sym_GT_GT_EQ] = ACTIONS(1185), - [anon_sym_AMP_EQ] = ACTIONS(1185), - [anon_sym_CARET_EQ] = ACTIONS(1185), - [anon_sym_PIPE_EQ] = ACTIONS(1185), - [anon_sym_QMARK] = ACTIONS(1187), - [anon_sym_QMARK_COLON] = ACTIONS(1185), - [anon_sym_QMARK_QMARK] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_SLASH] = ACTIONS(1187), - [anon_sym_PERCENT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1187), - [anon_sym_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_BANG_BANG] = ACTIONS(1185), - [anon_sym_typeid] = ACTIONS(1181), - [anon_sym_LBRACE_PIPE] = ACTIONS(1183), - [anon_sym_void] = ACTIONS(1181), - [anon_sym_bool] = ACTIONS(1181), - [anon_sym_char] = ACTIONS(1181), - [anon_sym_ichar] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_ushort] = ACTIONS(1181), - [anon_sym_uint] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_ulong] = ACTIONS(1181), - [anon_sym_int128] = ACTIONS(1181), - [anon_sym_uint128] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_double] = ACTIONS(1181), - [anon_sym_float16] = ACTIONS(1181), - [anon_sym_bfloat16] = ACTIONS(1181), - [anon_sym_float128] = ACTIONS(1181), - [anon_sym_iptr] = ACTIONS(1181), - [anon_sym_uptr] = ACTIONS(1181), - [anon_sym_isz] = ACTIONS(1181), - [anon_sym_usz] = ACTIONS(1181), - [anon_sym_anyfault] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_DOLLARtypeof] = ACTIONS(1181), - [anon_sym_DOLLARtypefrom] = ACTIONS(1181), - [anon_sym_DOLLARvatype] = ACTIONS(1181), - [anon_sym_DOLLARevaltype] = ACTIONS(1181), - [sym_real_literal] = ACTIONS(1183), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LPAREN_LT] = ACTIONS(1193), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_else] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARendif] = ACTIONS(1189), + [anon_sym_DOLLARelse] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_PLUS_EQ] = ACTIONS(1193), + [anon_sym_DASH_EQ] = ACTIONS(1193), + [anon_sym_STAR_EQ] = ACTIONS(1193), + [anon_sym_SLASH_EQ] = ACTIONS(1193), + [anon_sym_PERCENT_EQ] = ACTIONS(1193), + [anon_sym_LT_LT_EQ] = ACTIONS(1193), + [anon_sym_GT_GT_EQ] = ACTIONS(1193), + [anon_sym_AMP_EQ] = ACTIONS(1193), + [anon_sym_CARET_EQ] = ACTIONS(1193), + [anon_sym_PIPE_EQ] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_QMARK_COLON] = ACTIONS(1193), + [anon_sym_QMARK_QMARK] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE_PIPE] = ACTIONS(1195), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_BANG_BANG] = ACTIONS(1193), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), }, [146] = { [sym_line_comment] = STATE(146), [sym_doc_comment] = STATE(146), [sym_block_comment] = STATE(146), - [sym_ident] = ACTIONS(1181), - [sym_integer_literal] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [sym_bytes_literal] = ACTIONS(1183), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1181), - [sym_at_ident] = ACTIONS(1183), - [sym_hash_ident] = ACTIONS(1183), - [sym_type_ident] = ACTIONS(1183), - [sym_ct_type_ident] = ACTIONS(1183), - [sym_const_ident] = ACTIONS(1181), - [sym_builtin] = ACTIONS(1183), - [anon_sym_LPAREN_LT] = ACTIONS(1185), - [anon_sym_EQ] = ACTIONS(1187), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_tlocal] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_fn] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_DOT] = ACTIONS(1185), - [anon_sym_var] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_defer] = ACTIONS(1181), - [anon_sym_assert] = ACTIONS(1181), - [anon_sym_nextcase] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_foreach] = ACTIONS(1181), - [anon_sym_foreach_r] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym_DOLLARassert] = ACTIONS(1181), - [anon_sym_DOLLARerror] = ACTIONS(1181), - [anon_sym_DOLLARecho] = ACTIONS(1181), - [anon_sym_DOLLARif] = ACTIONS(1181), - [anon_sym_DOLLARendif] = ACTIONS(1181), - [anon_sym_DOLLARswitch] = ACTIONS(1181), - [anon_sym_DOLLARfor] = ACTIONS(1181), - [anon_sym_DOLLARforeach] = ACTIONS(1181), - [anon_sym_DOLLARalignof] = ACTIONS(1181), - [anon_sym_DOLLARextnameof] = ACTIONS(1181), - [anon_sym_DOLLARnameof] = ACTIONS(1181), - [anon_sym_DOLLARoffsetof] = ACTIONS(1181), - [anon_sym_DOLLARqnameof] = ACTIONS(1181), - [anon_sym_DOLLAReval] = ACTIONS(1181), - [anon_sym_DOLLARdefined] = ACTIONS(1181), - [anon_sym_DOLLARsizeof] = ACTIONS(1181), - [anon_sym_DOLLARstringify] = ACTIONS(1181), - [anon_sym_DOLLARis_const] = ACTIONS(1181), - [anon_sym_DOLLARvaconst] = ACTIONS(1181), - [anon_sym_DOLLARvaarg] = ACTIONS(1181), - [anon_sym_DOLLARvaref] = ACTIONS(1181), - [anon_sym_DOLLARvaexpr] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_null] = ACTIONS(1181), - [anon_sym_DOLLARvacount] = ACTIONS(1181), - [anon_sym_DOLLARfeature] = ACTIONS(1181), - [anon_sym_DOLLARand] = ACTIONS(1181), - [anon_sym_DOLLARor] = ACTIONS(1181), - [anon_sym_DOLLARassignable] = ACTIONS(1181), - [anon_sym_DOLLARembed] = ACTIONS(1181), - [anon_sym_PLUS_EQ] = ACTIONS(1185), - [anon_sym_DASH_EQ] = ACTIONS(1185), - [anon_sym_STAR_EQ] = ACTIONS(1185), - [anon_sym_SLASH_EQ] = ACTIONS(1185), - [anon_sym_PERCENT_EQ] = ACTIONS(1185), - [anon_sym_LT_LT_EQ] = ACTIONS(1185), - [anon_sym_GT_GT_EQ] = ACTIONS(1185), - [anon_sym_AMP_EQ] = ACTIONS(1185), - [anon_sym_CARET_EQ] = ACTIONS(1185), - [anon_sym_PIPE_EQ] = ACTIONS(1185), - [anon_sym_QMARK] = ACTIONS(1187), - [anon_sym_QMARK_COLON] = ACTIONS(1185), - [anon_sym_QMARK_QMARK] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_SLASH] = ACTIONS(1187), - [anon_sym_PERCENT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1187), - [anon_sym_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_BANG_BANG] = ACTIONS(1185), - [anon_sym_typeid] = ACTIONS(1181), - [anon_sym_LBRACE_PIPE] = ACTIONS(1183), - [anon_sym_void] = ACTIONS(1181), - [anon_sym_bool] = ACTIONS(1181), - [anon_sym_char] = ACTIONS(1181), - [anon_sym_ichar] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_ushort] = ACTIONS(1181), - [anon_sym_uint] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_ulong] = ACTIONS(1181), - [anon_sym_int128] = ACTIONS(1181), - [anon_sym_uint128] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_double] = ACTIONS(1181), - [anon_sym_float16] = ACTIONS(1181), - [anon_sym_bfloat16] = ACTIONS(1181), - [anon_sym_float128] = ACTIONS(1181), - [anon_sym_iptr] = ACTIONS(1181), - [anon_sym_uptr] = ACTIONS(1181), - [anon_sym_isz] = ACTIONS(1181), - [anon_sym_usz] = ACTIONS(1181), - [anon_sym_anyfault] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_DOLLARtypeof] = ACTIONS(1181), - [anon_sym_DOLLARtypefrom] = ACTIONS(1181), - [anon_sym_DOLLARvatype] = ACTIONS(1181), - [anon_sym_DOLLARevaltype] = ACTIONS(1181), - [sym_real_literal] = ACTIONS(1183), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LPAREN_LT] = ACTIONS(1193), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_else] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARendforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_PLUS_EQ] = ACTIONS(1193), + [anon_sym_DASH_EQ] = ACTIONS(1193), + [anon_sym_STAR_EQ] = ACTIONS(1193), + [anon_sym_SLASH_EQ] = ACTIONS(1193), + [anon_sym_PERCENT_EQ] = ACTIONS(1193), + [anon_sym_LT_LT_EQ] = ACTIONS(1193), + [anon_sym_GT_GT_EQ] = ACTIONS(1193), + [anon_sym_AMP_EQ] = ACTIONS(1193), + [anon_sym_CARET_EQ] = ACTIONS(1193), + [anon_sym_PIPE_EQ] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_QMARK_COLON] = ACTIONS(1193), + [anon_sym_QMARK_QMARK] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE_PIPE] = ACTIONS(1195), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_BANG_BANG] = ACTIONS(1193), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), }, [147] = { [sym_line_comment] = STATE(147), [sym_doc_comment] = STATE(147), [sym_block_comment] = STATE(147), - [sym_ident] = ACTIONS(1181), - [sym_integer_literal] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [sym_bytes_literal] = ACTIONS(1183), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1181), - [sym_at_ident] = ACTIONS(1183), - [sym_hash_ident] = ACTIONS(1183), - [sym_type_ident] = ACTIONS(1183), - [sym_ct_type_ident] = ACTIONS(1183), - [sym_const_ident] = ACTIONS(1181), - [sym_builtin] = ACTIONS(1183), - [anon_sym_LPAREN_LT] = ACTIONS(1185), - [anon_sym_EQ] = ACTIONS(1187), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_tlocal] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_fn] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_DOT] = ACTIONS(1185), - [anon_sym_var] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_defer] = ACTIONS(1181), - [anon_sym_assert] = ACTIONS(1181), - [anon_sym_nextcase] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_foreach] = ACTIONS(1181), - [anon_sym_foreach_r] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym_DOLLARassert] = ACTIONS(1181), - [anon_sym_DOLLARerror] = ACTIONS(1181), - [anon_sym_DOLLARecho] = ACTIONS(1181), - [anon_sym_DOLLARif] = ACTIONS(1181), - [anon_sym_DOLLARendif] = ACTIONS(1181), - [anon_sym_DOLLARelse] = ACTIONS(1181), - [anon_sym_DOLLARswitch] = ACTIONS(1181), - [anon_sym_DOLLARfor] = ACTIONS(1181), - [anon_sym_DOLLARforeach] = ACTIONS(1181), - [anon_sym_DOLLARalignof] = ACTIONS(1181), - [anon_sym_DOLLARextnameof] = ACTIONS(1181), - [anon_sym_DOLLARnameof] = ACTIONS(1181), - [anon_sym_DOLLARoffsetof] = ACTIONS(1181), - [anon_sym_DOLLARqnameof] = ACTIONS(1181), - [anon_sym_DOLLAReval] = ACTIONS(1181), - [anon_sym_DOLLARdefined] = ACTIONS(1181), - [anon_sym_DOLLARsizeof] = ACTIONS(1181), - [anon_sym_DOLLARstringify] = ACTIONS(1181), - [anon_sym_DOLLARis_const] = ACTIONS(1181), - [anon_sym_DOLLARvaconst] = ACTIONS(1181), - [anon_sym_DOLLARvaarg] = ACTIONS(1181), - [anon_sym_DOLLARvaref] = ACTIONS(1181), - [anon_sym_DOLLARvaexpr] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_null] = ACTIONS(1181), - [anon_sym_DOLLARvacount] = ACTIONS(1181), - [anon_sym_DOLLARfeature] = ACTIONS(1181), - [anon_sym_DOLLARand] = ACTIONS(1181), - [anon_sym_DOLLARor] = ACTIONS(1181), - [anon_sym_DOLLARassignable] = ACTIONS(1181), - [anon_sym_DOLLARembed] = ACTIONS(1181), - [anon_sym_PLUS_EQ] = ACTIONS(1185), - [anon_sym_DASH_EQ] = ACTIONS(1185), - [anon_sym_STAR_EQ] = ACTIONS(1185), - [anon_sym_SLASH_EQ] = ACTIONS(1185), - [anon_sym_PERCENT_EQ] = ACTIONS(1185), - [anon_sym_LT_LT_EQ] = ACTIONS(1185), - [anon_sym_GT_GT_EQ] = ACTIONS(1185), - [anon_sym_AMP_EQ] = ACTIONS(1185), - [anon_sym_CARET_EQ] = ACTIONS(1185), - [anon_sym_PIPE_EQ] = ACTIONS(1185), - [anon_sym_QMARK] = ACTIONS(1187), - [anon_sym_QMARK_COLON] = ACTIONS(1185), - [anon_sym_QMARK_QMARK] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_SLASH] = ACTIONS(1187), - [anon_sym_PERCENT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1187), - [anon_sym_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_BANG_BANG] = ACTIONS(1185), - [anon_sym_typeid] = ACTIONS(1181), - [anon_sym_LBRACE_PIPE] = ACTIONS(1183), - [anon_sym_void] = ACTIONS(1181), - [anon_sym_bool] = ACTIONS(1181), - [anon_sym_char] = ACTIONS(1181), - [anon_sym_ichar] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_ushort] = ACTIONS(1181), - [anon_sym_uint] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_ulong] = ACTIONS(1181), - [anon_sym_int128] = ACTIONS(1181), - [anon_sym_uint128] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_double] = ACTIONS(1181), - [anon_sym_float16] = ACTIONS(1181), - [anon_sym_bfloat16] = ACTIONS(1181), - [anon_sym_float128] = ACTIONS(1181), - [anon_sym_iptr] = ACTIONS(1181), - [anon_sym_uptr] = ACTIONS(1181), - [anon_sym_isz] = ACTIONS(1181), - [anon_sym_usz] = ACTIONS(1181), - [anon_sym_anyfault] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_DOLLARtypeof] = ACTIONS(1181), - [anon_sym_DOLLARtypefrom] = ACTIONS(1181), - [anon_sym_DOLLARvatype] = ACTIONS(1181), - [anon_sym_DOLLARevaltype] = ACTIONS(1181), - [sym_real_literal] = ACTIONS(1183), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LPAREN_LT] = ACTIONS(1193), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_else] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARendif] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_PLUS_EQ] = ACTIONS(1193), + [anon_sym_DASH_EQ] = ACTIONS(1193), + [anon_sym_STAR_EQ] = ACTIONS(1193), + [anon_sym_SLASH_EQ] = ACTIONS(1193), + [anon_sym_PERCENT_EQ] = ACTIONS(1193), + [anon_sym_LT_LT_EQ] = ACTIONS(1193), + [anon_sym_GT_GT_EQ] = ACTIONS(1193), + [anon_sym_AMP_EQ] = ACTIONS(1193), + [anon_sym_CARET_EQ] = ACTIONS(1193), + [anon_sym_PIPE_EQ] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_QMARK_COLON] = ACTIONS(1193), + [anon_sym_QMARK_QMARK] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE_PIPE] = ACTIONS(1195), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_BANG_BANG] = ACTIONS(1193), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), }, [148] = { [sym_line_comment] = STATE(148), [sym_doc_comment] = STATE(148), [sym_block_comment] = STATE(148), - [sym_ident] = ACTIONS(1181), - [sym_integer_literal] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [sym_bytes_literal] = ACTIONS(1183), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1181), - [sym_at_ident] = ACTIONS(1183), - [sym_hash_ident] = ACTIONS(1183), - [sym_type_ident] = ACTIONS(1183), - [sym_ct_type_ident] = ACTIONS(1183), - [sym_const_ident] = ACTIONS(1181), - [sym_builtin] = ACTIONS(1183), - [anon_sym_LPAREN_LT] = ACTIONS(1185), - [anon_sym_EQ] = ACTIONS(1187), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_tlocal] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_fn] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_DOT] = ACTIONS(1185), - [anon_sym_var] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_defer] = ACTIONS(1181), - [anon_sym_assert] = ACTIONS(1181), - [anon_sym_nextcase] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_foreach] = ACTIONS(1181), - [anon_sym_foreach_r] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym_DOLLARassert] = ACTIONS(1181), - [anon_sym_DOLLARerror] = ACTIONS(1181), - [anon_sym_DOLLARecho] = ACTIONS(1181), - [anon_sym_DOLLARif] = ACTIONS(1181), - [anon_sym_DOLLARswitch] = ACTIONS(1181), - [anon_sym_DOLLARfor] = ACTIONS(1181), - [anon_sym_DOLLARforeach] = ACTIONS(1181), - [anon_sym_DOLLARendforeach] = ACTIONS(1181), - [anon_sym_DOLLARalignof] = ACTIONS(1181), - [anon_sym_DOLLARextnameof] = ACTIONS(1181), - [anon_sym_DOLLARnameof] = ACTIONS(1181), - [anon_sym_DOLLARoffsetof] = ACTIONS(1181), - [anon_sym_DOLLARqnameof] = ACTIONS(1181), - [anon_sym_DOLLAReval] = ACTIONS(1181), - [anon_sym_DOLLARdefined] = ACTIONS(1181), - [anon_sym_DOLLARsizeof] = ACTIONS(1181), - [anon_sym_DOLLARstringify] = ACTIONS(1181), - [anon_sym_DOLLARis_const] = ACTIONS(1181), - [anon_sym_DOLLARvaconst] = ACTIONS(1181), - [anon_sym_DOLLARvaarg] = ACTIONS(1181), - [anon_sym_DOLLARvaref] = ACTIONS(1181), - [anon_sym_DOLLARvaexpr] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_null] = ACTIONS(1181), - [anon_sym_DOLLARvacount] = ACTIONS(1181), - [anon_sym_DOLLARfeature] = ACTIONS(1181), - [anon_sym_DOLLARand] = ACTIONS(1181), - [anon_sym_DOLLARor] = ACTIONS(1181), - [anon_sym_DOLLARassignable] = ACTIONS(1181), - [anon_sym_DOLLARembed] = ACTIONS(1181), - [anon_sym_PLUS_EQ] = ACTIONS(1185), - [anon_sym_DASH_EQ] = ACTIONS(1185), - [anon_sym_STAR_EQ] = ACTIONS(1185), - [anon_sym_SLASH_EQ] = ACTIONS(1185), - [anon_sym_PERCENT_EQ] = ACTIONS(1185), - [anon_sym_LT_LT_EQ] = ACTIONS(1185), - [anon_sym_GT_GT_EQ] = ACTIONS(1185), - [anon_sym_AMP_EQ] = ACTIONS(1185), - [anon_sym_CARET_EQ] = ACTIONS(1185), - [anon_sym_PIPE_EQ] = ACTIONS(1185), - [anon_sym_QMARK] = ACTIONS(1187), - [anon_sym_QMARK_COLON] = ACTIONS(1185), - [anon_sym_QMARK_QMARK] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_SLASH] = ACTIONS(1187), - [anon_sym_PERCENT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1187), - [anon_sym_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_BANG_BANG] = ACTIONS(1185), - [anon_sym_typeid] = ACTIONS(1181), - [anon_sym_LBRACE_PIPE] = ACTIONS(1183), - [anon_sym_void] = ACTIONS(1181), - [anon_sym_bool] = ACTIONS(1181), - [anon_sym_char] = ACTIONS(1181), - [anon_sym_ichar] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_ushort] = ACTIONS(1181), - [anon_sym_uint] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_ulong] = ACTIONS(1181), - [anon_sym_int128] = ACTIONS(1181), - [anon_sym_uint128] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_double] = ACTIONS(1181), - [anon_sym_float16] = ACTIONS(1181), - [anon_sym_bfloat16] = ACTIONS(1181), - [anon_sym_float128] = ACTIONS(1181), - [anon_sym_iptr] = ACTIONS(1181), - [anon_sym_uptr] = ACTIONS(1181), - [anon_sym_isz] = ACTIONS(1181), - [anon_sym_usz] = ACTIONS(1181), - [anon_sym_anyfault] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_DOLLARtypeof] = ACTIONS(1181), - [anon_sym_DOLLARtypefrom] = ACTIONS(1181), - [anon_sym_DOLLARvatype] = ACTIONS(1181), - [anon_sym_DOLLARevaltype] = ACTIONS(1181), - [sym_real_literal] = ACTIONS(1183), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LPAREN_LT] = ACTIONS(1193), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARendif] = ACTIONS(1189), + [anon_sym_DOLLARelse] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_PLUS_EQ] = ACTIONS(1193), + [anon_sym_DASH_EQ] = ACTIONS(1193), + [anon_sym_STAR_EQ] = ACTIONS(1193), + [anon_sym_SLASH_EQ] = ACTIONS(1193), + [anon_sym_PERCENT_EQ] = ACTIONS(1193), + [anon_sym_LT_LT_EQ] = ACTIONS(1193), + [anon_sym_GT_GT_EQ] = ACTIONS(1193), + [anon_sym_AMP_EQ] = ACTIONS(1193), + [anon_sym_CARET_EQ] = ACTIONS(1193), + [anon_sym_PIPE_EQ] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_QMARK_COLON] = ACTIONS(1193), + [anon_sym_QMARK_QMARK] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE_PIPE] = ACTIONS(1195), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_BANG_BANG] = ACTIONS(1193), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), }, [149] = { [sym_line_comment] = STATE(149), [sym_doc_comment] = STATE(149), [sym_block_comment] = STATE(149), - [sym_ident] = ACTIONS(1181), - [sym_integer_literal] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [sym_bytes_literal] = ACTIONS(1183), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1181), - [sym_at_ident] = ACTIONS(1183), - [sym_hash_ident] = ACTIONS(1183), - [sym_type_ident] = ACTIONS(1183), - [sym_ct_type_ident] = ACTIONS(1183), - [sym_const_ident] = ACTIONS(1181), - [sym_builtin] = ACTIONS(1183), - [anon_sym_LPAREN_LT] = ACTIONS(1185), - [anon_sym_EQ] = ACTIONS(1187), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_tlocal] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_fn] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_DOT] = ACTIONS(1185), - [anon_sym_var] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_defer] = ACTIONS(1181), - [anon_sym_assert] = ACTIONS(1181), - [anon_sym_nextcase] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_foreach] = ACTIONS(1181), - [anon_sym_foreach_r] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym_DOLLARassert] = ACTIONS(1181), - [anon_sym_DOLLARerror] = ACTIONS(1181), - [anon_sym_DOLLARecho] = ACTIONS(1181), - [anon_sym_DOLLARif] = ACTIONS(1181), - [anon_sym_DOLLARendif] = ACTIONS(1181), - [anon_sym_DOLLARswitch] = ACTIONS(1181), - [anon_sym_DOLLARfor] = ACTIONS(1181), - [anon_sym_DOLLARforeach] = ACTIONS(1181), - [anon_sym_DOLLARalignof] = ACTIONS(1181), - [anon_sym_DOLLARextnameof] = ACTIONS(1181), - [anon_sym_DOLLARnameof] = ACTIONS(1181), - [anon_sym_DOLLARoffsetof] = ACTIONS(1181), - [anon_sym_DOLLARqnameof] = ACTIONS(1181), - [anon_sym_DOLLAReval] = ACTIONS(1181), - [anon_sym_DOLLARdefined] = ACTIONS(1181), - [anon_sym_DOLLARsizeof] = ACTIONS(1181), - [anon_sym_DOLLARstringify] = ACTIONS(1181), - [anon_sym_DOLLARis_const] = ACTIONS(1181), - [anon_sym_DOLLARvaconst] = ACTIONS(1181), - [anon_sym_DOLLARvaarg] = ACTIONS(1181), - [anon_sym_DOLLARvaref] = ACTIONS(1181), - [anon_sym_DOLLARvaexpr] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_null] = ACTIONS(1181), - [anon_sym_DOLLARvacount] = ACTIONS(1181), - [anon_sym_DOLLARfeature] = ACTIONS(1181), - [anon_sym_DOLLARand] = ACTIONS(1181), - [anon_sym_DOLLARor] = ACTIONS(1181), - [anon_sym_DOLLARassignable] = ACTIONS(1181), - [anon_sym_DOLLARembed] = ACTIONS(1181), - [anon_sym_PLUS_EQ] = ACTIONS(1185), - [anon_sym_DASH_EQ] = ACTIONS(1185), - [anon_sym_STAR_EQ] = ACTIONS(1185), - [anon_sym_SLASH_EQ] = ACTIONS(1185), - [anon_sym_PERCENT_EQ] = ACTIONS(1185), - [anon_sym_LT_LT_EQ] = ACTIONS(1185), - [anon_sym_GT_GT_EQ] = ACTIONS(1185), - [anon_sym_AMP_EQ] = ACTIONS(1185), - [anon_sym_CARET_EQ] = ACTIONS(1185), - [anon_sym_PIPE_EQ] = ACTIONS(1185), - [anon_sym_QMARK] = ACTIONS(1187), - [anon_sym_QMARK_COLON] = ACTIONS(1185), - [anon_sym_QMARK_QMARK] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_SLASH] = ACTIONS(1187), - [anon_sym_PERCENT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1187), - [anon_sym_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_BANG_BANG] = ACTIONS(1185), - [anon_sym_typeid] = ACTIONS(1181), - [anon_sym_LBRACE_PIPE] = ACTIONS(1183), - [anon_sym_void] = ACTIONS(1181), - [anon_sym_bool] = ACTIONS(1181), - [anon_sym_char] = ACTIONS(1181), - [anon_sym_ichar] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_ushort] = ACTIONS(1181), - [anon_sym_uint] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_ulong] = ACTIONS(1181), - [anon_sym_int128] = ACTIONS(1181), - [anon_sym_uint128] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_double] = ACTIONS(1181), - [anon_sym_float16] = ACTIONS(1181), - [anon_sym_bfloat16] = ACTIONS(1181), - [anon_sym_float128] = ACTIONS(1181), - [anon_sym_iptr] = ACTIONS(1181), - [anon_sym_uptr] = ACTIONS(1181), - [anon_sym_isz] = ACTIONS(1181), - [anon_sym_usz] = ACTIONS(1181), - [anon_sym_anyfault] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_DOLLARtypeof] = ACTIONS(1181), - [anon_sym_DOLLARtypefrom] = ACTIONS(1181), - [anon_sym_DOLLARvatype] = ACTIONS(1181), - [anon_sym_DOLLARevaltype] = ACTIONS(1181), - [sym_real_literal] = ACTIONS(1183), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LPAREN_LT] = ACTIONS(1193), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_else] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARendfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_PLUS_EQ] = ACTIONS(1193), + [anon_sym_DASH_EQ] = ACTIONS(1193), + [anon_sym_STAR_EQ] = ACTIONS(1193), + [anon_sym_SLASH_EQ] = ACTIONS(1193), + [anon_sym_PERCENT_EQ] = ACTIONS(1193), + [anon_sym_LT_LT_EQ] = ACTIONS(1193), + [anon_sym_GT_GT_EQ] = ACTIONS(1193), + [anon_sym_AMP_EQ] = ACTIONS(1193), + [anon_sym_CARET_EQ] = ACTIONS(1193), + [anon_sym_PIPE_EQ] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_QMARK_COLON] = ACTIONS(1193), + [anon_sym_QMARK_QMARK] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE_PIPE] = ACTIONS(1195), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_BANG_BANG] = ACTIONS(1193), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), }, [150] = { [sym_line_comment] = STATE(150), [sym_doc_comment] = STATE(150), [sym_block_comment] = STATE(150), - [sym_ident] = ACTIONS(1181), - [sym_integer_literal] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [sym_bytes_literal] = ACTIONS(1183), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1181), - [sym_at_ident] = ACTIONS(1183), - [sym_hash_ident] = ACTIONS(1183), - [sym_type_ident] = ACTIONS(1183), - [sym_ct_type_ident] = ACTIONS(1183), - [sym_const_ident] = ACTIONS(1181), - [sym_builtin] = ACTIONS(1183), - [anon_sym_LPAREN_LT] = ACTIONS(1185), - [anon_sym_EQ] = ACTIONS(1187), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1185), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_tlocal] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_fn] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_DOT] = ACTIONS(1185), - [anon_sym_var] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_defer] = ACTIONS(1181), - [anon_sym_assert] = ACTIONS(1181), - [anon_sym_nextcase] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_foreach] = ACTIONS(1181), - [anon_sym_foreach_r] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_LT_LT] = ACTIONS(1187), - [anon_sym_GT_GT] = ACTIONS(1187), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym_DOLLARassert] = ACTIONS(1181), - [anon_sym_DOLLARerror] = ACTIONS(1181), - [anon_sym_DOLLARecho] = ACTIONS(1181), - [anon_sym_DOLLARif] = ACTIONS(1181), - [anon_sym_DOLLARswitch] = ACTIONS(1181), - [anon_sym_DOLLARfor] = ACTIONS(1181), - [anon_sym_DOLLARendfor] = ACTIONS(1181), - [anon_sym_DOLLARforeach] = ACTIONS(1181), - [anon_sym_DOLLARalignof] = ACTIONS(1181), - [anon_sym_DOLLARextnameof] = ACTIONS(1181), - [anon_sym_DOLLARnameof] = ACTIONS(1181), - [anon_sym_DOLLARoffsetof] = ACTIONS(1181), - [anon_sym_DOLLARqnameof] = ACTIONS(1181), - [anon_sym_DOLLAReval] = ACTIONS(1181), - [anon_sym_DOLLARdefined] = ACTIONS(1181), - [anon_sym_DOLLARsizeof] = ACTIONS(1181), - [anon_sym_DOLLARstringify] = ACTIONS(1181), - [anon_sym_DOLLARis_const] = ACTIONS(1181), - [anon_sym_DOLLARvaconst] = ACTIONS(1181), - [anon_sym_DOLLARvaarg] = ACTIONS(1181), - [anon_sym_DOLLARvaref] = ACTIONS(1181), - [anon_sym_DOLLARvaexpr] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_null] = ACTIONS(1181), - [anon_sym_DOLLARvacount] = ACTIONS(1181), - [anon_sym_DOLLARfeature] = ACTIONS(1181), - [anon_sym_DOLLARand] = ACTIONS(1181), - [anon_sym_DOLLARor] = ACTIONS(1181), - [anon_sym_DOLLARassignable] = ACTIONS(1181), - [anon_sym_DOLLARembed] = ACTIONS(1181), - [anon_sym_PLUS_EQ] = ACTIONS(1185), - [anon_sym_DASH_EQ] = ACTIONS(1185), - [anon_sym_STAR_EQ] = ACTIONS(1185), - [anon_sym_SLASH_EQ] = ACTIONS(1185), - [anon_sym_PERCENT_EQ] = ACTIONS(1185), - [anon_sym_LT_LT_EQ] = ACTIONS(1185), - [anon_sym_GT_GT_EQ] = ACTIONS(1185), - [anon_sym_AMP_EQ] = ACTIONS(1185), - [anon_sym_CARET_EQ] = ACTIONS(1185), - [anon_sym_PIPE_EQ] = ACTIONS(1185), - [anon_sym_QMARK] = ACTIONS(1187), - [anon_sym_QMARK_COLON] = ACTIONS(1185), - [anon_sym_QMARK_QMARK] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_SLASH] = ACTIONS(1187), - [anon_sym_PERCENT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1187), - [anon_sym_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_BANG_BANG] = ACTIONS(1185), - [anon_sym_typeid] = ACTIONS(1181), - [anon_sym_LBRACE_PIPE] = ACTIONS(1183), - [anon_sym_void] = ACTIONS(1181), - [anon_sym_bool] = ACTIONS(1181), - [anon_sym_char] = ACTIONS(1181), - [anon_sym_ichar] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_ushort] = ACTIONS(1181), - [anon_sym_uint] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_ulong] = ACTIONS(1181), - [anon_sym_int128] = ACTIONS(1181), - [anon_sym_uint128] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_double] = ACTIONS(1181), - [anon_sym_float16] = ACTIONS(1181), - [anon_sym_bfloat16] = ACTIONS(1181), - [anon_sym_float128] = ACTIONS(1181), - [anon_sym_iptr] = ACTIONS(1181), - [anon_sym_uptr] = ACTIONS(1181), - [anon_sym_isz] = ACTIONS(1181), - [anon_sym_usz] = ACTIONS(1181), - [anon_sym_anyfault] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_DOLLARtypeof] = ACTIONS(1181), - [anon_sym_DOLLARtypefrom] = ACTIONS(1181), - [anon_sym_DOLLARvatype] = ACTIONS(1181), - [anon_sym_DOLLARevaltype] = ACTIONS(1181), - [sym_real_literal] = ACTIONS(1183), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LPAREN_LT] = ACTIONS(1193), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARendforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_PLUS_EQ] = ACTIONS(1193), + [anon_sym_DASH_EQ] = ACTIONS(1193), + [anon_sym_STAR_EQ] = ACTIONS(1193), + [anon_sym_SLASH_EQ] = ACTIONS(1193), + [anon_sym_PERCENT_EQ] = ACTIONS(1193), + [anon_sym_LT_LT_EQ] = ACTIONS(1193), + [anon_sym_GT_GT_EQ] = ACTIONS(1193), + [anon_sym_AMP_EQ] = ACTIONS(1193), + [anon_sym_CARET_EQ] = ACTIONS(1193), + [anon_sym_PIPE_EQ] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_QMARK_COLON] = ACTIONS(1193), + [anon_sym_QMARK_QMARK] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE_PIPE] = ACTIONS(1195), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_BANG_BANG] = ACTIONS(1193), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), }, [151] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(151), [sym_doc_comment] = STATE(151), [sym_block_comment] = STATE(151), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym__cond] = STATE(2077), - [sym_lambda_declaration] = STATE(1486), - [sym_var_decl] = STATE(1712), - [sym_catch_unwrap] = STATE(1833), - [sym_try_unwrap] = STATE(1644), - [sym__try_unwrap_chain] = STATE(1833), - [sym__decl_or_expr] = STATE(1643), - [sym__expr] = STATE(1123), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1648), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(107), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_catch] = ACTIONS(1193), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LPAREN_LT] = ACTIONS(1193), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARendfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_PLUS_EQ] = ACTIONS(1193), + [anon_sym_DASH_EQ] = ACTIONS(1193), + [anon_sym_STAR_EQ] = ACTIONS(1193), + [anon_sym_SLASH_EQ] = ACTIONS(1193), + [anon_sym_PERCENT_EQ] = ACTIONS(1193), + [anon_sym_LT_LT_EQ] = ACTIONS(1193), + [anon_sym_GT_GT_EQ] = ACTIONS(1193), + [anon_sym_AMP_EQ] = ACTIONS(1193), + [anon_sym_CARET_EQ] = ACTIONS(1193), + [anon_sym_PIPE_EQ] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_QMARK_COLON] = ACTIONS(1193), + [anon_sym_QMARK_QMARK] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE_PIPE] = ACTIONS(1195), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_BANG_BANG] = ACTIONS(1193), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), }, [152] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(152), [sym_doc_comment] = STATE(152), [sym_block_comment] = STATE(152), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym__cond] = STATE(2072), - [sym_lambda_declaration] = STATE(1486), - [sym_var_decl] = STATE(1712), - [sym_catch_unwrap] = STATE(1833), - [sym_try_unwrap] = STATE(1644), - [sym__try_unwrap_chain] = STATE(1833), - [sym__decl_or_expr] = STATE(1643), - [sym__expr] = STATE(1123), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1648), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(107), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_catch] = ACTIONS(1193), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1193), + [anon_sym_LPAREN_LT] = ACTIONS(1193), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1189), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_LT_LT] = ACTIONS(1195), + [anon_sym_GT_GT] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARendif] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_PLUS_EQ] = ACTIONS(1193), + [anon_sym_DASH_EQ] = ACTIONS(1193), + [anon_sym_STAR_EQ] = ACTIONS(1193), + [anon_sym_SLASH_EQ] = ACTIONS(1193), + [anon_sym_PERCENT_EQ] = ACTIONS(1193), + [anon_sym_LT_LT_EQ] = ACTIONS(1193), + [anon_sym_GT_GT_EQ] = ACTIONS(1193), + [anon_sym_AMP_EQ] = ACTIONS(1193), + [anon_sym_CARET_EQ] = ACTIONS(1193), + [anon_sym_PIPE_EQ] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_QMARK_COLON] = ACTIONS(1193), + [anon_sym_QMARK_QMARK] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE_PIPE] = ACTIONS(1195), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1193), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1193), + [anon_sym_BANG_BANG] = ACTIONS(1193), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), }, [153] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(153), [sym_doc_comment] = STATE(153), [sym_block_comment] = STATE(153), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym__cond] = STATE(2155), - [sym_lambda_declaration] = STATE(1486), - [sym_var_decl] = STATE(1712), - [sym_catch_unwrap] = STATE(1833), - [sym_try_unwrap] = STATE(1644), - [sym__try_unwrap_chain] = STATE(1833), - [sym__decl_or_expr] = STATE(1643), - [sym__expr] = STATE(1123), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1648), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym__cond] = STATE(2040), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym_catch_unwrap] = STATE(1794), + [sym_try_unwrap] = STATE(1558), + [sym__try_unwrap_chain] = STATE(1811), + [sym__decl_or_expr] = STATE(1584), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -40274,7 +40381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -40283,129 +40390,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_SEMI] = ACTIONS(1197), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(107), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_catch] = ACTIONS(1193), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), + [anon_sym_try] = ACTIONS(1199), + [anon_sym_catch] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [154] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(154), [sym_doc_comment] = STATE(154), [sym_block_comment] = STATE(154), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym__cond] = STATE(1965), - [sym_lambda_declaration] = STATE(1486), - [sym_var_decl] = STATE(1712), - [sym_catch_unwrap] = STATE(1833), - [sym_try_unwrap] = STATE(1644), - [sym__try_unwrap_chain] = STATE(1833), - [sym__decl_or_expr] = STATE(1643), - [sym__expr] = STATE(1123), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1648), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym__cond] = STATE(2119), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym_catch_unwrap] = STATE(1794), + [sym_try_unwrap] = STATE(1558), + [sym__try_unwrap_chain] = STATE(1811), + [sym__decl_or_expr] = STATE(1584), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -40413,7 +40517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -40422,129 +40526,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1199), + [anon_sym_SEMI] = ACTIONS(1203), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(107), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_catch] = ACTIONS(1193), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), + [anon_sym_try] = ACTIONS(1199), + [anon_sym_catch] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [155] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(155), [sym_doc_comment] = STATE(155), [sym_block_comment] = STATE(155), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym__cond] = STATE(2111), - [sym_lambda_declaration] = STATE(1479), - [sym_var_decl] = STATE(1712), - [sym_catch_unwrap] = STATE(1833), - [sym_try_unwrap] = STATE(1668), - [sym__try_unwrap_chain] = STATE(1833), - [sym__decl_or_expr] = STATE(1631), - [sym__expr] = STATE(1125), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1705), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym__cond] = STATE(2090), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym_catch_unwrap] = STATE(1794), + [sym_try_unwrap] = STATE(1558), + [sym__try_unwrap_chain] = STATE(1811), + [sym__decl_or_expr] = STATE(1584), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -40552,7 +40653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -40561,125 +40662,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1205), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(1203), - [anon_sym_try] = ACTIONS(1205), - [anon_sym_catch] = ACTIONS(1207), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), + [anon_sym_try] = ACTIONS(1199), + [anon_sym_catch] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [156] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(156), [sym_doc_comment] = STATE(156), [sym_block_comment] = STATE(156), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1117), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2031), - [sym_arg] = STATE(1562), - [sym__call_arg_list] = STATE(2231), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1304), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym__cond] = STATE(2116), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym_catch_unwrap] = STATE(1794), + [sym_try_unwrap] = STATE(1558), + [sym__try_unwrap_chain] = STATE(1811), + [sym__decl_or_expr] = STATE(1584), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -40687,140 +40789,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), + [sym_type_ident] = ACTIONS(79), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_RPAREN] = ACTIONS(1209), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_SEMI] = ACTIONS(1207), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), + [anon_sym_try] = ACTIONS(1199), + [anon_sym_catch] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [157] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(157), [sym_doc_comment] = STATE(157), [sym_block_comment] = STATE(157), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym__cond] = STATE(2096), - [sym_lambda_declaration] = STATE(1479), - [sym_var_decl] = STATE(1712), - [sym_catch_unwrap] = STATE(1833), - [sym_try_unwrap] = STATE(1668), - [sym__try_unwrap_chain] = STATE(1833), - [sym__decl_or_expr] = STATE(1631), - [sym__expr] = STATE(1125), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1705), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym__cond] = STATE(2046), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym_catch_unwrap] = STATE(1794), + [sym_try_unwrap] = STATE(1558), + [sym__try_unwrap_chain] = STATE(1811), + [sym__decl_or_expr] = STATE(1584), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -40828,7 +40925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -40837,127 +40934,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(1203), - [anon_sym_try] = ACTIONS(1205), - [anon_sym_catch] = ACTIONS(1207), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), + [anon_sym_try] = ACTIONS(1199), + [anon_sym_catch] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [158] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(158), [sym_doc_comment] = STATE(158), [sym_block_comment] = STATE(158), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_lambda_declaration] = STATE(1479), - [sym_var_decl] = STATE(1712), - [sym_catch_unwrap] = STATE(1869), - [sym_try_unwrap] = STATE(1668), - [sym__try_unwrap_chain] = STATE(1869), - [sym__decl_or_expr] = STATE(1694), - [sym__expr] = STATE(1125), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1705), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym__cond] = STATE(1951), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym_catch_unwrap] = STATE(1794), + [sym_try_unwrap] = STATE(1558), + [sym__try_unwrap_chain] = STATE(1811), + [sym__decl_or_expr] = STATE(1584), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -40965,7 +41060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -40974,124 +41069,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(1203), - [anon_sym_try] = ACTIONS(1205), - [anon_sym_catch] = ACTIONS(1207), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), + [anon_sym_try] = ACTIONS(1199), + [anon_sym_catch] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [159] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(159), [sym_doc_comment] = STATE(159), [sym_block_comment] = STATE(159), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1117), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2031), - [sym_arg] = STATE(1431), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1304), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym_catch_unwrap] = STATE(1866), + [sym_try_unwrap] = STATE(1558), + [sym__try_unwrap_chain] = STATE(1879), + [sym__decl_or_expr] = STATE(1636), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -41099,139 +41194,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), + [sym_type_ident] = ACTIONS(79), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_SEMI] = ACTIONS(1217), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), + [anon_sym_try] = ACTIONS(1199), + [anon_sym_catch] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [160] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(160), [sym_doc_comment] = STATE(160), [sym_block_comment] = STATE(160), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_lambda_declaration] = STATE(1479), - [sym_var_decl] = STATE(1712), - [sym_catch_unwrap] = STATE(1804), - [sym_try_unwrap] = STATE(1668), - [sym__try_unwrap_chain] = STATE(1804), - [sym__decl_or_expr] = STATE(1694), - [sym__expr] = STATE(1125), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1705), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym_catch_unwrap] = STATE(1909), + [sym_try_unwrap] = STATE(1558), + [sym__try_unwrap_chain] = STATE(1750), + [sym__decl_or_expr] = STATE(1636), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -41239,7 +41328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -41248,264 +41337,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(1203), - [anon_sym_try] = ACTIONS(1205), - [anon_sym_catch] = ACTIONS(1207), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), + [anon_sym_try] = ACTIONS(1199), + [anon_sym_catch] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [161] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(161), [sym_doc_comment] = STATE(161), [sym_block_comment] = STATE(161), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_lambda_declaration] = STATE(1486), - [sym_var_decl] = STATE(1712), - [sym_catch_unwrap] = STATE(1804), - [sym_try_unwrap] = STATE(1644), - [sym__try_unwrap_chain] = STATE(1804), - [sym__decl_or_expr] = STATE(1694), - [sym__expr] = STATE(1123), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1648), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1040), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_arg] = STATE(1499), + [sym__call_arg_list] = STATE(1964), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1398), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(1209), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), + [sym_ct_ident] = ACTIONS(1211), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), + [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1215), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1217), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1219), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(107), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_catch] = ACTIONS(1193), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(1221), + [anon_sym_typeid] = ACTIONS(45), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [162] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(162), [sym_doc_comment] = STATE(162), [sym_block_comment] = STATE(162), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_lambda_declaration] = STATE(1486), - [sym_var_decl] = STATE(1712), - [sym_catch_unwrap] = STATE(1869), - [sym_try_unwrap] = STATE(1644), - [sym__try_unwrap_chain] = STATE(1869), - [sym__decl_or_expr] = STATE(1694), - [sym__expr] = STATE(1123), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1648), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1057), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1827), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -41513,133 +41594,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), + [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(107), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_catch] = ACTIONS(1193), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1223), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(45), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [163] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(163), [sym_doc_comment] = STATE(163), [sym_block_comment] = STATE(163), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1117), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2031), - [sym_arg] = STATE(1431), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1304), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1057), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1701), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -41647,7 +41727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -41656,50 +41736,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_RPAREN] = ACTIONS(1219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_LBRACK] = ACTIONS(91), - [anon_sym_SEMI] = ACTIONS(1221), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -41722,61 +41801,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [164] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(164), [sym_doc_comment] = STATE(164), [sym_block_comment] = STATE(164), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1121), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1431), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1304), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1057), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1827), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -41784,7 +41860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -41793,49 +41869,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_RBRACE] = ACTIONS(1223), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -41858,61 +41934,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [165] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(165), [sym_doc_comment] = STATE(165), [sym_block_comment] = STATE(165), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1121), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1431), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1304), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1030), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym__range_loc] = STATE(1902), + [sym_range_expr] = STATE(2206), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -41920,7 +41991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -41929,49 +42000,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1229), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_RBRACE] = ACTIONS(1225), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_COLON] = ACTIONS(1231), + [anon_sym_DOT_DOT] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_CARET] = ACTIONS(1235), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -41994,120 +42066,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [166] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(166), [sym_doc_comment] = STATE(166), [sym_block_comment] = STATE(166), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1121), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1431), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1304), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), - [sym_ident] = ACTIONS(61), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1040), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_arg] = STATE(1735), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1398), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(1209), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), + [sym_ct_ident] = ACTIONS(1211), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1237), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1217), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1239), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_RBRACE] = ACTIONS(1227), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(1221), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -42130,61 +42198,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [167] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(167), [sym_doc_comment] = STATE(167), [sym_block_comment] = STATE(167), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1121), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1431), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1304), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1057), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_param_path_element] = STATE(1435), + [sym_param_path] = STATE(1700), + [sym_arg] = STATE(1827), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [aux_sym_param_path_repeat1] = STATE(1370), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -42192,7 +42257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -42201,49 +42266,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1229), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -42266,120 +42330,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [168] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(168), [sym_doc_comment] = STATE(168), [sym_block_comment] = STATE(168), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1121), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1571), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1304), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), - [sym_ident] = ACTIONS(61), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1040), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_arg] = STATE(1735), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1398), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(1209), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), + [sym_ct_ident] = ACTIONS(1211), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1217), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_SEMI] = ACTIONS(1243), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_RBRACE] = ACTIONS(1231), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(1221), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -42402,61 +42462,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [169] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(169), [sym_doc_comment] = STATE(169), [sym_block_comment] = STATE(169), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1121), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1431), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1304), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1608), + [sym_comma_decl_or_expr] = STATE(2140), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -42464,135 +42520,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), + [sym_type_ident] = ACTIONS(79), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1233), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1245), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [170] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(170), [sym_doc_comment] = STATE(170), [sym_block_comment] = STATE(170), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1121), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1431), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1304), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1608), + [sym_comma_decl_or_expr] = STATE(2146), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -42600,135 +42651,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), + [sym_type_ident] = ACTIONS(79), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1247), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_RBRACE] = ACTIONS(1233), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [171] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(171), [sym_doc_comment] = STATE(171), [sym_block_comment] = STATE(171), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1121), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1431), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1304), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1608), + [sym_comma_decl_or_expr] = STATE(1942), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -42736,134 +42782,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), + [sym_type_ident] = ACTIONS(79), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1249), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [172] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(172), [sym_doc_comment] = STATE(172), [sym_block_comment] = STATE(172), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1117), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2031), - [sym_arg] = STATE(1431), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1304), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1608), + [sym_comma_decl_or_expr] = STATE(2019), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -42871,134 +42913,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), + [sym_type_ident] = ACTIONS(79), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1251), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [173] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(173), [sym_doc_comment] = STATE(173), [sym_block_comment] = STATE(173), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1121), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1679), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1304), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1030), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym__range_loc] = STATE(1659), + [sym_range_expr] = STATE(2049), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -43006,7 +43043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -43015,48 +43052,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_COLON] = ACTIONS(1231), + [anon_sym_DOT_DOT] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_CARET] = ACTIONS(1235), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -43079,61 +43117,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [174] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(174), [sym_doc_comment] = STATE(174), [sym_block_comment] = STATE(174), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1121), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_param_path_element] = STATE(1545), - [sym_param_path] = STATE(2108), - [sym_arg] = STATE(1744), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1304), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [aux_sym_param_path_repeat1] = STATE(1378), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1030), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym__range_loc] = STATE(1902), + [sym_range_expr] = STATE(2211), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -43141,7 +43174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -43150,48 +43183,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_LBRACK] = ACTIONS(91), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_DOT] = ACTIONS(105), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_COLON] = ACTIONS(1231), + [anon_sym_DOT_DOT] = ACTIONS(1233), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_DOLLARvasplat] = ACTIONS(171), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_CARET] = ACTIONS(1235), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -43214,62 +43248,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [175] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(175), [sym_doc_comment] = STATE(175), [sym_block_comment] = STATE(175), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_lambda_declaration] = STATE(1486), - [sym_var_decl] = STATE(1712), - [sym__decl_or_expr] = STATE(1649), - [sym_comma_decl_or_expr] = STATE(2079), - [sym__expr] = STATE(1123), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1648), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1608), + [sym_comma_decl_or_expr] = STATE(2218), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -43277,7 +43306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -43286,124 +43315,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1253), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1235), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [176] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(176), [sym_doc_comment] = STATE(176), [sym_block_comment] = STATE(176), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_lambda_declaration] = STATE(1479), - [sym_var_decl] = STATE(1712), - [sym__decl_or_expr] = STATE(1709), - [sym_comma_decl_or_expr] = STATE(1932), - [sym__expr] = STATE(1125), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1705), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1608), + [sym_comma_decl_or_expr] = STATE(2003), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -43411,7 +43437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -43420,124 +43446,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1237), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1255), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [177] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(177), [sym_doc_comment] = STATE(177), [sym_block_comment] = STATE(177), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_lambda_declaration] = STATE(1479), - [sym_var_decl] = STATE(1712), - [sym__decl_or_expr] = STATE(1709), - [sym_comma_decl_or_expr] = STATE(1995), - [sym__expr] = STATE(1125), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1705), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1608), + [sym_comma_decl_or_expr] = STATE(2214), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -43545,7 +43568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -43554,124 +43577,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1239), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1257), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [178] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(178), [sym_doc_comment] = STATE(178), [sym_block_comment] = STATE(178), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_lambda_declaration] = STATE(1479), - [sym_var_decl] = STATE(1712), - [sym__decl_or_expr] = STATE(1709), - [sym_comma_decl_or_expr] = STATE(2040), - [sym__expr] = STATE(1125), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1705), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1608), + [sym_comma_decl_or_expr] = STATE(2229), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -43679,7 +43699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -43688,258 +43708,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1259), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [179] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(179), [sym_doc_comment] = STATE(179), [sym_block_comment] = STATE(179), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_lambda_declaration] = STATE(1479), - [sym_var_decl] = STATE(1712), - [sym__decl_or_expr] = STATE(1709), - [sym_comma_decl_or_expr] = STATE(2149), - [sym__expr] = STATE(1125), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1705), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1261), + [sym_integer_literal] = ACTIONS(1263), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [sym_bytes_literal] = ACTIONS(1263), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1261), + [sym_at_ident] = ACTIONS(1263), + [sym_hash_ident] = ACTIONS(1263), + [sym_type_ident] = ACTIONS(1263), + [sym_ct_type_ident] = ACTIONS(1263), + [sym_const_ident] = ACTIONS(1261), + [sym_builtin] = ACTIONS(1263), + [anon_sym_DOT] = ACTIONS(1265), + [anon_sym_COMMA] = ACTIONS(1267), + [anon_sym_LPAREN_LT] = ACTIONS(1267), + [anon_sym_GT_RPAREN] = ACTIONS(1267), + [anon_sym_EQ] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_RBRACK] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_fn] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym_COLON] = ACTIONS(1267), + [anon_sym_DOT_DOT] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [anon_sym_int] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_LT_LT] = ACTIONS(1265), + [anon_sym_GT_GT] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_DOLLARalignof] = ACTIONS(1261), + [anon_sym_DOLLARextnameof] = ACTIONS(1261), + [anon_sym_DOLLARnameof] = ACTIONS(1261), + [anon_sym_DOLLARoffsetof] = ACTIONS(1261), + [anon_sym_DOLLARqnameof] = ACTIONS(1261), + [anon_sym_DOLLARvaconst] = ACTIONS(1261), + [anon_sym_DOLLARvaarg] = ACTIONS(1261), + [anon_sym_DOLLARvaref] = ACTIONS(1261), + [anon_sym_DOLLARvaexpr] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_DOLLARvacount] = ACTIONS(1261), + [anon_sym_DOLLAReval] = ACTIONS(1261), + [anon_sym_DOLLARis_const] = ACTIONS(1261), + [anon_sym_DOLLARsizeof] = ACTIONS(1261), + [anon_sym_DOLLARstringify] = ACTIONS(1261), + [anon_sym_DOLLARappend] = ACTIONS(1261), + [anon_sym_DOLLARconcat] = ACTIONS(1261), + [anon_sym_DOLLARdefined] = ACTIONS(1261), + [anon_sym_DOLLARembed] = ACTIONS(1261), + [anon_sym_DOLLARand] = ACTIONS(1261), + [anon_sym_DOLLARor] = ACTIONS(1261), + [anon_sym_DOLLARfeature] = ACTIONS(1261), + [anon_sym_DOLLARassignable] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1267), + [anon_sym_DASH_EQ] = ACTIONS(1267), + [anon_sym_STAR_EQ] = ACTIONS(1267), + [anon_sym_SLASH_EQ] = ACTIONS(1267), + [anon_sym_PERCENT_EQ] = ACTIONS(1267), + [anon_sym_LT_LT_EQ] = ACTIONS(1267), + [anon_sym_GT_GT_EQ] = ACTIONS(1267), + [anon_sym_AMP_EQ] = ACTIONS(1267), + [anon_sym_CARET_EQ] = ACTIONS(1267), + [anon_sym_PIPE_EQ] = ACTIONS(1267), + [anon_sym_QMARK] = ACTIONS(1265), + [anon_sym_QMARK_COLON] = ACTIONS(1267), + [anon_sym_QMARK_QMARK] = ACTIONS(1267), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_DASH_DASH] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1265), + [anon_sym_PERCENT] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1265), + [anon_sym_CARET] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_BANG_EQ] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1265), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_LT_EQ] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1265), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1267), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1267), + [anon_sym_BANG_BANG] = ACTIONS(1267), + [anon_sym_typeid] = ACTIONS(1261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1263), + [anon_sym_void] = ACTIONS(1261), + [anon_sym_bool] = ACTIONS(1261), + [anon_sym_char] = ACTIONS(1261), + [anon_sym_ichar] = ACTIONS(1261), + [anon_sym_short] = ACTIONS(1261), + [anon_sym_ushort] = ACTIONS(1261), + [anon_sym_uint] = ACTIONS(1261), + [anon_sym_long] = ACTIONS(1261), + [anon_sym_ulong] = ACTIONS(1261), + [anon_sym_int128] = ACTIONS(1261), + [anon_sym_uint128] = ACTIONS(1261), + [anon_sym_float] = ACTIONS(1261), + [anon_sym_double] = ACTIONS(1261), + [anon_sym_float16] = ACTIONS(1261), + [anon_sym_bfloat16] = ACTIONS(1261), + [anon_sym_float128] = ACTIONS(1261), + [anon_sym_iptr] = ACTIONS(1261), + [anon_sym_uptr] = ACTIONS(1261), + [anon_sym_isz] = ACTIONS(1261), + [anon_sym_usz] = ACTIONS(1261), + [anon_sym_anyfault] = ACTIONS(1261), + [anon_sym_any] = ACTIONS(1261), + [anon_sym_DOLLARtypeof] = ACTIONS(1261), + [anon_sym_DOLLARtypefrom] = ACTIONS(1261), + [anon_sym_DOLLARevaltype] = ACTIONS(1261), + [anon_sym_DOLLARvatype] = ACTIONS(1261), + [anon_sym_GT_RBRACK] = ACTIONS(1267), + [sym_real_literal] = ACTIONS(1263), }, [180] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(180), [sym_doc_comment] = STATE(180), [sym_block_comment] = STATE(180), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_lambda_declaration] = STATE(1479), - [sym_var_decl] = STATE(1712), - [sym__decl_or_expr] = STATE(1709), - [sym_comma_decl_or_expr] = STATE(1954), - [sym__expr] = STATE(1125), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1705), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1608), + [sym_comma_decl_or_expr] = STATE(2193), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -43947,7 +43961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -43956,124 +43970,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1245), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1269), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [181] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(181), [sym_doc_comment] = STATE(181), [sym_block_comment] = STATE(181), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_lambda_declaration] = STATE(1486), - [sym_var_decl] = STATE(1712), - [sym__decl_or_expr] = STATE(1649), - [sym_comma_decl_or_expr] = STATE(2214), - [sym__expr] = STATE(1123), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1648), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1608), + [sym_comma_decl_or_expr] = STATE(2251), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -44081,7 +44092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -44090,124 +44101,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym_SEMI] = ACTIONS(1271), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [182] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(182), [sym_doc_comment] = STATE(182), [sym_block_comment] = STATE(182), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_lambda_declaration] = STATE(1479), - [sym_var_decl] = STATE(1712), - [sym__decl_or_expr] = STATE(1709), - [sym_comma_decl_or_expr] = STATE(1943), - [sym__expr] = STATE(1125), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1705), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1030), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym__range_loc] = STATE(1913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -44215,133 +44221,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), + [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(1273), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_typeid] = ACTIONS(45), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [183] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(183), [sym_doc_comment] = STATE(183), [sym_block_comment] = STATE(183), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_lambda_declaration] = STATE(1479), - [sym_var_decl] = STATE(1712), - [sym__decl_or_expr] = STATE(1709), - [sym_comma_decl_or_expr] = STATE(1941), - [sym__expr] = STATE(1125), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1705), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1030), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym__range_loc] = STATE(1767), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -44349,133 +44351,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), + [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1275), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(1275), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_typeid] = ACTIONS(45), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [184] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(184), [sym_doc_comment] = STATE(184), [sym_block_comment] = STATE(184), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_lambda_declaration] = STATE(1479), - [sym_var_decl] = STATE(1712), - [sym__decl_or_expr] = STATE(1709), - [sym_comma_decl_or_expr] = STATE(1952), - [sym__expr] = STATE(1125), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1705), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1030), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym__range_loc] = STATE(1914), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -44483,133 +44481,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), + [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1273), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(1273), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_typeid] = ACTIONS(45), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [185] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(185), [sym_doc_comment] = STATE(185), [sym_block_comment] = STATE(185), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_lambda_declaration] = STATE(1479), - [sym_var_decl] = STATE(1712), - [sym__decl_or_expr] = STATE(1709), - [sym_comma_decl_or_expr] = STATE(2019), - [sym__expr] = STATE(1125), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1705), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym__attribute_operator_expr] = STATE(1851), + [sym_attr_param] = STATE(1809), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1789), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -44617,187 +44613,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), + [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1279), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(45), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [186] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(186), [sym_doc_comment] = STATE(186), [sym_block_comment] = STATE(186), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1112), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym__range_loc] = STATE(1812), - [sym_range_expr] = STATE(2128), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1040), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_arg] = STATE(1735), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1398), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(1209), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), + [sym_ct_ident] = ACTIONS(1211), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1217), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_COLON] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_DOLLARvasplat] = ACTIONS(1221), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -44820,61 +44815,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [187] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(187), [sym_doc_comment] = STATE(187), [sym_block_comment] = STATE(187), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_lambda_declaration] = STATE(1479), - [sym_var_decl] = STATE(1712), - [sym__decl_or_expr] = STATE(1694), - [sym__expr] = STATE(1125), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1705), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym__attribute_operator_expr] = STATE(1851), + [sym_attr_param] = STATE(1684), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1789), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -44882,129 +44873,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(79), + [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1279), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(45), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [188] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(188), [sym_doc_comment] = STATE(188), [sym_block_comment] = STATE(188), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1112), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym__range_loc] = STATE(1572), - [sym_range_expr] = STATE(2228), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_label_target] = STATE(2268), + [sym__expr] = STATE(1102), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1521), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -45012,56 +45001,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), + [sym_const_ident] = ACTIONS(1281), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1283), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_COLON] = ACTIONS(1263), - [anon_sym_DOT_DOT] = ACTIONS(1265), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1285), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -45084,61 +45074,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [189] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(189), [sym_doc_comment] = STATE(189), [sym_block_comment] = STATE(189), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1294), - [sym_lambda_declaration] = STATE(1486), - [sym_var_decl] = STATE(1712), - [sym__decl_or_expr] = STATE(1694), - [sym__expr] = STATE(1123), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(1183), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(1192), - [sym_base_type] = STATE(1184), - [sym_type] = STATE(1323), - [sym__type_or_optional_type] = STATE(1648), - [sym_optional_type] = STATE(1886), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1366), + [sym_lambda_declaration] = STATE(1556), + [sym_var_decl] = STATE(1654), + [sym__decl_or_expr] = STATE(1636), + [sym__expr] = STATE(1042), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1222), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1230), + [sym_base_type] = STATE(1224), + [sym_type] = STATE(1412), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -45146,7 +45131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -45155,119 +45140,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_var] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_var] = ACTIONS(105), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(137), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(139), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(139), - [anon_sym_bool] = ACTIONS(139), - [anon_sym_char] = ACTIONS(139), - [anon_sym_ichar] = ACTIONS(139), - [anon_sym_short] = ACTIONS(139), - [anon_sym_ushort] = ACTIONS(139), - [anon_sym_uint] = ACTIONS(139), - [anon_sym_long] = ACTIONS(139), - [anon_sym_ulong] = ACTIONS(139), - [anon_sym_int128] = ACTIONS(139), - [anon_sym_uint128] = ACTIONS(139), - [anon_sym_float] = ACTIONS(139), - [anon_sym_double] = ACTIONS(139), - [anon_sym_float16] = ACTIONS(139), - [anon_sym_bfloat16] = ACTIONS(139), - [anon_sym_float128] = ACTIONS(139), - [anon_sym_iptr] = ACTIONS(139), - [anon_sym_uptr] = ACTIONS(139), - [anon_sym_isz] = ACTIONS(139), - [anon_sym_usz] = ACTIONS(139), - [anon_sym_anyfault] = ACTIONS(139), - [anon_sym_any] = ACTIONS(139), - [anon_sym_DOLLARtypeof] = ACTIONS(175), - [anon_sym_DOLLARtypefrom] = ACTIONS(177), - [anon_sym_DOLLARvatype] = ACTIONS(177), - [anon_sym_DOLLARevaltype] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(137), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(137), + [anon_sym_bool] = ACTIONS(137), + [anon_sym_char] = ACTIONS(137), + [anon_sym_ichar] = ACTIONS(137), + [anon_sym_short] = ACTIONS(137), + [anon_sym_ushort] = ACTIONS(137), + [anon_sym_uint] = ACTIONS(137), + [anon_sym_long] = ACTIONS(137), + [anon_sym_ulong] = ACTIONS(137), + [anon_sym_int128] = ACTIONS(137), + [anon_sym_uint128] = ACTIONS(137), + [anon_sym_float] = ACTIONS(137), + [anon_sym_double] = ACTIONS(137), + [anon_sym_float16] = ACTIONS(137), + [anon_sym_bfloat16] = ACTIONS(137), + [anon_sym_float128] = ACTIONS(137), + [anon_sym_iptr] = ACTIONS(137), + [anon_sym_uptr] = ACTIONS(137), + [anon_sym_isz] = ACTIONS(137), + [anon_sym_usz] = ACTIONS(137), + [anon_sym_anyfault] = ACTIONS(137), + [anon_sym_any] = ACTIONS(137), + [anon_sym_DOLLARtypeof] = ACTIONS(171), + [anon_sym_DOLLARtypefrom] = ACTIONS(171), + [anon_sym_DOLLARevaltype] = ACTIONS(171), + [anon_sym_DOLLARvatype] = ACTIONS(173), [sym_real_literal] = ACTIONS(63), }, [190] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(190), [sym_doc_comment] = STATE(190), [sym_block_comment] = STATE(190), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym_label_target] = STATE(2221), - [sym__expr] = STATE(1174), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1524), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_label_target] = STATE(2156), + [sym__expr] = STATE(1065), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1595), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -45275,55 +45259,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(1267), + [sym_const_ident] = ACTIONS(1281), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1287), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1271), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1289), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -45346,58 +45332,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [191] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(191), [sym_doc_comment] = STATE(191), [sym_block_comment] = STATE(191), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1166), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym__range_loc] = STATE(1837), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_label_target] = STATE(2256), + [sym__expr] = STATE(1078), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1506), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -45405,55 +45388,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), + [sym_const_ident] = ACTIONS(1281), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1291), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1293), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -45476,59 +45461,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [192] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(192), [sym_doc_comment] = STATE(192), [sym_block_comment] = STATE(192), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym__attribute_operator_expr] = STATE(1828), - [sym_attr_param] = STATE(1890), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1458), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(992), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1099), - [sym_lambda_expr] = STATE(1099), - [sym_elvis_orelse_expr] = STATE(1099), - [sym_suffix_expr] = STATE(1099), - [sym_cast_expr] = STATE(1096), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1096), - [sym_binary_expr] = STATE(1096), - [sym_call_expr] = STATE(992), - [sym_update_expr] = STATE(992), - [sym_rethrow_expr] = STATE(992), - [sym_trailing_generic_expr] = STATE(992), - [sym_subscript_expr] = STATE(992), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_label_target] = STATE(2260), + [sym__expr] = STATE(1088), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1565), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -45536,54 +45517,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), + [sym_const_ident] = ACTIONS(1281), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1277), - [anon_sym_LBRACK] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1295), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1297), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -45606,58 +45590,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [193] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(193), [sym_doc_comment] = STATE(193), [sym_block_comment] = STATE(193), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1112), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym__range_loc] = STATE(1837), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_label_target] = STATE(2264), + [sym__expr] = STATE(1096), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1496), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -45665,55 +45646,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), + [sym_const_ident] = ACTIONS(1281), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(1273), + [anon_sym_SEMI] = ACTIONS(1299), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1301), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -45736,58 +45719,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [194] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(194), [sym_doc_comment] = STATE(194), [sym_block_comment] = STATE(194), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym_label_target] = STATE(2045), - [sym__expr] = STATE(1150), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1544), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_label_target] = STATE(2248), + [sym__expr] = STATE(1114), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1507), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -45795,55 +45775,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(1267), + [sym_const_ident] = ACTIONS(1281), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1303), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1305), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -45866,59 +45848,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [195] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(195), [sym_doc_comment] = STATE(195), [sym_block_comment] = STATE(195), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1496), - [sym__rel_or_lambda_expr] = STATE(1743), - [sym_try_unwrap] = STATE(1743), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(1494), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(1012), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1101), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1101), - [sym_binary_expr] = STATE(1101), - [sym_call_expr] = STATE(1012), - [sym_update_expr] = STATE(1012), - [sym_rethrow_expr] = STATE(1012), - [sym_trailing_generic_expr] = STATE(1012), - [sym_subscript_expr] = STATE(1012), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_ct_if_cond] = STATE(18), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1998), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -45926,7 +45905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -45935,45 +45914,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_try] = ACTIONS(1205), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -45996,58 +45976,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [196] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(196), [sym_doc_comment] = STATE(196), [sym_block_comment] = STATE(196), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym_label_target] = STATE(2229), - [sym__expr] = STATE(1134), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1480), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1706), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -46055,55 +46032,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(1267), + [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1307), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1285), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1287), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -46126,58 +46104,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [197] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(197), [sym_doc_comment] = STATE(197), [sym_block_comment] = STATE(197), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym_label_target] = STATE(2225), - [sym__expr] = STATE(1162), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1466), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1030), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym__range_loc] = STATE(1904), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -46185,55 +46160,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(1267), + [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1289), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_CARET] = ACTIONS(1235), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -46256,59 +46232,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [198] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(198), [sym_doc_comment] = STATE(198), [sym_block_comment] = STATE(198), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym__attribute_operator_expr] = STATE(1828), - [sym_attr_param] = STATE(1627), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1458), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(992), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1099), - [sym_lambda_expr] = STATE(1099), - [sym_elvis_orelse_expr] = STATE(1099), - [sym_suffix_expr] = STATE(1099), - [sym_cast_expr] = STATE(1096), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1096), - [sym_binary_expr] = STATE(1096), - [sym_call_expr] = STATE(992), - [sym_update_expr] = STATE(992), - [sym_rethrow_expr] = STATE(992), - [sym_trailing_generic_expr] = STATE(992), - [sym_subscript_expr] = STATE(992), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_try_unwrap] = STATE(1634), + [sym__expr] = STATE(1058), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -46316,7 +46288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -46325,45 +46297,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1277), - [anon_sym_LBRACK] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_try] = ACTIONS(1199), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -46386,58 +46360,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [199] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(199), [sym_doc_comment] = STATE(199), [sym_block_comment] = STATE(199), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym_label_target] = STATE(2211), - [sym__expr] = STATE(1135), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1549), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_ct_if_cond] = STATE(27), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1998), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -46445,55 +46417,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(1267), + [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1293), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1295), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -46516,58 +46488,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [200] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(200), [sym_doc_comment] = STATE(200), [sym_block_comment] = STATE(200), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1112), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym__range_loc] = STATE(1881), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_ct_if_cond] = STATE(26), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1998), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -46575,7 +46545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -46584,46 +46554,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(1297), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -46646,58 +46616,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [201] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(201), [sym_doc_comment] = STATE(201), [sym_block_comment] = STATE(201), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym_label_target] = STATE(2233), - [sym__expr] = STATE(1169), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1497), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_ct_if_cond] = STATE(28), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1998), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -46705,55 +46673,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), [sym_hash_ident] = ACTIONS(77), [sym_type_ident] = ACTIONS(13), [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(1267), + [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1299), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -46776,58 +46744,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [202] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(202), [sym_doc_comment] = STATE(202), [sym_block_comment] = STATE(202), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1166), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym__range_loc] = STATE(1881), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_ct_if_cond] = STATE(29), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1998), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -46835,7 +46801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -46844,46 +46810,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -46906,59 +46872,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [203] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(203), [sym_doc_comment] = STATE(203), [sym_block_comment] = STATE(203), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1492), - [sym__rel_or_lambda_expr] = STATE(1743), - [sym_try_unwrap] = STATE(1743), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(1494), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(1012), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1101), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1101), - [sym_binary_expr] = STATE(1101), - [sym_call_expr] = STATE(1012), - [sym_update_expr] = STATE(1012), - [sym_rethrow_expr] = STATE(1012), - [sym_trailing_generic_expr] = STATE(1012), - [sym_subscript_expr] = STATE(1012), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_ct_if_cond] = STATE(31), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1998), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -46966,7 +46929,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -46975,45 +46938,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_try] = ACTIONS(1191), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -47036,58 +47000,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [204] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(204), [sym_doc_comment] = STATE(204), [sym_block_comment] = STATE(204), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1112), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym__range_loc] = STATE(1881), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1996), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -47095,7 +47056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -47104,45 +47065,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -47165,58 +47127,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [205] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(205), [sym_doc_comment] = STATE(205), [sym_block_comment] = STATE(205), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1166), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym__range_loc] = STATE(1881), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_catch_unwrap_list] = STATE(1855), + [sym__expr] = STATE(1032), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -47224,7 +47183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -47233,45 +47192,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_CARET] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -47294,57 +47254,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [206] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(206), [sym_doc_comment] = STATE(206), [sym_block_comment] = STATE(206), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1618), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1095), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -47352,7 +47309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -47361,45 +47318,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1309), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(1305), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -47422,57 +47381,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [207] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(207), [sym_doc_comment] = STATE(207), [sym_block_comment] = STATE(207), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1164), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1511), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2079), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -47480,7 +47437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -47489,45 +47446,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1307), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -47550,58 +47508,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [208] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(208), [sym_doc_comment] = STATE(208), [sym_block_comment] = STATE(208), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym_ct_if_cond] = STATE(19), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1635), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_flat_path] = STATE(2005), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1115), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -47609,7 +47564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -47618,44 +47573,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -47678,58 +47635,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [209] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(209), [sym_doc_comment] = STATE(209), [sym_block_comment] = STATE(209), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym__generic_arg_list] = STATE(2154), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1103), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1314), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1956), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -47737,7 +47691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -47746,44 +47700,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -47806,58 +47762,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [210] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(210), [sym_doc_comment] = STATE(210), [sym_block_comment] = STATE(210), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1496), - [sym__rel_or_lambda_expr] = STATE(1691), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(1494), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(1012), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1101), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1101), - [sym_binary_expr] = STATE(1101), - [sym_call_expr] = STATE(1012), - [sym_update_expr] = STATE(1012), - [sym_rethrow_expr] = STATE(1012), - [sym_trailing_generic_expr] = STATE(1012), - [sym_subscript_expr] = STATE(1012), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2191), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1544), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -47865,7 +47818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -47874,44 +47827,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -47934,58 +47889,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [211] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(211), [sym_doc_comment] = STATE(211), [sym_block_comment] = STATE(211), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym_catch_unwrap_list] = STATE(1914), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(1489), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(989), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1084), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1084), - [sym_binary_expr] = STATE(1084), - [sym_call_expr] = STATE(989), - [sym_update_expr] = STATE(989), - [sym_rethrow_expr] = STATE(989), - [sym_trailing_generic_expr] = STATE(989), - [sym_subscript_expr] = STATE(989), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1836), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -47993,7 +47945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -48002,44 +47954,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -48062,58 +48016,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [212] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(212), [sym_doc_comment] = STATE(212), [sym_block_comment] = STATE(212), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym_ct_if_cond] = STATE(20), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1635), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym__generic_arg_list] = STATE(2083), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1035), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1433), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -48121,7 +48072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -48130,44 +48081,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -48190,57 +48143,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [213] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(213), [sym_doc_comment] = STATE(213), [sym_block_comment] = STATE(213), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1138), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1483), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1079), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1530), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -48248,7 +48198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -48257,45 +48207,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1309), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -48318,66 +48270,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [214] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(214), [sym_doc_comment] = STATE(214), [sym_block_comment] = STATE(214), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym_catch_unwrap_list] = STATE(1908), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(1406), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(989), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1084), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1084), - [sym_binary_expr] = STATE(1084), - [sym_call_expr] = STATE(989), - [sym_update_expr] = STATE(989), - [sym_rethrow_expr] = STATE(989), - [sym_trailing_generic_expr] = STATE(989), - [sym_subscript_expr] = STATE(989), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1510), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(1311), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2118), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1596), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -48386,44 +48335,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -48446,66 +48397,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [215] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(215), [sym_doc_comment] = STATE(215), [sym_block_comment] = STATE(215), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1492), - [sym__rel_or_lambda_expr] = STATE(1698), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(1494), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(1012), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1101), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1101), - [sym_binary_expr] = STATE(1101), - [sym_call_expr] = STATE(1012), - [sym_update_expr] = STATE(1012), - [sym_rethrow_expr] = STATE(1012), - [sym_trailing_generic_expr] = STATE(1012), - [sym_subscript_expr] = STATE(1012), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1503), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(1313), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1109), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -48514,44 +48461,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(1313), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(1315), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -48574,58 +48524,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [216] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(216), [sym_doc_comment] = STATE(216), [sym_block_comment] = STATE(216), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym_ct_if_cond] = STATE(25), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1635), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1111), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -48633,7 +48579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -48642,44 +48588,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1317), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -48702,65 +48651,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [217] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(217), [sym_doc_comment] = STATE(217), [sym_block_comment] = STATE(217), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1143), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_catch_unwrap_list] = STATE(1798), + [sym__expr] = STATE(1032), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1539), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(1319), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -48769,45 +48716,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1315), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -48830,58 +48778,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [218] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(218), [sym_doc_comment] = STATE(218), [sym_block_comment] = STATE(218), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym_ct_if_cond] = STATE(27), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1635), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1075), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -48889,7 +48833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -48898,44 +48842,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(1321), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -48958,57 +48905,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [219] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(219), [sym_doc_comment] = STATE(219), [sym_block_comment] = STATE(219), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1142), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1428), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1760), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -49016,7 +48961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -49025,45 +48970,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1317), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -49086,57 +49032,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [220] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(220), [sym_doc_comment] = STATE(220), [sym_block_comment] = STATE(220), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1159), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_case_range] = STATE(2047), + [sym__expr] = STATE(1051), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1546), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -49144,7 +49088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -49153,45 +49097,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1319), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -49214,57 +49159,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [221] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(221), [sym_doc_comment] = STATE(221), [sym_block_comment] = STATE(221), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1583), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2085), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -49272,7 +49215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -49281,45 +49224,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(1321), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -49342,57 +49286,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [222] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(222), [sym_doc_comment] = STATE(222), [sym_block_comment] = STATE(222), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1156), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1531), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1873), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -49400,7 +49342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -49409,45 +49351,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1325), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -49470,58 +49413,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [223] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(223), [sym_doc_comment] = STATE(223), [sym_block_comment] = STATE(223), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym_case_range] = STATE(1970), - [sym__expr] = STATE(1129), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1461), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2261), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -49529,7 +49469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -49538,44 +49478,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -49598,58 +49540,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [224] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(224), [sym_doc_comment] = STATE(224), [sym_block_comment] = STATE(224), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_flat_path] = STATE(2019), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(974), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1522), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1938), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -49657,7 +49596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -49666,44 +49605,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -49726,58 +49667,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [225] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(225), [sym_doc_comment] = STATE(225), [sym_block_comment] = STATE(225), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym_ct_if_cond] = STATE(21), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1635), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym__generic_arg_list] = STATE(1974), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1035), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1433), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -49785,7 +49723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -49794,44 +49732,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -49854,58 +49794,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [226] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(226), [sym_doc_comment] = STATE(226), [sym_block_comment] = STATE(226), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1492), - [sym__rel_or_lambda_expr] = STATE(1723), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(1494), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(1012), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1101), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1101), - [sym_binary_expr] = STATE(1101), - [sym_call_expr] = STATE(1012), - [sym_update_expr] = STATE(1012), - [sym_rethrow_expr] = STATE(1012), - [sym_trailing_generic_expr] = STATE(1012), - [sym_subscript_expr] = STATE(1012), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2236), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -49913,7 +49850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -49922,44 +49859,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -49982,58 +49921,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [227] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(227), [sym_doc_comment] = STATE(227), [sym_block_comment] = STATE(227), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym_catch_unwrap_list] = STATE(1875), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(1406), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(989), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1084), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1084), - [sym_binary_expr] = STATE(1084), - [sym_call_expr] = STATE(989), - [sym_update_expr] = STATE(989), - [sym_rethrow_expr] = STATE(989), - [sym_trailing_generic_expr] = STATE(989), - [sym_subscript_expr] = STATE(989), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2039), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -50041,7 +49977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -50050,44 +49986,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -50110,58 +50048,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [228] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(228), [sym_doc_comment] = STATE(228), [sym_block_comment] = STATE(228), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1492), - [sym__rel_or_lambda_expr] = STATE(1691), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(1494), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(1012), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1101), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1101), - [sym_binary_expr] = STATE(1101), - [sym_call_expr] = STATE(1012), - [sym_update_expr] = STATE(1012), - [sym_rethrow_expr] = STATE(1012), - [sym_trailing_generic_expr] = STATE(1012), - [sym_subscript_expr] = STATE(1012), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1077), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -50169,7 +50103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -50178,44 +50112,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1325), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -50238,57 +50175,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [229] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(229), [sym_doc_comment] = STATE(229), [sym_block_comment] = STATE(229), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1381), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(992), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1099), - [sym_lambda_expr] = STATE(1099), - [sym_elvis_orelse_expr] = STATE(1099), - [sym_suffix_expr] = STATE(1099), - [sym_cast_expr] = STATE(1096), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1096), - [sym_binary_expr] = STATE(1096), - [sym_call_expr] = STATE(992), - [sym_update_expr] = STATE(992), - [sym_rethrow_expr] = STATE(992), - [sym_trailing_generic_expr] = STATE(992), - [sym_subscript_expr] = STATE(992), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1066), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1583), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -50296,7 +50230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -50305,45 +50239,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -50366,66 +50302,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [230] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(230), [sym_doc_comment] = STATE(230), [sym_block_comment] = STATE(230), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym_catch_unwrap_list] = STATE(1908), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(1489), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(989), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1084), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1084), - [sym_binary_expr] = STATE(1084), - [sym_call_expr] = STATE(989), - [sym_update_expr] = STATE(989), - [sym_rethrow_expr] = STATE(989), - [sym_trailing_generic_expr] = STATE(989), - [sym_subscript_expr] = STATE(989), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1481), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(1329), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym_catch_unwrap_list] = STATE(1762), + [sym__expr] = STATE(1032), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -50434,44 +50367,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -50494,58 +50429,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [231] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(231), [sym_doc_comment] = STATE(231), [sym_block_comment] = STATE(231), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym_catch_unwrap_list] = STATE(1914), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(1406), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(989), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1084), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1084), - [sym_binary_expr] = STATE(1084), - [sym_call_expr] = STATE(989), - [sym_update_expr] = STATE(989), - [sym_rethrow_expr] = STATE(989), - [sym_trailing_generic_expr] = STATE(989), - [sym_subscript_expr] = STATE(989), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1090), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -50553,7 +50484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -50562,44 +50493,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_RBRACK] = ACTIONS(1329), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -50622,66 +50556,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [232] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(232), [sym_doc_comment] = STATE(232), [sym_block_comment] = STATE(232), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1496), - [sym__rel_or_lambda_expr] = STATE(1698), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(1494), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(1012), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1101), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1101), - [sym_binary_expr] = STATE(1101), - [sym_call_expr] = STATE(1012), - [sym_update_expr] = STATE(1012), - [sym_rethrow_expr] = STATE(1012), - [sym_trailing_generic_expr] = STATE(1012), - [sym_subscript_expr] = STATE(1012), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1493), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(1331), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1086), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -50690,44 +50620,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1333), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -50750,57 +50683,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [233] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(233), [sym_doc_comment] = STATE(233), [sym_block_comment] = STATE(233), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1170), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1500), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2238), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -50808,7 +50739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -50817,45 +50748,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1333), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -50878,57 +50810,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [234] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(234), [sym_doc_comment] = STATE(234), [sym_block_comment] = STATE(234), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1168), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2245), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -50936,7 +50866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -50945,45 +50875,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1335), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -51006,57 +50937,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [235] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(235), [sym_doc_comment] = STATE(235), [sym_block_comment] = STATE(235), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1722), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym__generic_arg_list] = STATE(2249), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1035), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1433), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -51064,7 +50993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -51073,45 +51002,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(1337), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(1339), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -51134,58 +51064,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [236] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(236), [sym_doc_comment] = STATE(236), [sym_block_comment] = STATE(236), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym__generic_arg_list] = STATE(2082), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1103), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1314), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1112), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -51193,7 +51119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -51202,44 +51128,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1335), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -51262,57 +51191,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [237] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(237), [sym_doc_comment] = STATE(237), [sym_block_comment] = STATE(237), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1175), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2033), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -51320,7 +51247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -51329,45 +51256,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1341), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -51390,57 +51318,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [238] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(238), [sym_doc_comment] = STATE(238), [sym_block_comment] = STATE(238), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1176), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1529), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1084), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1537), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -51448,7 +51373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -51457,45 +51382,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_default] = ACTIONS(1343), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1337), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -51518,58 +51445,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [239] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(239), [sym_doc_comment] = STATE(239), [sym_block_comment] = STATE(239), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym__generic_arg_list] = STATE(2089), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1103), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1314), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1870), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -51577,7 +51501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -51586,44 +51510,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -51646,58 +51572,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [240] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(240), [sym_doc_comment] = STATE(240), [sym_block_comment] = STATE(240), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym_ct_if_cond] = STATE(26), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1635), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2107), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -51705,7 +51628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -51714,44 +51637,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -51774,57 +51699,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [241] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(241), [sym_doc_comment] = STATE(241), [sym_block_comment] = STATE(241), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1158), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2113), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -51832,7 +51755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -51841,45 +51764,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1345), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -51902,58 +51826,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [242] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(242), [sym_doc_comment] = STATE(242), [sym_block_comment] = STATE(242), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym_catch_unwrap_list] = STATE(1875), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(1489), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(989), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1084), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1084), - [sym_binary_expr] = STATE(1084), - [sym_call_expr] = STATE(989), - [sym_update_expr] = STATE(989), - [sym_rethrow_expr] = STATE(989), - [sym_trailing_generic_expr] = STATE(989), - [sym_subscript_expr] = STATE(989), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1867), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -51961,7 +51882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -51970,44 +51891,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -52030,58 +51953,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [243] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(243), [sym_doc_comment] = STATE(243), [sym_block_comment] = STATE(243), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym__generic_arg_list] = STATE(2185), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1103), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1314), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2180), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -52089,7 +52009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -52098,44 +52018,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -52158,58 +52080,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [244] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(244), [sym_doc_comment] = STATE(244), [sym_block_comment] = STATE(244), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1496), - [sym__rel_or_lambda_expr] = STATE(1723), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(1494), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(1012), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1101), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1101), - [sym_binary_expr] = STATE(1101), - [sym_call_expr] = STATE(1012), - [sym_update_expr] = STATE(1012), - [sym_rethrow_expr] = STATE(1012), - [sym_trailing_generic_expr] = STATE(1012), - [sym_subscript_expr] = STATE(1012), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1092), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1487), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -52217,7 +52135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -52226,44 +52144,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -52286,57 +52207,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [245] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(245), [sym_doc_comment] = STATE(245), [sym_block_comment] = STATE(245), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1388), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(992), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1099), - [sym_lambda_expr] = STATE(1099), - [sym_elvis_orelse_expr] = STATE(1099), - [sym_suffix_expr] = STATE(1099), - [sym_cast_expr] = STATE(1096), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1096), - [sym_binary_expr] = STATE(1096), - [sym_call_expr] = STATE(992), - [sym_update_expr] = STATE(992), - [sym_rethrow_expr] = STATE(992), - [sym_trailing_generic_expr] = STATE(992), - [sym_subscript_expr] = STATE(992), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1753), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -52344,7 +52263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -52353,45 +52272,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -52414,57 +52334,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [246] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(246), [sym_doc_comment] = STATE(246), [sym_block_comment] = STATE(246), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1144), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2230), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -52472,7 +52390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -52481,45 +52399,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), - [anon_sym_SEMI] = ACTIONS(1349), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -52542,57 +52461,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [247] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(247), [sym_doc_comment] = STATE(247), [sym_block_comment] = STATE(247), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1133), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2232), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -52600,7 +52517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -52609,44 +52526,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -52669,57 +52588,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [248] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(248), [sym_doc_comment] = STATE(248), [sym_block_comment] = STATE(248), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1172), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1100), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -52727,7 +52643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -52736,44 +52652,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1341), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -52796,57 +52715,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [249] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(249), [sym_doc_comment] = STATE(249), [sym_block_comment] = STATE(249), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1116), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1960), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -52854,7 +52771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -52863,44 +52780,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -52923,57 +52842,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [250] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(250), [sym_doc_comment] = STATE(250), [sym_block_comment] = STATE(250), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1600), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(992), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1099), - [sym_lambda_expr] = STATE(1099), - [sym_elvis_orelse_expr] = STATE(1099), - [sym_suffix_expr] = STATE(1099), - [sym_cast_expr] = STATE(1096), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1096), - [sym_binary_expr] = STATE(1096), - [sym_call_expr] = STATE(992), - [sym_update_expr] = STATE(992), - [sym_rethrow_expr] = STATE(992), - [sym_trailing_generic_expr] = STATE(992), - [sym_subscript_expr] = STATE(992), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1097), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1513), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -52981,7 +52897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -52990,44 +52906,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -53050,57 +52969,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [251] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(251), [sym_doc_comment] = STATE(251), [sym_block_comment] = STATE(251), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1114), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1787), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -53108,7 +53025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -53117,44 +53034,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -53177,565 +53096,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [252] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(252), [sym_doc_comment] = STATE(252), [sym_block_comment] = STATE(252), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1491), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(992), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1099), - [sym_lambda_expr] = STATE(1099), - [sym_elvis_orelse_expr] = STATE(1099), - [sym_suffix_expr] = STATE(1099), - [sym_cast_expr] = STATE(1096), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1096), - [sym_binary_expr] = STATE(1096), - [sym_call_expr] = STATE(992), - [sym_update_expr] = STATE(992), - [sym_rethrow_expr] = STATE(992), - [sym_trailing_generic_expr] = STATE(992), - [sym_subscript_expr] = STATE(992), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), - }, - [253] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), - [sym_line_comment] = STATE(253), - [sym_doc_comment] = STATE(253), - [sym_block_comment] = STATE(253), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1104), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), - }, - [254] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), - [sym_line_comment] = STATE(254), - [sym_doc_comment] = STATE(254), - [sym_block_comment] = STATE(254), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1611), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(992), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1099), - [sym_lambda_expr] = STATE(1099), - [sym_elvis_orelse_expr] = STATE(1099), - [sym_suffix_expr] = STATE(1099), - [sym_cast_expr] = STATE(1096), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1096), - [sym_binary_expr] = STATE(1096), - [sym_call_expr] = STATE(992), - [sym_update_expr] = STATE(992), - [sym_rethrow_expr] = STATE(992), - [sym_trailing_generic_expr] = STATE(992), - [sym_subscript_expr] = STATE(992), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), - }, - [255] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), - [sym_line_comment] = STATE(255), - [sym_doc_comment] = STATE(255), - [sym_block_comment] = STATE(255), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1157), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), - }, - [256] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), - [sym_line_comment] = STATE(256), - [sym_doc_comment] = STATE(256), - [sym_block_comment] = STATE(256), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), [sym__expr] = STATE(1120), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym__constant_expr] = STATE(1995), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -53743,7 +53152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -53752,44 +53161,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -53812,57 +53223,563 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), + [sym_real_literal] = ACTIONS(63), + }, + [253] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(253), + [sym_doc_comment] = STATE(253), + [sym_block_comment] = STATE(253), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2026), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), + [sym_integer_literal] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_BQUOTE] = ACTIONS(69), + [sym_bytes_literal] = ACTIONS(71), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(73), + [sym_at_ident] = ACTIONS(75), + [sym_hash_ident] = ACTIONS(77), + [sym_type_ident] = ACTIONS(13), + [sym_ct_type_ident] = ACTIONS(81), + [sym_const_ident] = ACTIONS(83), + [sym_builtin] = ACTIONS(63), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_fn] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), + [anon_sym_DOLLARfeature] = ACTIONS(165), + [anon_sym_DOLLARassignable] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(45), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), + [sym_real_literal] = ACTIONS(63), + }, + [254] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(254), + [sym_doc_comment] = STATE(254), + [sym_block_comment] = STATE(254), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1993), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), + [sym_integer_literal] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_BQUOTE] = ACTIONS(69), + [sym_bytes_literal] = ACTIONS(71), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(73), + [sym_at_ident] = ACTIONS(75), + [sym_hash_ident] = ACTIONS(77), + [sym_type_ident] = ACTIONS(13), + [sym_ct_type_ident] = ACTIONS(81), + [sym_const_ident] = ACTIONS(83), + [sym_builtin] = ACTIONS(63), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_fn] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), + [anon_sym_DOLLARfeature] = ACTIONS(165), + [anon_sym_DOLLARassignable] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(45), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), + [sym_real_literal] = ACTIONS(63), + }, + [255] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(255), + [sym_doc_comment] = STATE(255), + [sym_block_comment] = STATE(255), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2036), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), + [sym_integer_literal] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_BQUOTE] = ACTIONS(69), + [sym_bytes_literal] = ACTIONS(71), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(73), + [sym_at_ident] = ACTIONS(75), + [sym_hash_ident] = ACTIONS(77), + [sym_type_ident] = ACTIONS(13), + [sym_ct_type_ident] = ACTIONS(81), + [sym_const_ident] = ACTIONS(83), + [sym_builtin] = ACTIONS(63), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_fn] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), + [anon_sym_DOLLARfeature] = ACTIONS(165), + [anon_sym_DOLLARassignable] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(45), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), + [sym_real_literal] = ACTIONS(63), + }, + [256] = { + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), + [sym_line_comment] = STATE(256), + [sym_doc_comment] = STATE(256), + [sym_block_comment] = STATE(256), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1106), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1535), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(61), + [sym_integer_literal] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_BQUOTE] = ACTIONS(69), + [sym_bytes_literal] = ACTIONS(71), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(73), + [sym_at_ident] = ACTIONS(75), + [sym_hash_ident] = ACTIONS(77), + [sym_type_ident] = ACTIONS(13), + [sym_ct_type_ident] = ACTIONS(81), + [sym_const_ident] = ACTIONS(83), + [sym_builtin] = ACTIONS(63), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_fn] = ACTIONS(97), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_int] = ACTIONS(45), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), + [anon_sym_DOLLARfeature] = ACTIONS(165), + [anon_sym_DOLLARassignable] = ACTIONS(167), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_typeid] = ACTIONS(45), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [257] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(257), [sym_doc_comment] = STATE(257), [sym_block_comment] = STATE(257), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1629), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(992), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1099), - [sym_lambda_expr] = STATE(1099), - [sym_elvis_orelse_expr] = STATE(1099), - [sym_suffix_expr] = STATE(1099), - [sym_cast_expr] = STATE(1096), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1096), - [sym_binary_expr] = STATE(1096), - [sym_call_expr] = STATE(992), - [sym_update_expr] = STATE(992), - [sym_rethrow_expr] = STATE(992), - [sym_trailing_generic_expr] = STATE(992), - [sym_subscript_expr] = STATE(992), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1822), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -53870,7 +53787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -53879,44 +53796,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -53939,57 +53858,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [258] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(258), [sym_doc_comment] = STATE(258), [sym_block_comment] = STATE(258), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1113), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1295), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2070), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -53997,7 +53914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -54006,44 +53923,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -54066,57 +53985,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [259] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(259), [sym_doc_comment] = STATE(259), [sym_block_comment] = STATE(259), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1102), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2071), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -54124,7 +54041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -54133,44 +54050,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -54193,57 +54112,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [260] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(260), [sym_doc_comment] = STATE(260), [sym_block_comment] = STATE(260), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1640), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(992), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1099), - [sym_lambda_expr] = STATE(1099), - [sym_elvis_orelse_expr] = STATE(1099), - [sym_suffix_expr] = STATE(1099), - [sym_cast_expr] = STATE(1096), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1096), - [sym_binary_expr] = STATE(1096), - [sym_call_expr] = STATE(992), - [sym_update_expr] = STATE(992), - [sym_rethrow_expr] = STATE(992), - [sym_trailing_generic_expr] = STATE(992), - [sym_subscript_expr] = STATE(992), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2080), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -54251,7 +54168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -54260,44 +54177,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -54320,57 +54239,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [261] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(261), [sym_doc_comment] = STATE(261), [sym_block_comment] = STATE(261), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(994), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1037), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -54378,7 +54294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -54387,44 +54303,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), + [anon_sym_RPAREN] = ACTIONS(1347), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -54447,57 +54366,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [262] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(262), [sym_doc_comment] = STATE(262), [sym_block_comment] = STATE(262), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1107), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2114), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -54505,7 +54422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -54514,44 +54431,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -54574,57 +54493,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [263] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(263), [sym_doc_comment] = STATE(263), [sym_block_comment] = STATE(263), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1675), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2150), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -54632,7 +54549,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -54641,44 +54558,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -54701,57 +54620,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [264] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(264), [sym_doc_comment] = STATE(264), [sym_block_comment] = STATE(264), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1173), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1459), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2179), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -54759,7 +54676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -54768,44 +54685,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -54828,57 +54747,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [265] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(265), [sym_doc_comment] = STATE(265), [sym_block_comment] = STATE(265), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1651), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1467), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(2208), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -54886,7 +54803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -54895,44 +54812,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -54955,57 +54874,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [266] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(266), [sym_doc_comment] = STATE(266), [sym_block_comment] = STATE(266), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1007), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__constant_expr] = STATE(1765), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1062), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1060), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(1061), + [sym_lambda_expr] = STATE(1061), + [sym_elvis_orelse_expr] = STATE(1061), + [sym_optional_expr] = STATE(1061), + [sym_cast_expr] = STATE(1061), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(1061), + [sym_binary_expr] = STATE(1061), + [sym_call_expr] = STATE(1061), + [sym_update_expr] = STATE(1061), + [sym_rethrow_expr] = STATE(1061), + [sym_trailing_generic_expr] = STATE(1061), + [sym_subscript_expr] = STATE(1061), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -55013,7 +54930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -55022,44 +54939,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -55082,57 +55001,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [267] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(267), [sym_doc_comment] = STATE(267), [sym_block_comment] = STATE(267), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1660), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(857), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -55140,7 +55056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -55149,44 +55065,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -55209,57 +55127,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [268] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(268), [sym_doc_comment] = STATE(268), [sym_block_comment] = STATE(268), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(999), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(862), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -55267,7 +55182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -55276,44 +55191,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -55336,57 +55253,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [269] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(269), [sym_doc_comment] = STATE(269), [sym_block_comment] = STATE(269), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1010), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(863), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -55394,7 +55308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -55403,44 +55317,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -55463,57 +55379,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [270] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(270), [sym_doc_comment] = STATE(270), [sym_block_comment] = STATE(270), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1014), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1049), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -55521,7 +55434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -55530,44 +55443,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -55590,57 +55505,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [271] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(271), [sym_doc_comment] = STATE(271), [sym_block_comment] = STATE(271), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1002), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1069), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -55648,7 +55560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -55657,44 +55569,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -55717,57 +55631,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [272] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(272), [sym_doc_comment] = STATE(272), [sym_block_comment] = STATE(272), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1013), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(864), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -55775,7 +55686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -55784,44 +55695,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -55844,57 +55757,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [273] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(273), [sym_doc_comment] = STATE(273), [sym_block_comment] = STATE(273), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1000), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1038), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -55902,7 +55812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -55911,44 +55821,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -55971,57 +55883,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [274] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(274), [sym_doc_comment] = STATE(274), [sym_block_comment] = STATE(274), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1050), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(865), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -56029,7 +55938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -56038,44 +55947,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -56098,65 +56009,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [275] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(275), [sym_doc_comment] = STATE(275), [sym_block_comment] = STATE(275), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1666), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1056), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1534), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), + [sym_ident] = ACTIONS(1349), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -56165,44 +56073,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -56225,57 +56135,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [276] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(276), [sym_doc_comment] = STATE(276), [sym_block_comment] = STATE(276), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1612), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(835), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -56283,7 +56190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -56292,44 +56199,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -56352,57 +56261,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [277] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(277), [sym_doc_comment] = STATE(277), [sym_block_comment] = STATE(277), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1021), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(934), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1004), - [sym_lambda_expr] = STATE(1004), - [sym_elvis_orelse_expr] = STATE(1004), - [sym_suffix_expr] = STATE(1004), - [sym_cast_expr] = STATE(993), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(993), - [sym_binary_expr] = STATE(993), - [sym_call_expr] = STATE(934), - [sym_update_expr] = STATE(934), - [sym_rethrow_expr] = STATE(934), - [sym_trailing_generic_expr] = STATE(934), - [sym_subscript_expr] = STATE(934), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(867), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -56410,7 +56316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -56419,44 +56325,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -56479,57 +56387,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [278] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(278), [sym_doc_comment] = STATE(278), [sym_block_comment] = STATE(278), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1667), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1151), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -56537,7 +56442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -56546,44 +56451,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -56606,57 +56513,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [279] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(279), [sym_doc_comment] = STATE(279), [sym_block_comment] = STATE(279), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1647), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(992), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1099), - [sym_lambda_expr] = STATE(1099), - [sym_elvis_orelse_expr] = STATE(1099), - [sym_suffix_expr] = STATE(1099), - [sym_cast_expr] = STATE(1096), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1096), - [sym_binary_expr] = STATE(1096), - [sym_call_expr] = STATE(992), - [sym_update_expr] = STATE(992), - [sym_rethrow_expr] = STATE(992), - [sym_trailing_generic_expr] = STATE(992), - [sym_subscript_expr] = STATE(992), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1552), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(836), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -56664,7 +56568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -56673,44 +56577,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -56733,57 +56639,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [280] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(280), [sym_doc_comment] = STATE(280), [sym_block_comment] = STATE(280), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1498), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(837), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -56791,7 +56694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -56800,44 +56703,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -56860,57 +56765,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [281] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(281), [sym_doc_comment] = STATE(281), [sym_block_comment] = STATE(281), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1673), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(838), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -56918,7 +56820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -56927,44 +56829,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -56987,57 +56891,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [282] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(282), [sym_doc_comment] = STATE(282), [sym_block_comment] = STATE(282), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1645), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(992), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1099), - [sym_lambda_expr] = STATE(1099), - [sym_elvis_orelse_expr] = STATE(1099), - [sym_suffix_expr] = STATE(1099), - [sym_cast_expr] = STATE(1096), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1096), - [sym_binary_expr] = STATE(1096), - [sym_call_expr] = STATE(992), - [sym_update_expr] = STATE(992), - [sym_rethrow_expr] = STATE(992), - [sym_trailing_generic_expr] = STATE(992), - [sym_subscript_expr] = STATE(992), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(839), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -57045,7 +56946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -57054,44 +56955,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -57114,57 +57017,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [283] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(283), [sym_doc_comment] = STATE(283), [sym_block_comment] = STATE(283), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1064), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(840), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -57172,7 +57072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -57181,44 +57081,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -57241,57 +57143,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [284] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(284), [sym_doc_comment] = STATE(284), [sym_block_comment] = STATE(284), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1690), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(841), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -57299,7 +57198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -57308,44 +57207,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -57368,57 +57269,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [285] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(285), [sym_doc_comment] = STATE(285), [sym_block_comment] = STATE(285), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1417), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(842), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -57426,7 +57324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -57435,44 +57333,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -57495,57 +57395,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [286] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(286), [sym_doc_comment] = STATE(286), [sym_block_comment] = STATE(286), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1569), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(844), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -57553,7 +57450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -57562,44 +57459,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -57622,57 +57521,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [287] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(287), [sym_doc_comment] = STATE(287), [sym_block_comment] = STATE(287), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1693), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1082), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -57680,7 +57576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -57689,44 +57585,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -57749,57 +57647,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [288] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(288), [sym_doc_comment] = STATE(288), [sym_block_comment] = STATE(288), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1537), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(845), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -57807,7 +57702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -57816,44 +57711,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -57876,57 +57773,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [289] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(289), [sym_doc_comment] = STATE(289), [sym_block_comment] = STATE(289), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1745), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1093), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -57934,7 +57828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -57943,44 +57837,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -58003,57 +57899,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [290] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(290), [sym_doc_comment] = STATE(290), [sym_block_comment] = STATE(290), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1707), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1036), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1444), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -58061,7 +57954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -58070,44 +57963,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -58130,57 +58025,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [291] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(291), [sym_doc_comment] = STATE(291), [sym_block_comment] = STATE(291), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1726), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(846), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -58188,7 +58080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -58197,44 +58089,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -58257,57 +58151,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [292] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(292), [sym_doc_comment] = STATE(292), [sym_block_comment] = STATE(292), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1728), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1055), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1469), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -58315,7 +58206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -58324,44 +58215,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -58384,57 +58277,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [293] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(293), [sym_doc_comment] = STATE(293), [sym_block_comment] = STATE(293), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1418), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(848), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -58442,7 +58332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -58451,44 +58341,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -58511,57 +58403,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [294] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(294), [sym_doc_comment] = STATE(294), [sym_block_comment] = STATE(294), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1750), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1053), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -58569,7 +58458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -58578,44 +58467,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -58638,57 +58529,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [295] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(295), [sym_doc_comment] = STATE(295), [sym_block_comment] = STATE(295), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1748), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(860), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -58696,7 +58584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -58705,44 +58593,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -58765,57 +58655,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [296] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(296), [sym_doc_comment] = STATE(296), [sym_block_comment] = STATE(296), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1747), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1089), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -58823,7 +58710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -58832,44 +58719,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -58892,57 +58781,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [297] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(297), [sym_doc_comment] = STATE(297), [sym_block_comment] = STATE(297), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1108), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1067), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1523), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -58950,7 +58836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -58959,44 +58845,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -59019,57 +58907,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [298] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(298), [sym_doc_comment] = STATE(298), [sym_block_comment] = STATE(298), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1477), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1119), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -59077,7 +58962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -59086,44 +58971,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -59146,57 +59033,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [299] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(299), [sym_doc_comment] = STATE(299), [sym_block_comment] = STATE(299), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1752), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(854), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -59204,7 +59088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -59213,44 +59097,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -59273,57 +59159,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [300] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(300), [sym_doc_comment] = STATE(300), [sym_block_comment] = STATE(300), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1421), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(992), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1099), - [sym_lambda_expr] = STATE(1099), - [sym_elvis_orelse_expr] = STATE(1099), - [sym_suffix_expr] = STATE(1099), - [sym_cast_expr] = STATE(1096), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1096), - [sym_binary_expr] = STATE(1096), - [sym_call_expr] = STATE(992), - [sym_update_expr] = STATE(992), - [sym_rethrow_expr] = STATE(992), - [sym_trailing_generic_expr] = STATE(992), - [sym_subscript_expr] = STATE(992), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1107), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -59331,7 +59214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -59340,44 +59223,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -59400,57 +59285,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [301] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(301), [sym_doc_comment] = STATE(301), [sym_block_comment] = STATE(301), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1137), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1067), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -59458,7 +59340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -59467,44 +59349,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -59527,57 +59411,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [302] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(302), [sym_doc_comment] = STATE(302), [sym_block_comment] = STATE(302), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1154), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1039), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -59585,7 +59466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -59594,44 +59475,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -59654,57 +59537,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [303] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(303), [sym_doc_comment] = STATE(303), [sym_block_comment] = STATE(303), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1015), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(934), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1004), - [sym_lambda_expr] = STATE(1004), - [sym_elvis_orelse_expr] = STATE(1004), - [sym_suffix_expr] = STATE(1004), - [sym_cast_expr] = STATE(993), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(993), - [sym_binary_expr] = STATE(993), - [sym_call_expr] = STATE(934), - [sym_update_expr] = STATE(934), - [sym_rethrow_expr] = STATE(934), - [sym_trailing_generic_expr] = STATE(934), - [sym_subscript_expr] = STATE(934), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1047), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -59712,7 +59592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -59721,44 +59601,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -59781,57 +59663,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [304] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(304), [sym_doc_comment] = STATE(304), [sym_block_comment] = STATE(304), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1724), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1120), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1148), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -59839,7 +59718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -59848,44 +59727,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -59908,57 +59789,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [305] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(305), [sym_doc_comment] = STATE(305), [sym_block_comment] = STATE(305), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1720), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(992), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1099), - [sym_lambda_expr] = STATE(1099), - [sym_elvis_orelse_expr] = STATE(1099), - [sym_suffix_expr] = STATE(1099), - [sym_cast_expr] = STATE(1096), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1096), - [sym_binary_expr] = STATE(1096), - [sym_call_expr] = STATE(992), - [sym_update_expr] = STATE(992), - [sym_rethrow_expr] = STATE(992), - [sym_trailing_generic_expr] = STATE(992), - [sym_subscript_expr] = STATE(992), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1045), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1397), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -59966,7 +59844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -59975,44 +59853,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -60035,57 +59915,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [306] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(306), [sym_doc_comment] = STATE(306), [sym_block_comment] = STATE(306), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1065), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1059), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -60093,7 +59970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -60102,44 +59979,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -60162,57 +60041,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [307] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(307), [sym_doc_comment] = STATE(307), [sym_block_comment] = STATE(307), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1118), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1052), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -60220,7 +60096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -60229,44 +60105,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -60289,57 +60167,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [308] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(308), [sym_doc_comment] = STATE(308), [sym_block_comment] = STATE(308), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1702), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1041), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -60347,7 +60222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -60356,44 +60231,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -60416,57 +60293,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [309] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(309), [sym_doc_comment] = STATE(309), [sym_block_comment] = STATE(309), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1701), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(849), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -60474,7 +60348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -60483,44 +60357,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -60543,57 +60419,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [310] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(310), [sym_doc_comment] = STATE(310), [sym_block_comment] = STATE(310), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1128), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1113), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -60601,7 +60474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -60610,44 +60483,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -60670,57 +60545,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [311] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(311), [sym_doc_comment] = STATE(311), [sym_block_comment] = STATE(311), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1450), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1071), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -60728,7 +60600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -60737,44 +60609,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -60797,57 +60671,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [312] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(312), [sym_doc_comment] = STATE(312), [sym_block_comment] = STATE(312), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1617), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(851), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -60855,7 +60726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -60864,44 +60735,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -60924,57 +60797,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [313] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(313), [sym_doc_comment] = STATE(313), [sym_block_comment] = STATE(313), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1584), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1074), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -60982,7 +60852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -60991,44 +60861,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(1353), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -61051,57 +60923,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [314] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(314), [sym_doc_comment] = STATE(314), [sym_block_comment] = STATE(314), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1053), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(852), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -61109,7 +60978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -61118,44 +60987,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -61178,57 +61049,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [315] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(315), [sym_doc_comment] = STATE(315), [sym_block_comment] = STATE(315), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1582), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(992), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1099), - [sym_lambda_expr] = STATE(1099), - [sym_elvis_orelse_expr] = STATE(1099), - [sym_suffix_expr] = STATE(1099), - [sym_cast_expr] = STATE(1096), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1096), - [sym_binary_expr] = STATE(1096), - [sym_call_expr] = STATE(992), - [sym_update_expr] = STATE(992), - [sym_rethrow_expr] = STATE(992), - [sym_trailing_generic_expr] = STATE(992), - [sym_subscript_expr] = STATE(992), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(853), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -61236,7 +61104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -61245,44 +61113,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -61305,57 +61175,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [316] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(316), [sym_doc_comment] = STATE(316), [sym_block_comment] = STATE(316), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1152), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1064), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -61363,7 +61230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -61372,44 +61239,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -61432,57 +61301,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [317] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(317), [sym_doc_comment] = STATE(317), [sym_block_comment] = STATE(317), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1595), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(855), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -61490,7 +61356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -61499,44 +61365,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -61559,57 +61427,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [318] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(318), [sym_doc_comment] = STATE(318), [sym_block_comment] = STATE(318), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1141), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(856), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -61617,7 +61482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -61626,44 +61491,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -61686,57 +61553,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [319] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(319), [sym_doc_comment] = STATE(319), [sym_block_comment] = STATE(319), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1592), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1117), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -61744,7 +61608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -61753,44 +61617,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -61813,57 +61679,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [320] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(320), [sym_doc_comment] = STATE(320), [sym_block_comment] = STATE(320), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1105), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1295), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1118), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -61871,7 +61734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -61880,44 +61743,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -61940,57 +61805,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [321] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(321), [sym_doc_comment] = STATE(321), [sym_block_comment] = STATE(321), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1532), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1087), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -61998,7 +61860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -62007,44 +61869,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -62067,57 +61931,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [322] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(322), [sym_doc_comment] = STATE(322), [sym_block_comment] = STATE(322), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1173), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1034), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -62125,7 +61986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -62134,44 +61995,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -62194,57 +62057,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [323] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(323), [sym_doc_comment] = STATE(323), [sym_block_comment] = STATE(323), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1124), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1387), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1103), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -62252,7 +62112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -62261,44 +62121,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -62321,57 +62183,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [324] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(324), [sym_doc_comment] = STATE(324), [sym_block_comment] = STATE(324), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1008), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1104), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -62379,7 +62238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -62388,44 +62247,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -62448,57 +62309,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [325] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(325), [sym_doc_comment] = STATE(325), [sym_block_comment] = STATE(325), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1173), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1556), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1110), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -62506,7 +62364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -62515,44 +62373,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -62575,57 +62435,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [326] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(326), [sym_doc_comment] = STATE(326), [sym_block_comment] = STATE(326), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1146), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(858), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -62633,7 +62490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -62642,44 +62499,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -62702,57 +62561,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [327] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(327), [sym_doc_comment] = STATE(327), [sym_block_comment] = STATE(327), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1006), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1072), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -62760,7 +62616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -62769,44 +62625,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -62829,57 +62687,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [328] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(328), [sym_doc_comment] = STATE(328), [sym_block_comment] = STATE(328), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1069), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(934), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1004), - [sym_lambda_expr] = STATE(1004), - [sym_elvis_orelse_expr] = STATE(1004), - [sym_suffix_expr] = STATE(1004), - [sym_cast_expr] = STATE(993), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(993), - [sym_binary_expr] = STATE(993), - [sym_call_expr] = STATE(934), - [sym_update_expr] = STATE(934), - [sym_rethrow_expr] = STATE(934), - [sym_trailing_generic_expr] = STATE(934), - [sym_subscript_expr] = STATE(934), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1073), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -62887,7 +62742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -62896,44 +62751,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -62956,57 +62813,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [329] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(329), [sym_doc_comment] = STATE(329), [sym_block_comment] = STATE(329), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1613), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(992), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1099), - [sym_lambda_expr] = STATE(1099), - [sym_elvis_orelse_expr] = STATE(1099), - [sym_suffix_expr] = STATE(1099), - [sym_cast_expr] = STATE(1096), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1096), - [sym_binary_expr] = STATE(1096), - [sym_call_expr] = STATE(992), - [sym_update_expr] = STATE(992), - [sym_rethrow_expr] = STATE(992), - [sym_trailing_generic_expr] = STATE(992), - [sym_subscript_expr] = STATE(992), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1076), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -63014,7 +62868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -63023,44 +62877,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(1355), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -63083,57 +62939,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [330] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(330), [sym_doc_comment] = STATE(330), [sym_block_comment] = STATE(330), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1588), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(992), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1099), - [sym_lambda_expr] = STATE(1099), - [sym_elvis_orelse_expr] = STATE(1099), - [sym_suffix_expr] = STATE(1099), - [sym_cast_expr] = STATE(1096), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1096), - [sym_binary_expr] = STATE(1096), - [sym_call_expr] = STATE(992), - [sym_update_expr] = STATE(992), - [sym_rethrow_expr] = STATE(992), - [sym_trailing_generic_expr] = STATE(992), - [sym_subscript_expr] = STATE(992), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1105), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -63141,7 +62994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -63150,44 +63003,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -63210,57 +63065,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [331] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(331), [sym_doc_comment] = STATE(331), [sym_block_comment] = STATE(331), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1131), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1031), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -63268,7 +63120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -63277,44 +63129,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -63337,57 +63191,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [332] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(332), [sym_doc_comment] = STATE(332), [sym_block_comment] = STATE(332), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1055), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(1558), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(1012), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1101), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1101), - [sym_binary_expr] = STATE(1101), - [sym_call_expr] = STATE(1012), - [sym_update_expr] = STATE(1012), - [sym_rethrow_expr] = STATE(1012), - [sym_trailing_generic_expr] = STATE(1012), - [sym_subscript_expr] = STATE(1012), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1043), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -63395,7 +63246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -63404,44 +63255,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -63464,57 +63317,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [333] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(333), [sym_doc_comment] = STATE(333), [sym_block_comment] = STATE(333), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1165), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1044), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -63522,7 +63372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -63531,44 +63381,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -63591,57 +63443,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [334] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(334), [sym_doc_comment] = STATE(334), [sym_block_comment] = STATE(334), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1171), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(861), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -63649,7 +63498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -63658,44 +63507,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -63718,57 +63569,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [335] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(335), [sym_doc_comment] = STATE(335), [sym_block_comment] = STATE(335), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1127), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1033), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -63776,7 +63624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -63785,44 +63633,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -63845,57 +63695,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [336] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(336), [sym_doc_comment] = STATE(336), [sym_block_comment] = STATE(336), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1048), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1046), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -63903,7 +63750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -63912,44 +63759,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -63972,57 +63821,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [337] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), + [sym_char_literal] = STATE(899), + [sym_string_literal] = STATE(872), + [sym_raw_string_literal] = STATE(872), [sym_line_comment] = STATE(337), [sym_doc_comment] = STATE(337), [sym_block_comment] = STATE(337), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1115), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1380), + [sym_lambda_declaration] = STATE(1556), + [sym__expr] = STATE(1108), + [sym__ident_expr] = STATE(899), + [sym__local_ident_expr] = STATE(899), + [sym_string_expr] = STATE(899), + [sym_bytes_expr] = STATE(899), + [sym_paren_expr] = STATE(899), + [sym__base_expr] = STATE(1021), + [sym_module_ident_expr] = STATE(899), + [sym_module_type_ident] = STATE(1063), + [sym_initializer_list] = STATE(1022), + [sym_assignment_expr] = STATE(913), + [sym_ternary_expr] = STATE(913), + [sym_lambda_expr] = STATE(913), + [sym_elvis_orelse_expr] = STATE(913), + [sym_optional_expr] = STATE(913), + [sym_cast_expr] = STATE(913), + [sym__unary_op] = STATE(299), + [sym_unary_expr] = STATE(913), + [sym_binary_expr] = STATE(913), + [sym_call_expr] = STATE(913), + [sym_update_expr] = STATE(913), + [sym_rethrow_expr] = STATE(913), + [sym_trailing_generic_expr] = STATE(913), + [sym_subscript_expr] = STATE(913), + [sym_field_expr] = STATE(899), + [sym_type_access_expr] = STATE(899), + [sym_expr_block] = STATE(899), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(1652), + [aux_sym_string_expr_repeat1] = STATE(831), + [aux_sym_bytes_expr_repeat1] = STATE(873), [sym_ident] = ACTIONS(61), [sym_integer_literal] = ACTIONS(63), [anon_sym_SQUOTE] = ACTIONS(65), @@ -64030,7 +63876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(69), [sym_bytes_literal] = ACTIONS(71), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(73), [sym_at_ident] = ACTIONS(75), @@ -64039,44 +63885,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ct_type_ident] = ACTIONS(81), [sym_const_ident] = ACTIONS(83), [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(87), [anon_sym_AMP] = ACTIONS(89), [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(1181), + [anon_sym_AMP_AMP] = ACTIONS(125), [anon_sym_int] = ACTIONS(45), [anon_sym_PLUS] = ACTIONS(89), [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_DOLLARalignof] = ACTIONS(155), + [anon_sym_DOLLARextnameof] = ACTIONS(155), + [anon_sym_DOLLARnameof] = ACTIONS(155), + [anon_sym_DOLLARoffsetof] = ACTIONS(155), + [anon_sym_DOLLARqnameof] = ACTIONS(155), + [anon_sym_DOLLARvaconst] = ACTIONS(157), + [anon_sym_DOLLARvaarg] = ACTIONS(157), + [anon_sym_DOLLARvaref] = ACTIONS(157), + [anon_sym_DOLLARvaexpr] = ACTIONS(157), + [anon_sym_true] = ACTIONS(159), + [anon_sym_false] = ACTIONS(159), + [anon_sym_null] = ACTIONS(159), + [anon_sym_DOLLARvacount] = ACTIONS(159), + [anon_sym_DOLLAReval] = ACTIONS(161), + [anon_sym_DOLLARis_const] = ACTIONS(161), + [anon_sym_DOLLARsizeof] = ACTIONS(161), + [anon_sym_DOLLARstringify] = ACTIONS(161), + [anon_sym_DOLLARappend] = ACTIONS(163), + [anon_sym_DOLLARconcat] = ACTIONS(163), + [anon_sym_DOLLARdefined] = ACTIONS(163), + [anon_sym_DOLLARembed] = ACTIONS(163), + [anon_sym_DOLLARand] = ACTIONS(163), + [anon_sym_DOLLARor] = ACTIONS(163), [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), + [anon_sym_LBRACE_PIPE] = ACTIONS(169), [anon_sym_void] = ACTIONS(45), [anon_sym_bool] = ACTIONS(45), [anon_sym_char] = ACTIONS(45), @@ -64099,5382 +63947,2979 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_usz] = ACTIONS(45), [anon_sym_anyfault] = ACTIONS(45), [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), + [anon_sym_DOLLARtypeof] = ACTIONS(1185), + [anon_sym_DOLLARtypefrom] = ACTIONS(1185), + [anon_sym_DOLLARevaltype] = ACTIONS(1185), + [anon_sym_DOLLARvatype] = ACTIONS(1187), [sym_real_literal] = ACTIONS(63), }, [338] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(338), [sym_doc_comment] = STATE(338), [sym_block_comment] = STATE(338), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(1022), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), + [sym_else_part] = STATE(366), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_case] = ACTIONS(1357), + [anon_sym_default] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(1361), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_PIPE_RBRACE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), }, [339] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(339), [sym_doc_comment] = STATE(339), [sym_block_comment] = STATE(339), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(1027), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1363), + [sym_integer_literal] = ACTIONS(1365), + [anon_sym_SQUOTE] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(1365), + [anon_sym_BQUOTE] = ACTIONS(1365), + [sym_bytes_literal] = ACTIONS(1365), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1363), + [sym_at_ident] = ACTIONS(1365), + [sym_hash_ident] = ACTIONS(1365), + [sym_type_ident] = ACTIONS(1365), + [sym_ct_type_ident] = ACTIONS(1365), + [sym_const_ident] = ACTIONS(1363), + [sym_builtin] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_tlocal] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_var] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_defer] = ACTIONS(1363), + [anon_sym_assert] = ACTIONS(1363), + [anon_sym_case] = ACTIONS(1363), + [anon_sym_default] = ACTIONS(1363), + [anon_sym_nextcase] = ACTIONS(1363), + [anon_sym_switch] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_else] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_foreach] = ACTIONS(1363), + [anon_sym_foreach_r] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_int] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1363), + [anon_sym_DOLLARassert] = ACTIONS(1363), + [anon_sym_DOLLARerror] = ACTIONS(1363), + [anon_sym_DOLLARecho] = ACTIONS(1363), + [anon_sym_DOLLARif] = ACTIONS(1363), + [anon_sym_DOLLARswitch] = ACTIONS(1363), + [anon_sym_DOLLARfor] = ACTIONS(1363), + [anon_sym_DOLLARforeach] = ACTIONS(1363), + [anon_sym_DOLLARalignof] = ACTIONS(1363), + [anon_sym_DOLLARextnameof] = ACTIONS(1363), + [anon_sym_DOLLARnameof] = ACTIONS(1363), + [anon_sym_DOLLARoffsetof] = ACTIONS(1363), + [anon_sym_DOLLARqnameof] = ACTIONS(1363), + [anon_sym_DOLLARvaconst] = ACTIONS(1363), + [anon_sym_DOLLARvaarg] = ACTIONS(1363), + [anon_sym_DOLLARvaref] = ACTIONS(1363), + [anon_sym_DOLLARvaexpr] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_null] = ACTIONS(1363), + [anon_sym_DOLLARvacount] = ACTIONS(1363), + [anon_sym_DOLLAReval] = ACTIONS(1363), + [anon_sym_DOLLARis_const] = ACTIONS(1363), + [anon_sym_DOLLARsizeof] = ACTIONS(1363), + [anon_sym_DOLLARstringify] = ACTIONS(1363), + [anon_sym_DOLLARappend] = ACTIONS(1363), + [anon_sym_DOLLARconcat] = ACTIONS(1363), + [anon_sym_DOLLARdefined] = ACTIONS(1363), + [anon_sym_DOLLARembed] = ACTIONS(1363), + [anon_sym_DOLLARand] = ACTIONS(1363), + [anon_sym_DOLLARor] = ACTIONS(1363), + [anon_sym_DOLLARfeature] = ACTIONS(1363), + [anon_sym_DOLLARassignable] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_typeid] = ACTIONS(1363), + [anon_sym_LBRACE_PIPE] = ACTIONS(1365), + [anon_sym_PIPE_RBRACE] = ACTIONS(1365), + [anon_sym_void] = ACTIONS(1363), + [anon_sym_bool] = ACTIONS(1363), + [anon_sym_char] = ACTIONS(1363), + [anon_sym_ichar] = ACTIONS(1363), + [anon_sym_short] = ACTIONS(1363), + [anon_sym_ushort] = ACTIONS(1363), + [anon_sym_uint] = ACTIONS(1363), + [anon_sym_long] = ACTIONS(1363), + [anon_sym_ulong] = ACTIONS(1363), + [anon_sym_int128] = ACTIONS(1363), + [anon_sym_uint128] = ACTIONS(1363), + [anon_sym_float] = ACTIONS(1363), + [anon_sym_double] = ACTIONS(1363), + [anon_sym_float16] = ACTIONS(1363), + [anon_sym_bfloat16] = ACTIONS(1363), + [anon_sym_float128] = ACTIONS(1363), + [anon_sym_iptr] = ACTIONS(1363), + [anon_sym_uptr] = ACTIONS(1363), + [anon_sym_isz] = ACTIONS(1363), + [anon_sym_usz] = ACTIONS(1363), + [anon_sym_anyfault] = ACTIONS(1363), + [anon_sym_any] = ACTIONS(1363), + [anon_sym_DOLLARtypeof] = ACTIONS(1363), + [anon_sym_DOLLARtypefrom] = ACTIONS(1363), + [anon_sym_DOLLARevaltype] = ACTIONS(1363), + [anon_sym_DOLLARvatype] = ACTIONS(1363), + [sym_real_literal] = ACTIONS(1365), }, [340] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(340), [sym_doc_comment] = STATE(340), [sym_block_comment] = STATE(340), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(1530), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(989), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1084), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1084), - [sym_binary_expr] = STATE(1084), - [sym_call_expr] = STATE(989), - [sym_update_expr] = STATE(989), - [sym_rethrow_expr] = STATE(989), - [sym_trailing_generic_expr] = STATE(989), - [sym_subscript_expr] = STATE(989), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [sym_bytes_literal] = ACTIONS(1369), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1367), + [sym_at_ident] = ACTIONS(1369), + [sym_hash_ident] = ACTIONS(1369), + [sym_type_ident] = ACTIONS(1369), + [sym_ct_type_ident] = ACTIONS(1369), + [sym_const_ident] = ACTIONS(1367), + [sym_builtin] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_tlocal] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_var] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_defer] = ACTIONS(1367), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1367), + [anon_sym_default] = ACTIONS(1367), + [anon_sym_nextcase] = ACTIONS(1367), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_else] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_foreach] = ACTIONS(1367), + [anon_sym_foreach_r] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1367), + [anon_sym_DOLLARassert] = ACTIONS(1367), + [anon_sym_DOLLARerror] = ACTIONS(1367), + [anon_sym_DOLLARecho] = ACTIONS(1367), + [anon_sym_DOLLARif] = ACTIONS(1367), + [anon_sym_DOLLARswitch] = ACTIONS(1367), + [anon_sym_DOLLARfor] = ACTIONS(1367), + [anon_sym_DOLLARforeach] = ACTIONS(1367), + [anon_sym_DOLLARalignof] = ACTIONS(1367), + [anon_sym_DOLLARextnameof] = ACTIONS(1367), + [anon_sym_DOLLARnameof] = ACTIONS(1367), + [anon_sym_DOLLARoffsetof] = ACTIONS(1367), + [anon_sym_DOLLARqnameof] = ACTIONS(1367), + [anon_sym_DOLLARvaconst] = ACTIONS(1367), + [anon_sym_DOLLARvaarg] = ACTIONS(1367), + [anon_sym_DOLLARvaref] = ACTIONS(1367), + [anon_sym_DOLLARvaexpr] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_null] = ACTIONS(1367), + [anon_sym_DOLLARvacount] = ACTIONS(1367), + [anon_sym_DOLLAReval] = ACTIONS(1367), + [anon_sym_DOLLARis_const] = ACTIONS(1367), + [anon_sym_DOLLARsizeof] = ACTIONS(1367), + [anon_sym_DOLLARstringify] = ACTIONS(1367), + [anon_sym_DOLLARappend] = ACTIONS(1367), + [anon_sym_DOLLARconcat] = ACTIONS(1367), + [anon_sym_DOLLARdefined] = ACTIONS(1367), + [anon_sym_DOLLARembed] = ACTIONS(1367), + [anon_sym_DOLLARand] = ACTIONS(1367), + [anon_sym_DOLLARor] = ACTIONS(1367), + [anon_sym_DOLLARfeature] = ACTIONS(1367), + [anon_sym_DOLLARassignable] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1369), + [anon_sym_typeid] = ACTIONS(1367), + [anon_sym_LBRACE_PIPE] = ACTIONS(1369), + [anon_sym_PIPE_RBRACE] = ACTIONS(1369), + [anon_sym_void] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_ichar] = ACTIONS(1367), + [anon_sym_short] = ACTIONS(1367), + [anon_sym_ushort] = ACTIONS(1367), + [anon_sym_uint] = ACTIONS(1367), + [anon_sym_long] = ACTIONS(1367), + [anon_sym_ulong] = ACTIONS(1367), + [anon_sym_int128] = ACTIONS(1367), + [anon_sym_uint128] = ACTIONS(1367), + [anon_sym_float] = ACTIONS(1367), + [anon_sym_double] = ACTIONS(1367), + [anon_sym_float16] = ACTIONS(1367), + [anon_sym_bfloat16] = ACTIONS(1367), + [anon_sym_float128] = ACTIONS(1367), + [anon_sym_iptr] = ACTIONS(1367), + [anon_sym_uptr] = ACTIONS(1367), + [anon_sym_isz] = ACTIONS(1367), + [anon_sym_usz] = ACTIONS(1367), + [anon_sym_anyfault] = ACTIONS(1367), + [anon_sym_any] = ACTIONS(1367), + [anon_sym_DOLLARtypeof] = ACTIONS(1367), + [anon_sym_DOLLARtypefrom] = ACTIONS(1367), + [anon_sym_DOLLARevaltype] = ACTIONS(1367), + [anon_sym_DOLLARvatype] = ACTIONS(1367), + [sym_real_literal] = ACTIONS(1369), }, [341] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(341), [sym_doc_comment] = STATE(341), [sym_block_comment] = STATE(341), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(1530), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(989), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1084), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1084), - [sym_binary_expr] = STATE(1084), - [sym_call_expr] = STATE(989), - [sym_update_expr] = STATE(989), - [sym_rethrow_expr] = STATE(989), - [sym_trailing_generic_expr] = STATE(989), - [sym_subscript_expr] = STATE(989), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), + [sym_else_part] = STATE(428), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARcase] = ACTIONS(1357), + [anon_sym_DOLLARdefault] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARendswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), }, [342] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(342), [sym_doc_comment] = STATE(342), [sym_block_comment] = STATE(342), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1126), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1373), + [sym_integer_literal] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [anon_sym_BQUOTE] = ACTIONS(1375), + [sym_bytes_literal] = ACTIONS(1375), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1373), + [sym_at_ident] = ACTIONS(1375), + [sym_hash_ident] = ACTIONS(1375), + [sym_type_ident] = ACTIONS(1375), + [sym_ct_type_ident] = ACTIONS(1375), + [sym_const_ident] = ACTIONS(1373), + [sym_builtin] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_tlocal] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_fn] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_var] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [anon_sym_defer] = ACTIONS(1373), + [anon_sym_assert] = ACTIONS(1373), + [anon_sym_case] = ACTIONS(1373), + [anon_sym_default] = ACTIONS(1373), + [anon_sym_nextcase] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1373), + [anon_sym_AMP_AMP] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_foreach] = ACTIONS(1373), + [anon_sym_foreach_r] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(1373), + [anon_sym_int] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_asm] = ACTIONS(1373), + [anon_sym_DOLLARassert] = ACTIONS(1373), + [anon_sym_DOLLARerror] = ACTIONS(1373), + [anon_sym_DOLLARecho] = ACTIONS(1373), + [anon_sym_DOLLARif] = ACTIONS(1373), + [anon_sym_DOLLARswitch] = ACTIONS(1373), + [anon_sym_DOLLARfor] = ACTIONS(1373), + [anon_sym_DOLLARforeach] = ACTIONS(1373), + [anon_sym_DOLLARalignof] = ACTIONS(1373), + [anon_sym_DOLLARextnameof] = ACTIONS(1373), + [anon_sym_DOLLARnameof] = ACTIONS(1373), + [anon_sym_DOLLARoffsetof] = ACTIONS(1373), + [anon_sym_DOLLARqnameof] = ACTIONS(1373), + [anon_sym_DOLLARvaconst] = ACTIONS(1373), + [anon_sym_DOLLARvaarg] = ACTIONS(1373), + [anon_sym_DOLLARvaref] = ACTIONS(1373), + [anon_sym_DOLLARvaexpr] = ACTIONS(1373), + [anon_sym_true] = ACTIONS(1373), + [anon_sym_false] = ACTIONS(1373), + [anon_sym_null] = ACTIONS(1373), + [anon_sym_DOLLARvacount] = ACTIONS(1373), + [anon_sym_DOLLAReval] = ACTIONS(1373), + [anon_sym_DOLLARis_const] = ACTIONS(1373), + [anon_sym_DOLLARsizeof] = ACTIONS(1373), + [anon_sym_DOLLARstringify] = ACTIONS(1373), + [anon_sym_DOLLARappend] = ACTIONS(1373), + [anon_sym_DOLLARconcat] = ACTIONS(1373), + [anon_sym_DOLLARdefined] = ACTIONS(1373), + [anon_sym_DOLLARembed] = ACTIONS(1373), + [anon_sym_DOLLARand] = ACTIONS(1373), + [anon_sym_DOLLARor] = ACTIONS(1373), + [anon_sym_DOLLARfeature] = ACTIONS(1373), + [anon_sym_DOLLARassignable] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_typeid] = ACTIONS(1373), + [anon_sym_LBRACE_PIPE] = ACTIONS(1375), + [anon_sym_PIPE_RBRACE] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1373), + [anon_sym_bool] = ACTIONS(1373), + [anon_sym_char] = ACTIONS(1373), + [anon_sym_ichar] = ACTIONS(1373), + [anon_sym_short] = ACTIONS(1373), + [anon_sym_ushort] = ACTIONS(1373), + [anon_sym_uint] = ACTIONS(1373), + [anon_sym_long] = ACTIONS(1373), + [anon_sym_ulong] = ACTIONS(1373), + [anon_sym_int128] = ACTIONS(1373), + [anon_sym_uint128] = ACTIONS(1373), + [anon_sym_float] = ACTIONS(1373), + [anon_sym_double] = ACTIONS(1373), + [anon_sym_float16] = ACTIONS(1373), + [anon_sym_bfloat16] = ACTIONS(1373), + [anon_sym_float128] = ACTIONS(1373), + [anon_sym_iptr] = ACTIONS(1373), + [anon_sym_uptr] = ACTIONS(1373), + [anon_sym_isz] = ACTIONS(1373), + [anon_sym_usz] = ACTIONS(1373), + [anon_sym_anyfault] = ACTIONS(1373), + [anon_sym_any] = ACTIONS(1373), + [anon_sym_DOLLARtypeof] = ACTIONS(1373), + [anon_sym_DOLLARtypefrom] = ACTIONS(1373), + [anon_sym_DOLLARevaltype] = ACTIONS(1373), + [anon_sym_DOLLARvatype] = ACTIONS(1373), + [sym_real_literal] = ACTIONS(1375), }, [343] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(343), [sym_doc_comment] = STATE(343), [sym_block_comment] = STATE(343), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1119), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), + [sym_ident] = ACTIONS(1377), + [sym_integer_literal] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_BQUOTE] = ACTIONS(1379), + [sym_bytes_literal] = ACTIONS(1379), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), + [sym_ct_ident] = ACTIONS(1377), + [sym_at_ident] = ACTIONS(1379), + [sym_hash_ident] = ACTIONS(1379), + [sym_type_ident] = ACTIONS(1379), + [sym_ct_type_ident] = ACTIONS(1379), + [sym_const_ident] = ACTIONS(1377), + [sym_builtin] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1377), + [anon_sym_tlocal] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_fn] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_RBRACE] = ACTIONS(1379), + [anon_sym_const] = ACTIONS(1377), + [anon_sym_var] = ACTIONS(1377), + [anon_sym_return] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1377), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_defer] = ACTIONS(1377), + [anon_sym_assert] = ACTIONS(1377), + [anon_sym_case] = ACTIONS(1377), + [anon_sym_default] = ACTIONS(1377), + [anon_sym_nextcase] = ACTIONS(1377), + [anon_sym_switch] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1377), + [anon_sym_foreach] = ACTIONS(1377), + [anon_sym_foreach_r] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_do] = ACTIONS(1377), + [anon_sym_int] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_asm] = ACTIONS(1377), + [anon_sym_DOLLARassert] = ACTIONS(1377), + [anon_sym_DOLLARerror] = ACTIONS(1377), + [anon_sym_DOLLARecho] = ACTIONS(1377), + [anon_sym_DOLLARif] = ACTIONS(1377), + [anon_sym_DOLLARswitch] = ACTIONS(1377), + [anon_sym_DOLLARfor] = ACTIONS(1377), + [anon_sym_DOLLARforeach] = ACTIONS(1377), + [anon_sym_DOLLARalignof] = ACTIONS(1377), + [anon_sym_DOLLARextnameof] = ACTIONS(1377), + [anon_sym_DOLLARnameof] = ACTIONS(1377), + [anon_sym_DOLLARoffsetof] = ACTIONS(1377), + [anon_sym_DOLLARqnameof] = ACTIONS(1377), + [anon_sym_DOLLARvaconst] = ACTIONS(1377), + [anon_sym_DOLLARvaarg] = ACTIONS(1377), + [anon_sym_DOLLARvaref] = ACTIONS(1377), + [anon_sym_DOLLARvaexpr] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(1377), + [anon_sym_false] = ACTIONS(1377), + [anon_sym_null] = ACTIONS(1377), + [anon_sym_DOLLARvacount] = ACTIONS(1377), + [anon_sym_DOLLAReval] = ACTIONS(1377), + [anon_sym_DOLLARis_const] = ACTIONS(1377), + [anon_sym_DOLLARsizeof] = ACTIONS(1377), + [anon_sym_DOLLARstringify] = ACTIONS(1377), + [anon_sym_DOLLARappend] = ACTIONS(1377), + [anon_sym_DOLLARconcat] = ACTIONS(1377), + [anon_sym_DOLLARdefined] = ACTIONS(1377), + [anon_sym_DOLLARembed] = ACTIONS(1377), + [anon_sym_DOLLARand] = ACTIONS(1377), + [anon_sym_DOLLARor] = ACTIONS(1377), + [anon_sym_DOLLARfeature] = ACTIONS(1377), + [anon_sym_DOLLARassignable] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_typeid] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [anon_sym_PIPE_RBRACE] = ACTIONS(1379), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_bool] = ACTIONS(1377), + [anon_sym_char] = ACTIONS(1377), + [anon_sym_ichar] = ACTIONS(1377), + [anon_sym_short] = ACTIONS(1377), + [anon_sym_ushort] = ACTIONS(1377), + [anon_sym_uint] = ACTIONS(1377), + [anon_sym_long] = ACTIONS(1377), + [anon_sym_ulong] = ACTIONS(1377), + [anon_sym_int128] = ACTIONS(1377), + [anon_sym_uint128] = ACTIONS(1377), + [anon_sym_float] = ACTIONS(1377), + [anon_sym_double] = ACTIONS(1377), + [anon_sym_float16] = ACTIONS(1377), + [anon_sym_bfloat16] = ACTIONS(1377), + [anon_sym_float128] = ACTIONS(1377), + [anon_sym_iptr] = ACTIONS(1377), + [anon_sym_uptr] = ACTIONS(1377), + [anon_sym_isz] = ACTIONS(1377), + [anon_sym_usz] = ACTIONS(1377), + [anon_sym_anyfault] = ACTIONS(1377), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_DOLLARtypeof] = ACTIONS(1377), + [anon_sym_DOLLARtypefrom] = ACTIONS(1377), + [anon_sym_DOLLARevaltype] = ACTIONS(1377), + [anon_sym_DOLLARvatype] = ACTIONS(1377), + [sym_real_literal] = ACTIONS(1379), }, [344] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(344), [sym_doc_comment] = STATE(344), [sym_block_comment] = STATE(344), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1055), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [sym_bytes_literal] = ACTIONS(1369), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1367), + [sym_at_ident] = ACTIONS(1369), + [sym_hash_ident] = ACTIONS(1369), + [sym_type_ident] = ACTIONS(1369), + [sym_ct_type_ident] = ACTIONS(1369), + [sym_const_ident] = ACTIONS(1367), + [sym_builtin] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_tlocal] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_var] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_defer] = ACTIONS(1367), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_nextcase] = ACTIONS(1367), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_else] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_foreach] = ACTIONS(1367), + [anon_sym_foreach_r] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1367), + [anon_sym_DOLLARassert] = ACTIONS(1367), + [anon_sym_DOLLARerror] = ACTIONS(1367), + [anon_sym_DOLLARecho] = ACTIONS(1367), + [anon_sym_DOLLARif] = ACTIONS(1367), + [anon_sym_DOLLARcase] = ACTIONS(1367), + [anon_sym_DOLLARdefault] = ACTIONS(1367), + [anon_sym_DOLLARswitch] = ACTIONS(1367), + [anon_sym_DOLLARendswitch] = ACTIONS(1367), + [anon_sym_DOLLARfor] = ACTIONS(1367), + [anon_sym_DOLLARforeach] = ACTIONS(1367), + [anon_sym_DOLLARalignof] = ACTIONS(1367), + [anon_sym_DOLLARextnameof] = ACTIONS(1367), + [anon_sym_DOLLARnameof] = ACTIONS(1367), + [anon_sym_DOLLARoffsetof] = ACTIONS(1367), + [anon_sym_DOLLARqnameof] = ACTIONS(1367), + [anon_sym_DOLLARvaconst] = ACTIONS(1367), + [anon_sym_DOLLARvaarg] = ACTIONS(1367), + [anon_sym_DOLLARvaref] = ACTIONS(1367), + [anon_sym_DOLLARvaexpr] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_null] = ACTIONS(1367), + [anon_sym_DOLLARvacount] = ACTIONS(1367), + [anon_sym_DOLLAReval] = ACTIONS(1367), + [anon_sym_DOLLARis_const] = ACTIONS(1367), + [anon_sym_DOLLARsizeof] = ACTIONS(1367), + [anon_sym_DOLLARstringify] = ACTIONS(1367), + [anon_sym_DOLLARappend] = ACTIONS(1367), + [anon_sym_DOLLARconcat] = ACTIONS(1367), + [anon_sym_DOLLARdefined] = ACTIONS(1367), + [anon_sym_DOLLARembed] = ACTIONS(1367), + [anon_sym_DOLLARand] = ACTIONS(1367), + [anon_sym_DOLLARor] = ACTIONS(1367), + [anon_sym_DOLLARfeature] = ACTIONS(1367), + [anon_sym_DOLLARassignable] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1369), + [anon_sym_typeid] = ACTIONS(1367), + [anon_sym_LBRACE_PIPE] = ACTIONS(1369), + [anon_sym_void] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_ichar] = ACTIONS(1367), + [anon_sym_short] = ACTIONS(1367), + [anon_sym_ushort] = ACTIONS(1367), + [anon_sym_uint] = ACTIONS(1367), + [anon_sym_long] = ACTIONS(1367), + [anon_sym_ulong] = ACTIONS(1367), + [anon_sym_int128] = ACTIONS(1367), + [anon_sym_uint128] = ACTIONS(1367), + [anon_sym_float] = ACTIONS(1367), + [anon_sym_double] = ACTIONS(1367), + [anon_sym_float16] = ACTIONS(1367), + [anon_sym_bfloat16] = ACTIONS(1367), + [anon_sym_float128] = ACTIONS(1367), + [anon_sym_iptr] = ACTIONS(1367), + [anon_sym_uptr] = ACTIONS(1367), + [anon_sym_isz] = ACTIONS(1367), + [anon_sym_usz] = ACTIONS(1367), + [anon_sym_anyfault] = ACTIONS(1367), + [anon_sym_any] = ACTIONS(1367), + [anon_sym_DOLLARtypeof] = ACTIONS(1367), + [anon_sym_DOLLARtypefrom] = ACTIONS(1367), + [anon_sym_DOLLARevaltype] = ACTIONS(1367), + [anon_sym_DOLLARvatype] = ACTIONS(1367), + [sym_real_literal] = ACTIONS(1369), }, [345] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(345), [sym_doc_comment] = STATE(345), [sym_block_comment] = STATE(345), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1122), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(1558), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(1012), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1101), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1101), - [sym_binary_expr] = STATE(1101), - [sym_call_expr] = STATE(1012), - [sym_update_expr] = STATE(1012), - [sym_rethrow_expr] = STATE(1012), - [sym_trailing_generic_expr] = STATE(1012), - [sym_subscript_expr] = STATE(1012), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), + [sym_ident] = ACTIONS(1381), + [sym_integer_literal] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_BQUOTE] = ACTIONS(1383), + [sym_bytes_literal] = ACTIONS(1383), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), + [sym_ct_ident] = ACTIONS(1381), + [sym_at_ident] = ACTIONS(1383), + [sym_hash_ident] = ACTIONS(1383), + [sym_type_ident] = ACTIONS(1383), + [sym_ct_type_ident] = ACTIONS(1383), + [sym_const_ident] = ACTIONS(1381), + [sym_builtin] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_tlocal] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1383), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_var] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_defer] = ACTIONS(1381), + [anon_sym_assert] = ACTIONS(1381), + [anon_sym_case] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1381), + [anon_sym_nextcase] = ACTIONS(1381), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_foreach] = ACTIONS(1381), + [anon_sym_foreach_r] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_int] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_asm] = ACTIONS(1381), + [anon_sym_DOLLARassert] = ACTIONS(1381), + [anon_sym_DOLLARerror] = ACTIONS(1381), + [anon_sym_DOLLARecho] = ACTIONS(1381), + [anon_sym_DOLLARif] = ACTIONS(1381), + [anon_sym_DOLLARswitch] = ACTIONS(1381), + [anon_sym_DOLLARfor] = ACTIONS(1381), + [anon_sym_DOLLARforeach] = ACTIONS(1381), + [anon_sym_DOLLARalignof] = ACTIONS(1381), + [anon_sym_DOLLARextnameof] = ACTIONS(1381), + [anon_sym_DOLLARnameof] = ACTIONS(1381), + [anon_sym_DOLLARoffsetof] = ACTIONS(1381), + [anon_sym_DOLLARqnameof] = ACTIONS(1381), + [anon_sym_DOLLARvaconst] = ACTIONS(1381), + [anon_sym_DOLLARvaarg] = ACTIONS(1381), + [anon_sym_DOLLARvaref] = ACTIONS(1381), + [anon_sym_DOLLARvaexpr] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_DOLLARvacount] = ACTIONS(1381), + [anon_sym_DOLLAReval] = ACTIONS(1381), + [anon_sym_DOLLARis_const] = ACTIONS(1381), + [anon_sym_DOLLARsizeof] = ACTIONS(1381), + [anon_sym_DOLLARstringify] = ACTIONS(1381), + [anon_sym_DOLLARappend] = ACTIONS(1381), + [anon_sym_DOLLARconcat] = ACTIONS(1381), + [anon_sym_DOLLARdefined] = ACTIONS(1381), + [anon_sym_DOLLARembed] = ACTIONS(1381), + [anon_sym_DOLLARand] = ACTIONS(1381), + [anon_sym_DOLLARor] = ACTIONS(1381), + [anon_sym_DOLLARfeature] = ACTIONS(1381), + [anon_sym_DOLLARassignable] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_typeid] = ACTIONS(1381), + [anon_sym_LBRACE_PIPE] = ACTIONS(1383), + [anon_sym_PIPE_RBRACE] = ACTIONS(1383), + [anon_sym_void] = ACTIONS(1381), + [anon_sym_bool] = ACTIONS(1381), + [anon_sym_char] = ACTIONS(1381), + [anon_sym_ichar] = ACTIONS(1381), + [anon_sym_short] = ACTIONS(1381), + [anon_sym_ushort] = ACTIONS(1381), + [anon_sym_uint] = ACTIONS(1381), + [anon_sym_long] = ACTIONS(1381), + [anon_sym_ulong] = ACTIONS(1381), + [anon_sym_int128] = ACTIONS(1381), + [anon_sym_uint128] = ACTIONS(1381), + [anon_sym_float] = ACTIONS(1381), + [anon_sym_double] = ACTIONS(1381), + [anon_sym_float16] = ACTIONS(1381), + [anon_sym_bfloat16] = ACTIONS(1381), + [anon_sym_float128] = ACTIONS(1381), + [anon_sym_iptr] = ACTIONS(1381), + [anon_sym_uptr] = ACTIONS(1381), + [anon_sym_isz] = ACTIONS(1381), + [anon_sym_usz] = ACTIONS(1381), + [anon_sym_anyfault] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_DOLLARtypeof] = ACTIONS(1381), + [anon_sym_DOLLARtypefrom] = ACTIONS(1381), + [anon_sym_DOLLARevaltype] = ACTIONS(1381), + [anon_sym_DOLLARvatype] = ACTIONS(1381), + [sym_real_literal] = ACTIONS(1383), }, [346] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(346), [sym_doc_comment] = STATE(346), [sym_block_comment] = STATE(346), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1148), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1363), + [sym_integer_literal] = ACTIONS(1365), + [anon_sym_SQUOTE] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(1365), + [anon_sym_BQUOTE] = ACTIONS(1365), + [sym_bytes_literal] = ACTIONS(1365), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1363), + [sym_at_ident] = ACTIONS(1365), + [sym_hash_ident] = ACTIONS(1365), + [sym_type_ident] = ACTIONS(1365), + [sym_ct_type_ident] = ACTIONS(1365), + [sym_const_ident] = ACTIONS(1363), + [sym_builtin] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_tlocal] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_var] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_defer] = ACTIONS(1363), + [anon_sym_assert] = ACTIONS(1363), + [anon_sym_nextcase] = ACTIONS(1363), + [anon_sym_switch] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_else] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_foreach] = ACTIONS(1363), + [anon_sym_foreach_r] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_int] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1363), + [anon_sym_DOLLARassert] = ACTIONS(1363), + [anon_sym_DOLLARerror] = ACTIONS(1363), + [anon_sym_DOLLARecho] = ACTIONS(1363), + [anon_sym_DOLLARif] = ACTIONS(1363), + [anon_sym_DOLLARcase] = ACTIONS(1363), + [anon_sym_DOLLARdefault] = ACTIONS(1363), + [anon_sym_DOLLARswitch] = ACTIONS(1363), + [anon_sym_DOLLARendswitch] = ACTIONS(1363), + [anon_sym_DOLLARfor] = ACTIONS(1363), + [anon_sym_DOLLARforeach] = ACTIONS(1363), + [anon_sym_DOLLARalignof] = ACTIONS(1363), + [anon_sym_DOLLARextnameof] = ACTIONS(1363), + [anon_sym_DOLLARnameof] = ACTIONS(1363), + [anon_sym_DOLLARoffsetof] = ACTIONS(1363), + [anon_sym_DOLLARqnameof] = ACTIONS(1363), + [anon_sym_DOLLARvaconst] = ACTIONS(1363), + [anon_sym_DOLLARvaarg] = ACTIONS(1363), + [anon_sym_DOLLARvaref] = ACTIONS(1363), + [anon_sym_DOLLARvaexpr] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_null] = ACTIONS(1363), + [anon_sym_DOLLARvacount] = ACTIONS(1363), + [anon_sym_DOLLAReval] = ACTIONS(1363), + [anon_sym_DOLLARis_const] = ACTIONS(1363), + [anon_sym_DOLLARsizeof] = ACTIONS(1363), + [anon_sym_DOLLARstringify] = ACTIONS(1363), + [anon_sym_DOLLARappend] = ACTIONS(1363), + [anon_sym_DOLLARconcat] = ACTIONS(1363), + [anon_sym_DOLLARdefined] = ACTIONS(1363), + [anon_sym_DOLLARembed] = ACTIONS(1363), + [anon_sym_DOLLARand] = ACTIONS(1363), + [anon_sym_DOLLARor] = ACTIONS(1363), + [anon_sym_DOLLARfeature] = ACTIONS(1363), + [anon_sym_DOLLARassignable] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_typeid] = ACTIONS(1363), + [anon_sym_LBRACE_PIPE] = ACTIONS(1365), + [anon_sym_void] = ACTIONS(1363), + [anon_sym_bool] = ACTIONS(1363), + [anon_sym_char] = ACTIONS(1363), + [anon_sym_ichar] = ACTIONS(1363), + [anon_sym_short] = ACTIONS(1363), + [anon_sym_ushort] = ACTIONS(1363), + [anon_sym_uint] = ACTIONS(1363), + [anon_sym_long] = ACTIONS(1363), + [anon_sym_ulong] = ACTIONS(1363), + [anon_sym_int128] = ACTIONS(1363), + [anon_sym_uint128] = ACTIONS(1363), + [anon_sym_float] = ACTIONS(1363), + [anon_sym_double] = ACTIONS(1363), + [anon_sym_float16] = ACTIONS(1363), + [anon_sym_bfloat16] = ACTIONS(1363), + [anon_sym_float128] = ACTIONS(1363), + [anon_sym_iptr] = ACTIONS(1363), + [anon_sym_uptr] = ACTIONS(1363), + [anon_sym_isz] = ACTIONS(1363), + [anon_sym_usz] = ACTIONS(1363), + [anon_sym_anyfault] = ACTIONS(1363), + [anon_sym_any] = ACTIONS(1363), + [anon_sym_DOLLARtypeof] = ACTIONS(1363), + [anon_sym_DOLLARtypefrom] = ACTIONS(1363), + [anon_sym_DOLLARevaltype] = ACTIONS(1363), + [anon_sym_DOLLARvatype] = ACTIONS(1363), + [sym_real_literal] = ACTIONS(1365), }, [347] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(347), [sym_doc_comment] = STATE(347), [sym_block_comment] = STATE(347), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1163), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), + [sym_ident] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1387), + [sym_bytes_literal] = ACTIONS(1387), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), + [sym_ct_ident] = ACTIONS(1385), + [sym_at_ident] = ACTIONS(1387), + [sym_hash_ident] = ACTIONS(1387), + [sym_type_ident] = ACTIONS(1387), + [sym_ct_type_ident] = ACTIONS(1387), + [sym_const_ident] = ACTIONS(1385), + [sym_builtin] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_static] = ACTIONS(1385), + [anon_sym_tlocal] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_fn] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_var] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1385), + [anon_sym_continue] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1385), + [anon_sym_defer] = ACTIONS(1385), + [anon_sym_assert] = ACTIONS(1385), + [anon_sym_case] = ACTIONS(1385), + [anon_sym_default] = ACTIONS(1385), + [anon_sym_nextcase] = ACTIONS(1385), + [anon_sym_switch] = ACTIONS(1385), + [anon_sym_AMP_AMP] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1385), + [anon_sym_foreach] = ACTIONS(1385), + [anon_sym_foreach_r] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(1385), + [anon_sym_int] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_asm] = ACTIONS(1385), + [anon_sym_DOLLARassert] = ACTIONS(1385), + [anon_sym_DOLLARerror] = ACTIONS(1385), + [anon_sym_DOLLARecho] = ACTIONS(1385), + [anon_sym_DOLLARif] = ACTIONS(1385), + [anon_sym_DOLLARswitch] = ACTIONS(1385), + [anon_sym_DOLLARfor] = ACTIONS(1385), + [anon_sym_DOLLARforeach] = ACTIONS(1385), + [anon_sym_DOLLARalignof] = ACTIONS(1385), + [anon_sym_DOLLARextnameof] = ACTIONS(1385), + [anon_sym_DOLLARnameof] = ACTIONS(1385), + [anon_sym_DOLLARoffsetof] = ACTIONS(1385), + [anon_sym_DOLLARqnameof] = ACTIONS(1385), + [anon_sym_DOLLARvaconst] = ACTIONS(1385), + [anon_sym_DOLLARvaarg] = ACTIONS(1385), + [anon_sym_DOLLARvaref] = ACTIONS(1385), + [anon_sym_DOLLARvaexpr] = ACTIONS(1385), + [anon_sym_true] = ACTIONS(1385), + [anon_sym_false] = ACTIONS(1385), + [anon_sym_null] = ACTIONS(1385), + [anon_sym_DOLLARvacount] = ACTIONS(1385), + [anon_sym_DOLLAReval] = ACTIONS(1385), + [anon_sym_DOLLARis_const] = ACTIONS(1385), + [anon_sym_DOLLARsizeof] = ACTIONS(1385), + [anon_sym_DOLLARstringify] = ACTIONS(1385), + [anon_sym_DOLLARappend] = ACTIONS(1385), + [anon_sym_DOLLARconcat] = ACTIONS(1385), + [anon_sym_DOLLARdefined] = ACTIONS(1385), + [anon_sym_DOLLARembed] = ACTIONS(1385), + [anon_sym_DOLLARand] = ACTIONS(1385), + [anon_sym_DOLLARor] = ACTIONS(1385), + [anon_sym_DOLLARfeature] = ACTIONS(1385), + [anon_sym_DOLLARassignable] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_typeid] = ACTIONS(1385), + [anon_sym_LBRACE_PIPE] = ACTIONS(1387), + [anon_sym_PIPE_RBRACE] = ACTIONS(1387), + [anon_sym_void] = ACTIONS(1385), + [anon_sym_bool] = ACTIONS(1385), + [anon_sym_char] = ACTIONS(1385), + [anon_sym_ichar] = ACTIONS(1385), + [anon_sym_short] = ACTIONS(1385), + [anon_sym_ushort] = ACTIONS(1385), + [anon_sym_uint] = ACTIONS(1385), + [anon_sym_long] = ACTIONS(1385), + [anon_sym_ulong] = ACTIONS(1385), + [anon_sym_int128] = ACTIONS(1385), + [anon_sym_uint128] = ACTIONS(1385), + [anon_sym_float] = ACTIONS(1385), + [anon_sym_double] = ACTIONS(1385), + [anon_sym_float16] = ACTIONS(1385), + [anon_sym_bfloat16] = ACTIONS(1385), + [anon_sym_float128] = ACTIONS(1385), + [anon_sym_iptr] = ACTIONS(1385), + [anon_sym_uptr] = ACTIONS(1385), + [anon_sym_isz] = ACTIONS(1385), + [anon_sym_usz] = ACTIONS(1385), + [anon_sym_anyfault] = ACTIONS(1385), + [anon_sym_any] = ACTIONS(1385), + [anon_sym_DOLLARtypeof] = ACTIONS(1385), + [anon_sym_DOLLARtypefrom] = ACTIONS(1385), + [anon_sym_DOLLARevaltype] = ACTIONS(1385), + [anon_sym_DOLLARvatype] = ACTIONS(1385), + [sym_real_literal] = ACTIONS(1387), }, [348] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(348), [sym_doc_comment] = STATE(348), [sym_block_comment] = STATE(348), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1047), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_case] = ACTIONS(1357), + [anon_sym_default] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_PIPE_RBRACE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), }, [349] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(349), [sym_doc_comment] = STATE(349), [sym_block_comment] = STATE(349), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1059), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), + [sym_ident] = ACTIONS(1389), + [sym_integer_literal] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [anon_sym_BQUOTE] = ACTIONS(1391), + [sym_bytes_literal] = ACTIONS(1391), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), + [sym_ct_ident] = ACTIONS(1389), + [sym_at_ident] = ACTIONS(1391), + [sym_hash_ident] = ACTIONS(1391), + [sym_type_ident] = ACTIONS(1391), + [sym_ct_type_ident] = ACTIONS(1391), + [sym_const_ident] = ACTIONS(1389), + [sym_builtin] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_tlocal] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_fn] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_var] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_defer] = ACTIONS(1389), + [anon_sym_assert] = ACTIONS(1389), + [anon_sym_case] = ACTIONS(1389), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_nextcase] = ACTIONS(1389), + [anon_sym_switch] = ACTIONS(1389), + [anon_sym_AMP_AMP] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_foreach] = ACTIONS(1389), + [anon_sym_foreach_r] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_do] = ACTIONS(1389), + [anon_sym_int] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_asm] = ACTIONS(1389), + [anon_sym_DOLLARassert] = ACTIONS(1389), + [anon_sym_DOLLARerror] = ACTIONS(1389), + [anon_sym_DOLLARecho] = ACTIONS(1389), + [anon_sym_DOLLARif] = ACTIONS(1389), + [anon_sym_DOLLARswitch] = ACTIONS(1389), + [anon_sym_DOLLARfor] = ACTIONS(1389), + [anon_sym_DOLLARforeach] = ACTIONS(1389), + [anon_sym_DOLLARalignof] = ACTIONS(1389), + [anon_sym_DOLLARextnameof] = ACTIONS(1389), + [anon_sym_DOLLARnameof] = ACTIONS(1389), + [anon_sym_DOLLARoffsetof] = ACTIONS(1389), + [anon_sym_DOLLARqnameof] = ACTIONS(1389), + [anon_sym_DOLLARvaconst] = ACTIONS(1389), + [anon_sym_DOLLARvaarg] = ACTIONS(1389), + [anon_sym_DOLLARvaref] = ACTIONS(1389), + [anon_sym_DOLLARvaexpr] = ACTIONS(1389), + [anon_sym_true] = ACTIONS(1389), + [anon_sym_false] = ACTIONS(1389), + [anon_sym_null] = ACTIONS(1389), + [anon_sym_DOLLARvacount] = ACTIONS(1389), + [anon_sym_DOLLAReval] = ACTIONS(1389), + [anon_sym_DOLLARis_const] = ACTIONS(1389), + [anon_sym_DOLLARsizeof] = ACTIONS(1389), + [anon_sym_DOLLARstringify] = ACTIONS(1389), + [anon_sym_DOLLARappend] = ACTIONS(1389), + [anon_sym_DOLLARconcat] = ACTIONS(1389), + [anon_sym_DOLLARdefined] = ACTIONS(1389), + [anon_sym_DOLLARembed] = ACTIONS(1389), + [anon_sym_DOLLARand] = ACTIONS(1389), + [anon_sym_DOLLARor] = ACTIONS(1389), + [anon_sym_DOLLARfeature] = ACTIONS(1389), + [anon_sym_DOLLARassignable] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1391), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_typeid] = ACTIONS(1389), + [anon_sym_LBRACE_PIPE] = ACTIONS(1391), + [anon_sym_PIPE_RBRACE] = ACTIONS(1391), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_bool] = ACTIONS(1389), + [anon_sym_char] = ACTIONS(1389), + [anon_sym_ichar] = ACTIONS(1389), + [anon_sym_short] = ACTIONS(1389), + [anon_sym_ushort] = ACTIONS(1389), + [anon_sym_uint] = ACTIONS(1389), + [anon_sym_long] = ACTIONS(1389), + [anon_sym_ulong] = ACTIONS(1389), + [anon_sym_int128] = ACTIONS(1389), + [anon_sym_uint128] = ACTIONS(1389), + [anon_sym_float] = ACTIONS(1389), + [anon_sym_double] = ACTIONS(1389), + [anon_sym_float16] = ACTIONS(1389), + [anon_sym_bfloat16] = ACTIONS(1389), + [anon_sym_float128] = ACTIONS(1389), + [anon_sym_iptr] = ACTIONS(1389), + [anon_sym_uptr] = ACTIONS(1389), + [anon_sym_isz] = ACTIONS(1389), + [anon_sym_usz] = ACTIONS(1389), + [anon_sym_anyfault] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_DOLLARtypeof] = ACTIONS(1389), + [anon_sym_DOLLARtypefrom] = ACTIONS(1389), + [anon_sym_DOLLARevaltype] = ACTIONS(1389), + [anon_sym_DOLLARvatype] = ACTIONS(1389), + [sym_real_literal] = ACTIONS(1391), }, [350] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(350), [sym_doc_comment] = STATE(350), [sym_block_comment] = STATE(350), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1075), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(934), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1004), - [sym_lambda_expr] = STATE(1004), - [sym_elvis_orelse_expr] = STATE(1004), - [sym_suffix_expr] = STATE(1004), - [sym_cast_expr] = STATE(993), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(993), - [sym_binary_expr] = STATE(993), - [sym_call_expr] = STATE(934), - [sym_update_expr] = STATE(934), - [sym_rethrow_expr] = STATE(934), - [sym_trailing_generic_expr] = STATE(934), - [sym_subscript_expr] = STATE(934), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), + [sym_ident] = ACTIONS(1393), + [sym_integer_literal] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1395), + [anon_sym_BQUOTE] = ACTIONS(1395), + [sym_bytes_literal] = ACTIONS(1395), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), + [sym_ct_ident] = ACTIONS(1393), + [sym_at_ident] = ACTIONS(1395), + [sym_hash_ident] = ACTIONS(1395), + [sym_type_ident] = ACTIONS(1395), + [sym_ct_type_ident] = ACTIONS(1395), + [sym_const_ident] = ACTIONS(1393), + [sym_builtin] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1393), + [anon_sym_tlocal] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_fn] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_var] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1393), + [anon_sym_continue] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1393), + [anon_sym_defer] = ACTIONS(1393), + [anon_sym_assert] = ACTIONS(1393), + [anon_sym_case] = ACTIONS(1393), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_nextcase] = ACTIONS(1393), + [anon_sym_switch] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_foreach] = ACTIONS(1393), + [anon_sym_foreach_r] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_do] = ACTIONS(1393), + [anon_sym_int] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_asm] = ACTIONS(1393), + [anon_sym_DOLLARassert] = ACTIONS(1393), + [anon_sym_DOLLARerror] = ACTIONS(1393), + [anon_sym_DOLLARecho] = ACTIONS(1393), + [anon_sym_DOLLARif] = ACTIONS(1393), + [anon_sym_DOLLARswitch] = ACTIONS(1393), + [anon_sym_DOLLARfor] = ACTIONS(1393), + [anon_sym_DOLLARforeach] = ACTIONS(1393), + [anon_sym_DOLLARalignof] = ACTIONS(1393), + [anon_sym_DOLLARextnameof] = ACTIONS(1393), + [anon_sym_DOLLARnameof] = ACTIONS(1393), + [anon_sym_DOLLARoffsetof] = ACTIONS(1393), + [anon_sym_DOLLARqnameof] = ACTIONS(1393), + [anon_sym_DOLLARvaconst] = ACTIONS(1393), + [anon_sym_DOLLARvaarg] = ACTIONS(1393), + [anon_sym_DOLLARvaref] = ACTIONS(1393), + [anon_sym_DOLLARvaexpr] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(1393), + [anon_sym_false] = ACTIONS(1393), + [anon_sym_null] = ACTIONS(1393), + [anon_sym_DOLLARvacount] = ACTIONS(1393), + [anon_sym_DOLLAReval] = ACTIONS(1393), + [anon_sym_DOLLARis_const] = ACTIONS(1393), + [anon_sym_DOLLARsizeof] = ACTIONS(1393), + [anon_sym_DOLLARstringify] = ACTIONS(1393), + [anon_sym_DOLLARappend] = ACTIONS(1393), + [anon_sym_DOLLARconcat] = ACTIONS(1393), + [anon_sym_DOLLARdefined] = ACTIONS(1393), + [anon_sym_DOLLARembed] = ACTIONS(1393), + [anon_sym_DOLLARand] = ACTIONS(1393), + [anon_sym_DOLLARor] = ACTIONS(1393), + [anon_sym_DOLLARfeature] = ACTIONS(1393), + [anon_sym_DOLLARassignable] = ACTIONS(1393), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_typeid] = ACTIONS(1393), + [anon_sym_LBRACE_PIPE] = ACTIONS(1395), + [anon_sym_PIPE_RBRACE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1393), + [anon_sym_bool] = ACTIONS(1393), + [anon_sym_char] = ACTIONS(1393), + [anon_sym_ichar] = ACTIONS(1393), + [anon_sym_short] = ACTIONS(1393), + [anon_sym_ushort] = ACTIONS(1393), + [anon_sym_uint] = ACTIONS(1393), + [anon_sym_long] = ACTIONS(1393), + [anon_sym_ulong] = ACTIONS(1393), + [anon_sym_int128] = ACTIONS(1393), + [anon_sym_uint128] = ACTIONS(1393), + [anon_sym_float] = ACTIONS(1393), + [anon_sym_double] = ACTIONS(1393), + [anon_sym_float16] = ACTIONS(1393), + [anon_sym_bfloat16] = ACTIONS(1393), + [anon_sym_float128] = ACTIONS(1393), + [anon_sym_iptr] = ACTIONS(1393), + [anon_sym_uptr] = ACTIONS(1393), + [anon_sym_isz] = ACTIONS(1393), + [anon_sym_usz] = ACTIONS(1393), + [anon_sym_anyfault] = ACTIONS(1393), + [anon_sym_any] = ACTIONS(1393), + [anon_sym_DOLLARtypeof] = ACTIONS(1393), + [anon_sym_DOLLARtypefrom] = ACTIONS(1393), + [anon_sym_DOLLARevaltype] = ACTIONS(1393), + [anon_sym_DOLLARvatype] = ACTIONS(1393), + [sym_real_literal] = ACTIONS(1395), }, [351] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(351), [sym_doc_comment] = STATE(351), [sym_block_comment] = STATE(351), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1178), - [sym__constant_expr] = STATE(1548), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(992), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1099), - [sym_lambda_expr] = STATE(1099), - [sym_elvis_orelse_expr] = STATE(1099), - [sym_suffix_expr] = STATE(1099), - [sym_cast_expr] = STATE(1096), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1096), - [sym_binary_expr] = STATE(1096), - [sym_call_expr] = STATE(992), - [sym_update_expr] = STATE(992), - [sym_rethrow_expr] = STATE(992), - [sym_trailing_generic_expr] = STATE(992), - [sym_subscript_expr] = STATE(992), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), - }, - [352] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), - [sym_line_comment] = STATE(352), - [sym_doc_comment] = STATE(352), - [sym_block_comment] = STATE(352), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1564), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), + [sym_ident] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [anon_sym_BQUOTE] = ACTIONS(1399), + [sym_bytes_literal] = ACTIONS(1399), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), + [sym_ct_ident] = ACTIONS(1397), + [sym_at_ident] = ACTIONS(1399), + [sym_hash_ident] = ACTIONS(1399), + [sym_type_ident] = ACTIONS(1399), + [sym_ct_type_ident] = ACTIONS(1399), + [sym_const_ident] = ACTIONS(1397), + [sym_builtin] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_tlocal] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_fn] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_var] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_defer] = ACTIONS(1397), + [anon_sym_assert] = ACTIONS(1397), + [anon_sym_case] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1397), + [anon_sym_nextcase] = ACTIONS(1397), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_AMP_AMP] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_foreach] = ACTIONS(1397), + [anon_sym_foreach_r] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_do] = ACTIONS(1397), + [anon_sym_int] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_asm] = ACTIONS(1397), + [anon_sym_DOLLARassert] = ACTIONS(1397), + [anon_sym_DOLLARerror] = ACTIONS(1397), + [anon_sym_DOLLARecho] = ACTIONS(1397), + [anon_sym_DOLLARif] = ACTIONS(1397), + [anon_sym_DOLLARswitch] = ACTIONS(1397), + [anon_sym_DOLLARfor] = ACTIONS(1397), + [anon_sym_DOLLARforeach] = ACTIONS(1397), + [anon_sym_DOLLARalignof] = ACTIONS(1397), + [anon_sym_DOLLARextnameof] = ACTIONS(1397), + [anon_sym_DOLLARnameof] = ACTIONS(1397), + [anon_sym_DOLLARoffsetof] = ACTIONS(1397), + [anon_sym_DOLLARqnameof] = ACTIONS(1397), + [anon_sym_DOLLARvaconst] = ACTIONS(1397), + [anon_sym_DOLLARvaarg] = ACTIONS(1397), + [anon_sym_DOLLARvaref] = ACTIONS(1397), + [anon_sym_DOLLARvaexpr] = ACTIONS(1397), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_null] = ACTIONS(1397), + [anon_sym_DOLLARvacount] = ACTIONS(1397), + [anon_sym_DOLLAReval] = ACTIONS(1397), + [anon_sym_DOLLARis_const] = ACTIONS(1397), + [anon_sym_DOLLARsizeof] = ACTIONS(1397), + [anon_sym_DOLLARstringify] = ACTIONS(1397), + [anon_sym_DOLLARappend] = ACTIONS(1397), + [anon_sym_DOLLARconcat] = ACTIONS(1397), + [anon_sym_DOLLARdefined] = ACTIONS(1397), + [anon_sym_DOLLARembed] = ACTIONS(1397), + [anon_sym_DOLLARand] = ACTIONS(1397), + [anon_sym_DOLLARor] = ACTIONS(1397), + [anon_sym_DOLLARfeature] = ACTIONS(1397), + [anon_sym_DOLLARassignable] = ACTIONS(1397), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1399), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_typeid] = ACTIONS(1397), + [anon_sym_LBRACE_PIPE] = ACTIONS(1399), + [anon_sym_PIPE_RBRACE] = ACTIONS(1399), + [anon_sym_void] = ACTIONS(1397), + [anon_sym_bool] = ACTIONS(1397), + [anon_sym_char] = ACTIONS(1397), + [anon_sym_ichar] = ACTIONS(1397), + [anon_sym_short] = ACTIONS(1397), + [anon_sym_ushort] = ACTIONS(1397), + [anon_sym_uint] = ACTIONS(1397), + [anon_sym_long] = ACTIONS(1397), + [anon_sym_ulong] = ACTIONS(1397), + [anon_sym_int128] = ACTIONS(1397), + [anon_sym_uint128] = ACTIONS(1397), + [anon_sym_float] = ACTIONS(1397), + [anon_sym_double] = ACTIONS(1397), + [anon_sym_float16] = ACTIONS(1397), + [anon_sym_bfloat16] = ACTIONS(1397), + [anon_sym_float128] = ACTIONS(1397), + [anon_sym_iptr] = ACTIONS(1397), + [anon_sym_uptr] = ACTIONS(1397), + [anon_sym_isz] = ACTIONS(1397), + [anon_sym_usz] = ACTIONS(1397), + [anon_sym_anyfault] = ACTIONS(1397), + [anon_sym_any] = ACTIONS(1397), + [anon_sym_DOLLARtypeof] = ACTIONS(1397), + [anon_sym_DOLLARtypefrom] = ACTIONS(1397), + [anon_sym_DOLLARevaltype] = ACTIONS(1397), + [anon_sym_DOLLARvatype] = ACTIONS(1397), + [sym_real_literal] = ACTIONS(1399), + }, + [352] = { + [sym_line_comment] = STATE(352), + [sym_doc_comment] = STATE(352), + [sym_block_comment] = STATE(352), + [sym_ident] = ACTIONS(1401), + [sym_integer_literal] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_DQUOTE] = ACTIONS(1403), + [anon_sym_BQUOTE] = ACTIONS(1403), + [sym_bytes_literal] = ACTIONS(1403), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1401), + [sym_at_ident] = ACTIONS(1403), + [sym_hash_ident] = ACTIONS(1403), + [sym_type_ident] = ACTIONS(1403), + [sym_ct_type_ident] = ACTIONS(1403), + [sym_const_ident] = ACTIONS(1401), + [sym_builtin] = ACTIONS(1403), + [anon_sym_LPAREN] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_tlocal] = ACTIONS(1401), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_var] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1401), + [anon_sym_continue] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1401), + [anon_sym_defer] = ACTIONS(1401), + [anon_sym_assert] = ACTIONS(1401), + [anon_sym_case] = ACTIONS(1401), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_nextcase] = ACTIONS(1401), + [anon_sym_switch] = ACTIONS(1401), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1401), + [anon_sym_foreach] = ACTIONS(1401), + [anon_sym_foreach_r] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_do] = ACTIONS(1401), + [anon_sym_int] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_asm] = ACTIONS(1401), + [anon_sym_DOLLARassert] = ACTIONS(1401), + [anon_sym_DOLLARerror] = ACTIONS(1401), + [anon_sym_DOLLARecho] = ACTIONS(1401), + [anon_sym_DOLLARif] = ACTIONS(1401), + [anon_sym_DOLLARswitch] = ACTIONS(1401), + [anon_sym_DOLLARfor] = ACTIONS(1401), + [anon_sym_DOLLARforeach] = ACTIONS(1401), + [anon_sym_DOLLARalignof] = ACTIONS(1401), + [anon_sym_DOLLARextnameof] = ACTIONS(1401), + [anon_sym_DOLLARnameof] = ACTIONS(1401), + [anon_sym_DOLLARoffsetof] = ACTIONS(1401), + [anon_sym_DOLLARqnameof] = ACTIONS(1401), + [anon_sym_DOLLARvaconst] = ACTIONS(1401), + [anon_sym_DOLLARvaarg] = ACTIONS(1401), + [anon_sym_DOLLARvaref] = ACTIONS(1401), + [anon_sym_DOLLARvaexpr] = ACTIONS(1401), + [anon_sym_true] = ACTIONS(1401), + [anon_sym_false] = ACTIONS(1401), + [anon_sym_null] = ACTIONS(1401), + [anon_sym_DOLLARvacount] = ACTIONS(1401), + [anon_sym_DOLLAReval] = ACTIONS(1401), + [anon_sym_DOLLARis_const] = ACTIONS(1401), + [anon_sym_DOLLARsizeof] = ACTIONS(1401), + [anon_sym_DOLLARstringify] = ACTIONS(1401), + [anon_sym_DOLLARappend] = ACTIONS(1401), + [anon_sym_DOLLARconcat] = ACTIONS(1401), + [anon_sym_DOLLARdefined] = ACTIONS(1401), + [anon_sym_DOLLARembed] = ACTIONS(1401), + [anon_sym_DOLLARand] = ACTIONS(1401), + [anon_sym_DOLLARor] = ACTIONS(1401), + [anon_sym_DOLLARfeature] = ACTIONS(1401), + [anon_sym_DOLLARassignable] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [anon_sym_PLUS_PLUS] = ACTIONS(1403), + [anon_sym_DASH_DASH] = ACTIONS(1403), + [anon_sym_typeid] = ACTIONS(1401), + [anon_sym_LBRACE_PIPE] = ACTIONS(1403), + [anon_sym_PIPE_RBRACE] = ACTIONS(1403), + [anon_sym_void] = ACTIONS(1401), + [anon_sym_bool] = ACTIONS(1401), + [anon_sym_char] = ACTIONS(1401), + [anon_sym_ichar] = ACTIONS(1401), + [anon_sym_short] = ACTIONS(1401), + [anon_sym_ushort] = ACTIONS(1401), + [anon_sym_uint] = ACTIONS(1401), + [anon_sym_long] = ACTIONS(1401), + [anon_sym_ulong] = ACTIONS(1401), + [anon_sym_int128] = ACTIONS(1401), + [anon_sym_uint128] = ACTIONS(1401), + [anon_sym_float] = ACTIONS(1401), + [anon_sym_double] = ACTIONS(1401), + [anon_sym_float16] = ACTIONS(1401), + [anon_sym_bfloat16] = ACTIONS(1401), + [anon_sym_float128] = ACTIONS(1401), + [anon_sym_iptr] = ACTIONS(1401), + [anon_sym_uptr] = ACTIONS(1401), + [anon_sym_isz] = ACTIONS(1401), + [anon_sym_usz] = ACTIONS(1401), + [anon_sym_anyfault] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_DOLLARtypeof] = ACTIONS(1401), + [anon_sym_DOLLARtypefrom] = ACTIONS(1401), + [anon_sym_DOLLARevaltype] = ACTIONS(1401), + [anon_sym_DOLLARvatype] = ACTIONS(1401), + [sym_real_literal] = ACTIONS(1403), }, [353] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(353), [sym_doc_comment] = STATE(353), [sym_block_comment] = STATE(353), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1151), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), + [sym_ident] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_BQUOTE] = ACTIONS(1407), + [sym_bytes_literal] = ACTIONS(1407), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), + [sym_ct_ident] = ACTIONS(1405), + [sym_at_ident] = ACTIONS(1407), + [sym_hash_ident] = ACTIONS(1407), + [sym_type_ident] = ACTIONS(1407), + [sym_ct_type_ident] = ACTIONS(1407), + [sym_const_ident] = ACTIONS(1405), + [sym_builtin] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_static] = ACTIONS(1405), + [anon_sym_tlocal] = ACTIONS(1405), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_fn] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_var] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1405), + [anon_sym_continue] = ACTIONS(1405), + [anon_sym_break] = ACTIONS(1405), + [anon_sym_defer] = ACTIONS(1405), + [anon_sym_assert] = ACTIONS(1405), + [anon_sym_case] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1405), + [anon_sym_nextcase] = ACTIONS(1405), + [anon_sym_switch] = ACTIONS(1405), + [anon_sym_AMP_AMP] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_foreach] = ACTIONS(1405), + [anon_sym_foreach_r] = ACTIONS(1405), + [anon_sym_while] = ACTIONS(1405), + [anon_sym_do] = ACTIONS(1405), + [anon_sym_int] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_asm] = ACTIONS(1405), + [anon_sym_DOLLARassert] = ACTIONS(1405), + [anon_sym_DOLLARerror] = ACTIONS(1405), + [anon_sym_DOLLARecho] = ACTIONS(1405), + [anon_sym_DOLLARif] = ACTIONS(1405), + [anon_sym_DOLLARswitch] = ACTIONS(1405), + [anon_sym_DOLLARfor] = ACTIONS(1405), + [anon_sym_DOLLARforeach] = ACTIONS(1405), + [anon_sym_DOLLARalignof] = ACTIONS(1405), + [anon_sym_DOLLARextnameof] = ACTIONS(1405), + [anon_sym_DOLLARnameof] = ACTIONS(1405), + [anon_sym_DOLLARoffsetof] = ACTIONS(1405), + [anon_sym_DOLLARqnameof] = ACTIONS(1405), + [anon_sym_DOLLARvaconst] = ACTIONS(1405), + [anon_sym_DOLLARvaarg] = ACTIONS(1405), + [anon_sym_DOLLARvaref] = ACTIONS(1405), + [anon_sym_DOLLARvaexpr] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1405), + [anon_sym_false] = ACTIONS(1405), + [anon_sym_null] = ACTIONS(1405), + [anon_sym_DOLLARvacount] = ACTIONS(1405), + [anon_sym_DOLLAReval] = ACTIONS(1405), + [anon_sym_DOLLARis_const] = ACTIONS(1405), + [anon_sym_DOLLARsizeof] = ACTIONS(1405), + [anon_sym_DOLLARstringify] = ACTIONS(1405), + [anon_sym_DOLLARappend] = ACTIONS(1405), + [anon_sym_DOLLARconcat] = ACTIONS(1405), + [anon_sym_DOLLARdefined] = ACTIONS(1405), + [anon_sym_DOLLARembed] = ACTIONS(1405), + [anon_sym_DOLLARand] = ACTIONS(1405), + [anon_sym_DOLLARor] = ACTIONS(1405), + [anon_sym_DOLLARfeature] = ACTIONS(1405), + [anon_sym_DOLLARassignable] = ACTIONS(1405), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1407), + [anon_sym_typeid] = ACTIONS(1405), + [anon_sym_LBRACE_PIPE] = ACTIONS(1407), + [anon_sym_PIPE_RBRACE] = ACTIONS(1407), + [anon_sym_void] = ACTIONS(1405), + [anon_sym_bool] = ACTIONS(1405), + [anon_sym_char] = ACTIONS(1405), + [anon_sym_ichar] = ACTIONS(1405), + [anon_sym_short] = ACTIONS(1405), + [anon_sym_ushort] = ACTIONS(1405), + [anon_sym_uint] = ACTIONS(1405), + [anon_sym_long] = ACTIONS(1405), + [anon_sym_ulong] = ACTIONS(1405), + [anon_sym_int128] = ACTIONS(1405), + [anon_sym_uint128] = ACTIONS(1405), + [anon_sym_float] = ACTIONS(1405), + [anon_sym_double] = ACTIONS(1405), + [anon_sym_float16] = ACTIONS(1405), + [anon_sym_bfloat16] = ACTIONS(1405), + [anon_sym_float128] = ACTIONS(1405), + [anon_sym_iptr] = ACTIONS(1405), + [anon_sym_uptr] = ACTIONS(1405), + [anon_sym_isz] = ACTIONS(1405), + [anon_sym_usz] = ACTIONS(1405), + [anon_sym_anyfault] = ACTIONS(1405), + [anon_sym_any] = ACTIONS(1405), + [anon_sym_DOLLARtypeof] = ACTIONS(1405), + [anon_sym_DOLLARtypefrom] = ACTIONS(1405), + [anon_sym_DOLLARevaltype] = ACTIONS(1405), + [anon_sym_DOLLARvatype] = ACTIONS(1405), + [sym_real_literal] = ACTIONS(1407), }, [354] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(354), [sym_doc_comment] = STATE(354), [sym_block_comment] = STATE(354), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1180), - [sym__constant_expr] = STATE(1619), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), - }, - [355] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), - [sym_line_comment] = STATE(355), - [sym_doc_comment] = STATE(355), - [sym_block_comment] = STATE(355), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1062), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), - }, - [356] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), - [sym_line_comment] = STATE(356), - [sym_doc_comment] = STATE(356), - [sym_block_comment] = STATE(356), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1067), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), + [sym_ident] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [anon_sym_SQUOTE] = ACTIONS(1411), + [anon_sym_DQUOTE] = ACTIONS(1411), + [anon_sym_BQUOTE] = ACTIONS(1411), + [sym_bytes_literal] = ACTIONS(1411), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), + [sym_ct_ident] = ACTIONS(1409), + [sym_at_ident] = ACTIONS(1411), + [sym_hash_ident] = ACTIONS(1411), + [sym_type_ident] = ACTIONS(1411), + [sym_ct_type_ident] = ACTIONS(1411), + [sym_const_ident] = ACTIONS(1409), + [sym_builtin] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_tlocal] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1411), + [anon_sym_fn] = ACTIONS(1409), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_RBRACE] = ACTIONS(1411), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_var] = ACTIONS(1409), + [anon_sym_return] = ACTIONS(1409), + [anon_sym_continue] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1409), + [anon_sym_defer] = ACTIONS(1409), + [anon_sym_assert] = ACTIONS(1409), + [anon_sym_case] = ACTIONS(1409), + [anon_sym_default] = ACTIONS(1409), + [anon_sym_nextcase] = ACTIONS(1409), + [anon_sym_switch] = ACTIONS(1409), + [anon_sym_AMP_AMP] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1409), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_foreach] = ACTIONS(1409), + [anon_sym_foreach_r] = ACTIONS(1409), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_do] = ACTIONS(1409), + [anon_sym_int] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_asm] = ACTIONS(1409), + [anon_sym_DOLLARassert] = ACTIONS(1409), + [anon_sym_DOLLARerror] = ACTIONS(1409), + [anon_sym_DOLLARecho] = ACTIONS(1409), + [anon_sym_DOLLARif] = ACTIONS(1409), + [anon_sym_DOLLARswitch] = ACTIONS(1409), + [anon_sym_DOLLARfor] = ACTIONS(1409), + [anon_sym_DOLLARforeach] = ACTIONS(1409), + [anon_sym_DOLLARalignof] = ACTIONS(1409), + [anon_sym_DOLLARextnameof] = ACTIONS(1409), + [anon_sym_DOLLARnameof] = ACTIONS(1409), + [anon_sym_DOLLARoffsetof] = ACTIONS(1409), + [anon_sym_DOLLARqnameof] = ACTIONS(1409), + [anon_sym_DOLLARvaconst] = ACTIONS(1409), + [anon_sym_DOLLARvaarg] = ACTIONS(1409), + [anon_sym_DOLLARvaref] = ACTIONS(1409), + [anon_sym_DOLLARvaexpr] = ACTIONS(1409), + [anon_sym_true] = ACTIONS(1409), + [anon_sym_false] = ACTIONS(1409), + [anon_sym_null] = ACTIONS(1409), + [anon_sym_DOLLARvacount] = ACTIONS(1409), + [anon_sym_DOLLAReval] = ACTIONS(1409), + [anon_sym_DOLLARis_const] = ACTIONS(1409), + [anon_sym_DOLLARsizeof] = ACTIONS(1409), + [anon_sym_DOLLARstringify] = ACTIONS(1409), + [anon_sym_DOLLARappend] = ACTIONS(1409), + [anon_sym_DOLLARconcat] = ACTIONS(1409), + [anon_sym_DOLLARdefined] = ACTIONS(1409), + [anon_sym_DOLLARembed] = ACTIONS(1409), + [anon_sym_DOLLARand] = ACTIONS(1409), + [anon_sym_DOLLARor] = ACTIONS(1409), + [anon_sym_DOLLARfeature] = ACTIONS(1409), + [anon_sym_DOLLARassignable] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_typeid] = ACTIONS(1409), + [anon_sym_LBRACE_PIPE] = ACTIONS(1411), + [anon_sym_PIPE_RBRACE] = ACTIONS(1411), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_bool] = ACTIONS(1409), + [anon_sym_char] = ACTIONS(1409), + [anon_sym_ichar] = ACTIONS(1409), + [anon_sym_short] = ACTIONS(1409), + [anon_sym_ushort] = ACTIONS(1409), + [anon_sym_uint] = ACTIONS(1409), + [anon_sym_long] = ACTIONS(1409), + [anon_sym_ulong] = ACTIONS(1409), + [anon_sym_int128] = ACTIONS(1409), + [anon_sym_uint128] = ACTIONS(1409), + [anon_sym_float] = ACTIONS(1409), + [anon_sym_double] = ACTIONS(1409), + [anon_sym_float16] = ACTIONS(1409), + [anon_sym_bfloat16] = ACTIONS(1409), + [anon_sym_float128] = ACTIONS(1409), + [anon_sym_iptr] = ACTIONS(1409), + [anon_sym_uptr] = ACTIONS(1409), + [anon_sym_isz] = ACTIONS(1409), + [anon_sym_usz] = ACTIONS(1409), + [anon_sym_anyfault] = ACTIONS(1409), + [anon_sym_any] = ACTIONS(1409), + [anon_sym_DOLLARtypeof] = ACTIONS(1409), + [anon_sym_DOLLARtypefrom] = ACTIONS(1409), + [anon_sym_DOLLARevaltype] = ACTIONS(1409), + [anon_sym_DOLLARvatype] = ACTIONS(1409), + [sym_real_literal] = ACTIONS(1411), + }, + [355] = { + [sym_line_comment] = STATE(355), + [sym_doc_comment] = STATE(355), + [sym_block_comment] = STATE(355), + [sym_ident] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1415), + [anon_sym_SQUOTE] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(1415), + [anon_sym_BQUOTE] = ACTIONS(1415), + [sym_bytes_literal] = ACTIONS(1415), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1413), + [sym_at_ident] = ACTIONS(1415), + [sym_hash_ident] = ACTIONS(1415), + [sym_type_ident] = ACTIONS(1415), + [sym_ct_type_ident] = ACTIONS(1415), + [sym_const_ident] = ACTIONS(1413), + [sym_builtin] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_tlocal] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_fn] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_const] = ACTIONS(1413), + [anon_sym_var] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_defer] = ACTIONS(1413), + [anon_sym_assert] = ACTIONS(1413), + [anon_sym_case] = ACTIONS(1413), + [anon_sym_default] = ACTIONS(1413), + [anon_sym_nextcase] = ACTIONS(1413), + [anon_sym_switch] = ACTIONS(1413), + [anon_sym_AMP_AMP] = ACTIONS(1415), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_foreach] = ACTIONS(1413), + [anon_sym_foreach_r] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_do] = ACTIONS(1413), + [anon_sym_int] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_asm] = ACTIONS(1413), + [anon_sym_DOLLARassert] = ACTIONS(1413), + [anon_sym_DOLLARerror] = ACTIONS(1413), + [anon_sym_DOLLARecho] = ACTIONS(1413), + [anon_sym_DOLLARif] = ACTIONS(1413), + [anon_sym_DOLLARswitch] = ACTIONS(1413), + [anon_sym_DOLLARfor] = ACTIONS(1413), + [anon_sym_DOLLARforeach] = ACTIONS(1413), + [anon_sym_DOLLARalignof] = ACTIONS(1413), + [anon_sym_DOLLARextnameof] = ACTIONS(1413), + [anon_sym_DOLLARnameof] = ACTIONS(1413), + [anon_sym_DOLLARoffsetof] = ACTIONS(1413), + [anon_sym_DOLLARqnameof] = ACTIONS(1413), + [anon_sym_DOLLARvaconst] = ACTIONS(1413), + [anon_sym_DOLLARvaarg] = ACTIONS(1413), + [anon_sym_DOLLARvaref] = ACTIONS(1413), + [anon_sym_DOLLARvaexpr] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_null] = ACTIONS(1413), + [anon_sym_DOLLARvacount] = ACTIONS(1413), + [anon_sym_DOLLAReval] = ACTIONS(1413), + [anon_sym_DOLLARis_const] = ACTIONS(1413), + [anon_sym_DOLLARsizeof] = ACTIONS(1413), + [anon_sym_DOLLARstringify] = ACTIONS(1413), + [anon_sym_DOLLARappend] = ACTIONS(1413), + [anon_sym_DOLLARconcat] = ACTIONS(1413), + [anon_sym_DOLLARdefined] = ACTIONS(1413), + [anon_sym_DOLLARembed] = ACTIONS(1413), + [anon_sym_DOLLARand] = ACTIONS(1413), + [anon_sym_DOLLARor] = ACTIONS(1413), + [anon_sym_DOLLARfeature] = ACTIONS(1413), + [anon_sym_DOLLARassignable] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_typeid] = ACTIONS(1413), + [anon_sym_LBRACE_PIPE] = ACTIONS(1415), + [anon_sym_PIPE_RBRACE] = ACTIONS(1415), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_bool] = ACTIONS(1413), + [anon_sym_char] = ACTIONS(1413), + [anon_sym_ichar] = ACTIONS(1413), + [anon_sym_short] = ACTIONS(1413), + [anon_sym_ushort] = ACTIONS(1413), + [anon_sym_uint] = ACTIONS(1413), + [anon_sym_long] = ACTIONS(1413), + [anon_sym_ulong] = ACTIONS(1413), + [anon_sym_int128] = ACTIONS(1413), + [anon_sym_uint128] = ACTIONS(1413), + [anon_sym_float] = ACTIONS(1413), + [anon_sym_double] = ACTIONS(1413), + [anon_sym_float16] = ACTIONS(1413), + [anon_sym_bfloat16] = ACTIONS(1413), + [anon_sym_float128] = ACTIONS(1413), + [anon_sym_iptr] = ACTIONS(1413), + [anon_sym_uptr] = ACTIONS(1413), + [anon_sym_isz] = ACTIONS(1413), + [anon_sym_usz] = ACTIONS(1413), + [anon_sym_anyfault] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_DOLLARtypeof] = ACTIONS(1413), + [anon_sym_DOLLARtypefrom] = ACTIONS(1413), + [anon_sym_DOLLARevaltype] = ACTIONS(1413), + [anon_sym_DOLLARvatype] = ACTIONS(1413), + [sym_real_literal] = ACTIONS(1415), + }, + [356] = { + [sym_line_comment] = STATE(356), + [sym_doc_comment] = STATE(356), + [sym_block_comment] = STATE(356), + [sym_ident] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [sym_bytes_literal] = ACTIONS(1419), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1417), + [sym_at_ident] = ACTIONS(1419), + [sym_hash_ident] = ACTIONS(1419), + [sym_type_ident] = ACTIONS(1419), + [sym_ct_type_ident] = ACTIONS(1419), + [sym_const_ident] = ACTIONS(1417), + [sym_builtin] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_static] = ACTIONS(1417), + [anon_sym_tlocal] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_fn] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_var] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1417), + [anon_sym_continue] = ACTIONS(1417), + [anon_sym_break] = ACTIONS(1417), + [anon_sym_defer] = ACTIONS(1417), + [anon_sym_assert] = ACTIONS(1417), + [anon_sym_case] = ACTIONS(1417), + [anon_sym_default] = ACTIONS(1417), + [anon_sym_nextcase] = ACTIONS(1417), + [anon_sym_switch] = ACTIONS(1417), + [anon_sym_AMP_AMP] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1417), + [anon_sym_for] = ACTIONS(1417), + [anon_sym_foreach] = ACTIONS(1417), + [anon_sym_foreach_r] = ACTIONS(1417), + [anon_sym_while] = ACTIONS(1417), + [anon_sym_do] = ACTIONS(1417), + [anon_sym_int] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_asm] = ACTIONS(1417), + [anon_sym_DOLLARassert] = ACTIONS(1417), + [anon_sym_DOLLARerror] = ACTIONS(1417), + [anon_sym_DOLLARecho] = ACTIONS(1417), + [anon_sym_DOLLARif] = ACTIONS(1417), + [anon_sym_DOLLARswitch] = ACTIONS(1417), + [anon_sym_DOLLARfor] = ACTIONS(1417), + [anon_sym_DOLLARforeach] = ACTIONS(1417), + [anon_sym_DOLLARalignof] = ACTIONS(1417), + [anon_sym_DOLLARextnameof] = ACTIONS(1417), + [anon_sym_DOLLARnameof] = ACTIONS(1417), + [anon_sym_DOLLARoffsetof] = ACTIONS(1417), + [anon_sym_DOLLARqnameof] = ACTIONS(1417), + [anon_sym_DOLLARvaconst] = ACTIONS(1417), + [anon_sym_DOLLARvaarg] = ACTIONS(1417), + [anon_sym_DOLLARvaref] = ACTIONS(1417), + [anon_sym_DOLLARvaexpr] = ACTIONS(1417), + [anon_sym_true] = ACTIONS(1417), + [anon_sym_false] = ACTIONS(1417), + [anon_sym_null] = ACTIONS(1417), + [anon_sym_DOLLARvacount] = ACTIONS(1417), + [anon_sym_DOLLAReval] = ACTIONS(1417), + [anon_sym_DOLLARis_const] = ACTIONS(1417), + [anon_sym_DOLLARsizeof] = ACTIONS(1417), + [anon_sym_DOLLARstringify] = ACTIONS(1417), + [anon_sym_DOLLARappend] = ACTIONS(1417), + [anon_sym_DOLLARconcat] = ACTIONS(1417), + [anon_sym_DOLLARdefined] = ACTIONS(1417), + [anon_sym_DOLLARembed] = ACTIONS(1417), + [anon_sym_DOLLARand] = ACTIONS(1417), + [anon_sym_DOLLARor] = ACTIONS(1417), + [anon_sym_DOLLARfeature] = ACTIONS(1417), + [anon_sym_DOLLARassignable] = ACTIONS(1417), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [anon_sym_typeid] = ACTIONS(1417), + [anon_sym_LBRACE_PIPE] = ACTIONS(1419), + [anon_sym_PIPE_RBRACE] = ACTIONS(1419), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_bool] = ACTIONS(1417), + [anon_sym_char] = ACTIONS(1417), + [anon_sym_ichar] = ACTIONS(1417), + [anon_sym_short] = ACTIONS(1417), + [anon_sym_ushort] = ACTIONS(1417), + [anon_sym_uint] = ACTIONS(1417), + [anon_sym_long] = ACTIONS(1417), + [anon_sym_ulong] = ACTIONS(1417), + [anon_sym_int128] = ACTIONS(1417), + [anon_sym_uint128] = ACTIONS(1417), + [anon_sym_float] = ACTIONS(1417), + [anon_sym_double] = ACTIONS(1417), + [anon_sym_float16] = ACTIONS(1417), + [anon_sym_bfloat16] = ACTIONS(1417), + [anon_sym_float128] = ACTIONS(1417), + [anon_sym_iptr] = ACTIONS(1417), + [anon_sym_uptr] = ACTIONS(1417), + [anon_sym_isz] = ACTIONS(1417), + [anon_sym_usz] = ACTIONS(1417), + [anon_sym_anyfault] = ACTIONS(1417), + [anon_sym_any] = ACTIONS(1417), + [anon_sym_DOLLARtypeof] = ACTIONS(1417), + [anon_sym_DOLLARtypefrom] = ACTIONS(1417), + [anon_sym_DOLLARevaltype] = ACTIONS(1417), + [anon_sym_DOLLARvatype] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1419), }, [357] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(357), [sym_doc_comment] = STATE(357), [sym_block_comment] = STATE(357), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1066), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), + [sym_ident] = ACTIONS(1421), + [sym_integer_literal] = ACTIONS(1423), + [anon_sym_SQUOTE] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(1423), + [anon_sym_BQUOTE] = ACTIONS(1423), + [sym_bytes_literal] = ACTIONS(1423), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), + [sym_ct_ident] = ACTIONS(1421), + [sym_at_ident] = ACTIONS(1423), + [sym_hash_ident] = ACTIONS(1423), + [sym_type_ident] = ACTIONS(1423), + [sym_ct_type_ident] = ACTIONS(1423), + [sym_const_ident] = ACTIONS(1421), + [sym_builtin] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_tlocal] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1423), + [anon_sym_fn] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_RBRACE] = ACTIONS(1423), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_defer] = ACTIONS(1421), + [anon_sym_assert] = ACTIONS(1421), + [anon_sym_case] = ACTIONS(1421), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_nextcase] = ACTIONS(1421), + [anon_sym_switch] = ACTIONS(1421), + [anon_sym_AMP_AMP] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_foreach] = ACTIONS(1421), + [anon_sym_foreach_r] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_int] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_asm] = ACTIONS(1421), + [anon_sym_DOLLARassert] = ACTIONS(1421), + [anon_sym_DOLLARerror] = ACTIONS(1421), + [anon_sym_DOLLARecho] = ACTIONS(1421), + [anon_sym_DOLLARif] = ACTIONS(1421), + [anon_sym_DOLLARswitch] = ACTIONS(1421), + [anon_sym_DOLLARfor] = ACTIONS(1421), + [anon_sym_DOLLARforeach] = ACTIONS(1421), + [anon_sym_DOLLARalignof] = ACTIONS(1421), + [anon_sym_DOLLARextnameof] = ACTIONS(1421), + [anon_sym_DOLLARnameof] = ACTIONS(1421), + [anon_sym_DOLLARoffsetof] = ACTIONS(1421), + [anon_sym_DOLLARqnameof] = ACTIONS(1421), + [anon_sym_DOLLARvaconst] = ACTIONS(1421), + [anon_sym_DOLLARvaarg] = ACTIONS(1421), + [anon_sym_DOLLARvaref] = ACTIONS(1421), + [anon_sym_DOLLARvaexpr] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [anon_sym_null] = ACTIONS(1421), + [anon_sym_DOLLARvacount] = ACTIONS(1421), + [anon_sym_DOLLAReval] = ACTIONS(1421), + [anon_sym_DOLLARis_const] = ACTIONS(1421), + [anon_sym_DOLLARsizeof] = ACTIONS(1421), + [anon_sym_DOLLARstringify] = ACTIONS(1421), + [anon_sym_DOLLARappend] = ACTIONS(1421), + [anon_sym_DOLLARconcat] = ACTIONS(1421), + [anon_sym_DOLLARdefined] = ACTIONS(1421), + [anon_sym_DOLLARembed] = ACTIONS(1421), + [anon_sym_DOLLARand] = ACTIONS(1421), + [anon_sym_DOLLARor] = ACTIONS(1421), + [anon_sym_DOLLARfeature] = ACTIONS(1421), + [anon_sym_DOLLARassignable] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(1423), + [anon_sym_PLUS_PLUS] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1423), + [anon_sym_typeid] = ACTIONS(1421), + [anon_sym_LBRACE_PIPE] = ACTIONS(1423), + [anon_sym_PIPE_RBRACE] = ACTIONS(1423), + [anon_sym_void] = ACTIONS(1421), + [anon_sym_bool] = ACTIONS(1421), + [anon_sym_char] = ACTIONS(1421), + [anon_sym_ichar] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_ushort] = ACTIONS(1421), + [anon_sym_uint] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_ulong] = ACTIONS(1421), + [anon_sym_int128] = ACTIONS(1421), + [anon_sym_uint128] = ACTIONS(1421), + [anon_sym_float] = ACTIONS(1421), + [anon_sym_double] = ACTIONS(1421), + [anon_sym_float16] = ACTIONS(1421), + [anon_sym_bfloat16] = ACTIONS(1421), + [anon_sym_float128] = ACTIONS(1421), + [anon_sym_iptr] = ACTIONS(1421), + [anon_sym_uptr] = ACTIONS(1421), + [anon_sym_isz] = ACTIONS(1421), + [anon_sym_usz] = ACTIONS(1421), + [anon_sym_anyfault] = ACTIONS(1421), + [anon_sym_any] = ACTIONS(1421), + [anon_sym_DOLLARtypeof] = ACTIONS(1421), + [anon_sym_DOLLARtypefrom] = ACTIONS(1421), + [anon_sym_DOLLARevaltype] = ACTIONS(1421), + [anon_sym_DOLLARvatype] = ACTIONS(1421), + [sym_real_literal] = ACTIONS(1423), }, [358] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(358), [sym_doc_comment] = STATE(358), [sym_block_comment] = STATE(358), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1479), - [sym__expr] = STATE(1147), - [sym__constant_expr] = STATE(1879), - [sym__relational_expr] = STATE(2235), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(923), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1005), - [sym_lambda_expr] = STATE(1005), - [sym_elvis_orelse_expr] = STATE(1005), - [sym_suffix_expr] = STATE(1005), - [sym_cast_expr] = STATE(1011), - [sym__unary_op] = STATE(336), - [sym_unary_expr] = STATE(1011), - [sym_binary_expr] = STATE(1011), - [sym_call_expr] = STATE(923), - [sym_update_expr] = STATE(923), - [sym_rethrow_expr] = STATE(923), - [sym_trailing_generic_expr] = STATE(923), - [sym_subscript_expr] = STATE(923), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), + [sym_ident] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(1427), + [anon_sym_BQUOTE] = ACTIONS(1427), + [sym_bytes_literal] = ACTIONS(1427), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), + [sym_ct_ident] = ACTIONS(1425), + [sym_at_ident] = ACTIONS(1427), + [sym_hash_ident] = ACTIONS(1427), + [sym_type_ident] = ACTIONS(1427), + [sym_ct_type_ident] = ACTIONS(1427), + [sym_const_ident] = ACTIONS(1425), + [sym_builtin] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_tlocal] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_fn] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_var] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_defer] = ACTIONS(1425), + [anon_sym_assert] = ACTIONS(1425), + [anon_sym_case] = ACTIONS(1425), + [anon_sym_default] = ACTIONS(1425), + [anon_sym_nextcase] = ACTIONS(1425), + [anon_sym_switch] = ACTIONS(1425), + [anon_sym_AMP_AMP] = ACTIONS(1427), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_foreach] = ACTIONS(1425), + [anon_sym_foreach_r] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_int] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_asm] = ACTIONS(1425), + [anon_sym_DOLLARassert] = ACTIONS(1425), + [anon_sym_DOLLARerror] = ACTIONS(1425), + [anon_sym_DOLLARecho] = ACTIONS(1425), + [anon_sym_DOLLARif] = ACTIONS(1425), + [anon_sym_DOLLARswitch] = ACTIONS(1425), + [anon_sym_DOLLARfor] = ACTIONS(1425), + [anon_sym_DOLLARforeach] = ACTIONS(1425), + [anon_sym_DOLLARalignof] = ACTIONS(1425), + [anon_sym_DOLLARextnameof] = ACTIONS(1425), + [anon_sym_DOLLARnameof] = ACTIONS(1425), + [anon_sym_DOLLARoffsetof] = ACTIONS(1425), + [anon_sym_DOLLARqnameof] = ACTIONS(1425), + [anon_sym_DOLLARvaconst] = ACTIONS(1425), + [anon_sym_DOLLARvaarg] = ACTIONS(1425), + [anon_sym_DOLLARvaref] = ACTIONS(1425), + [anon_sym_DOLLARvaexpr] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_DOLLARvacount] = ACTIONS(1425), + [anon_sym_DOLLAReval] = ACTIONS(1425), + [anon_sym_DOLLARis_const] = ACTIONS(1425), + [anon_sym_DOLLARsizeof] = ACTIONS(1425), + [anon_sym_DOLLARstringify] = ACTIONS(1425), + [anon_sym_DOLLARappend] = ACTIONS(1425), + [anon_sym_DOLLARconcat] = ACTIONS(1425), + [anon_sym_DOLLARdefined] = ACTIONS(1425), + [anon_sym_DOLLARembed] = ACTIONS(1425), + [anon_sym_DOLLARand] = ACTIONS(1425), + [anon_sym_DOLLARor] = ACTIONS(1425), + [anon_sym_DOLLARfeature] = ACTIONS(1425), + [anon_sym_DOLLARassignable] = ACTIONS(1425), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1427), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_typeid] = ACTIONS(1425), + [anon_sym_LBRACE_PIPE] = ACTIONS(1427), + [anon_sym_PIPE_RBRACE] = ACTIONS(1427), + [anon_sym_void] = ACTIONS(1425), + [anon_sym_bool] = ACTIONS(1425), + [anon_sym_char] = ACTIONS(1425), + [anon_sym_ichar] = ACTIONS(1425), + [anon_sym_short] = ACTIONS(1425), + [anon_sym_ushort] = ACTIONS(1425), + [anon_sym_uint] = ACTIONS(1425), + [anon_sym_long] = ACTIONS(1425), + [anon_sym_ulong] = ACTIONS(1425), + [anon_sym_int128] = ACTIONS(1425), + [anon_sym_uint128] = ACTIONS(1425), + [anon_sym_float] = ACTIONS(1425), + [anon_sym_double] = ACTIONS(1425), + [anon_sym_float16] = ACTIONS(1425), + [anon_sym_bfloat16] = ACTIONS(1425), + [anon_sym_float128] = ACTIONS(1425), + [anon_sym_iptr] = ACTIONS(1425), + [anon_sym_uptr] = ACTIONS(1425), + [anon_sym_isz] = ACTIONS(1425), + [anon_sym_usz] = ACTIONS(1425), + [anon_sym_anyfault] = ACTIONS(1425), + [anon_sym_any] = ACTIONS(1425), + [anon_sym_DOLLARtypeof] = ACTIONS(1425), + [anon_sym_DOLLARtypefrom] = ACTIONS(1425), + [anon_sym_DOLLARevaltype] = ACTIONS(1425), + [anon_sym_DOLLARvatype] = ACTIONS(1425), + [sym_real_literal] = ACTIONS(1427), }, [359] = { - [sym_char_literal] = STATE(916), - [sym_string_literal] = STATE(901), - [sym_raw_string_literal] = STATE(901), [sym_line_comment] = STATE(359), [sym_doc_comment] = STATE(359), [sym_block_comment] = STATE(359), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1302), - [sym_lambda_declaration] = STATE(1486), - [sym__expr] = STATE(1001), - [sym__constant_expr] = STATE(1769), - [sym__relational_expr] = STATE(2054), - [sym__trailing_expr] = STATE(1284), - [sym__ident_expr] = STATE(916), - [sym__local_ident_expr] = STATE(916), - [sym_string_expr] = STATE(916), - [sym_bytes_expr] = STATE(916), - [sym_paren_expr] = STATE(916), - [sym__base_expr] = STATE(943), - [sym_module_ident_expr] = STATE(916), - [sym_module_type_ident] = STATE(912), - [sym_initializer_list] = STATE(941), - [sym_assignment_expr] = STATE(1003), - [sym_ternary_expr] = STATE(1018), - [sym_lambda_expr] = STATE(1018), - [sym_elvis_orelse_expr] = STATE(1018), - [sym_suffix_expr] = STATE(1018), - [sym_cast_expr] = STATE(1017), - [sym__unary_op] = STATE(327), - [sym_unary_expr] = STATE(1017), - [sym_binary_expr] = STATE(1017), - [sym_call_expr] = STATE(943), - [sym_update_expr] = STATE(943), - [sym_rethrow_expr] = STATE(943), - [sym_trailing_generic_expr] = STATE(943), - [sym_subscript_expr] = STATE(943), - [sym_field_expr] = STATE(916), - [sym_type_access_expr] = STATE(916), - [sym_expr_block] = STATE(916), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1732), - [aux_sym_string_expr_repeat1] = STATE(805), - [aux_sym_bytes_expr_repeat1] = STATE(899), - [sym_ident] = ACTIONS(61), - [sym_integer_literal] = ACTIONS(63), - [anon_sym_SQUOTE] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_BQUOTE] = ACTIONS(69), - [sym_bytes_literal] = ACTIONS(71), + [sym_ident] = ACTIONS(1429), + [sym_integer_literal] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [anon_sym_BQUOTE] = ACTIONS(1431), + [sym_bytes_literal] = ACTIONS(1431), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(73), - [sym_at_ident] = ACTIONS(75), - [sym_hash_ident] = ACTIONS(77), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(81), - [sym_const_ident] = ACTIONS(83), - [sym_builtin] = ACTIONS(63), - [anon_sym_LPAREN] = ACTIONS(85), - [anon_sym_AMP] = ACTIONS(89), - [anon_sym_fn] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_int] = ACTIONS(45), - [anon_sym_PLUS] = ACTIONS(89), - [anon_sym_DASH] = ACTIONS(89), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_DOLLARalignof] = ACTIONS(157), - [anon_sym_DOLLARextnameof] = ACTIONS(157), - [anon_sym_DOLLARnameof] = ACTIONS(157), - [anon_sym_DOLLARoffsetof] = ACTIONS(157), - [anon_sym_DOLLARqnameof] = ACTIONS(157), - [anon_sym_DOLLAReval] = ACTIONS(159), - [anon_sym_DOLLARdefined] = ACTIONS(159), - [anon_sym_DOLLARsizeof] = ACTIONS(159), - [anon_sym_DOLLARstringify] = ACTIONS(159), - [anon_sym_DOLLARis_const] = ACTIONS(159), - [anon_sym_DOLLARvaconst] = ACTIONS(161), - [anon_sym_DOLLARvaarg] = ACTIONS(161), - [anon_sym_DOLLARvaref] = ACTIONS(161), - [anon_sym_DOLLARvaexpr] = ACTIONS(161), - [anon_sym_true] = ACTIONS(163), - [anon_sym_false] = ACTIONS(163), - [anon_sym_null] = ACTIONS(163), - [anon_sym_DOLLARvacount] = ACTIONS(163), - [anon_sym_DOLLARfeature] = ACTIONS(165), - [anon_sym_DOLLARand] = ACTIONS(159), - [anon_sym_DOLLARor] = ACTIONS(159), - [anon_sym_DOLLARassignable] = ACTIONS(167), - [anon_sym_DOLLARembed] = ACTIONS(169), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_LBRACE_PIPE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(1177), - [anon_sym_DOLLARtypefrom] = ACTIONS(1179), - [anon_sym_DOLLARvatype] = ACTIONS(1179), - [anon_sym_DOLLARevaltype] = ACTIONS(1179), - [sym_real_literal] = ACTIONS(63), + [sym_ct_ident] = ACTIONS(1429), + [sym_at_ident] = ACTIONS(1431), + [sym_hash_ident] = ACTIONS(1431), + [sym_type_ident] = ACTIONS(1431), + [sym_ct_type_ident] = ACTIONS(1431), + [sym_const_ident] = ACTIONS(1429), + [sym_builtin] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1429), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_tlocal] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_fn] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_var] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_defer] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1429), + [anon_sym_case] = ACTIONS(1429), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_nextcase] = ACTIONS(1429), + [anon_sym_switch] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_foreach] = ACTIONS(1429), + [anon_sym_foreach_r] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_int] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_asm] = ACTIONS(1429), + [anon_sym_DOLLARassert] = ACTIONS(1429), + [anon_sym_DOLLARerror] = ACTIONS(1429), + [anon_sym_DOLLARecho] = ACTIONS(1429), + [anon_sym_DOLLARif] = ACTIONS(1429), + [anon_sym_DOLLARswitch] = ACTIONS(1429), + [anon_sym_DOLLARfor] = ACTIONS(1429), + [anon_sym_DOLLARforeach] = ACTIONS(1429), + [anon_sym_DOLLARalignof] = ACTIONS(1429), + [anon_sym_DOLLARextnameof] = ACTIONS(1429), + [anon_sym_DOLLARnameof] = ACTIONS(1429), + [anon_sym_DOLLARoffsetof] = ACTIONS(1429), + [anon_sym_DOLLARqnameof] = ACTIONS(1429), + [anon_sym_DOLLARvaconst] = ACTIONS(1429), + [anon_sym_DOLLARvaarg] = ACTIONS(1429), + [anon_sym_DOLLARvaref] = ACTIONS(1429), + [anon_sym_DOLLARvaexpr] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1429), + [anon_sym_DOLLARvacount] = ACTIONS(1429), + [anon_sym_DOLLAReval] = ACTIONS(1429), + [anon_sym_DOLLARis_const] = ACTIONS(1429), + [anon_sym_DOLLARsizeof] = ACTIONS(1429), + [anon_sym_DOLLARstringify] = ACTIONS(1429), + [anon_sym_DOLLARappend] = ACTIONS(1429), + [anon_sym_DOLLARconcat] = ACTIONS(1429), + [anon_sym_DOLLARdefined] = ACTIONS(1429), + [anon_sym_DOLLARembed] = ACTIONS(1429), + [anon_sym_DOLLARand] = ACTIONS(1429), + [anon_sym_DOLLARor] = ACTIONS(1429), + [anon_sym_DOLLARfeature] = ACTIONS(1429), + [anon_sym_DOLLARassignable] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_typeid] = ACTIONS(1429), + [anon_sym_LBRACE_PIPE] = ACTIONS(1431), + [anon_sym_PIPE_RBRACE] = ACTIONS(1431), + [anon_sym_void] = ACTIONS(1429), + [anon_sym_bool] = ACTIONS(1429), + [anon_sym_char] = ACTIONS(1429), + [anon_sym_ichar] = ACTIONS(1429), + [anon_sym_short] = ACTIONS(1429), + [anon_sym_ushort] = ACTIONS(1429), + [anon_sym_uint] = ACTIONS(1429), + [anon_sym_long] = ACTIONS(1429), + [anon_sym_ulong] = ACTIONS(1429), + [anon_sym_int128] = ACTIONS(1429), + [anon_sym_uint128] = ACTIONS(1429), + [anon_sym_float] = ACTIONS(1429), + [anon_sym_double] = ACTIONS(1429), + [anon_sym_float16] = ACTIONS(1429), + [anon_sym_bfloat16] = ACTIONS(1429), + [anon_sym_float128] = ACTIONS(1429), + [anon_sym_iptr] = ACTIONS(1429), + [anon_sym_uptr] = ACTIONS(1429), + [anon_sym_isz] = ACTIONS(1429), + [anon_sym_usz] = ACTIONS(1429), + [anon_sym_anyfault] = ACTIONS(1429), + [anon_sym_any] = ACTIONS(1429), + [anon_sym_DOLLARtypeof] = ACTIONS(1429), + [anon_sym_DOLLARtypefrom] = ACTIONS(1429), + [anon_sym_DOLLARevaltype] = ACTIONS(1429), + [anon_sym_DOLLARvatype] = ACTIONS(1429), + [sym_real_literal] = ACTIONS(1431), }, [360] = { [sym_line_comment] = STATE(360), [sym_doc_comment] = STATE(360), [sym_block_comment] = STATE(360), - [sym_ident] = ACTIONS(1357), - [sym_integer_literal] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [anon_sym_BQUOTE] = ACTIONS(1359), - [sym_bytes_literal] = ACTIONS(1359), + [sym_ident] = ACTIONS(1433), + [sym_integer_literal] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_DQUOTE] = ACTIONS(1435), + [anon_sym_BQUOTE] = ACTIONS(1435), + [sym_bytes_literal] = ACTIONS(1435), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1357), - [sym_at_ident] = ACTIONS(1359), - [sym_hash_ident] = ACTIONS(1359), - [sym_type_ident] = ACTIONS(1359), - [sym_ct_type_ident] = ACTIONS(1359), - [sym_const_ident] = ACTIONS(1357), - [sym_builtin] = ACTIONS(1359), - [anon_sym_COMMA] = ACTIONS(1361), - [anon_sym_GT_RPAREN] = ACTIONS(1361), - [anon_sym_EQ] = ACTIONS(1363), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_RPAREN] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_RBRACK] = ACTIONS(1361), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym_fn] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_RBRACE] = ACTIONS(1361), - [anon_sym_COLON] = ACTIONS(1361), - [anon_sym_DOT_DOT] = ACTIONS(1361), - [anon_sym_DOT] = ACTIONS(1363), - [anon_sym_AMP_AMP] = ACTIONS(1359), - [anon_sym_int] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_LT_LT] = ACTIONS(1363), - [anon_sym_GT_GT] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_DOLLARalignof] = ACTIONS(1357), - [anon_sym_DOLLARextnameof] = ACTIONS(1357), - [anon_sym_DOLLARnameof] = ACTIONS(1357), - [anon_sym_DOLLARoffsetof] = ACTIONS(1357), - [anon_sym_DOLLARqnameof] = ACTIONS(1357), - [anon_sym_DOLLAReval] = ACTIONS(1357), - [anon_sym_DOLLARdefined] = ACTIONS(1357), - [anon_sym_DOLLARsizeof] = ACTIONS(1357), - [anon_sym_DOLLARstringify] = ACTIONS(1357), - [anon_sym_DOLLARis_const] = ACTIONS(1357), - [anon_sym_DOLLARvaconst] = ACTIONS(1357), - [anon_sym_DOLLARvaarg] = ACTIONS(1357), - [anon_sym_DOLLARvaref] = ACTIONS(1357), - [anon_sym_DOLLARvaexpr] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1357), - [anon_sym_false] = ACTIONS(1357), - [anon_sym_null] = ACTIONS(1357), - [anon_sym_DOLLARvacount] = ACTIONS(1357), - [anon_sym_DOLLARfeature] = ACTIONS(1357), - [anon_sym_DOLLARand] = ACTIONS(1357), - [anon_sym_DOLLARor] = ACTIONS(1357), - [anon_sym_DOLLARassignable] = ACTIONS(1357), - [anon_sym_DOLLARembed] = ACTIONS(1357), - [anon_sym_PLUS_EQ] = ACTIONS(1361), - [anon_sym_DASH_EQ] = ACTIONS(1361), - [anon_sym_STAR_EQ] = ACTIONS(1361), - [anon_sym_SLASH_EQ] = ACTIONS(1361), - [anon_sym_PERCENT_EQ] = ACTIONS(1361), - [anon_sym_LT_LT_EQ] = ACTIONS(1361), - [anon_sym_GT_GT_EQ] = ACTIONS(1361), - [anon_sym_AMP_EQ] = ACTIONS(1361), - [anon_sym_CARET_EQ] = ACTIONS(1361), - [anon_sym_PIPE_EQ] = ACTIONS(1361), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_QMARK_COLON] = ACTIONS(1361), - [anon_sym_QMARK_QMARK] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_SLASH] = ACTIONS(1363), - [anon_sym_PERCENT] = ACTIONS(1363), - [anon_sym_PIPE] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1363), - [anon_sym_EQ_EQ] = ACTIONS(1361), - [anon_sym_BANG_EQ] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(1363), - [anon_sym_GT_EQ] = ACTIONS(1361), - [anon_sym_LT_EQ] = ACTIONS(1361), - [anon_sym_LT] = ACTIONS(1363), - [anon_sym_PIPE_PIPE] = ACTIONS(1361), - [anon_sym_typeid] = ACTIONS(1357), - [anon_sym_LBRACE_PIPE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1357), - [anon_sym_bool] = ACTIONS(1357), - [anon_sym_char] = ACTIONS(1357), - [anon_sym_ichar] = ACTIONS(1357), - [anon_sym_short] = ACTIONS(1357), - [anon_sym_ushort] = ACTIONS(1357), - [anon_sym_uint] = ACTIONS(1357), - [anon_sym_long] = ACTIONS(1357), - [anon_sym_ulong] = ACTIONS(1357), - [anon_sym_int128] = ACTIONS(1357), - [anon_sym_uint128] = ACTIONS(1357), - [anon_sym_float] = ACTIONS(1357), - [anon_sym_double] = ACTIONS(1357), - [anon_sym_float16] = ACTIONS(1357), - [anon_sym_bfloat16] = ACTIONS(1357), - [anon_sym_float128] = ACTIONS(1357), - [anon_sym_iptr] = ACTIONS(1357), - [anon_sym_uptr] = ACTIONS(1357), - [anon_sym_isz] = ACTIONS(1357), - [anon_sym_usz] = ACTIONS(1357), - [anon_sym_anyfault] = ACTIONS(1357), - [anon_sym_any] = ACTIONS(1357), - [anon_sym_DOLLARtypeof] = ACTIONS(1357), - [anon_sym_DOLLARtypefrom] = ACTIONS(1357), - [anon_sym_DOLLARvatype] = ACTIONS(1357), - [anon_sym_DOLLARevaltype] = ACTIONS(1357), - [anon_sym_GT_RBRACK] = ACTIONS(1361), - [sym_real_literal] = ACTIONS(1359), + [sym_ct_ident] = ACTIONS(1433), + [sym_at_ident] = ACTIONS(1435), + [sym_hash_ident] = ACTIONS(1435), + [sym_type_ident] = ACTIONS(1435), + [sym_ct_type_ident] = ACTIONS(1435), + [sym_const_ident] = ACTIONS(1433), + [sym_builtin] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_tlocal] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_fn] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_var] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_defer] = ACTIONS(1433), + [anon_sym_assert] = ACTIONS(1433), + [anon_sym_case] = ACTIONS(1433), + [anon_sym_default] = ACTIONS(1433), + [anon_sym_nextcase] = ACTIONS(1433), + [anon_sym_switch] = ACTIONS(1433), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_foreach] = ACTIONS(1433), + [anon_sym_foreach_r] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_do] = ACTIONS(1433), + [anon_sym_int] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_asm] = ACTIONS(1433), + [anon_sym_DOLLARassert] = ACTIONS(1433), + [anon_sym_DOLLARerror] = ACTIONS(1433), + [anon_sym_DOLLARecho] = ACTIONS(1433), + [anon_sym_DOLLARif] = ACTIONS(1433), + [anon_sym_DOLLARswitch] = ACTIONS(1433), + [anon_sym_DOLLARfor] = ACTIONS(1433), + [anon_sym_DOLLARforeach] = ACTIONS(1433), + [anon_sym_DOLLARalignof] = ACTIONS(1433), + [anon_sym_DOLLARextnameof] = ACTIONS(1433), + [anon_sym_DOLLARnameof] = ACTIONS(1433), + [anon_sym_DOLLARoffsetof] = ACTIONS(1433), + [anon_sym_DOLLARqnameof] = ACTIONS(1433), + [anon_sym_DOLLARvaconst] = ACTIONS(1433), + [anon_sym_DOLLARvaarg] = ACTIONS(1433), + [anon_sym_DOLLARvaref] = ACTIONS(1433), + [anon_sym_DOLLARvaexpr] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1433), + [anon_sym_DOLLARvacount] = ACTIONS(1433), + [anon_sym_DOLLAReval] = ACTIONS(1433), + [anon_sym_DOLLARis_const] = ACTIONS(1433), + [anon_sym_DOLLARsizeof] = ACTIONS(1433), + [anon_sym_DOLLARstringify] = ACTIONS(1433), + [anon_sym_DOLLARappend] = ACTIONS(1433), + [anon_sym_DOLLARconcat] = ACTIONS(1433), + [anon_sym_DOLLARdefined] = ACTIONS(1433), + [anon_sym_DOLLARembed] = ACTIONS(1433), + [anon_sym_DOLLARand] = ACTIONS(1433), + [anon_sym_DOLLARor] = ACTIONS(1433), + [anon_sym_DOLLARfeature] = ACTIONS(1433), + [anon_sym_DOLLARassignable] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_PLUS_PLUS] = ACTIONS(1435), + [anon_sym_DASH_DASH] = ACTIONS(1435), + [anon_sym_typeid] = ACTIONS(1433), + [anon_sym_LBRACE_PIPE] = ACTIONS(1435), + [anon_sym_PIPE_RBRACE] = ACTIONS(1435), + [anon_sym_void] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_ichar] = ACTIONS(1433), + [anon_sym_short] = ACTIONS(1433), + [anon_sym_ushort] = ACTIONS(1433), + [anon_sym_uint] = ACTIONS(1433), + [anon_sym_long] = ACTIONS(1433), + [anon_sym_ulong] = ACTIONS(1433), + [anon_sym_int128] = ACTIONS(1433), + [anon_sym_uint128] = ACTIONS(1433), + [anon_sym_float] = ACTIONS(1433), + [anon_sym_double] = ACTIONS(1433), + [anon_sym_float16] = ACTIONS(1433), + [anon_sym_bfloat16] = ACTIONS(1433), + [anon_sym_float128] = ACTIONS(1433), + [anon_sym_iptr] = ACTIONS(1433), + [anon_sym_uptr] = ACTIONS(1433), + [anon_sym_isz] = ACTIONS(1433), + [anon_sym_usz] = ACTIONS(1433), + [anon_sym_anyfault] = ACTIONS(1433), + [anon_sym_any] = ACTIONS(1433), + [anon_sym_DOLLARtypeof] = ACTIONS(1433), + [anon_sym_DOLLARtypefrom] = ACTIONS(1433), + [anon_sym_DOLLARevaltype] = ACTIONS(1433), + [anon_sym_DOLLARvatype] = ACTIONS(1433), + [sym_real_literal] = ACTIONS(1435), }, [361] = { [sym_line_comment] = STATE(361), [sym_doc_comment] = STATE(361), [sym_block_comment] = STATE(361), - [sym_else_part] = STATE(419), - [sym_ident] = ACTIONS(1365), - [sym_integer_literal] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1367), - [sym_bytes_literal] = ACTIONS(1367), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1365), - [sym_at_ident] = ACTIONS(1367), - [sym_hash_ident] = ACTIONS(1367), - [sym_type_ident] = ACTIONS(1367), - [sym_ct_type_ident] = ACTIONS(1367), - [sym_const_ident] = ACTIONS(1365), - [sym_builtin] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_tlocal] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_fn] = ACTIONS(1365), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_var] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_defer] = ACTIONS(1365), - [anon_sym_assert] = ACTIONS(1365), - [anon_sym_case] = ACTIONS(1365), - [anon_sym_default] = ACTIONS(1365), - [anon_sym_nextcase] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_else] = ACTIONS(1369), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_foreach] = ACTIONS(1365), - [anon_sym_foreach_r] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_do] = ACTIONS(1365), - [anon_sym_int] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_asm] = ACTIONS(1365), - [anon_sym_DOLLARassert] = ACTIONS(1365), - [anon_sym_DOLLARerror] = ACTIONS(1365), - [anon_sym_DOLLARecho] = ACTIONS(1365), - [anon_sym_DOLLARif] = ACTIONS(1365), - [anon_sym_DOLLARswitch] = ACTIONS(1365), - [anon_sym_DOLLARfor] = ACTIONS(1365), - [anon_sym_DOLLARforeach] = ACTIONS(1365), - [anon_sym_DOLLARalignof] = ACTIONS(1365), - [anon_sym_DOLLARextnameof] = ACTIONS(1365), - [anon_sym_DOLLARnameof] = ACTIONS(1365), - [anon_sym_DOLLARoffsetof] = ACTIONS(1365), - [anon_sym_DOLLARqnameof] = ACTIONS(1365), - [anon_sym_DOLLAReval] = ACTIONS(1365), - [anon_sym_DOLLARdefined] = ACTIONS(1365), - [anon_sym_DOLLARsizeof] = ACTIONS(1365), - [anon_sym_DOLLARstringify] = ACTIONS(1365), - [anon_sym_DOLLARis_const] = ACTIONS(1365), - [anon_sym_DOLLARvaconst] = ACTIONS(1365), - [anon_sym_DOLLARvaarg] = ACTIONS(1365), - [anon_sym_DOLLARvaref] = ACTIONS(1365), - [anon_sym_DOLLARvaexpr] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1365), - [anon_sym_false] = ACTIONS(1365), - [anon_sym_null] = ACTIONS(1365), - [anon_sym_DOLLARvacount] = ACTIONS(1365), - [anon_sym_DOLLARfeature] = ACTIONS(1365), - [anon_sym_DOLLARand] = ACTIONS(1365), - [anon_sym_DOLLARor] = ACTIONS(1365), - [anon_sym_DOLLARassignable] = ACTIONS(1365), - [anon_sym_DOLLARembed] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_typeid] = ACTIONS(1365), - [anon_sym_LBRACE_PIPE] = ACTIONS(1367), - [anon_sym_PIPE_RBRACE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1365), - [anon_sym_bool] = ACTIONS(1365), - [anon_sym_char] = ACTIONS(1365), - [anon_sym_ichar] = ACTIONS(1365), - [anon_sym_short] = ACTIONS(1365), - [anon_sym_ushort] = ACTIONS(1365), - [anon_sym_uint] = ACTIONS(1365), - [anon_sym_long] = ACTIONS(1365), - [anon_sym_ulong] = ACTIONS(1365), - [anon_sym_int128] = ACTIONS(1365), - [anon_sym_uint128] = ACTIONS(1365), - [anon_sym_float] = ACTIONS(1365), - [anon_sym_double] = ACTIONS(1365), - [anon_sym_float16] = ACTIONS(1365), - [anon_sym_bfloat16] = ACTIONS(1365), - [anon_sym_float128] = ACTIONS(1365), - [anon_sym_iptr] = ACTIONS(1365), - [anon_sym_uptr] = ACTIONS(1365), - [anon_sym_isz] = ACTIONS(1365), - [anon_sym_usz] = ACTIONS(1365), - [anon_sym_anyfault] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1365), - [anon_sym_DOLLARtypeof] = ACTIONS(1365), - [anon_sym_DOLLARtypefrom] = ACTIONS(1365), - [anon_sym_DOLLARvatype] = ACTIONS(1365), - [anon_sym_DOLLARevaltype] = ACTIONS(1365), - [sym_real_literal] = ACTIONS(1367), - }, - [362] = { - [sym_line_comment] = STATE(362), - [sym_doc_comment] = STATE(362), - [sym_block_comment] = STATE(362), - [sym_ident] = ACTIONS(1371), - [sym_integer_literal] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1373), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BQUOTE] = ACTIONS(1373), - [sym_bytes_literal] = ACTIONS(1373), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1371), - [sym_at_ident] = ACTIONS(1373), - [sym_hash_ident] = ACTIONS(1373), - [sym_type_ident] = ACTIONS(1373), - [sym_ct_type_ident] = ACTIONS(1373), - [sym_const_ident] = ACTIONS(1371), - [sym_builtin] = ACTIONS(1373), - [anon_sym_LPAREN] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1371), - [anon_sym_static] = ACTIONS(1371), - [anon_sym_tlocal] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_fn] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_RBRACE] = ACTIONS(1373), - [anon_sym_const] = ACTIONS(1371), - [anon_sym_var] = ACTIONS(1371), - [anon_sym_return] = ACTIONS(1371), - [anon_sym_continue] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(1371), - [anon_sym_defer] = ACTIONS(1371), - [anon_sym_assert] = ACTIONS(1371), - [anon_sym_case] = ACTIONS(1371), - [anon_sym_default] = ACTIONS(1371), - [anon_sym_nextcase] = ACTIONS(1371), - [anon_sym_switch] = ACTIONS(1371), - [anon_sym_AMP_AMP] = ACTIONS(1373), - [anon_sym_if] = ACTIONS(1371), - [anon_sym_else] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1371), - [anon_sym_foreach] = ACTIONS(1371), - [anon_sym_foreach_r] = ACTIONS(1371), - [anon_sym_while] = ACTIONS(1371), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_int] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_asm] = ACTIONS(1371), - [anon_sym_DOLLARassert] = ACTIONS(1371), - [anon_sym_DOLLARerror] = ACTIONS(1371), - [anon_sym_DOLLARecho] = ACTIONS(1371), - [anon_sym_DOLLARif] = ACTIONS(1371), - [anon_sym_DOLLARswitch] = ACTIONS(1371), - [anon_sym_DOLLARfor] = ACTIONS(1371), - [anon_sym_DOLLARforeach] = ACTIONS(1371), - [anon_sym_DOLLARalignof] = ACTIONS(1371), - [anon_sym_DOLLARextnameof] = ACTIONS(1371), - [anon_sym_DOLLARnameof] = ACTIONS(1371), - [anon_sym_DOLLARoffsetof] = ACTIONS(1371), - [anon_sym_DOLLARqnameof] = ACTIONS(1371), - [anon_sym_DOLLAReval] = ACTIONS(1371), - [anon_sym_DOLLARdefined] = ACTIONS(1371), - [anon_sym_DOLLARsizeof] = ACTIONS(1371), - [anon_sym_DOLLARstringify] = ACTIONS(1371), - [anon_sym_DOLLARis_const] = ACTIONS(1371), - [anon_sym_DOLLARvaconst] = ACTIONS(1371), - [anon_sym_DOLLARvaarg] = ACTIONS(1371), - [anon_sym_DOLLARvaref] = ACTIONS(1371), - [anon_sym_DOLLARvaexpr] = ACTIONS(1371), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_null] = ACTIONS(1371), - [anon_sym_DOLLARvacount] = ACTIONS(1371), - [anon_sym_DOLLARfeature] = ACTIONS(1371), - [anon_sym_DOLLARand] = ACTIONS(1371), - [anon_sym_DOLLARor] = ACTIONS(1371), - [anon_sym_DOLLARassignable] = ACTIONS(1371), - [anon_sym_DOLLARembed] = ACTIONS(1371), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), - [anon_sym_typeid] = ACTIONS(1371), - [anon_sym_LBRACE_PIPE] = ACTIONS(1373), - [anon_sym_PIPE_RBRACE] = ACTIONS(1373), - [anon_sym_void] = ACTIONS(1371), - [anon_sym_bool] = ACTIONS(1371), - [anon_sym_char] = ACTIONS(1371), - [anon_sym_ichar] = ACTIONS(1371), - [anon_sym_short] = ACTIONS(1371), - [anon_sym_ushort] = ACTIONS(1371), - [anon_sym_uint] = ACTIONS(1371), - [anon_sym_long] = ACTIONS(1371), - [anon_sym_ulong] = ACTIONS(1371), - [anon_sym_int128] = ACTIONS(1371), - [anon_sym_uint128] = ACTIONS(1371), - [anon_sym_float] = ACTIONS(1371), - [anon_sym_double] = ACTIONS(1371), - [anon_sym_float16] = ACTIONS(1371), - [anon_sym_bfloat16] = ACTIONS(1371), - [anon_sym_float128] = ACTIONS(1371), - [anon_sym_iptr] = ACTIONS(1371), - [anon_sym_uptr] = ACTIONS(1371), - [anon_sym_isz] = ACTIONS(1371), - [anon_sym_usz] = ACTIONS(1371), - [anon_sym_anyfault] = ACTIONS(1371), - [anon_sym_any] = ACTIONS(1371), - [anon_sym_DOLLARtypeof] = ACTIONS(1371), - [anon_sym_DOLLARtypefrom] = ACTIONS(1371), - [anon_sym_DOLLARvatype] = ACTIONS(1371), - [anon_sym_DOLLARevaltype] = ACTIONS(1371), - [sym_real_literal] = ACTIONS(1373), - }, - [363] = { - [sym_line_comment] = STATE(363), - [sym_doc_comment] = STATE(363), - [sym_block_comment] = STATE(363), - [sym_else_part] = STATE(466), - [sym_ident] = ACTIONS(1365), - [sym_integer_literal] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1367), - [sym_bytes_literal] = ACTIONS(1367), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1365), - [sym_at_ident] = ACTIONS(1367), - [sym_hash_ident] = ACTIONS(1367), - [sym_type_ident] = ACTIONS(1367), - [sym_ct_type_ident] = ACTIONS(1367), - [sym_const_ident] = ACTIONS(1365), - [sym_builtin] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_tlocal] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_fn] = ACTIONS(1365), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_var] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_defer] = ACTIONS(1365), - [anon_sym_assert] = ACTIONS(1365), - [anon_sym_nextcase] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_else] = ACTIONS(1375), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_foreach] = ACTIONS(1365), - [anon_sym_foreach_r] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_do] = ACTIONS(1365), - [anon_sym_int] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_asm] = ACTIONS(1365), - [anon_sym_DOLLARassert] = ACTIONS(1365), - [anon_sym_DOLLARerror] = ACTIONS(1365), - [anon_sym_DOLLARecho] = ACTIONS(1365), - [anon_sym_DOLLARif] = ACTIONS(1365), - [anon_sym_DOLLARcase] = ACTIONS(1365), - [anon_sym_DOLLARdefault] = ACTIONS(1365), - [anon_sym_DOLLARswitch] = ACTIONS(1365), - [anon_sym_DOLLARendswitch] = ACTIONS(1365), - [anon_sym_DOLLARfor] = ACTIONS(1365), - [anon_sym_DOLLARforeach] = ACTIONS(1365), - [anon_sym_DOLLARalignof] = ACTIONS(1365), - [anon_sym_DOLLARextnameof] = ACTIONS(1365), - [anon_sym_DOLLARnameof] = ACTIONS(1365), - [anon_sym_DOLLARoffsetof] = ACTIONS(1365), - [anon_sym_DOLLARqnameof] = ACTIONS(1365), - [anon_sym_DOLLAReval] = ACTIONS(1365), - [anon_sym_DOLLARdefined] = ACTIONS(1365), - [anon_sym_DOLLARsizeof] = ACTIONS(1365), - [anon_sym_DOLLARstringify] = ACTIONS(1365), - [anon_sym_DOLLARis_const] = ACTIONS(1365), - [anon_sym_DOLLARvaconst] = ACTIONS(1365), - [anon_sym_DOLLARvaarg] = ACTIONS(1365), - [anon_sym_DOLLARvaref] = ACTIONS(1365), - [anon_sym_DOLLARvaexpr] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1365), - [anon_sym_false] = ACTIONS(1365), - [anon_sym_null] = ACTIONS(1365), - [anon_sym_DOLLARvacount] = ACTIONS(1365), - [anon_sym_DOLLARfeature] = ACTIONS(1365), - [anon_sym_DOLLARand] = ACTIONS(1365), - [anon_sym_DOLLARor] = ACTIONS(1365), - [anon_sym_DOLLARassignable] = ACTIONS(1365), - [anon_sym_DOLLARembed] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_typeid] = ACTIONS(1365), - [anon_sym_LBRACE_PIPE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1365), - [anon_sym_bool] = ACTIONS(1365), - [anon_sym_char] = ACTIONS(1365), - [anon_sym_ichar] = ACTIONS(1365), - [anon_sym_short] = ACTIONS(1365), - [anon_sym_ushort] = ACTIONS(1365), - [anon_sym_uint] = ACTIONS(1365), - [anon_sym_long] = ACTIONS(1365), - [anon_sym_ulong] = ACTIONS(1365), - [anon_sym_int128] = ACTIONS(1365), - [anon_sym_uint128] = ACTIONS(1365), - [anon_sym_float] = ACTIONS(1365), - [anon_sym_double] = ACTIONS(1365), - [anon_sym_float16] = ACTIONS(1365), - [anon_sym_bfloat16] = ACTIONS(1365), - [anon_sym_float128] = ACTIONS(1365), - [anon_sym_iptr] = ACTIONS(1365), - [anon_sym_uptr] = ACTIONS(1365), - [anon_sym_isz] = ACTIONS(1365), - [anon_sym_usz] = ACTIONS(1365), - [anon_sym_anyfault] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1365), - [anon_sym_DOLLARtypeof] = ACTIONS(1365), - [anon_sym_DOLLARtypefrom] = ACTIONS(1365), - [anon_sym_DOLLARvatype] = ACTIONS(1365), - [anon_sym_DOLLARevaltype] = ACTIONS(1365), - [sym_real_literal] = ACTIONS(1367), - }, - [364] = { - [sym_line_comment] = STATE(364), - [sym_doc_comment] = STATE(364), - [sym_block_comment] = STATE(364), - [sym_ident] = ACTIONS(1377), - [sym_integer_literal] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1379), - [anon_sym_BQUOTE] = ACTIONS(1379), - [sym_bytes_literal] = ACTIONS(1379), + [sym_ident] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_BQUOTE] = ACTIONS(1439), + [sym_bytes_literal] = ACTIONS(1439), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1377), - [sym_at_ident] = ACTIONS(1379), - [sym_hash_ident] = ACTIONS(1379), - [sym_type_ident] = ACTIONS(1379), - [sym_ct_type_ident] = ACTIONS(1379), - [sym_const_ident] = ACTIONS(1377), - [sym_builtin] = ACTIONS(1379), - [anon_sym_LPAREN] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(1377), - [anon_sym_tlocal] = ACTIONS(1377), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_fn] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_RBRACE] = ACTIONS(1379), - [anon_sym_const] = ACTIONS(1377), - [anon_sym_var] = ACTIONS(1377), - [anon_sym_return] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1377), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_defer] = ACTIONS(1377), - [anon_sym_assert] = ACTIONS(1377), - [anon_sym_case] = ACTIONS(1377), - [anon_sym_default] = ACTIONS(1377), - [anon_sym_nextcase] = ACTIONS(1377), - [anon_sym_switch] = ACTIONS(1377), - [anon_sym_AMP_AMP] = ACTIONS(1379), - [anon_sym_if] = ACTIONS(1377), - [anon_sym_else] = ACTIONS(1377), - [anon_sym_for] = ACTIONS(1377), - [anon_sym_foreach] = ACTIONS(1377), - [anon_sym_foreach_r] = ACTIONS(1377), - [anon_sym_while] = ACTIONS(1377), - [anon_sym_do] = ACTIONS(1377), - [anon_sym_int] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_asm] = ACTIONS(1377), - [anon_sym_DOLLARassert] = ACTIONS(1377), - [anon_sym_DOLLARerror] = ACTIONS(1377), - [anon_sym_DOLLARecho] = ACTIONS(1377), - [anon_sym_DOLLARif] = ACTIONS(1377), - [anon_sym_DOLLARswitch] = ACTIONS(1377), - [anon_sym_DOLLARfor] = ACTIONS(1377), - [anon_sym_DOLLARforeach] = ACTIONS(1377), - [anon_sym_DOLLARalignof] = ACTIONS(1377), - [anon_sym_DOLLARextnameof] = ACTIONS(1377), - [anon_sym_DOLLARnameof] = ACTIONS(1377), - [anon_sym_DOLLARoffsetof] = ACTIONS(1377), - [anon_sym_DOLLARqnameof] = ACTIONS(1377), - [anon_sym_DOLLAReval] = ACTIONS(1377), - [anon_sym_DOLLARdefined] = ACTIONS(1377), - [anon_sym_DOLLARsizeof] = ACTIONS(1377), - [anon_sym_DOLLARstringify] = ACTIONS(1377), - [anon_sym_DOLLARis_const] = ACTIONS(1377), - [anon_sym_DOLLARvaconst] = ACTIONS(1377), - [anon_sym_DOLLARvaarg] = ACTIONS(1377), - [anon_sym_DOLLARvaref] = ACTIONS(1377), - [anon_sym_DOLLARvaexpr] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1377), - [anon_sym_false] = ACTIONS(1377), - [anon_sym_null] = ACTIONS(1377), - [anon_sym_DOLLARvacount] = ACTIONS(1377), - [anon_sym_DOLLARfeature] = ACTIONS(1377), - [anon_sym_DOLLARand] = ACTIONS(1377), - [anon_sym_DOLLARor] = ACTIONS(1377), - [anon_sym_DOLLARassignable] = ACTIONS(1377), - [anon_sym_DOLLARembed] = ACTIONS(1377), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [anon_sym_typeid] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), - [anon_sym_PIPE_RBRACE] = ACTIONS(1379), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_bool] = ACTIONS(1377), - [anon_sym_char] = ACTIONS(1377), - [anon_sym_ichar] = ACTIONS(1377), - [anon_sym_short] = ACTIONS(1377), - [anon_sym_ushort] = ACTIONS(1377), - [anon_sym_uint] = ACTIONS(1377), - [anon_sym_long] = ACTIONS(1377), - [anon_sym_ulong] = ACTIONS(1377), - [anon_sym_int128] = ACTIONS(1377), - [anon_sym_uint128] = ACTIONS(1377), - [anon_sym_float] = ACTIONS(1377), - [anon_sym_double] = ACTIONS(1377), - [anon_sym_float16] = ACTIONS(1377), - [anon_sym_bfloat16] = ACTIONS(1377), - [anon_sym_float128] = ACTIONS(1377), - [anon_sym_iptr] = ACTIONS(1377), - [anon_sym_uptr] = ACTIONS(1377), - [anon_sym_isz] = ACTIONS(1377), - [anon_sym_usz] = ACTIONS(1377), - [anon_sym_anyfault] = ACTIONS(1377), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_DOLLARtypeof] = ACTIONS(1377), - [anon_sym_DOLLARtypefrom] = ACTIONS(1377), - [anon_sym_DOLLARvatype] = ACTIONS(1377), - [anon_sym_DOLLARevaltype] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), + [sym_ct_ident] = ACTIONS(1437), + [sym_at_ident] = ACTIONS(1439), + [sym_hash_ident] = ACTIONS(1439), + [sym_type_ident] = ACTIONS(1439), + [sym_ct_type_ident] = ACTIONS(1439), + [sym_const_ident] = ACTIONS(1437), + [sym_builtin] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_tlocal] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1439), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_var] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_defer] = ACTIONS(1437), + [anon_sym_assert] = ACTIONS(1437), + [anon_sym_case] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1437), + [anon_sym_nextcase] = ACTIONS(1437), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_foreach] = ACTIONS(1437), + [anon_sym_foreach_r] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_int] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_asm] = ACTIONS(1437), + [anon_sym_DOLLARassert] = ACTIONS(1437), + [anon_sym_DOLLARerror] = ACTIONS(1437), + [anon_sym_DOLLARecho] = ACTIONS(1437), + [anon_sym_DOLLARif] = ACTIONS(1437), + [anon_sym_DOLLARswitch] = ACTIONS(1437), + [anon_sym_DOLLARfor] = ACTIONS(1437), + [anon_sym_DOLLARforeach] = ACTIONS(1437), + [anon_sym_DOLLARalignof] = ACTIONS(1437), + [anon_sym_DOLLARextnameof] = ACTIONS(1437), + [anon_sym_DOLLARnameof] = ACTIONS(1437), + [anon_sym_DOLLARoffsetof] = ACTIONS(1437), + [anon_sym_DOLLARqnameof] = ACTIONS(1437), + [anon_sym_DOLLARvaconst] = ACTIONS(1437), + [anon_sym_DOLLARvaarg] = ACTIONS(1437), + [anon_sym_DOLLARvaref] = ACTIONS(1437), + [anon_sym_DOLLARvaexpr] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_DOLLARvacount] = ACTIONS(1437), + [anon_sym_DOLLAReval] = ACTIONS(1437), + [anon_sym_DOLLARis_const] = ACTIONS(1437), + [anon_sym_DOLLARsizeof] = ACTIONS(1437), + [anon_sym_DOLLARstringify] = ACTIONS(1437), + [anon_sym_DOLLARappend] = ACTIONS(1437), + [anon_sym_DOLLARconcat] = ACTIONS(1437), + [anon_sym_DOLLARdefined] = ACTIONS(1437), + [anon_sym_DOLLARembed] = ACTIONS(1437), + [anon_sym_DOLLARand] = ACTIONS(1437), + [anon_sym_DOLLARor] = ACTIONS(1437), + [anon_sym_DOLLARfeature] = ACTIONS(1437), + [anon_sym_DOLLARassignable] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_typeid] = ACTIONS(1437), + [anon_sym_LBRACE_PIPE] = ACTIONS(1439), + [anon_sym_PIPE_RBRACE] = ACTIONS(1439), + [anon_sym_void] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_ichar] = ACTIONS(1437), + [anon_sym_short] = ACTIONS(1437), + [anon_sym_ushort] = ACTIONS(1437), + [anon_sym_uint] = ACTIONS(1437), + [anon_sym_long] = ACTIONS(1437), + [anon_sym_ulong] = ACTIONS(1437), + [anon_sym_int128] = ACTIONS(1437), + [anon_sym_uint128] = ACTIONS(1437), + [anon_sym_float] = ACTIONS(1437), + [anon_sym_double] = ACTIONS(1437), + [anon_sym_float16] = ACTIONS(1437), + [anon_sym_bfloat16] = ACTIONS(1437), + [anon_sym_float128] = ACTIONS(1437), + [anon_sym_iptr] = ACTIONS(1437), + [anon_sym_uptr] = ACTIONS(1437), + [anon_sym_isz] = ACTIONS(1437), + [anon_sym_usz] = ACTIONS(1437), + [anon_sym_anyfault] = ACTIONS(1437), + [anon_sym_any] = ACTIONS(1437), + [anon_sym_DOLLARtypeof] = ACTIONS(1437), + [anon_sym_DOLLARtypefrom] = ACTIONS(1437), + [anon_sym_DOLLARevaltype] = ACTIONS(1437), + [anon_sym_DOLLARvatype] = ACTIONS(1437), + [sym_real_literal] = ACTIONS(1439), }, - [365] = { - [sym_line_comment] = STATE(365), - [sym_doc_comment] = STATE(365), - [sym_block_comment] = STATE(365), - [sym_ident] = ACTIONS(1381), - [sym_integer_literal] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1383), - [anon_sym_BQUOTE] = ACTIONS(1383), - [sym_bytes_literal] = ACTIONS(1383), + [362] = { + [sym_line_comment] = STATE(362), + [sym_doc_comment] = STATE(362), + [sym_block_comment] = STATE(362), + [sym_ident] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_bytes_literal] = ACTIONS(1443), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1381), - [sym_at_ident] = ACTIONS(1383), - [sym_hash_ident] = ACTIONS(1383), - [sym_type_ident] = ACTIONS(1383), - [sym_ct_type_ident] = ACTIONS(1383), - [sym_const_ident] = ACTIONS(1381), - [sym_builtin] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_tlocal] = ACTIONS(1381), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_fn] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_RBRACE] = ACTIONS(1383), - [anon_sym_const] = ACTIONS(1381), - [anon_sym_var] = ACTIONS(1381), - [anon_sym_return] = ACTIONS(1381), - [anon_sym_continue] = ACTIONS(1381), - [anon_sym_break] = ACTIONS(1381), - [anon_sym_defer] = ACTIONS(1381), - [anon_sym_assert] = ACTIONS(1381), - [anon_sym_case] = ACTIONS(1381), - [anon_sym_default] = ACTIONS(1381), - [anon_sym_nextcase] = ACTIONS(1381), - [anon_sym_switch] = ACTIONS(1381), - [anon_sym_AMP_AMP] = ACTIONS(1383), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_for] = ACTIONS(1381), - [anon_sym_foreach] = ACTIONS(1381), - [anon_sym_foreach_r] = ACTIONS(1381), - [anon_sym_while] = ACTIONS(1381), - [anon_sym_do] = ACTIONS(1381), - [anon_sym_int] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1381), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_asm] = ACTIONS(1381), - [anon_sym_DOLLARassert] = ACTIONS(1381), - [anon_sym_DOLLARerror] = ACTIONS(1381), - [anon_sym_DOLLARecho] = ACTIONS(1381), - [anon_sym_DOLLARif] = ACTIONS(1381), - [anon_sym_DOLLARswitch] = ACTIONS(1381), - [anon_sym_DOLLARfor] = ACTIONS(1381), - [anon_sym_DOLLARforeach] = ACTIONS(1381), - [anon_sym_DOLLARalignof] = ACTIONS(1381), - [anon_sym_DOLLARextnameof] = ACTIONS(1381), - [anon_sym_DOLLARnameof] = ACTIONS(1381), - [anon_sym_DOLLARoffsetof] = ACTIONS(1381), - [anon_sym_DOLLARqnameof] = ACTIONS(1381), - [anon_sym_DOLLAReval] = ACTIONS(1381), - [anon_sym_DOLLARdefined] = ACTIONS(1381), - [anon_sym_DOLLARsizeof] = ACTIONS(1381), - [anon_sym_DOLLARstringify] = ACTIONS(1381), - [anon_sym_DOLLARis_const] = ACTIONS(1381), - [anon_sym_DOLLARvaconst] = ACTIONS(1381), - [anon_sym_DOLLARvaarg] = ACTIONS(1381), - [anon_sym_DOLLARvaref] = ACTIONS(1381), - [anon_sym_DOLLARvaexpr] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1381), - [anon_sym_false] = ACTIONS(1381), - [anon_sym_null] = ACTIONS(1381), - [anon_sym_DOLLARvacount] = ACTIONS(1381), - [anon_sym_DOLLARfeature] = ACTIONS(1381), - [anon_sym_DOLLARand] = ACTIONS(1381), - [anon_sym_DOLLARor] = ACTIONS(1381), - [anon_sym_DOLLARassignable] = ACTIONS(1381), - [anon_sym_DOLLARembed] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_TILDE] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1383), - [anon_sym_DASH_DASH] = ACTIONS(1383), - [anon_sym_typeid] = ACTIONS(1381), - [anon_sym_LBRACE_PIPE] = ACTIONS(1383), - [anon_sym_PIPE_RBRACE] = ACTIONS(1383), - [anon_sym_void] = ACTIONS(1381), - [anon_sym_bool] = ACTIONS(1381), - [anon_sym_char] = ACTIONS(1381), - [anon_sym_ichar] = ACTIONS(1381), - [anon_sym_short] = ACTIONS(1381), - [anon_sym_ushort] = ACTIONS(1381), - [anon_sym_uint] = ACTIONS(1381), - [anon_sym_long] = ACTIONS(1381), - [anon_sym_ulong] = ACTIONS(1381), - [anon_sym_int128] = ACTIONS(1381), - [anon_sym_uint128] = ACTIONS(1381), - [anon_sym_float] = ACTIONS(1381), - [anon_sym_double] = ACTIONS(1381), - [anon_sym_float16] = ACTIONS(1381), - [anon_sym_bfloat16] = ACTIONS(1381), - [anon_sym_float128] = ACTIONS(1381), - [anon_sym_iptr] = ACTIONS(1381), - [anon_sym_uptr] = ACTIONS(1381), - [anon_sym_isz] = ACTIONS(1381), - [anon_sym_usz] = ACTIONS(1381), - [anon_sym_anyfault] = ACTIONS(1381), - [anon_sym_any] = ACTIONS(1381), - [anon_sym_DOLLARtypeof] = ACTIONS(1381), - [anon_sym_DOLLARtypefrom] = ACTIONS(1381), - [anon_sym_DOLLARvatype] = ACTIONS(1381), - [anon_sym_DOLLARevaltype] = ACTIONS(1381), - [sym_real_literal] = ACTIONS(1383), + [sym_ct_ident] = ACTIONS(1441), + [sym_at_ident] = ACTIONS(1443), + [sym_hash_ident] = ACTIONS(1443), + [sym_type_ident] = ACTIONS(1443), + [sym_ct_type_ident] = ACTIONS(1443), + [sym_const_ident] = ACTIONS(1441), + [sym_builtin] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_tlocal] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1443), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_defer] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_case] = ACTIONS(1441), + [anon_sym_default] = ACTIONS(1441), + [anon_sym_nextcase] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_foreach] = ACTIONS(1441), + [anon_sym_foreach_r] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_int] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_asm] = ACTIONS(1441), + [anon_sym_DOLLARassert] = ACTIONS(1441), + [anon_sym_DOLLARerror] = ACTIONS(1441), + [anon_sym_DOLLARecho] = ACTIONS(1441), + [anon_sym_DOLLARif] = ACTIONS(1441), + [anon_sym_DOLLARswitch] = ACTIONS(1441), + [anon_sym_DOLLARfor] = ACTIONS(1441), + [anon_sym_DOLLARforeach] = ACTIONS(1441), + [anon_sym_DOLLARalignof] = ACTIONS(1441), + [anon_sym_DOLLARextnameof] = ACTIONS(1441), + [anon_sym_DOLLARnameof] = ACTIONS(1441), + [anon_sym_DOLLARoffsetof] = ACTIONS(1441), + [anon_sym_DOLLARqnameof] = ACTIONS(1441), + [anon_sym_DOLLARvaconst] = ACTIONS(1441), + [anon_sym_DOLLARvaarg] = ACTIONS(1441), + [anon_sym_DOLLARvaref] = ACTIONS(1441), + [anon_sym_DOLLARvaexpr] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_DOLLARvacount] = ACTIONS(1441), + [anon_sym_DOLLAReval] = ACTIONS(1441), + [anon_sym_DOLLARis_const] = ACTIONS(1441), + [anon_sym_DOLLARsizeof] = ACTIONS(1441), + [anon_sym_DOLLARstringify] = ACTIONS(1441), + [anon_sym_DOLLARappend] = ACTIONS(1441), + [anon_sym_DOLLARconcat] = ACTIONS(1441), + [anon_sym_DOLLARdefined] = ACTIONS(1441), + [anon_sym_DOLLARembed] = ACTIONS(1441), + [anon_sym_DOLLARand] = ACTIONS(1441), + [anon_sym_DOLLARor] = ACTIONS(1441), + [anon_sym_DOLLARfeature] = ACTIONS(1441), + [anon_sym_DOLLARassignable] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_typeid] = ACTIONS(1441), + [anon_sym_LBRACE_PIPE] = ACTIONS(1443), + [anon_sym_PIPE_RBRACE] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_ichar] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_ushort] = ACTIONS(1441), + [anon_sym_uint] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_ulong] = ACTIONS(1441), + [anon_sym_int128] = ACTIONS(1441), + [anon_sym_uint128] = ACTIONS(1441), + [anon_sym_float] = ACTIONS(1441), + [anon_sym_double] = ACTIONS(1441), + [anon_sym_float16] = ACTIONS(1441), + [anon_sym_bfloat16] = ACTIONS(1441), + [anon_sym_float128] = ACTIONS(1441), + [anon_sym_iptr] = ACTIONS(1441), + [anon_sym_uptr] = ACTIONS(1441), + [anon_sym_isz] = ACTIONS(1441), + [anon_sym_usz] = ACTIONS(1441), + [anon_sym_anyfault] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_DOLLARtypeof] = ACTIONS(1441), + [anon_sym_DOLLARtypefrom] = ACTIONS(1441), + [anon_sym_DOLLARevaltype] = ACTIONS(1441), + [anon_sym_DOLLARvatype] = ACTIONS(1441), + [sym_real_literal] = ACTIONS(1443), }, - [366] = { - [sym_line_comment] = STATE(366), - [sym_doc_comment] = STATE(366), - [sym_block_comment] = STATE(366), - [sym_ident] = ACTIONS(1385), - [sym_integer_literal] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1387), - [anon_sym_DQUOTE] = ACTIONS(1387), - [anon_sym_BQUOTE] = ACTIONS(1387), - [sym_bytes_literal] = ACTIONS(1387), + [363] = { + [sym_line_comment] = STATE(363), + [sym_doc_comment] = STATE(363), + [sym_block_comment] = STATE(363), + [sym_ident] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [anon_sym_BQUOTE] = ACTIONS(1447), + [sym_bytes_literal] = ACTIONS(1447), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1385), - [sym_at_ident] = ACTIONS(1387), - [sym_hash_ident] = ACTIONS(1387), - [sym_type_ident] = ACTIONS(1387), - [sym_ct_type_ident] = ACTIONS(1387), - [sym_const_ident] = ACTIONS(1385), - [sym_builtin] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1385), - [anon_sym_tlocal] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_fn] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_RBRACE] = ACTIONS(1387), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_var] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_defer] = ACTIONS(1385), - [anon_sym_assert] = ACTIONS(1385), - [anon_sym_case] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_nextcase] = ACTIONS(1385), - [anon_sym_switch] = ACTIONS(1385), - [anon_sym_AMP_AMP] = ACTIONS(1387), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_foreach] = ACTIONS(1385), - [anon_sym_foreach_r] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_do] = ACTIONS(1385), - [anon_sym_int] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_asm] = ACTIONS(1385), - [anon_sym_DOLLARassert] = ACTIONS(1385), - [anon_sym_DOLLARerror] = ACTIONS(1385), - [anon_sym_DOLLARecho] = ACTIONS(1385), - [anon_sym_DOLLARif] = ACTIONS(1385), - [anon_sym_DOLLARswitch] = ACTIONS(1385), - [anon_sym_DOLLARfor] = ACTIONS(1385), - [anon_sym_DOLLARforeach] = ACTIONS(1385), - [anon_sym_DOLLARalignof] = ACTIONS(1385), - [anon_sym_DOLLARextnameof] = ACTIONS(1385), - [anon_sym_DOLLARnameof] = ACTIONS(1385), - [anon_sym_DOLLARoffsetof] = ACTIONS(1385), - [anon_sym_DOLLARqnameof] = ACTIONS(1385), - [anon_sym_DOLLAReval] = ACTIONS(1385), - [anon_sym_DOLLARdefined] = ACTIONS(1385), - [anon_sym_DOLLARsizeof] = ACTIONS(1385), - [anon_sym_DOLLARstringify] = ACTIONS(1385), - [anon_sym_DOLLARis_const] = ACTIONS(1385), - [anon_sym_DOLLARvaconst] = ACTIONS(1385), - [anon_sym_DOLLARvaarg] = ACTIONS(1385), - [anon_sym_DOLLARvaref] = ACTIONS(1385), - [anon_sym_DOLLARvaexpr] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1385), - [anon_sym_false] = ACTIONS(1385), - [anon_sym_null] = ACTIONS(1385), - [anon_sym_DOLLARvacount] = ACTIONS(1385), - [anon_sym_DOLLARfeature] = ACTIONS(1385), - [anon_sym_DOLLARand] = ACTIONS(1385), - [anon_sym_DOLLARor] = ACTIONS(1385), - [anon_sym_DOLLARassignable] = ACTIONS(1385), - [anon_sym_DOLLARembed] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_PLUS_PLUS] = ACTIONS(1387), - [anon_sym_DASH_DASH] = ACTIONS(1387), - [anon_sym_typeid] = ACTIONS(1385), - [anon_sym_LBRACE_PIPE] = ACTIONS(1387), - [anon_sym_PIPE_RBRACE] = ACTIONS(1387), - [anon_sym_void] = ACTIONS(1385), - [anon_sym_bool] = ACTIONS(1385), - [anon_sym_char] = ACTIONS(1385), - [anon_sym_ichar] = ACTIONS(1385), - [anon_sym_short] = ACTIONS(1385), - [anon_sym_ushort] = ACTIONS(1385), - [anon_sym_uint] = ACTIONS(1385), - [anon_sym_long] = ACTIONS(1385), - [anon_sym_ulong] = ACTIONS(1385), - [anon_sym_int128] = ACTIONS(1385), - [anon_sym_uint128] = ACTIONS(1385), - [anon_sym_float] = ACTIONS(1385), - [anon_sym_double] = ACTIONS(1385), - [anon_sym_float16] = ACTIONS(1385), - [anon_sym_bfloat16] = ACTIONS(1385), - [anon_sym_float128] = ACTIONS(1385), - [anon_sym_iptr] = ACTIONS(1385), - [anon_sym_uptr] = ACTIONS(1385), - [anon_sym_isz] = ACTIONS(1385), - [anon_sym_usz] = ACTIONS(1385), - [anon_sym_anyfault] = ACTIONS(1385), - [anon_sym_any] = ACTIONS(1385), - [anon_sym_DOLLARtypeof] = ACTIONS(1385), - [anon_sym_DOLLARtypefrom] = ACTIONS(1385), - [anon_sym_DOLLARvatype] = ACTIONS(1385), - [anon_sym_DOLLARevaltype] = ACTIONS(1385), - [sym_real_literal] = ACTIONS(1387), - }, - [367] = { - [sym_line_comment] = STATE(367), - [sym_doc_comment] = STATE(367), - [sym_block_comment] = STATE(367), - [sym_ident] = ACTIONS(1389), - [sym_integer_literal] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1391), - [anon_sym_DQUOTE] = ACTIONS(1391), - [anon_sym_BQUOTE] = ACTIONS(1391), - [sym_bytes_literal] = ACTIONS(1391), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1389), - [sym_at_ident] = ACTIONS(1391), - [sym_hash_ident] = ACTIONS(1391), - [sym_type_ident] = ACTIONS(1391), - [sym_ct_type_ident] = ACTIONS(1391), - [sym_const_ident] = ACTIONS(1389), - [sym_builtin] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_tlocal] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym_fn] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_RBRACE] = ACTIONS(1391), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_var] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_defer] = ACTIONS(1389), - [anon_sym_assert] = ACTIONS(1389), - [anon_sym_case] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_nextcase] = ACTIONS(1389), - [anon_sym_switch] = ACTIONS(1389), - [anon_sym_AMP_AMP] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_foreach] = ACTIONS(1389), - [anon_sym_foreach_r] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_int] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1391), - [anon_sym_asm] = ACTIONS(1389), - [anon_sym_DOLLARassert] = ACTIONS(1389), - [anon_sym_DOLLARerror] = ACTIONS(1389), - [anon_sym_DOLLARecho] = ACTIONS(1389), - [anon_sym_DOLLARif] = ACTIONS(1389), - [anon_sym_DOLLARswitch] = ACTIONS(1389), - [anon_sym_DOLLARfor] = ACTIONS(1389), - [anon_sym_DOLLARforeach] = ACTIONS(1389), - [anon_sym_DOLLARalignof] = ACTIONS(1389), - [anon_sym_DOLLARextnameof] = ACTIONS(1389), - [anon_sym_DOLLARnameof] = ACTIONS(1389), - [anon_sym_DOLLARoffsetof] = ACTIONS(1389), - [anon_sym_DOLLARqnameof] = ACTIONS(1389), - [anon_sym_DOLLAReval] = ACTIONS(1389), - [anon_sym_DOLLARdefined] = ACTIONS(1389), - [anon_sym_DOLLARsizeof] = ACTIONS(1389), - [anon_sym_DOLLARstringify] = ACTIONS(1389), - [anon_sym_DOLLARis_const] = ACTIONS(1389), - [anon_sym_DOLLARvaconst] = ACTIONS(1389), - [anon_sym_DOLLARvaarg] = ACTIONS(1389), - [anon_sym_DOLLARvaref] = ACTIONS(1389), - [anon_sym_DOLLARvaexpr] = ACTIONS(1389), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), - [anon_sym_null] = ACTIONS(1389), - [anon_sym_DOLLARvacount] = ACTIONS(1389), - [anon_sym_DOLLARfeature] = ACTIONS(1389), - [anon_sym_DOLLARand] = ACTIONS(1389), - [anon_sym_DOLLARor] = ACTIONS(1389), - [anon_sym_DOLLARassignable] = ACTIONS(1389), - [anon_sym_DOLLARembed] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_TILDE] = ACTIONS(1391), - [anon_sym_PLUS_PLUS] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1391), - [anon_sym_typeid] = ACTIONS(1389), - [anon_sym_LBRACE_PIPE] = ACTIONS(1391), - [anon_sym_PIPE_RBRACE] = ACTIONS(1391), - [anon_sym_void] = ACTIONS(1389), - [anon_sym_bool] = ACTIONS(1389), - [anon_sym_char] = ACTIONS(1389), - [anon_sym_ichar] = ACTIONS(1389), - [anon_sym_short] = ACTIONS(1389), - [anon_sym_ushort] = ACTIONS(1389), - [anon_sym_uint] = ACTIONS(1389), - [anon_sym_long] = ACTIONS(1389), - [anon_sym_ulong] = ACTIONS(1389), - [anon_sym_int128] = ACTIONS(1389), - [anon_sym_uint128] = ACTIONS(1389), - [anon_sym_float] = ACTIONS(1389), - [anon_sym_double] = ACTIONS(1389), - [anon_sym_float16] = ACTIONS(1389), - [anon_sym_bfloat16] = ACTIONS(1389), - [anon_sym_float128] = ACTIONS(1389), - [anon_sym_iptr] = ACTIONS(1389), - [anon_sym_uptr] = ACTIONS(1389), - [anon_sym_isz] = ACTIONS(1389), - [anon_sym_usz] = ACTIONS(1389), - [anon_sym_anyfault] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_DOLLARtypeof] = ACTIONS(1389), - [anon_sym_DOLLARtypefrom] = ACTIONS(1389), - [anon_sym_DOLLARvatype] = ACTIONS(1389), - [anon_sym_DOLLARevaltype] = ACTIONS(1389), - [sym_real_literal] = ACTIONS(1391), - }, - [368] = { - [sym_line_comment] = STATE(368), - [sym_doc_comment] = STATE(368), - [sym_block_comment] = STATE(368), - [sym_ident] = ACTIONS(1393), - [sym_integer_literal] = ACTIONS(1395), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [anon_sym_BQUOTE] = ACTIONS(1395), - [sym_bytes_literal] = ACTIONS(1395), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1393), - [sym_at_ident] = ACTIONS(1395), - [sym_hash_ident] = ACTIONS(1395), - [sym_type_ident] = ACTIONS(1395), - [sym_ct_type_ident] = ACTIONS(1395), - [sym_const_ident] = ACTIONS(1393), - [sym_builtin] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1393), - [anon_sym_tlocal] = ACTIONS(1393), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_fn] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_const] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(1393), - [anon_sym_return] = ACTIONS(1393), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_break] = ACTIONS(1393), - [anon_sym_defer] = ACTIONS(1393), - [anon_sym_assert] = ACTIONS(1393), - [anon_sym_case] = ACTIONS(1393), - [anon_sym_default] = ACTIONS(1393), - [anon_sym_nextcase] = ACTIONS(1393), - [anon_sym_switch] = ACTIONS(1393), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_foreach] = ACTIONS(1393), - [anon_sym_foreach_r] = ACTIONS(1393), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_do] = ACTIONS(1393), - [anon_sym_int] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_asm] = ACTIONS(1393), - [anon_sym_DOLLARassert] = ACTIONS(1393), - [anon_sym_DOLLARerror] = ACTIONS(1393), - [anon_sym_DOLLARecho] = ACTIONS(1393), - [anon_sym_DOLLARif] = ACTIONS(1393), - [anon_sym_DOLLARswitch] = ACTIONS(1393), - [anon_sym_DOLLARfor] = ACTIONS(1393), - [anon_sym_DOLLARforeach] = ACTIONS(1393), - [anon_sym_DOLLARalignof] = ACTIONS(1393), - [anon_sym_DOLLARextnameof] = ACTIONS(1393), - [anon_sym_DOLLARnameof] = ACTIONS(1393), - [anon_sym_DOLLARoffsetof] = ACTIONS(1393), - [anon_sym_DOLLARqnameof] = ACTIONS(1393), - [anon_sym_DOLLAReval] = ACTIONS(1393), - [anon_sym_DOLLARdefined] = ACTIONS(1393), - [anon_sym_DOLLARsizeof] = ACTIONS(1393), - [anon_sym_DOLLARstringify] = ACTIONS(1393), - [anon_sym_DOLLARis_const] = ACTIONS(1393), - [anon_sym_DOLLARvaconst] = ACTIONS(1393), - [anon_sym_DOLLARvaarg] = ACTIONS(1393), - [anon_sym_DOLLARvaref] = ACTIONS(1393), - [anon_sym_DOLLARvaexpr] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(1393), - [anon_sym_false] = ACTIONS(1393), - [anon_sym_null] = ACTIONS(1393), - [anon_sym_DOLLARvacount] = ACTIONS(1393), - [anon_sym_DOLLARfeature] = ACTIONS(1393), - [anon_sym_DOLLARand] = ACTIONS(1393), - [anon_sym_DOLLARor] = ACTIONS(1393), - [anon_sym_DOLLARassignable] = ACTIONS(1393), - [anon_sym_DOLLARembed] = ACTIONS(1393), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_DASH_DASH] = ACTIONS(1395), - [anon_sym_typeid] = ACTIONS(1393), - [anon_sym_LBRACE_PIPE] = ACTIONS(1395), - [anon_sym_PIPE_RBRACE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1393), - [anon_sym_bool] = ACTIONS(1393), - [anon_sym_char] = ACTIONS(1393), - [anon_sym_ichar] = ACTIONS(1393), - [anon_sym_short] = ACTIONS(1393), - [anon_sym_ushort] = ACTIONS(1393), - [anon_sym_uint] = ACTIONS(1393), - [anon_sym_long] = ACTIONS(1393), - [anon_sym_ulong] = ACTIONS(1393), - [anon_sym_int128] = ACTIONS(1393), - [anon_sym_uint128] = ACTIONS(1393), - [anon_sym_float] = ACTIONS(1393), - [anon_sym_double] = ACTIONS(1393), - [anon_sym_float16] = ACTIONS(1393), - [anon_sym_bfloat16] = ACTIONS(1393), - [anon_sym_float128] = ACTIONS(1393), - [anon_sym_iptr] = ACTIONS(1393), - [anon_sym_uptr] = ACTIONS(1393), - [anon_sym_isz] = ACTIONS(1393), - [anon_sym_usz] = ACTIONS(1393), - [anon_sym_anyfault] = ACTIONS(1393), - [anon_sym_any] = ACTIONS(1393), - [anon_sym_DOLLARtypeof] = ACTIONS(1393), - [anon_sym_DOLLARtypefrom] = ACTIONS(1393), - [anon_sym_DOLLARvatype] = ACTIONS(1393), - [anon_sym_DOLLARevaltype] = ACTIONS(1393), - [sym_real_literal] = ACTIONS(1395), - }, - [369] = { - [sym_line_comment] = STATE(369), - [sym_doc_comment] = STATE(369), - [sym_block_comment] = STATE(369), - [sym_ident] = ACTIONS(1397), - [sym_integer_literal] = ACTIONS(1399), - [anon_sym_SQUOTE] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [anon_sym_BQUOTE] = ACTIONS(1399), - [sym_bytes_literal] = ACTIONS(1399), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1397), - [sym_at_ident] = ACTIONS(1399), - [sym_hash_ident] = ACTIONS(1399), - [sym_type_ident] = ACTIONS(1399), - [sym_ct_type_ident] = ACTIONS(1399), - [sym_const_ident] = ACTIONS(1397), - [sym_builtin] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_tlocal] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_fn] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_var] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_defer] = ACTIONS(1397), - [anon_sym_assert] = ACTIONS(1397), - [anon_sym_case] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_nextcase] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1397), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_foreach] = ACTIONS(1397), - [anon_sym_foreach_r] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_int] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_asm] = ACTIONS(1397), - [anon_sym_DOLLARassert] = ACTIONS(1397), - [anon_sym_DOLLARerror] = ACTIONS(1397), - [anon_sym_DOLLARecho] = ACTIONS(1397), - [anon_sym_DOLLARif] = ACTIONS(1397), - [anon_sym_DOLLARswitch] = ACTIONS(1397), - [anon_sym_DOLLARfor] = ACTIONS(1397), - [anon_sym_DOLLARforeach] = ACTIONS(1397), - [anon_sym_DOLLARalignof] = ACTIONS(1397), - [anon_sym_DOLLARextnameof] = ACTIONS(1397), - [anon_sym_DOLLARnameof] = ACTIONS(1397), - [anon_sym_DOLLARoffsetof] = ACTIONS(1397), - [anon_sym_DOLLARqnameof] = ACTIONS(1397), - [anon_sym_DOLLAReval] = ACTIONS(1397), - [anon_sym_DOLLARdefined] = ACTIONS(1397), - [anon_sym_DOLLARsizeof] = ACTIONS(1397), - [anon_sym_DOLLARstringify] = ACTIONS(1397), - [anon_sym_DOLLARis_const] = ACTIONS(1397), - [anon_sym_DOLLARvaconst] = ACTIONS(1397), - [anon_sym_DOLLARvaarg] = ACTIONS(1397), - [anon_sym_DOLLARvaref] = ACTIONS(1397), - [anon_sym_DOLLARvaexpr] = ACTIONS(1397), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [anon_sym_null] = ACTIONS(1397), - [anon_sym_DOLLARvacount] = ACTIONS(1397), - [anon_sym_DOLLARfeature] = ACTIONS(1397), - [anon_sym_DOLLARand] = ACTIONS(1397), - [anon_sym_DOLLARor] = ACTIONS(1397), - [anon_sym_DOLLARassignable] = ACTIONS(1397), - [anon_sym_DOLLARembed] = ACTIONS(1397), - [anon_sym_BANG] = ACTIONS(1399), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(1399), - [anon_sym_typeid] = ACTIONS(1397), - [anon_sym_LBRACE_PIPE] = ACTIONS(1399), - [anon_sym_PIPE_RBRACE] = ACTIONS(1399), - [anon_sym_void] = ACTIONS(1397), - [anon_sym_bool] = ACTIONS(1397), - [anon_sym_char] = ACTIONS(1397), - [anon_sym_ichar] = ACTIONS(1397), - [anon_sym_short] = ACTIONS(1397), - [anon_sym_ushort] = ACTIONS(1397), - [anon_sym_uint] = ACTIONS(1397), - [anon_sym_long] = ACTIONS(1397), - [anon_sym_ulong] = ACTIONS(1397), - [anon_sym_int128] = ACTIONS(1397), - [anon_sym_uint128] = ACTIONS(1397), - [anon_sym_float] = ACTIONS(1397), - [anon_sym_double] = ACTIONS(1397), - [anon_sym_float16] = ACTIONS(1397), - [anon_sym_bfloat16] = ACTIONS(1397), - [anon_sym_float128] = ACTIONS(1397), - [anon_sym_iptr] = ACTIONS(1397), - [anon_sym_uptr] = ACTIONS(1397), - [anon_sym_isz] = ACTIONS(1397), - [anon_sym_usz] = ACTIONS(1397), - [anon_sym_anyfault] = ACTIONS(1397), - [anon_sym_any] = ACTIONS(1397), - [anon_sym_DOLLARtypeof] = ACTIONS(1397), - [anon_sym_DOLLARtypefrom] = ACTIONS(1397), - [anon_sym_DOLLARvatype] = ACTIONS(1397), - [anon_sym_DOLLARevaltype] = ACTIONS(1397), - [sym_real_literal] = ACTIONS(1399), - }, - [370] = { - [sym_line_comment] = STATE(370), - [sym_doc_comment] = STATE(370), - [sym_block_comment] = STATE(370), - [sym_ident] = ACTIONS(1401), - [sym_integer_literal] = ACTIONS(1403), - [anon_sym_SQUOTE] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [anon_sym_BQUOTE] = ACTIONS(1403), - [sym_bytes_literal] = ACTIONS(1403), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1401), - [sym_at_ident] = ACTIONS(1403), - [sym_hash_ident] = ACTIONS(1403), - [sym_type_ident] = ACTIONS(1403), - [sym_ct_type_ident] = ACTIONS(1403), - [sym_const_ident] = ACTIONS(1401), - [sym_builtin] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_tlocal] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1403), - [anon_sym_fn] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_const] = ACTIONS(1401), - [anon_sym_var] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_assert] = ACTIONS(1401), - [anon_sym_case] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_nextcase] = ACTIONS(1401), - [anon_sym_switch] = ACTIONS(1401), - [anon_sym_AMP_AMP] = ACTIONS(1403), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_foreach] = ACTIONS(1401), - [anon_sym_foreach_r] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_do] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_asm] = ACTIONS(1401), - [anon_sym_DOLLARassert] = ACTIONS(1401), - [anon_sym_DOLLARerror] = ACTIONS(1401), - [anon_sym_DOLLARecho] = ACTIONS(1401), - [anon_sym_DOLLARif] = ACTIONS(1401), - [anon_sym_DOLLARswitch] = ACTIONS(1401), - [anon_sym_DOLLARfor] = ACTIONS(1401), - [anon_sym_DOLLARforeach] = ACTIONS(1401), - [anon_sym_DOLLARalignof] = ACTIONS(1401), - [anon_sym_DOLLARextnameof] = ACTIONS(1401), - [anon_sym_DOLLARnameof] = ACTIONS(1401), - [anon_sym_DOLLARoffsetof] = ACTIONS(1401), - [anon_sym_DOLLARqnameof] = ACTIONS(1401), - [anon_sym_DOLLAReval] = ACTIONS(1401), - [anon_sym_DOLLARdefined] = ACTIONS(1401), - [anon_sym_DOLLARsizeof] = ACTIONS(1401), - [anon_sym_DOLLARstringify] = ACTIONS(1401), - [anon_sym_DOLLARis_const] = ACTIONS(1401), - [anon_sym_DOLLARvaconst] = ACTIONS(1401), - [anon_sym_DOLLARvaarg] = ACTIONS(1401), - [anon_sym_DOLLARvaref] = ACTIONS(1401), - [anon_sym_DOLLARvaexpr] = ACTIONS(1401), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_DOLLARvacount] = ACTIONS(1401), - [anon_sym_DOLLARfeature] = ACTIONS(1401), - [anon_sym_DOLLARand] = ACTIONS(1401), - [anon_sym_DOLLARor] = ACTIONS(1401), - [anon_sym_DOLLARassignable] = ACTIONS(1401), - [anon_sym_DOLLARembed] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_typeid] = ACTIONS(1401), - [anon_sym_LBRACE_PIPE] = ACTIONS(1403), - [anon_sym_PIPE_RBRACE] = ACTIONS(1403), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_char] = ACTIONS(1401), - [anon_sym_ichar] = ACTIONS(1401), - [anon_sym_short] = ACTIONS(1401), - [anon_sym_ushort] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_long] = ACTIONS(1401), - [anon_sym_ulong] = ACTIONS(1401), - [anon_sym_int128] = ACTIONS(1401), - [anon_sym_uint128] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_double] = ACTIONS(1401), - [anon_sym_float16] = ACTIONS(1401), - [anon_sym_bfloat16] = ACTIONS(1401), - [anon_sym_float128] = ACTIONS(1401), - [anon_sym_iptr] = ACTIONS(1401), - [anon_sym_uptr] = ACTIONS(1401), - [anon_sym_isz] = ACTIONS(1401), - [anon_sym_usz] = ACTIONS(1401), - [anon_sym_anyfault] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_DOLLARtypeof] = ACTIONS(1401), - [anon_sym_DOLLARtypefrom] = ACTIONS(1401), - [anon_sym_DOLLARvatype] = ACTIONS(1401), - [anon_sym_DOLLARevaltype] = ACTIONS(1401), - [sym_real_literal] = ACTIONS(1403), - }, - [371] = { - [sym_line_comment] = STATE(371), - [sym_doc_comment] = STATE(371), - [sym_block_comment] = STATE(371), - [sym_ident] = ACTIONS(1405), - [sym_integer_literal] = ACTIONS(1407), - [anon_sym_SQUOTE] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [anon_sym_BQUOTE] = ACTIONS(1407), - [sym_bytes_literal] = ACTIONS(1407), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1405), - [sym_at_ident] = ACTIONS(1407), - [sym_hash_ident] = ACTIONS(1407), - [sym_type_ident] = ACTIONS(1407), - [sym_ct_type_ident] = ACTIONS(1407), - [sym_const_ident] = ACTIONS(1405), - [sym_builtin] = ACTIONS(1407), - [anon_sym_LPAREN] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_static] = ACTIONS(1405), - [anon_sym_tlocal] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_fn] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_var] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_defer] = ACTIONS(1405), - [anon_sym_assert] = ACTIONS(1405), - [anon_sym_case] = ACTIONS(1405), - [anon_sym_default] = ACTIONS(1405), - [anon_sym_nextcase] = ACTIONS(1405), - [anon_sym_switch] = ACTIONS(1405), - [anon_sym_AMP_AMP] = ACTIONS(1407), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_foreach] = ACTIONS(1405), - [anon_sym_foreach_r] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1405), - [anon_sym_int] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_asm] = ACTIONS(1405), - [anon_sym_DOLLARassert] = ACTIONS(1405), - [anon_sym_DOLLARerror] = ACTIONS(1405), - [anon_sym_DOLLARecho] = ACTIONS(1405), - [anon_sym_DOLLARif] = ACTIONS(1405), - [anon_sym_DOLLARswitch] = ACTIONS(1405), - [anon_sym_DOLLARfor] = ACTIONS(1405), - [anon_sym_DOLLARforeach] = ACTIONS(1405), - [anon_sym_DOLLARalignof] = ACTIONS(1405), - [anon_sym_DOLLARextnameof] = ACTIONS(1405), - [anon_sym_DOLLARnameof] = ACTIONS(1405), - [anon_sym_DOLLARoffsetof] = ACTIONS(1405), - [anon_sym_DOLLARqnameof] = ACTIONS(1405), - [anon_sym_DOLLAReval] = ACTIONS(1405), - [anon_sym_DOLLARdefined] = ACTIONS(1405), - [anon_sym_DOLLARsizeof] = ACTIONS(1405), - [anon_sym_DOLLARstringify] = ACTIONS(1405), - [anon_sym_DOLLARis_const] = ACTIONS(1405), - [anon_sym_DOLLARvaconst] = ACTIONS(1405), - [anon_sym_DOLLARvaarg] = ACTIONS(1405), - [anon_sym_DOLLARvaref] = ACTIONS(1405), - [anon_sym_DOLLARvaexpr] = ACTIONS(1405), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_null] = ACTIONS(1405), - [anon_sym_DOLLARvacount] = ACTIONS(1405), - [anon_sym_DOLLARfeature] = ACTIONS(1405), - [anon_sym_DOLLARand] = ACTIONS(1405), - [anon_sym_DOLLARor] = ACTIONS(1405), - [anon_sym_DOLLARassignable] = ACTIONS(1405), - [anon_sym_DOLLARembed] = ACTIONS(1405), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_typeid] = ACTIONS(1405), - [anon_sym_LBRACE_PIPE] = ACTIONS(1407), - [anon_sym_PIPE_RBRACE] = ACTIONS(1407), - [anon_sym_void] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_char] = ACTIONS(1405), - [anon_sym_ichar] = ACTIONS(1405), - [anon_sym_short] = ACTIONS(1405), - [anon_sym_ushort] = ACTIONS(1405), - [anon_sym_uint] = ACTIONS(1405), - [anon_sym_long] = ACTIONS(1405), - [anon_sym_ulong] = ACTIONS(1405), - [anon_sym_int128] = ACTIONS(1405), - [anon_sym_uint128] = ACTIONS(1405), - [anon_sym_float] = ACTIONS(1405), - [anon_sym_double] = ACTIONS(1405), - [anon_sym_float16] = ACTIONS(1405), - [anon_sym_bfloat16] = ACTIONS(1405), - [anon_sym_float128] = ACTIONS(1405), - [anon_sym_iptr] = ACTIONS(1405), - [anon_sym_uptr] = ACTIONS(1405), - [anon_sym_isz] = ACTIONS(1405), - [anon_sym_usz] = ACTIONS(1405), - [anon_sym_anyfault] = ACTIONS(1405), - [anon_sym_any] = ACTIONS(1405), - [anon_sym_DOLLARtypeof] = ACTIONS(1405), - [anon_sym_DOLLARtypefrom] = ACTIONS(1405), - [anon_sym_DOLLARvatype] = ACTIONS(1405), - [anon_sym_DOLLARevaltype] = ACTIONS(1405), - [sym_real_literal] = ACTIONS(1407), - }, - [372] = { - [sym_line_comment] = STATE(372), - [sym_doc_comment] = STATE(372), - [sym_block_comment] = STATE(372), - [sym_ident] = ACTIONS(1409), - [sym_integer_literal] = ACTIONS(1411), - [anon_sym_SQUOTE] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [anon_sym_BQUOTE] = ACTIONS(1411), - [sym_bytes_literal] = ACTIONS(1411), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1409), - [sym_at_ident] = ACTIONS(1411), - [sym_hash_ident] = ACTIONS(1411), - [sym_type_ident] = ACTIONS(1411), - [sym_ct_type_ident] = ACTIONS(1411), - [sym_const_ident] = ACTIONS(1409), - [sym_builtin] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_tlocal] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_fn] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_var] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_defer] = ACTIONS(1409), - [anon_sym_assert] = ACTIONS(1409), - [anon_sym_case] = ACTIONS(1409), - [anon_sym_default] = ACTIONS(1409), - [anon_sym_nextcase] = ACTIONS(1409), - [anon_sym_switch] = ACTIONS(1409), - [anon_sym_AMP_AMP] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_foreach] = ACTIONS(1409), - [anon_sym_foreach_r] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_do] = ACTIONS(1409), - [anon_sym_int] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_asm] = ACTIONS(1409), - [anon_sym_DOLLARassert] = ACTIONS(1409), - [anon_sym_DOLLARerror] = ACTIONS(1409), - [anon_sym_DOLLARecho] = ACTIONS(1409), - [anon_sym_DOLLARif] = ACTIONS(1409), - [anon_sym_DOLLARswitch] = ACTIONS(1409), - [anon_sym_DOLLARfor] = ACTIONS(1409), - [anon_sym_DOLLARforeach] = ACTIONS(1409), - [anon_sym_DOLLARalignof] = ACTIONS(1409), - [anon_sym_DOLLARextnameof] = ACTIONS(1409), - [anon_sym_DOLLARnameof] = ACTIONS(1409), - [anon_sym_DOLLARoffsetof] = ACTIONS(1409), - [anon_sym_DOLLARqnameof] = ACTIONS(1409), - [anon_sym_DOLLAReval] = ACTIONS(1409), - [anon_sym_DOLLARdefined] = ACTIONS(1409), - [anon_sym_DOLLARsizeof] = ACTIONS(1409), - [anon_sym_DOLLARstringify] = ACTIONS(1409), - [anon_sym_DOLLARis_const] = ACTIONS(1409), - [anon_sym_DOLLARvaconst] = ACTIONS(1409), - [anon_sym_DOLLARvaarg] = ACTIONS(1409), - [anon_sym_DOLLARvaref] = ACTIONS(1409), - [anon_sym_DOLLARvaexpr] = ACTIONS(1409), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_DOLLARvacount] = ACTIONS(1409), - [anon_sym_DOLLARfeature] = ACTIONS(1409), - [anon_sym_DOLLARand] = ACTIONS(1409), - [anon_sym_DOLLARor] = ACTIONS(1409), - [anon_sym_DOLLARassignable] = ACTIONS(1409), - [anon_sym_DOLLARembed] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_typeid] = ACTIONS(1409), - [anon_sym_LBRACE_PIPE] = ACTIONS(1411), - [anon_sym_PIPE_RBRACE] = ACTIONS(1411), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_bool] = ACTIONS(1409), - [anon_sym_char] = ACTIONS(1409), - [anon_sym_ichar] = ACTIONS(1409), - [anon_sym_short] = ACTIONS(1409), - [anon_sym_ushort] = ACTIONS(1409), - [anon_sym_uint] = ACTIONS(1409), - [anon_sym_long] = ACTIONS(1409), - [anon_sym_ulong] = ACTIONS(1409), - [anon_sym_int128] = ACTIONS(1409), - [anon_sym_uint128] = ACTIONS(1409), - [anon_sym_float] = ACTIONS(1409), - [anon_sym_double] = ACTIONS(1409), - [anon_sym_float16] = ACTIONS(1409), - [anon_sym_bfloat16] = ACTIONS(1409), - [anon_sym_float128] = ACTIONS(1409), - [anon_sym_iptr] = ACTIONS(1409), - [anon_sym_uptr] = ACTIONS(1409), - [anon_sym_isz] = ACTIONS(1409), - [anon_sym_usz] = ACTIONS(1409), - [anon_sym_anyfault] = ACTIONS(1409), - [anon_sym_any] = ACTIONS(1409), - [anon_sym_DOLLARtypeof] = ACTIONS(1409), - [anon_sym_DOLLARtypefrom] = ACTIONS(1409), - [anon_sym_DOLLARvatype] = ACTIONS(1409), - [anon_sym_DOLLARevaltype] = ACTIONS(1409), - [sym_real_literal] = ACTIONS(1411), - }, - [373] = { - [sym_line_comment] = STATE(373), - [sym_doc_comment] = STATE(373), - [sym_block_comment] = STATE(373), - [sym_ident] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1415), - [anon_sym_BQUOTE] = ACTIONS(1415), - [sym_bytes_literal] = ACTIONS(1415), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1413), - [sym_at_ident] = ACTIONS(1415), - [sym_hash_ident] = ACTIONS(1415), - [sym_type_ident] = ACTIONS(1415), - [sym_ct_type_ident] = ACTIONS(1415), - [sym_const_ident] = ACTIONS(1413), - [sym_builtin] = ACTIONS(1415), - [anon_sym_LPAREN] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_tlocal] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_fn] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1413), - [anon_sym_RBRACE] = ACTIONS(1415), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_defer] = ACTIONS(1413), - [anon_sym_assert] = ACTIONS(1413), - [anon_sym_case] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_nextcase] = ACTIONS(1413), - [anon_sym_switch] = ACTIONS(1413), - [anon_sym_AMP_AMP] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_foreach] = ACTIONS(1413), - [anon_sym_foreach_r] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_int] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_asm] = ACTIONS(1413), - [anon_sym_DOLLARassert] = ACTIONS(1413), - [anon_sym_DOLLARerror] = ACTIONS(1413), - [anon_sym_DOLLARecho] = ACTIONS(1413), - [anon_sym_DOLLARif] = ACTIONS(1413), - [anon_sym_DOLLARswitch] = ACTIONS(1413), - [anon_sym_DOLLARfor] = ACTIONS(1413), - [anon_sym_DOLLARforeach] = ACTIONS(1413), - [anon_sym_DOLLARalignof] = ACTIONS(1413), - [anon_sym_DOLLARextnameof] = ACTIONS(1413), - [anon_sym_DOLLARnameof] = ACTIONS(1413), - [anon_sym_DOLLARoffsetof] = ACTIONS(1413), - [anon_sym_DOLLARqnameof] = ACTIONS(1413), - [anon_sym_DOLLAReval] = ACTIONS(1413), - [anon_sym_DOLLARdefined] = ACTIONS(1413), - [anon_sym_DOLLARsizeof] = ACTIONS(1413), - [anon_sym_DOLLARstringify] = ACTIONS(1413), - [anon_sym_DOLLARis_const] = ACTIONS(1413), - [anon_sym_DOLLARvaconst] = ACTIONS(1413), - [anon_sym_DOLLARvaarg] = ACTIONS(1413), - [anon_sym_DOLLARvaref] = ACTIONS(1413), - [anon_sym_DOLLARvaexpr] = ACTIONS(1413), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_null] = ACTIONS(1413), - [anon_sym_DOLLARvacount] = ACTIONS(1413), - [anon_sym_DOLLARfeature] = ACTIONS(1413), - [anon_sym_DOLLARand] = ACTIONS(1413), - [anon_sym_DOLLARor] = ACTIONS(1413), - [anon_sym_DOLLARassignable] = ACTIONS(1413), - [anon_sym_DOLLARembed] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_typeid] = ACTIONS(1413), - [anon_sym_LBRACE_PIPE] = ACTIONS(1415), - [anon_sym_PIPE_RBRACE] = ACTIONS(1415), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_bool] = ACTIONS(1413), - [anon_sym_char] = ACTIONS(1413), - [anon_sym_ichar] = ACTIONS(1413), - [anon_sym_short] = ACTIONS(1413), - [anon_sym_ushort] = ACTIONS(1413), - [anon_sym_uint] = ACTIONS(1413), - [anon_sym_long] = ACTIONS(1413), - [anon_sym_ulong] = ACTIONS(1413), - [anon_sym_int128] = ACTIONS(1413), - [anon_sym_uint128] = ACTIONS(1413), - [anon_sym_float] = ACTIONS(1413), - [anon_sym_double] = ACTIONS(1413), - [anon_sym_float16] = ACTIONS(1413), - [anon_sym_bfloat16] = ACTIONS(1413), - [anon_sym_float128] = ACTIONS(1413), - [anon_sym_iptr] = ACTIONS(1413), - [anon_sym_uptr] = ACTIONS(1413), - [anon_sym_isz] = ACTIONS(1413), - [anon_sym_usz] = ACTIONS(1413), - [anon_sym_anyfault] = ACTIONS(1413), - [anon_sym_any] = ACTIONS(1413), - [anon_sym_DOLLARtypeof] = ACTIONS(1413), - [anon_sym_DOLLARtypefrom] = ACTIONS(1413), - [anon_sym_DOLLARvatype] = ACTIONS(1413), - [anon_sym_DOLLARevaltype] = ACTIONS(1413), - [sym_real_literal] = ACTIONS(1415), - }, - [374] = { - [sym_line_comment] = STATE(374), - [sym_doc_comment] = STATE(374), - [sym_block_comment] = STATE(374), - [sym_ident] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(1419), - [anon_sym_DQUOTE] = ACTIONS(1419), - [anon_sym_BQUOTE] = ACTIONS(1419), - [sym_bytes_literal] = ACTIONS(1419), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1417), - [sym_at_ident] = ACTIONS(1419), - [sym_hash_ident] = ACTIONS(1419), - [sym_type_ident] = ACTIONS(1419), - [sym_ct_type_ident] = ACTIONS(1419), - [sym_const_ident] = ACTIONS(1417), - [sym_builtin] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1417), - [anon_sym_static] = ACTIONS(1417), - [anon_sym_tlocal] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1419), - [anon_sym_fn] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_RBRACE] = ACTIONS(1419), - [anon_sym_const] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1417), - [anon_sym_return] = ACTIONS(1417), - [anon_sym_continue] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1417), - [anon_sym_defer] = ACTIONS(1417), - [anon_sym_assert] = ACTIONS(1417), - [anon_sym_case] = ACTIONS(1417), - [anon_sym_default] = ACTIONS(1417), - [anon_sym_nextcase] = ACTIONS(1417), - [anon_sym_switch] = ACTIONS(1417), - [anon_sym_AMP_AMP] = ACTIONS(1419), - [anon_sym_if] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1417), - [anon_sym_foreach] = ACTIONS(1417), - [anon_sym_foreach_r] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1417), - [anon_sym_do] = ACTIONS(1417), - [anon_sym_int] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_asm] = ACTIONS(1417), - [anon_sym_DOLLARassert] = ACTIONS(1417), - [anon_sym_DOLLARerror] = ACTIONS(1417), - [anon_sym_DOLLARecho] = ACTIONS(1417), - [anon_sym_DOLLARif] = ACTIONS(1417), - [anon_sym_DOLLARswitch] = ACTIONS(1417), - [anon_sym_DOLLARfor] = ACTIONS(1417), - [anon_sym_DOLLARforeach] = ACTIONS(1417), - [anon_sym_DOLLARalignof] = ACTIONS(1417), - [anon_sym_DOLLARextnameof] = ACTIONS(1417), - [anon_sym_DOLLARnameof] = ACTIONS(1417), - [anon_sym_DOLLARoffsetof] = ACTIONS(1417), - [anon_sym_DOLLARqnameof] = ACTIONS(1417), - [anon_sym_DOLLAReval] = ACTIONS(1417), - [anon_sym_DOLLARdefined] = ACTIONS(1417), - [anon_sym_DOLLARsizeof] = ACTIONS(1417), - [anon_sym_DOLLARstringify] = ACTIONS(1417), - [anon_sym_DOLLARis_const] = ACTIONS(1417), - [anon_sym_DOLLARvaconst] = ACTIONS(1417), - [anon_sym_DOLLARvaarg] = ACTIONS(1417), - [anon_sym_DOLLARvaref] = ACTIONS(1417), - [anon_sym_DOLLARvaexpr] = ACTIONS(1417), - [anon_sym_true] = ACTIONS(1417), - [anon_sym_false] = ACTIONS(1417), - [anon_sym_null] = ACTIONS(1417), - [anon_sym_DOLLARvacount] = ACTIONS(1417), - [anon_sym_DOLLARfeature] = ACTIONS(1417), - [anon_sym_DOLLARand] = ACTIONS(1417), - [anon_sym_DOLLARor] = ACTIONS(1417), - [anon_sym_DOLLARassignable] = ACTIONS(1417), - [anon_sym_DOLLARembed] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_typeid] = ACTIONS(1417), - [anon_sym_LBRACE_PIPE] = ACTIONS(1419), - [anon_sym_PIPE_RBRACE] = ACTIONS(1419), - [anon_sym_void] = ACTIONS(1417), - [anon_sym_bool] = ACTIONS(1417), - [anon_sym_char] = ACTIONS(1417), - [anon_sym_ichar] = ACTIONS(1417), - [anon_sym_short] = ACTIONS(1417), - [anon_sym_ushort] = ACTIONS(1417), - [anon_sym_uint] = ACTIONS(1417), - [anon_sym_long] = ACTIONS(1417), - [anon_sym_ulong] = ACTIONS(1417), - [anon_sym_int128] = ACTIONS(1417), - [anon_sym_uint128] = ACTIONS(1417), - [anon_sym_float] = ACTIONS(1417), - [anon_sym_double] = ACTIONS(1417), - [anon_sym_float16] = ACTIONS(1417), - [anon_sym_bfloat16] = ACTIONS(1417), - [anon_sym_float128] = ACTIONS(1417), - [anon_sym_iptr] = ACTIONS(1417), - [anon_sym_uptr] = ACTIONS(1417), - [anon_sym_isz] = ACTIONS(1417), - [anon_sym_usz] = ACTIONS(1417), - [anon_sym_anyfault] = ACTIONS(1417), - [anon_sym_any] = ACTIONS(1417), - [anon_sym_DOLLARtypeof] = ACTIONS(1417), - [anon_sym_DOLLARtypefrom] = ACTIONS(1417), - [anon_sym_DOLLARvatype] = ACTIONS(1417), - [anon_sym_DOLLARevaltype] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1419), - }, - [375] = { - [sym_line_comment] = STATE(375), - [sym_doc_comment] = STATE(375), - [sym_block_comment] = STATE(375), - [sym_ident] = ACTIONS(1421), - [sym_integer_literal] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1423), - [anon_sym_DQUOTE] = ACTIONS(1423), - [anon_sym_BQUOTE] = ACTIONS(1423), - [sym_bytes_literal] = ACTIONS(1423), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1421), - [sym_at_ident] = ACTIONS(1423), - [sym_hash_ident] = ACTIONS(1423), - [sym_type_ident] = ACTIONS(1423), - [sym_ct_type_ident] = ACTIONS(1423), - [sym_const_ident] = ACTIONS(1421), - [sym_builtin] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_static] = ACTIONS(1421), - [anon_sym_tlocal] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym_fn] = ACTIONS(1421), - [anon_sym_LBRACE] = ACTIONS(1421), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1421), - [anon_sym_return] = ACTIONS(1421), - [anon_sym_continue] = ACTIONS(1421), - [anon_sym_break] = ACTIONS(1421), - [anon_sym_defer] = ACTIONS(1421), - [anon_sym_assert] = ACTIONS(1421), - [anon_sym_case] = ACTIONS(1421), - [anon_sym_default] = ACTIONS(1421), - [anon_sym_nextcase] = ACTIONS(1421), - [anon_sym_switch] = ACTIONS(1421), - [anon_sym_AMP_AMP] = ACTIONS(1423), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_for] = ACTIONS(1421), - [anon_sym_foreach] = ACTIONS(1421), - [anon_sym_foreach_r] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1421), - [anon_sym_do] = ACTIONS(1421), - [anon_sym_int] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_asm] = ACTIONS(1421), - [anon_sym_DOLLARassert] = ACTIONS(1421), - [anon_sym_DOLLARerror] = ACTIONS(1421), - [anon_sym_DOLLARecho] = ACTIONS(1421), - [anon_sym_DOLLARif] = ACTIONS(1421), - [anon_sym_DOLLARswitch] = ACTIONS(1421), - [anon_sym_DOLLARfor] = ACTIONS(1421), - [anon_sym_DOLLARforeach] = ACTIONS(1421), - [anon_sym_DOLLARalignof] = ACTIONS(1421), - [anon_sym_DOLLARextnameof] = ACTIONS(1421), - [anon_sym_DOLLARnameof] = ACTIONS(1421), - [anon_sym_DOLLARoffsetof] = ACTIONS(1421), - [anon_sym_DOLLARqnameof] = ACTIONS(1421), - [anon_sym_DOLLAReval] = ACTIONS(1421), - [anon_sym_DOLLARdefined] = ACTIONS(1421), - [anon_sym_DOLLARsizeof] = ACTIONS(1421), - [anon_sym_DOLLARstringify] = ACTIONS(1421), - [anon_sym_DOLLARis_const] = ACTIONS(1421), - [anon_sym_DOLLARvaconst] = ACTIONS(1421), - [anon_sym_DOLLARvaarg] = ACTIONS(1421), - [anon_sym_DOLLARvaref] = ACTIONS(1421), - [anon_sym_DOLLARvaexpr] = ACTIONS(1421), - [anon_sym_true] = ACTIONS(1421), - [anon_sym_false] = ACTIONS(1421), - [anon_sym_null] = ACTIONS(1421), - [anon_sym_DOLLARvacount] = ACTIONS(1421), - [anon_sym_DOLLARfeature] = ACTIONS(1421), - [anon_sym_DOLLARand] = ACTIONS(1421), - [anon_sym_DOLLARor] = ACTIONS(1421), - [anon_sym_DOLLARassignable] = ACTIONS(1421), - [anon_sym_DOLLARembed] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_TILDE] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1423), - [anon_sym_typeid] = ACTIONS(1421), - [anon_sym_LBRACE_PIPE] = ACTIONS(1423), - [anon_sym_PIPE_RBRACE] = ACTIONS(1423), - [anon_sym_void] = ACTIONS(1421), - [anon_sym_bool] = ACTIONS(1421), - [anon_sym_char] = ACTIONS(1421), - [anon_sym_ichar] = ACTIONS(1421), - [anon_sym_short] = ACTIONS(1421), - [anon_sym_ushort] = ACTIONS(1421), - [anon_sym_uint] = ACTIONS(1421), - [anon_sym_long] = ACTIONS(1421), - [anon_sym_ulong] = ACTIONS(1421), - [anon_sym_int128] = ACTIONS(1421), - [anon_sym_uint128] = ACTIONS(1421), - [anon_sym_float] = ACTIONS(1421), - [anon_sym_double] = ACTIONS(1421), - [anon_sym_float16] = ACTIONS(1421), - [anon_sym_bfloat16] = ACTIONS(1421), - [anon_sym_float128] = ACTIONS(1421), - [anon_sym_iptr] = ACTIONS(1421), - [anon_sym_uptr] = ACTIONS(1421), - [anon_sym_isz] = ACTIONS(1421), - [anon_sym_usz] = ACTIONS(1421), - [anon_sym_anyfault] = ACTIONS(1421), - [anon_sym_any] = ACTIONS(1421), - [anon_sym_DOLLARtypeof] = ACTIONS(1421), - [anon_sym_DOLLARtypefrom] = ACTIONS(1421), - [anon_sym_DOLLARvatype] = ACTIONS(1421), - [anon_sym_DOLLARevaltype] = ACTIONS(1421), - [sym_real_literal] = ACTIONS(1423), - }, - [376] = { - [sym_line_comment] = STATE(376), - [sym_doc_comment] = STATE(376), - [sym_block_comment] = STATE(376), - [sym_ident] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1427), - [anon_sym_SQUOTE] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1427), - [anon_sym_BQUOTE] = ACTIONS(1427), - [sym_bytes_literal] = ACTIONS(1427), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1425), - [sym_at_ident] = ACTIONS(1427), - [sym_hash_ident] = ACTIONS(1427), - [sym_type_ident] = ACTIONS(1427), - [sym_ct_type_ident] = ACTIONS(1427), - [sym_const_ident] = ACTIONS(1425), - [sym_builtin] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_tlocal] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_fn] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1425), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_var] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_defer] = ACTIONS(1425), - [anon_sym_assert] = ACTIONS(1425), - [anon_sym_case] = ACTIONS(1425), - [anon_sym_default] = ACTIONS(1425), - [anon_sym_nextcase] = ACTIONS(1425), - [anon_sym_switch] = ACTIONS(1425), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_foreach] = ACTIONS(1425), - [anon_sym_foreach_r] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_do] = ACTIONS(1425), - [anon_sym_int] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_asm] = ACTIONS(1425), - [anon_sym_DOLLARassert] = ACTIONS(1425), - [anon_sym_DOLLARerror] = ACTIONS(1425), - [anon_sym_DOLLARecho] = ACTIONS(1425), - [anon_sym_DOLLARif] = ACTIONS(1425), - [anon_sym_DOLLARswitch] = ACTIONS(1425), - [anon_sym_DOLLARfor] = ACTIONS(1425), - [anon_sym_DOLLARforeach] = ACTIONS(1425), - [anon_sym_DOLLARalignof] = ACTIONS(1425), - [anon_sym_DOLLARextnameof] = ACTIONS(1425), - [anon_sym_DOLLARnameof] = ACTIONS(1425), - [anon_sym_DOLLARoffsetof] = ACTIONS(1425), - [anon_sym_DOLLARqnameof] = ACTIONS(1425), - [anon_sym_DOLLAReval] = ACTIONS(1425), - [anon_sym_DOLLARdefined] = ACTIONS(1425), - [anon_sym_DOLLARsizeof] = ACTIONS(1425), - [anon_sym_DOLLARstringify] = ACTIONS(1425), - [anon_sym_DOLLARis_const] = ACTIONS(1425), - [anon_sym_DOLLARvaconst] = ACTIONS(1425), - [anon_sym_DOLLARvaarg] = ACTIONS(1425), - [anon_sym_DOLLARvaref] = ACTIONS(1425), - [anon_sym_DOLLARvaexpr] = ACTIONS(1425), - [anon_sym_true] = ACTIONS(1425), - [anon_sym_false] = ACTIONS(1425), - [anon_sym_null] = ACTIONS(1425), - [anon_sym_DOLLARvacount] = ACTIONS(1425), - [anon_sym_DOLLARfeature] = ACTIONS(1425), - [anon_sym_DOLLARand] = ACTIONS(1425), - [anon_sym_DOLLARor] = ACTIONS(1425), - [anon_sym_DOLLARassignable] = ACTIONS(1425), - [anon_sym_DOLLARembed] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_typeid] = ACTIONS(1425), - [anon_sym_LBRACE_PIPE] = ACTIONS(1427), - [anon_sym_PIPE_RBRACE] = ACTIONS(1427), - [anon_sym_void] = ACTIONS(1425), - [anon_sym_bool] = ACTIONS(1425), - [anon_sym_char] = ACTIONS(1425), - [anon_sym_ichar] = ACTIONS(1425), - [anon_sym_short] = ACTIONS(1425), - [anon_sym_ushort] = ACTIONS(1425), - [anon_sym_uint] = ACTIONS(1425), - [anon_sym_long] = ACTIONS(1425), - [anon_sym_ulong] = ACTIONS(1425), - [anon_sym_int128] = ACTIONS(1425), - [anon_sym_uint128] = ACTIONS(1425), - [anon_sym_float] = ACTIONS(1425), - [anon_sym_double] = ACTIONS(1425), - [anon_sym_float16] = ACTIONS(1425), - [anon_sym_bfloat16] = ACTIONS(1425), - [anon_sym_float128] = ACTIONS(1425), - [anon_sym_iptr] = ACTIONS(1425), - [anon_sym_uptr] = ACTIONS(1425), - [anon_sym_isz] = ACTIONS(1425), - [anon_sym_usz] = ACTIONS(1425), - [anon_sym_anyfault] = ACTIONS(1425), - [anon_sym_any] = ACTIONS(1425), - [anon_sym_DOLLARtypeof] = ACTIONS(1425), - [anon_sym_DOLLARtypefrom] = ACTIONS(1425), - [anon_sym_DOLLARvatype] = ACTIONS(1425), - [anon_sym_DOLLARevaltype] = ACTIONS(1425), - [sym_real_literal] = ACTIONS(1427), - }, - [377] = { - [sym_line_comment] = STATE(377), - [sym_doc_comment] = STATE(377), - [sym_block_comment] = STATE(377), - [sym_ident] = ACTIONS(1181), - [sym_integer_literal] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [sym_bytes_literal] = ACTIONS(1183), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1181), - [sym_at_ident] = ACTIONS(1183), - [sym_hash_ident] = ACTIONS(1183), - [sym_type_ident] = ACTIONS(1183), - [sym_ct_type_ident] = ACTIONS(1183), - [sym_const_ident] = ACTIONS(1181), - [sym_builtin] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_tlocal] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_fn] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_var] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_defer] = ACTIONS(1181), - [anon_sym_assert] = ACTIONS(1181), - [anon_sym_case] = ACTIONS(1181), - [anon_sym_default] = ACTIONS(1181), - [anon_sym_nextcase] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_foreach] = ACTIONS(1181), - [anon_sym_foreach_r] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym_DOLLARassert] = ACTIONS(1181), - [anon_sym_DOLLARerror] = ACTIONS(1181), - [anon_sym_DOLLARecho] = ACTIONS(1181), - [anon_sym_DOLLARif] = ACTIONS(1181), - [anon_sym_DOLLARswitch] = ACTIONS(1181), - [anon_sym_DOLLARfor] = ACTIONS(1181), - [anon_sym_DOLLARforeach] = ACTIONS(1181), - [anon_sym_DOLLARalignof] = ACTIONS(1181), - [anon_sym_DOLLARextnameof] = ACTIONS(1181), - [anon_sym_DOLLARnameof] = ACTIONS(1181), - [anon_sym_DOLLARoffsetof] = ACTIONS(1181), - [anon_sym_DOLLARqnameof] = ACTIONS(1181), - [anon_sym_DOLLAReval] = ACTIONS(1181), - [anon_sym_DOLLARdefined] = ACTIONS(1181), - [anon_sym_DOLLARsizeof] = ACTIONS(1181), - [anon_sym_DOLLARstringify] = ACTIONS(1181), - [anon_sym_DOLLARis_const] = ACTIONS(1181), - [anon_sym_DOLLARvaconst] = ACTIONS(1181), - [anon_sym_DOLLARvaarg] = ACTIONS(1181), - [anon_sym_DOLLARvaref] = ACTIONS(1181), - [anon_sym_DOLLARvaexpr] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_null] = ACTIONS(1181), - [anon_sym_DOLLARvacount] = ACTIONS(1181), - [anon_sym_DOLLARfeature] = ACTIONS(1181), - [anon_sym_DOLLARand] = ACTIONS(1181), - [anon_sym_DOLLARor] = ACTIONS(1181), - [anon_sym_DOLLARassignable] = ACTIONS(1181), - [anon_sym_DOLLARembed] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_typeid] = ACTIONS(1181), - [anon_sym_LBRACE_PIPE] = ACTIONS(1183), - [anon_sym_PIPE_RBRACE] = ACTIONS(1183), - [anon_sym_void] = ACTIONS(1181), - [anon_sym_bool] = ACTIONS(1181), - [anon_sym_char] = ACTIONS(1181), - [anon_sym_ichar] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_ushort] = ACTIONS(1181), - [anon_sym_uint] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_ulong] = ACTIONS(1181), - [anon_sym_int128] = ACTIONS(1181), - [anon_sym_uint128] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_double] = ACTIONS(1181), - [anon_sym_float16] = ACTIONS(1181), - [anon_sym_bfloat16] = ACTIONS(1181), - [anon_sym_float128] = ACTIONS(1181), - [anon_sym_iptr] = ACTIONS(1181), - [anon_sym_uptr] = ACTIONS(1181), - [anon_sym_isz] = ACTIONS(1181), - [anon_sym_usz] = ACTIONS(1181), - [anon_sym_anyfault] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_DOLLARtypeof] = ACTIONS(1181), - [anon_sym_DOLLARtypefrom] = ACTIONS(1181), - [anon_sym_DOLLARvatype] = ACTIONS(1181), - [anon_sym_DOLLARevaltype] = ACTIONS(1181), - [sym_real_literal] = ACTIONS(1183), - }, - [378] = { - [sym_line_comment] = STATE(378), - [sym_doc_comment] = STATE(378), - [sym_block_comment] = STATE(378), - [sym_ident] = ACTIONS(1429), - [sym_integer_literal] = ACTIONS(1431), - [anon_sym_SQUOTE] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(1431), - [anon_sym_BQUOTE] = ACTIONS(1431), - [sym_bytes_literal] = ACTIONS(1431), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1429), - [sym_at_ident] = ACTIONS(1431), - [sym_hash_ident] = ACTIONS(1431), - [sym_type_ident] = ACTIONS(1431), - [sym_ct_type_ident] = ACTIONS(1431), - [sym_const_ident] = ACTIONS(1429), - [sym_builtin] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1429), - [anon_sym_tlocal] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1429), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_var] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_defer] = ACTIONS(1429), - [anon_sym_assert] = ACTIONS(1429), - [anon_sym_case] = ACTIONS(1429), - [anon_sym_default] = ACTIONS(1429), - [anon_sym_nextcase] = ACTIONS(1429), - [anon_sym_switch] = ACTIONS(1429), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_foreach] = ACTIONS(1429), - [anon_sym_foreach_r] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_do] = ACTIONS(1429), - [anon_sym_int] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_asm] = ACTIONS(1429), - [anon_sym_DOLLARassert] = ACTIONS(1429), - [anon_sym_DOLLARerror] = ACTIONS(1429), - [anon_sym_DOLLARecho] = ACTIONS(1429), - [anon_sym_DOLLARif] = ACTIONS(1429), - [anon_sym_DOLLARswitch] = ACTIONS(1429), - [anon_sym_DOLLARfor] = ACTIONS(1429), - [anon_sym_DOLLARforeach] = ACTIONS(1429), - [anon_sym_DOLLARalignof] = ACTIONS(1429), - [anon_sym_DOLLARextnameof] = ACTIONS(1429), - [anon_sym_DOLLARnameof] = ACTIONS(1429), - [anon_sym_DOLLARoffsetof] = ACTIONS(1429), - [anon_sym_DOLLARqnameof] = ACTIONS(1429), - [anon_sym_DOLLAReval] = ACTIONS(1429), - [anon_sym_DOLLARdefined] = ACTIONS(1429), - [anon_sym_DOLLARsizeof] = ACTIONS(1429), - [anon_sym_DOLLARstringify] = ACTIONS(1429), - [anon_sym_DOLLARis_const] = ACTIONS(1429), - [anon_sym_DOLLARvaconst] = ACTIONS(1429), - [anon_sym_DOLLARvaarg] = ACTIONS(1429), - [anon_sym_DOLLARvaref] = ACTIONS(1429), - [anon_sym_DOLLARvaexpr] = ACTIONS(1429), - [anon_sym_true] = ACTIONS(1429), - [anon_sym_false] = ACTIONS(1429), - [anon_sym_null] = ACTIONS(1429), - [anon_sym_DOLLARvacount] = ACTIONS(1429), - [anon_sym_DOLLARfeature] = ACTIONS(1429), - [anon_sym_DOLLARand] = ACTIONS(1429), - [anon_sym_DOLLARor] = ACTIONS(1429), - [anon_sym_DOLLARassignable] = ACTIONS(1429), - [anon_sym_DOLLARembed] = ACTIONS(1429), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_TILDE] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_typeid] = ACTIONS(1429), - [anon_sym_LBRACE_PIPE] = ACTIONS(1431), - [anon_sym_PIPE_RBRACE] = ACTIONS(1431), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_bool] = ACTIONS(1429), - [anon_sym_char] = ACTIONS(1429), - [anon_sym_ichar] = ACTIONS(1429), - [anon_sym_short] = ACTIONS(1429), - [anon_sym_ushort] = ACTIONS(1429), - [anon_sym_uint] = ACTIONS(1429), - [anon_sym_long] = ACTIONS(1429), - [anon_sym_ulong] = ACTIONS(1429), - [anon_sym_int128] = ACTIONS(1429), - [anon_sym_uint128] = ACTIONS(1429), - [anon_sym_float] = ACTIONS(1429), - [anon_sym_double] = ACTIONS(1429), - [anon_sym_float16] = ACTIONS(1429), - [anon_sym_bfloat16] = ACTIONS(1429), - [anon_sym_float128] = ACTIONS(1429), - [anon_sym_iptr] = ACTIONS(1429), - [anon_sym_uptr] = ACTIONS(1429), - [anon_sym_isz] = ACTIONS(1429), - [anon_sym_usz] = ACTIONS(1429), - [anon_sym_anyfault] = ACTIONS(1429), - [anon_sym_any] = ACTIONS(1429), - [anon_sym_DOLLARtypeof] = ACTIONS(1429), - [anon_sym_DOLLARtypefrom] = ACTIONS(1429), - [anon_sym_DOLLARvatype] = ACTIONS(1429), - [anon_sym_DOLLARevaltype] = ACTIONS(1429), - [sym_real_literal] = ACTIONS(1431), - }, - [379] = { - [sym_line_comment] = STATE(379), - [sym_doc_comment] = STATE(379), - [sym_block_comment] = STATE(379), - [sym_ident] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1435), - [anon_sym_DQUOTE] = ACTIONS(1435), - [anon_sym_BQUOTE] = ACTIONS(1435), - [sym_bytes_literal] = ACTIONS(1435), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1433), - [sym_at_ident] = ACTIONS(1435), - [sym_hash_ident] = ACTIONS(1435), - [sym_type_ident] = ACTIONS(1435), - [sym_ct_type_ident] = ACTIONS(1435), - [sym_const_ident] = ACTIONS(1433), - [sym_builtin] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_tlocal] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1433), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_var] = ACTIONS(1433), - [anon_sym_return] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_defer] = ACTIONS(1433), - [anon_sym_assert] = ACTIONS(1433), - [anon_sym_case] = ACTIONS(1433), - [anon_sym_default] = ACTIONS(1433), - [anon_sym_nextcase] = ACTIONS(1433), - [anon_sym_switch] = ACTIONS(1433), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_foreach] = ACTIONS(1433), - [anon_sym_foreach_r] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_do] = ACTIONS(1433), - [anon_sym_int] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_asm] = ACTIONS(1433), - [anon_sym_DOLLARassert] = ACTIONS(1433), - [anon_sym_DOLLARerror] = ACTIONS(1433), - [anon_sym_DOLLARecho] = ACTIONS(1433), - [anon_sym_DOLLARif] = ACTIONS(1433), - [anon_sym_DOLLARswitch] = ACTIONS(1433), - [anon_sym_DOLLARfor] = ACTIONS(1433), - [anon_sym_DOLLARforeach] = ACTIONS(1433), - [anon_sym_DOLLARalignof] = ACTIONS(1433), - [anon_sym_DOLLARextnameof] = ACTIONS(1433), - [anon_sym_DOLLARnameof] = ACTIONS(1433), - [anon_sym_DOLLARoffsetof] = ACTIONS(1433), - [anon_sym_DOLLARqnameof] = ACTIONS(1433), - [anon_sym_DOLLAReval] = ACTIONS(1433), - [anon_sym_DOLLARdefined] = ACTIONS(1433), - [anon_sym_DOLLARsizeof] = ACTIONS(1433), - [anon_sym_DOLLARstringify] = ACTIONS(1433), - [anon_sym_DOLLARis_const] = ACTIONS(1433), - [anon_sym_DOLLARvaconst] = ACTIONS(1433), - [anon_sym_DOLLARvaarg] = ACTIONS(1433), - [anon_sym_DOLLARvaref] = ACTIONS(1433), - [anon_sym_DOLLARvaexpr] = ACTIONS(1433), - [anon_sym_true] = ACTIONS(1433), - [anon_sym_false] = ACTIONS(1433), - [anon_sym_null] = ACTIONS(1433), - [anon_sym_DOLLARvacount] = ACTIONS(1433), - [anon_sym_DOLLARfeature] = ACTIONS(1433), - [anon_sym_DOLLARand] = ACTIONS(1433), - [anon_sym_DOLLARor] = ACTIONS(1433), - [anon_sym_DOLLARassignable] = ACTIONS(1433), - [anon_sym_DOLLARembed] = ACTIONS(1433), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_typeid] = ACTIONS(1433), - [anon_sym_LBRACE_PIPE] = ACTIONS(1435), - [anon_sym_PIPE_RBRACE] = ACTIONS(1435), - [anon_sym_void] = ACTIONS(1433), - [anon_sym_bool] = ACTIONS(1433), - [anon_sym_char] = ACTIONS(1433), - [anon_sym_ichar] = ACTIONS(1433), - [anon_sym_short] = ACTIONS(1433), - [anon_sym_ushort] = ACTIONS(1433), - [anon_sym_uint] = ACTIONS(1433), - [anon_sym_long] = ACTIONS(1433), - [anon_sym_ulong] = ACTIONS(1433), - [anon_sym_int128] = ACTIONS(1433), - [anon_sym_uint128] = ACTIONS(1433), - [anon_sym_float] = ACTIONS(1433), - [anon_sym_double] = ACTIONS(1433), - [anon_sym_float16] = ACTIONS(1433), - [anon_sym_bfloat16] = ACTIONS(1433), - [anon_sym_float128] = ACTIONS(1433), - [anon_sym_iptr] = ACTIONS(1433), - [anon_sym_uptr] = ACTIONS(1433), - [anon_sym_isz] = ACTIONS(1433), - [anon_sym_usz] = ACTIONS(1433), - [anon_sym_anyfault] = ACTIONS(1433), - [anon_sym_any] = ACTIONS(1433), - [anon_sym_DOLLARtypeof] = ACTIONS(1433), - [anon_sym_DOLLARtypefrom] = ACTIONS(1433), - [anon_sym_DOLLARvatype] = ACTIONS(1433), - [anon_sym_DOLLARevaltype] = ACTIONS(1433), - [sym_real_literal] = ACTIONS(1435), - }, - [380] = { - [sym_line_comment] = STATE(380), - [sym_doc_comment] = STATE(380), - [sym_block_comment] = STATE(380), - [sym_ident] = ACTIONS(1437), - [sym_integer_literal] = ACTIONS(1439), - [anon_sym_SQUOTE] = ACTIONS(1439), - [anon_sym_DQUOTE] = ACTIONS(1439), - [anon_sym_BQUOTE] = ACTIONS(1439), - [sym_bytes_literal] = ACTIONS(1439), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1437), - [sym_at_ident] = ACTIONS(1439), - [sym_hash_ident] = ACTIONS(1439), - [sym_type_ident] = ACTIONS(1439), - [sym_ct_type_ident] = ACTIONS(1439), - [sym_const_ident] = ACTIONS(1437), - [sym_builtin] = ACTIONS(1439), - [anon_sym_LPAREN] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_tlocal] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1439), - [anon_sym_fn] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1437), - [anon_sym_RBRACE] = ACTIONS(1439), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_var] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_defer] = ACTIONS(1437), - [anon_sym_assert] = ACTIONS(1437), - [anon_sym_case] = ACTIONS(1437), - [anon_sym_default] = ACTIONS(1437), - [anon_sym_nextcase] = ACTIONS(1437), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_foreach] = ACTIONS(1437), - [anon_sym_foreach_r] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_do] = ACTIONS(1437), - [anon_sym_int] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_asm] = ACTIONS(1437), - [anon_sym_DOLLARassert] = ACTIONS(1437), - [anon_sym_DOLLARerror] = ACTIONS(1437), - [anon_sym_DOLLARecho] = ACTIONS(1437), - [anon_sym_DOLLARif] = ACTIONS(1437), - [anon_sym_DOLLARswitch] = ACTIONS(1437), - [anon_sym_DOLLARfor] = ACTIONS(1437), - [anon_sym_DOLLARforeach] = ACTIONS(1437), - [anon_sym_DOLLARalignof] = ACTIONS(1437), - [anon_sym_DOLLARextnameof] = ACTIONS(1437), - [anon_sym_DOLLARnameof] = ACTIONS(1437), - [anon_sym_DOLLARoffsetof] = ACTIONS(1437), - [anon_sym_DOLLARqnameof] = ACTIONS(1437), - [anon_sym_DOLLAReval] = ACTIONS(1437), - [anon_sym_DOLLARdefined] = ACTIONS(1437), - [anon_sym_DOLLARsizeof] = ACTIONS(1437), - [anon_sym_DOLLARstringify] = ACTIONS(1437), - [anon_sym_DOLLARis_const] = ACTIONS(1437), - [anon_sym_DOLLARvaconst] = ACTIONS(1437), - [anon_sym_DOLLARvaarg] = ACTIONS(1437), - [anon_sym_DOLLARvaref] = ACTIONS(1437), - [anon_sym_DOLLARvaexpr] = ACTIONS(1437), - [anon_sym_true] = ACTIONS(1437), - [anon_sym_false] = ACTIONS(1437), - [anon_sym_null] = ACTIONS(1437), - [anon_sym_DOLLARvacount] = ACTIONS(1437), - [anon_sym_DOLLARfeature] = ACTIONS(1437), - [anon_sym_DOLLARand] = ACTIONS(1437), - [anon_sym_DOLLARor] = ACTIONS(1437), - [anon_sym_DOLLARassignable] = ACTIONS(1437), - [anon_sym_DOLLARembed] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_TILDE] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_typeid] = ACTIONS(1437), - [anon_sym_LBRACE_PIPE] = ACTIONS(1439), - [anon_sym_PIPE_RBRACE] = ACTIONS(1439), - [anon_sym_void] = ACTIONS(1437), - [anon_sym_bool] = ACTIONS(1437), - [anon_sym_char] = ACTIONS(1437), - [anon_sym_ichar] = ACTIONS(1437), - [anon_sym_short] = ACTIONS(1437), - [anon_sym_ushort] = ACTIONS(1437), - [anon_sym_uint] = ACTIONS(1437), - [anon_sym_long] = ACTIONS(1437), - [anon_sym_ulong] = ACTIONS(1437), - [anon_sym_int128] = ACTIONS(1437), - [anon_sym_uint128] = ACTIONS(1437), - [anon_sym_float] = ACTIONS(1437), - [anon_sym_double] = ACTIONS(1437), - [anon_sym_float16] = ACTIONS(1437), - [anon_sym_bfloat16] = ACTIONS(1437), - [anon_sym_float128] = ACTIONS(1437), - [anon_sym_iptr] = ACTIONS(1437), - [anon_sym_uptr] = ACTIONS(1437), - [anon_sym_isz] = ACTIONS(1437), - [anon_sym_usz] = ACTIONS(1437), - [anon_sym_anyfault] = ACTIONS(1437), - [anon_sym_any] = ACTIONS(1437), - [anon_sym_DOLLARtypeof] = ACTIONS(1437), - [anon_sym_DOLLARtypefrom] = ACTIONS(1437), - [anon_sym_DOLLARvatype] = ACTIONS(1437), - [anon_sym_DOLLARevaltype] = ACTIONS(1437), - [sym_real_literal] = ACTIONS(1439), - }, - [381] = { - [sym_line_comment] = STATE(381), - [sym_doc_comment] = STATE(381), - [sym_block_comment] = STATE(381), - [sym_ident] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(1443), - [anon_sym_SQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [anon_sym_BQUOTE] = ACTIONS(1443), - [sym_bytes_literal] = ACTIONS(1443), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1441), - [sym_at_ident] = ACTIONS(1443), - [sym_hash_ident] = ACTIONS(1443), - [sym_type_ident] = ACTIONS(1443), - [sym_ct_type_ident] = ACTIONS(1443), - [sym_const_ident] = ACTIONS(1441), - [sym_builtin] = ACTIONS(1443), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1441), - [anon_sym_static] = ACTIONS(1441), - [anon_sym_tlocal] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1443), - [anon_sym_fn] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1443), - [anon_sym_const] = ACTIONS(1441), - [anon_sym_var] = ACTIONS(1441), - [anon_sym_return] = ACTIONS(1441), - [anon_sym_continue] = ACTIONS(1441), - [anon_sym_break] = ACTIONS(1441), - [anon_sym_defer] = ACTIONS(1441), - [anon_sym_assert] = ACTIONS(1441), - [anon_sym_case] = ACTIONS(1441), - [anon_sym_default] = ACTIONS(1441), - [anon_sym_nextcase] = ACTIONS(1441), - [anon_sym_switch] = ACTIONS(1441), - [anon_sym_AMP_AMP] = ACTIONS(1443), - [anon_sym_if] = ACTIONS(1441), - [anon_sym_for] = ACTIONS(1441), - [anon_sym_foreach] = ACTIONS(1441), - [anon_sym_foreach_r] = ACTIONS(1441), - [anon_sym_while] = ACTIONS(1441), - [anon_sym_do] = ACTIONS(1441), - [anon_sym_int] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_asm] = ACTIONS(1441), - [anon_sym_DOLLARassert] = ACTIONS(1441), - [anon_sym_DOLLARerror] = ACTIONS(1441), - [anon_sym_DOLLARecho] = ACTIONS(1441), - [anon_sym_DOLLARif] = ACTIONS(1441), - [anon_sym_DOLLARswitch] = ACTIONS(1441), - [anon_sym_DOLLARfor] = ACTIONS(1441), - [anon_sym_DOLLARforeach] = ACTIONS(1441), - [anon_sym_DOLLARalignof] = ACTIONS(1441), - [anon_sym_DOLLARextnameof] = ACTIONS(1441), - [anon_sym_DOLLARnameof] = ACTIONS(1441), - [anon_sym_DOLLARoffsetof] = ACTIONS(1441), - [anon_sym_DOLLARqnameof] = ACTIONS(1441), - [anon_sym_DOLLAReval] = ACTIONS(1441), - [anon_sym_DOLLARdefined] = ACTIONS(1441), - [anon_sym_DOLLARsizeof] = ACTIONS(1441), - [anon_sym_DOLLARstringify] = ACTIONS(1441), - [anon_sym_DOLLARis_const] = ACTIONS(1441), - [anon_sym_DOLLARvaconst] = ACTIONS(1441), - [anon_sym_DOLLARvaarg] = ACTIONS(1441), - [anon_sym_DOLLARvaref] = ACTIONS(1441), - [anon_sym_DOLLARvaexpr] = ACTIONS(1441), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), - [anon_sym_null] = ACTIONS(1441), - [anon_sym_DOLLARvacount] = ACTIONS(1441), - [anon_sym_DOLLARfeature] = ACTIONS(1441), - [anon_sym_DOLLARand] = ACTIONS(1441), - [anon_sym_DOLLARor] = ACTIONS(1441), - [anon_sym_DOLLARassignable] = ACTIONS(1441), - [anon_sym_DOLLARembed] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1443), - [anon_sym_TILDE] = ACTIONS(1443), - [anon_sym_PLUS_PLUS] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1443), - [anon_sym_typeid] = ACTIONS(1441), - [anon_sym_LBRACE_PIPE] = ACTIONS(1443), - [anon_sym_PIPE_RBRACE] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1441), - [anon_sym_bool] = ACTIONS(1441), - [anon_sym_char] = ACTIONS(1441), - [anon_sym_ichar] = ACTIONS(1441), - [anon_sym_short] = ACTIONS(1441), - [anon_sym_ushort] = ACTIONS(1441), - [anon_sym_uint] = ACTIONS(1441), - [anon_sym_long] = ACTIONS(1441), - [anon_sym_ulong] = ACTIONS(1441), - [anon_sym_int128] = ACTIONS(1441), - [anon_sym_uint128] = ACTIONS(1441), - [anon_sym_float] = ACTIONS(1441), - [anon_sym_double] = ACTIONS(1441), - [anon_sym_float16] = ACTIONS(1441), - [anon_sym_bfloat16] = ACTIONS(1441), - [anon_sym_float128] = ACTIONS(1441), - [anon_sym_iptr] = ACTIONS(1441), - [anon_sym_uptr] = ACTIONS(1441), - [anon_sym_isz] = ACTIONS(1441), - [anon_sym_usz] = ACTIONS(1441), - [anon_sym_anyfault] = ACTIONS(1441), - [anon_sym_any] = ACTIONS(1441), - [anon_sym_DOLLARtypeof] = ACTIONS(1441), - [anon_sym_DOLLARtypefrom] = ACTIONS(1441), - [anon_sym_DOLLARvatype] = ACTIONS(1441), - [anon_sym_DOLLARevaltype] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1443), - }, - [382] = { - [sym_line_comment] = STATE(382), - [sym_doc_comment] = STATE(382), - [sym_block_comment] = STATE(382), - [sym_ident] = ACTIONS(1445), - [sym_integer_literal] = ACTIONS(1447), - [anon_sym_SQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [anon_sym_BQUOTE] = ACTIONS(1447), - [sym_bytes_literal] = ACTIONS(1447), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1445), [sym_at_ident] = ACTIONS(1447), @@ -69526,11 +66971,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1445), [anon_sym_DOLLARoffsetof] = ACTIONS(1445), [anon_sym_DOLLARqnameof] = ACTIONS(1445), - [anon_sym_DOLLAReval] = ACTIONS(1445), - [anon_sym_DOLLARdefined] = ACTIONS(1445), - [anon_sym_DOLLARsizeof] = ACTIONS(1445), - [anon_sym_DOLLARstringify] = ACTIONS(1445), - [anon_sym_DOLLARis_const] = ACTIONS(1445), [anon_sym_DOLLARvaconst] = ACTIONS(1445), [anon_sym_DOLLARvaarg] = ACTIONS(1445), [anon_sym_DOLLARvaref] = ACTIONS(1445), @@ -69539,11 +66979,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1445), [anon_sym_null] = ACTIONS(1445), [anon_sym_DOLLARvacount] = ACTIONS(1445), - [anon_sym_DOLLARfeature] = ACTIONS(1445), + [anon_sym_DOLLAReval] = ACTIONS(1445), + [anon_sym_DOLLARis_const] = ACTIONS(1445), + [anon_sym_DOLLARsizeof] = ACTIONS(1445), + [anon_sym_DOLLARstringify] = ACTIONS(1445), + [anon_sym_DOLLARappend] = ACTIONS(1445), + [anon_sym_DOLLARconcat] = ACTIONS(1445), + [anon_sym_DOLLARdefined] = ACTIONS(1445), + [anon_sym_DOLLARembed] = ACTIONS(1445), [anon_sym_DOLLARand] = ACTIONS(1445), [anon_sym_DOLLARor] = ACTIONS(1445), + [anon_sym_DOLLARfeature] = ACTIONS(1445), [anon_sym_DOLLARassignable] = ACTIONS(1445), - [anon_sym_DOLLARembed] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(1447), [anon_sym_TILDE] = ACTIONS(1447), [anon_sym_PLUS_PLUS] = ACTIONS(1447), @@ -69575,14 +67022,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1445), [anon_sym_DOLLARtypeof] = ACTIONS(1445), [anon_sym_DOLLARtypefrom] = ACTIONS(1445), - [anon_sym_DOLLARvatype] = ACTIONS(1445), [anon_sym_DOLLARevaltype] = ACTIONS(1445), + [anon_sym_DOLLARvatype] = ACTIONS(1445), [sym_real_literal] = ACTIONS(1447), }, - [383] = { - [sym_line_comment] = STATE(383), - [sym_doc_comment] = STATE(383), - [sym_block_comment] = STATE(383), + [364] = { + [sym_line_comment] = STATE(364), + [sym_doc_comment] = STATE(364), + [sym_block_comment] = STATE(364), [sym_ident] = ACTIONS(1449), [sym_integer_literal] = ACTIONS(1451), [anon_sym_SQUOTE] = ACTIONS(1451), @@ -69590,7 +67037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1451), [sym_bytes_literal] = ACTIONS(1451), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1449), [sym_at_ident] = ACTIONS(1451), @@ -69642,11 +67089,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1449), [anon_sym_DOLLARoffsetof] = ACTIONS(1449), [anon_sym_DOLLARqnameof] = ACTIONS(1449), - [anon_sym_DOLLAReval] = ACTIONS(1449), - [anon_sym_DOLLARdefined] = ACTIONS(1449), - [anon_sym_DOLLARsizeof] = ACTIONS(1449), - [anon_sym_DOLLARstringify] = ACTIONS(1449), - [anon_sym_DOLLARis_const] = ACTIONS(1449), [anon_sym_DOLLARvaconst] = ACTIONS(1449), [anon_sym_DOLLARvaarg] = ACTIONS(1449), [anon_sym_DOLLARvaref] = ACTIONS(1449), @@ -69655,11 +67097,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1449), [anon_sym_null] = ACTIONS(1449), [anon_sym_DOLLARvacount] = ACTIONS(1449), - [anon_sym_DOLLARfeature] = ACTIONS(1449), + [anon_sym_DOLLAReval] = ACTIONS(1449), + [anon_sym_DOLLARis_const] = ACTIONS(1449), + [anon_sym_DOLLARsizeof] = ACTIONS(1449), + [anon_sym_DOLLARstringify] = ACTIONS(1449), + [anon_sym_DOLLARappend] = ACTIONS(1449), + [anon_sym_DOLLARconcat] = ACTIONS(1449), + [anon_sym_DOLLARdefined] = ACTIONS(1449), + [anon_sym_DOLLARembed] = ACTIONS(1449), [anon_sym_DOLLARand] = ACTIONS(1449), [anon_sym_DOLLARor] = ACTIONS(1449), + [anon_sym_DOLLARfeature] = ACTIONS(1449), [anon_sym_DOLLARassignable] = ACTIONS(1449), - [anon_sym_DOLLARembed] = ACTIONS(1449), [anon_sym_BANG] = ACTIONS(1451), [anon_sym_TILDE] = ACTIONS(1451), [anon_sym_PLUS_PLUS] = ACTIONS(1451), @@ -69691,14 +67140,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1449), [anon_sym_DOLLARtypeof] = ACTIONS(1449), [anon_sym_DOLLARtypefrom] = ACTIONS(1449), - [anon_sym_DOLLARvatype] = ACTIONS(1449), [anon_sym_DOLLARevaltype] = ACTIONS(1449), + [anon_sym_DOLLARvatype] = ACTIONS(1449), [sym_real_literal] = ACTIONS(1451), }, - [384] = { - [sym_line_comment] = STATE(384), - [sym_doc_comment] = STATE(384), - [sym_block_comment] = STATE(384), + [365] = { + [sym_line_comment] = STATE(365), + [sym_doc_comment] = STATE(365), + [sym_block_comment] = STATE(365), [sym_ident] = ACTIONS(1453), [sym_integer_literal] = ACTIONS(1455), [anon_sym_SQUOTE] = ACTIONS(1455), @@ -69706,7 +67155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1455), [sym_bytes_literal] = ACTIONS(1455), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1453), [sym_at_ident] = ACTIONS(1455), @@ -69758,11 +67207,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1453), [anon_sym_DOLLARoffsetof] = ACTIONS(1453), [anon_sym_DOLLARqnameof] = ACTIONS(1453), - [anon_sym_DOLLAReval] = ACTIONS(1453), - [anon_sym_DOLLARdefined] = ACTIONS(1453), - [anon_sym_DOLLARsizeof] = ACTIONS(1453), - [anon_sym_DOLLARstringify] = ACTIONS(1453), - [anon_sym_DOLLARis_const] = ACTIONS(1453), [anon_sym_DOLLARvaconst] = ACTIONS(1453), [anon_sym_DOLLARvaarg] = ACTIONS(1453), [anon_sym_DOLLARvaref] = ACTIONS(1453), @@ -69771,11 +67215,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1453), [anon_sym_null] = ACTIONS(1453), [anon_sym_DOLLARvacount] = ACTIONS(1453), - [anon_sym_DOLLARfeature] = ACTIONS(1453), + [anon_sym_DOLLAReval] = ACTIONS(1453), + [anon_sym_DOLLARis_const] = ACTIONS(1453), + [anon_sym_DOLLARsizeof] = ACTIONS(1453), + [anon_sym_DOLLARstringify] = ACTIONS(1453), + [anon_sym_DOLLARappend] = ACTIONS(1453), + [anon_sym_DOLLARconcat] = ACTIONS(1453), + [anon_sym_DOLLARdefined] = ACTIONS(1453), + [anon_sym_DOLLARembed] = ACTIONS(1453), [anon_sym_DOLLARand] = ACTIONS(1453), [anon_sym_DOLLARor] = ACTIONS(1453), + [anon_sym_DOLLARfeature] = ACTIONS(1453), [anon_sym_DOLLARassignable] = ACTIONS(1453), - [anon_sym_DOLLARembed] = ACTIONS(1453), [anon_sym_BANG] = ACTIONS(1455), [anon_sym_TILDE] = ACTIONS(1455), [anon_sym_PLUS_PLUS] = ACTIONS(1455), @@ -69807,14 +67258,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1453), [anon_sym_DOLLARtypeof] = ACTIONS(1453), [anon_sym_DOLLARtypefrom] = ACTIONS(1453), - [anon_sym_DOLLARvatype] = ACTIONS(1453), [anon_sym_DOLLARevaltype] = ACTIONS(1453), + [anon_sym_DOLLARvatype] = ACTIONS(1453), [sym_real_literal] = ACTIONS(1455), }, - [385] = { - [sym_line_comment] = STATE(385), - [sym_doc_comment] = STATE(385), - [sym_block_comment] = STATE(385), + [366] = { + [sym_line_comment] = STATE(366), + [sym_doc_comment] = STATE(366), + [sym_block_comment] = STATE(366), [sym_ident] = ACTIONS(1457), [sym_integer_literal] = ACTIONS(1459), [anon_sym_SQUOTE] = ACTIONS(1459), @@ -69822,7 +67273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1459), [sym_bytes_literal] = ACTIONS(1459), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1457), [sym_at_ident] = ACTIONS(1459), @@ -69874,11 +67325,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1457), [anon_sym_DOLLARoffsetof] = ACTIONS(1457), [anon_sym_DOLLARqnameof] = ACTIONS(1457), - [anon_sym_DOLLAReval] = ACTIONS(1457), - [anon_sym_DOLLARdefined] = ACTIONS(1457), - [anon_sym_DOLLARsizeof] = ACTIONS(1457), - [anon_sym_DOLLARstringify] = ACTIONS(1457), - [anon_sym_DOLLARis_const] = ACTIONS(1457), [anon_sym_DOLLARvaconst] = ACTIONS(1457), [anon_sym_DOLLARvaarg] = ACTIONS(1457), [anon_sym_DOLLARvaref] = ACTIONS(1457), @@ -69887,11 +67333,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1457), [anon_sym_null] = ACTIONS(1457), [anon_sym_DOLLARvacount] = ACTIONS(1457), - [anon_sym_DOLLARfeature] = ACTIONS(1457), + [anon_sym_DOLLAReval] = ACTIONS(1457), + [anon_sym_DOLLARis_const] = ACTIONS(1457), + [anon_sym_DOLLARsizeof] = ACTIONS(1457), + [anon_sym_DOLLARstringify] = ACTIONS(1457), + [anon_sym_DOLLARappend] = ACTIONS(1457), + [anon_sym_DOLLARconcat] = ACTIONS(1457), + [anon_sym_DOLLARdefined] = ACTIONS(1457), + [anon_sym_DOLLARembed] = ACTIONS(1457), [anon_sym_DOLLARand] = ACTIONS(1457), [anon_sym_DOLLARor] = ACTIONS(1457), + [anon_sym_DOLLARfeature] = ACTIONS(1457), [anon_sym_DOLLARassignable] = ACTIONS(1457), - [anon_sym_DOLLARembed] = ACTIONS(1457), [anon_sym_BANG] = ACTIONS(1459), [anon_sym_TILDE] = ACTIONS(1459), [anon_sym_PLUS_PLUS] = ACTIONS(1459), @@ -69912,10307 +67365,6277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_uint128] = ACTIONS(1457), [anon_sym_float] = ACTIONS(1457), [anon_sym_double] = ACTIONS(1457), - [anon_sym_float16] = ACTIONS(1457), - [anon_sym_bfloat16] = ACTIONS(1457), - [anon_sym_float128] = ACTIONS(1457), - [anon_sym_iptr] = ACTIONS(1457), - [anon_sym_uptr] = ACTIONS(1457), - [anon_sym_isz] = ACTIONS(1457), - [anon_sym_usz] = ACTIONS(1457), - [anon_sym_anyfault] = ACTIONS(1457), - [anon_sym_any] = ACTIONS(1457), - [anon_sym_DOLLARtypeof] = ACTIONS(1457), - [anon_sym_DOLLARtypefrom] = ACTIONS(1457), - [anon_sym_DOLLARvatype] = ACTIONS(1457), - [anon_sym_DOLLARevaltype] = ACTIONS(1457), - [sym_real_literal] = ACTIONS(1459), - }, - [386] = { - [sym_line_comment] = STATE(386), - [sym_doc_comment] = STATE(386), - [sym_block_comment] = STATE(386), - [sym_else_part] = STATE(535), - [sym_ident] = ACTIONS(1365), - [sym_integer_literal] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1367), - [sym_bytes_literal] = ACTIONS(1367), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1365), - [sym_at_ident] = ACTIONS(1367), - [sym_hash_ident] = ACTIONS(1367), - [sym_type_ident] = ACTIONS(1367), - [sym_ct_type_ident] = ACTIONS(1367), - [sym_const_ident] = ACTIONS(1365), - [sym_builtin] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_tlocal] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_fn] = ACTIONS(1365), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_var] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_defer] = ACTIONS(1365), - [anon_sym_assert] = ACTIONS(1365), - [anon_sym_nextcase] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_else] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_foreach] = ACTIONS(1365), - [anon_sym_foreach_r] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_do] = ACTIONS(1365), - [anon_sym_int] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_asm] = ACTIONS(1365), - [anon_sym_DOLLARassert] = ACTIONS(1365), - [anon_sym_DOLLARerror] = ACTIONS(1365), - [anon_sym_DOLLARecho] = ACTIONS(1365), - [anon_sym_DOLLARif] = ACTIONS(1365), - [anon_sym_DOLLARendif] = ACTIONS(1365), - [anon_sym_DOLLARelse] = ACTIONS(1365), - [anon_sym_DOLLARswitch] = ACTIONS(1365), - [anon_sym_DOLLARfor] = ACTIONS(1365), - [anon_sym_DOLLARforeach] = ACTIONS(1365), - [anon_sym_DOLLARalignof] = ACTIONS(1365), - [anon_sym_DOLLARextnameof] = ACTIONS(1365), - [anon_sym_DOLLARnameof] = ACTIONS(1365), - [anon_sym_DOLLARoffsetof] = ACTIONS(1365), - [anon_sym_DOLLARqnameof] = ACTIONS(1365), - [anon_sym_DOLLAReval] = ACTIONS(1365), - [anon_sym_DOLLARdefined] = ACTIONS(1365), - [anon_sym_DOLLARsizeof] = ACTIONS(1365), - [anon_sym_DOLLARstringify] = ACTIONS(1365), - [anon_sym_DOLLARis_const] = ACTIONS(1365), - [anon_sym_DOLLARvaconst] = ACTIONS(1365), - [anon_sym_DOLLARvaarg] = ACTIONS(1365), - [anon_sym_DOLLARvaref] = ACTIONS(1365), - [anon_sym_DOLLARvaexpr] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1365), - [anon_sym_false] = ACTIONS(1365), - [anon_sym_null] = ACTIONS(1365), - [anon_sym_DOLLARvacount] = ACTIONS(1365), - [anon_sym_DOLLARfeature] = ACTIONS(1365), - [anon_sym_DOLLARand] = ACTIONS(1365), - [anon_sym_DOLLARor] = ACTIONS(1365), - [anon_sym_DOLLARassignable] = ACTIONS(1365), - [anon_sym_DOLLARembed] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_typeid] = ACTIONS(1365), - [anon_sym_LBRACE_PIPE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1365), - [anon_sym_bool] = ACTIONS(1365), - [anon_sym_char] = ACTIONS(1365), - [anon_sym_ichar] = ACTIONS(1365), - [anon_sym_short] = ACTIONS(1365), - [anon_sym_ushort] = ACTIONS(1365), - [anon_sym_uint] = ACTIONS(1365), - [anon_sym_long] = ACTIONS(1365), - [anon_sym_ulong] = ACTIONS(1365), - [anon_sym_int128] = ACTIONS(1365), - [anon_sym_uint128] = ACTIONS(1365), - [anon_sym_float] = ACTIONS(1365), - [anon_sym_double] = ACTIONS(1365), - [anon_sym_float16] = ACTIONS(1365), - [anon_sym_bfloat16] = ACTIONS(1365), - [anon_sym_float128] = ACTIONS(1365), - [anon_sym_iptr] = ACTIONS(1365), - [anon_sym_uptr] = ACTIONS(1365), - [anon_sym_isz] = ACTIONS(1365), - [anon_sym_usz] = ACTIONS(1365), - [anon_sym_anyfault] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1365), - [anon_sym_DOLLARtypeof] = ACTIONS(1365), - [anon_sym_DOLLARtypefrom] = ACTIONS(1365), - [anon_sym_DOLLARvatype] = ACTIONS(1365), - [anon_sym_DOLLARevaltype] = ACTIONS(1365), - [sym_real_literal] = ACTIONS(1367), - }, - [387] = { - [sym_line_comment] = STATE(387), - [sym_doc_comment] = STATE(387), - [sym_block_comment] = STATE(387), - [sym_ident] = ACTIONS(1463), - [sym_integer_literal] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1465), - [sym_bytes_literal] = ACTIONS(1465), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1463), - [sym_at_ident] = ACTIONS(1465), - [sym_hash_ident] = ACTIONS(1465), - [sym_type_ident] = ACTIONS(1465), - [sym_ct_type_ident] = ACTIONS(1465), - [sym_const_ident] = ACTIONS(1463), - [sym_builtin] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_static] = ACTIONS(1463), - [anon_sym_tlocal] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_var] = ACTIONS(1463), - [anon_sym_return] = ACTIONS(1463), - [anon_sym_continue] = ACTIONS(1463), - [anon_sym_break] = ACTIONS(1463), - [anon_sym_defer] = ACTIONS(1463), - [anon_sym_assert] = ACTIONS(1463), - [anon_sym_case] = ACTIONS(1463), - [anon_sym_default] = ACTIONS(1463), - [anon_sym_nextcase] = ACTIONS(1463), - [anon_sym_switch] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1463), - [anon_sym_for] = ACTIONS(1463), - [anon_sym_foreach] = ACTIONS(1463), - [anon_sym_foreach_r] = ACTIONS(1463), - [anon_sym_while] = ACTIONS(1463), - [anon_sym_do] = ACTIONS(1463), - [anon_sym_int] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_asm] = ACTIONS(1463), - [anon_sym_DOLLARassert] = ACTIONS(1463), - [anon_sym_DOLLARerror] = ACTIONS(1463), - [anon_sym_DOLLARecho] = ACTIONS(1463), - [anon_sym_DOLLARif] = ACTIONS(1463), - [anon_sym_DOLLARswitch] = ACTIONS(1463), - [anon_sym_DOLLARfor] = ACTIONS(1463), - [anon_sym_DOLLARforeach] = ACTIONS(1463), - [anon_sym_DOLLARalignof] = ACTIONS(1463), - [anon_sym_DOLLARextnameof] = ACTIONS(1463), - [anon_sym_DOLLARnameof] = ACTIONS(1463), - [anon_sym_DOLLARoffsetof] = ACTIONS(1463), - [anon_sym_DOLLARqnameof] = ACTIONS(1463), - [anon_sym_DOLLAReval] = ACTIONS(1463), - [anon_sym_DOLLARdefined] = ACTIONS(1463), - [anon_sym_DOLLARsizeof] = ACTIONS(1463), - [anon_sym_DOLLARstringify] = ACTIONS(1463), - [anon_sym_DOLLARis_const] = ACTIONS(1463), - [anon_sym_DOLLARvaconst] = ACTIONS(1463), - [anon_sym_DOLLARvaarg] = ACTIONS(1463), - [anon_sym_DOLLARvaref] = ACTIONS(1463), - [anon_sym_DOLLARvaexpr] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1463), - [anon_sym_false] = ACTIONS(1463), - [anon_sym_null] = ACTIONS(1463), - [anon_sym_DOLLARvacount] = ACTIONS(1463), - [anon_sym_DOLLARfeature] = ACTIONS(1463), - [anon_sym_DOLLARand] = ACTIONS(1463), - [anon_sym_DOLLARor] = ACTIONS(1463), - [anon_sym_DOLLARassignable] = ACTIONS(1463), - [anon_sym_DOLLARembed] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1465), - [anon_sym_PLUS_PLUS] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1465), - [anon_sym_typeid] = ACTIONS(1463), - [anon_sym_LBRACE_PIPE] = ACTIONS(1465), - [anon_sym_PIPE_RBRACE] = ACTIONS(1465), - [anon_sym_void] = ACTIONS(1463), - [anon_sym_bool] = ACTIONS(1463), - [anon_sym_char] = ACTIONS(1463), - [anon_sym_ichar] = ACTIONS(1463), - [anon_sym_short] = ACTIONS(1463), - [anon_sym_ushort] = ACTIONS(1463), - [anon_sym_uint] = ACTIONS(1463), - [anon_sym_long] = ACTIONS(1463), - [anon_sym_ulong] = ACTIONS(1463), - [anon_sym_int128] = ACTIONS(1463), - [anon_sym_uint128] = ACTIONS(1463), - [anon_sym_float] = ACTIONS(1463), - [anon_sym_double] = ACTIONS(1463), - [anon_sym_float16] = ACTIONS(1463), - [anon_sym_bfloat16] = ACTIONS(1463), - [anon_sym_float128] = ACTIONS(1463), - [anon_sym_iptr] = ACTIONS(1463), - [anon_sym_uptr] = ACTIONS(1463), - [anon_sym_isz] = ACTIONS(1463), - [anon_sym_usz] = ACTIONS(1463), - [anon_sym_anyfault] = ACTIONS(1463), - [anon_sym_any] = ACTIONS(1463), - [anon_sym_DOLLARtypeof] = ACTIONS(1463), - [anon_sym_DOLLARtypefrom] = ACTIONS(1463), - [anon_sym_DOLLARvatype] = ACTIONS(1463), - [anon_sym_DOLLARevaltype] = ACTIONS(1463), - [sym_real_literal] = ACTIONS(1465), - }, - [388] = { - [sym_line_comment] = STATE(388), - [sym_doc_comment] = STATE(388), - [sym_block_comment] = STATE(388), - [sym_ident] = ACTIONS(1467), - [sym_integer_literal] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_BQUOTE] = ACTIONS(1469), - [sym_bytes_literal] = ACTIONS(1469), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1467), - [sym_at_ident] = ACTIONS(1469), - [sym_hash_ident] = ACTIONS(1469), - [sym_type_ident] = ACTIONS(1469), - [sym_ct_type_ident] = ACTIONS(1469), - [sym_const_ident] = ACTIONS(1467), - [sym_builtin] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_static] = ACTIONS(1467), - [anon_sym_tlocal] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_fn] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1469), - [anon_sym_const] = ACTIONS(1467), - [anon_sym_var] = ACTIONS(1467), - [anon_sym_return] = ACTIONS(1467), - [anon_sym_continue] = ACTIONS(1467), - [anon_sym_break] = ACTIONS(1467), - [anon_sym_defer] = ACTIONS(1467), - [anon_sym_assert] = ACTIONS(1467), - [anon_sym_case] = ACTIONS(1467), - [anon_sym_default] = ACTIONS(1467), - [anon_sym_nextcase] = ACTIONS(1467), - [anon_sym_switch] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_for] = ACTIONS(1467), - [anon_sym_foreach] = ACTIONS(1467), - [anon_sym_foreach_r] = ACTIONS(1467), - [anon_sym_while] = ACTIONS(1467), - [anon_sym_do] = ACTIONS(1467), - [anon_sym_int] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_asm] = ACTIONS(1467), - [anon_sym_DOLLARassert] = ACTIONS(1467), - [anon_sym_DOLLARerror] = ACTIONS(1467), - [anon_sym_DOLLARecho] = ACTIONS(1467), - [anon_sym_DOLLARif] = ACTIONS(1467), - [anon_sym_DOLLARswitch] = ACTIONS(1467), - [anon_sym_DOLLARfor] = ACTIONS(1467), - [anon_sym_DOLLARforeach] = ACTIONS(1467), - [anon_sym_DOLLARalignof] = ACTIONS(1467), - [anon_sym_DOLLARextnameof] = ACTIONS(1467), - [anon_sym_DOLLARnameof] = ACTIONS(1467), - [anon_sym_DOLLARoffsetof] = ACTIONS(1467), - [anon_sym_DOLLARqnameof] = ACTIONS(1467), - [anon_sym_DOLLAReval] = ACTIONS(1467), - [anon_sym_DOLLARdefined] = ACTIONS(1467), - [anon_sym_DOLLARsizeof] = ACTIONS(1467), - [anon_sym_DOLLARstringify] = ACTIONS(1467), - [anon_sym_DOLLARis_const] = ACTIONS(1467), - [anon_sym_DOLLARvaconst] = ACTIONS(1467), - [anon_sym_DOLLARvaarg] = ACTIONS(1467), - [anon_sym_DOLLARvaref] = ACTIONS(1467), - [anon_sym_DOLLARvaexpr] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1467), - [anon_sym_false] = ACTIONS(1467), - [anon_sym_null] = ACTIONS(1467), - [anon_sym_DOLLARvacount] = ACTIONS(1467), - [anon_sym_DOLLARfeature] = ACTIONS(1467), - [anon_sym_DOLLARand] = ACTIONS(1467), - [anon_sym_DOLLARor] = ACTIONS(1467), - [anon_sym_DOLLARassignable] = ACTIONS(1467), - [anon_sym_DOLLARembed] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_PLUS_PLUS] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1469), - [anon_sym_typeid] = ACTIONS(1467), - [anon_sym_LBRACE_PIPE] = ACTIONS(1469), - [anon_sym_PIPE_RBRACE] = ACTIONS(1469), - [anon_sym_void] = ACTIONS(1467), - [anon_sym_bool] = ACTIONS(1467), - [anon_sym_char] = ACTIONS(1467), - [anon_sym_ichar] = ACTIONS(1467), - [anon_sym_short] = ACTIONS(1467), - [anon_sym_ushort] = ACTIONS(1467), - [anon_sym_uint] = ACTIONS(1467), - [anon_sym_long] = ACTIONS(1467), - [anon_sym_ulong] = ACTIONS(1467), - [anon_sym_int128] = ACTIONS(1467), - [anon_sym_uint128] = ACTIONS(1467), - [anon_sym_float] = ACTIONS(1467), - [anon_sym_double] = ACTIONS(1467), - [anon_sym_float16] = ACTIONS(1467), - [anon_sym_bfloat16] = ACTIONS(1467), - [anon_sym_float128] = ACTIONS(1467), - [anon_sym_iptr] = ACTIONS(1467), - [anon_sym_uptr] = ACTIONS(1467), - [anon_sym_isz] = ACTIONS(1467), - [anon_sym_usz] = ACTIONS(1467), - [anon_sym_anyfault] = ACTIONS(1467), - [anon_sym_any] = ACTIONS(1467), - [anon_sym_DOLLARtypeof] = ACTIONS(1467), - [anon_sym_DOLLARtypefrom] = ACTIONS(1467), - [anon_sym_DOLLARvatype] = ACTIONS(1467), - [anon_sym_DOLLARevaltype] = ACTIONS(1467), - [sym_real_literal] = ACTIONS(1469), - }, - [389] = { - [sym_line_comment] = STATE(389), - [sym_doc_comment] = STATE(389), - [sym_block_comment] = STATE(389), - [sym_ident] = ACTIONS(1471), - [sym_integer_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1473), - [anon_sym_BQUOTE] = ACTIONS(1473), - [sym_bytes_literal] = ACTIONS(1473), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1471), - [sym_at_ident] = ACTIONS(1473), - [sym_hash_ident] = ACTIONS(1473), - [sym_type_ident] = ACTIONS(1473), - [sym_ct_type_ident] = ACTIONS(1473), - [sym_const_ident] = ACTIONS(1471), - [sym_builtin] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_tlocal] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1473), - [anon_sym_fn] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_RBRACE] = ACTIONS(1473), - [anon_sym_const] = ACTIONS(1471), - [anon_sym_var] = ACTIONS(1471), - [anon_sym_return] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1471), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_defer] = ACTIONS(1471), - [anon_sym_assert] = ACTIONS(1471), - [anon_sym_case] = ACTIONS(1471), - [anon_sym_default] = ACTIONS(1471), - [anon_sym_nextcase] = ACTIONS(1471), - [anon_sym_switch] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1471), - [anon_sym_for] = ACTIONS(1471), - [anon_sym_foreach] = ACTIONS(1471), - [anon_sym_foreach_r] = ACTIONS(1471), - [anon_sym_while] = ACTIONS(1471), - [anon_sym_do] = ACTIONS(1471), - [anon_sym_int] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_asm] = ACTIONS(1471), - [anon_sym_DOLLARassert] = ACTIONS(1471), - [anon_sym_DOLLARerror] = ACTIONS(1471), - [anon_sym_DOLLARecho] = ACTIONS(1471), - [anon_sym_DOLLARif] = ACTIONS(1471), - [anon_sym_DOLLARswitch] = ACTIONS(1471), - [anon_sym_DOLLARfor] = ACTIONS(1471), - [anon_sym_DOLLARforeach] = ACTIONS(1471), - [anon_sym_DOLLARalignof] = ACTIONS(1471), - [anon_sym_DOLLARextnameof] = ACTIONS(1471), - [anon_sym_DOLLARnameof] = ACTIONS(1471), - [anon_sym_DOLLARoffsetof] = ACTIONS(1471), - [anon_sym_DOLLARqnameof] = ACTIONS(1471), - [anon_sym_DOLLAReval] = ACTIONS(1471), - [anon_sym_DOLLARdefined] = ACTIONS(1471), - [anon_sym_DOLLARsizeof] = ACTIONS(1471), - [anon_sym_DOLLARstringify] = ACTIONS(1471), - [anon_sym_DOLLARis_const] = ACTIONS(1471), - [anon_sym_DOLLARvaconst] = ACTIONS(1471), - [anon_sym_DOLLARvaarg] = ACTIONS(1471), - [anon_sym_DOLLARvaref] = ACTIONS(1471), - [anon_sym_DOLLARvaexpr] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1471), - [anon_sym_false] = ACTIONS(1471), - [anon_sym_null] = ACTIONS(1471), - [anon_sym_DOLLARvacount] = ACTIONS(1471), - [anon_sym_DOLLARfeature] = ACTIONS(1471), - [anon_sym_DOLLARand] = ACTIONS(1471), - [anon_sym_DOLLARor] = ACTIONS(1471), - [anon_sym_DOLLARassignable] = ACTIONS(1471), - [anon_sym_DOLLARembed] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1473), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), - [anon_sym_typeid] = ACTIONS(1471), - [anon_sym_LBRACE_PIPE] = ACTIONS(1473), - [anon_sym_PIPE_RBRACE] = ACTIONS(1473), - [anon_sym_void] = ACTIONS(1471), - [anon_sym_bool] = ACTIONS(1471), - [anon_sym_char] = ACTIONS(1471), - [anon_sym_ichar] = ACTIONS(1471), - [anon_sym_short] = ACTIONS(1471), - [anon_sym_ushort] = ACTIONS(1471), - [anon_sym_uint] = ACTIONS(1471), - [anon_sym_long] = ACTIONS(1471), - [anon_sym_ulong] = ACTIONS(1471), - [anon_sym_int128] = ACTIONS(1471), - [anon_sym_uint128] = ACTIONS(1471), - [anon_sym_float] = ACTIONS(1471), - [anon_sym_double] = ACTIONS(1471), - [anon_sym_float16] = ACTIONS(1471), - [anon_sym_bfloat16] = ACTIONS(1471), - [anon_sym_float128] = ACTIONS(1471), - [anon_sym_iptr] = ACTIONS(1471), - [anon_sym_uptr] = ACTIONS(1471), - [anon_sym_isz] = ACTIONS(1471), - [anon_sym_usz] = ACTIONS(1471), - [anon_sym_anyfault] = ACTIONS(1471), - [anon_sym_any] = ACTIONS(1471), - [anon_sym_DOLLARtypeof] = ACTIONS(1471), - [anon_sym_DOLLARtypefrom] = ACTIONS(1471), - [anon_sym_DOLLARvatype] = ACTIONS(1471), - [anon_sym_DOLLARevaltype] = ACTIONS(1471), - [sym_real_literal] = ACTIONS(1473), - }, - [390] = { - [sym_line_comment] = STATE(390), - [sym_doc_comment] = STATE(390), - [sym_block_comment] = STATE(390), - [sym_ident] = ACTIONS(1475), - [sym_integer_literal] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1477), - [sym_bytes_literal] = ACTIONS(1477), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1475), - [sym_at_ident] = ACTIONS(1477), - [sym_hash_ident] = ACTIONS(1477), - [sym_type_ident] = ACTIONS(1477), - [sym_ct_type_ident] = ACTIONS(1477), - [sym_const_ident] = ACTIONS(1475), - [sym_builtin] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_tlocal] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_fn] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_var] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_defer] = ACTIONS(1475), - [anon_sym_assert] = ACTIONS(1475), - [anon_sym_case] = ACTIONS(1475), - [anon_sym_default] = ACTIONS(1475), - [anon_sym_nextcase] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_foreach] = ACTIONS(1475), - [anon_sym_foreach_r] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_int] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_asm] = ACTIONS(1475), - [anon_sym_DOLLARassert] = ACTIONS(1475), - [anon_sym_DOLLARerror] = ACTIONS(1475), - [anon_sym_DOLLARecho] = ACTIONS(1475), - [anon_sym_DOLLARif] = ACTIONS(1475), - [anon_sym_DOLLARswitch] = ACTIONS(1475), - [anon_sym_DOLLARfor] = ACTIONS(1475), - [anon_sym_DOLLARforeach] = ACTIONS(1475), - [anon_sym_DOLLARalignof] = ACTIONS(1475), - [anon_sym_DOLLARextnameof] = ACTIONS(1475), - [anon_sym_DOLLARnameof] = ACTIONS(1475), - [anon_sym_DOLLARoffsetof] = ACTIONS(1475), - [anon_sym_DOLLARqnameof] = ACTIONS(1475), - [anon_sym_DOLLAReval] = ACTIONS(1475), - [anon_sym_DOLLARdefined] = ACTIONS(1475), - [anon_sym_DOLLARsizeof] = ACTIONS(1475), - [anon_sym_DOLLARstringify] = ACTIONS(1475), - [anon_sym_DOLLARis_const] = ACTIONS(1475), - [anon_sym_DOLLARvaconst] = ACTIONS(1475), - [anon_sym_DOLLARvaarg] = ACTIONS(1475), - [anon_sym_DOLLARvaref] = ACTIONS(1475), - [anon_sym_DOLLARvaexpr] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_DOLLARvacount] = ACTIONS(1475), - [anon_sym_DOLLARfeature] = ACTIONS(1475), - [anon_sym_DOLLARand] = ACTIONS(1475), - [anon_sym_DOLLARor] = ACTIONS(1475), - [anon_sym_DOLLARassignable] = ACTIONS(1475), - [anon_sym_DOLLARembed] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1477), - [anon_sym_DASH_DASH] = ACTIONS(1477), - [anon_sym_typeid] = ACTIONS(1475), - [anon_sym_LBRACE_PIPE] = ACTIONS(1477), - [anon_sym_PIPE_RBRACE] = ACTIONS(1477), - [anon_sym_void] = ACTIONS(1475), - [anon_sym_bool] = ACTIONS(1475), - [anon_sym_char] = ACTIONS(1475), - [anon_sym_ichar] = ACTIONS(1475), - [anon_sym_short] = ACTIONS(1475), - [anon_sym_ushort] = ACTIONS(1475), - [anon_sym_uint] = ACTIONS(1475), - [anon_sym_long] = ACTIONS(1475), - [anon_sym_ulong] = ACTIONS(1475), - [anon_sym_int128] = ACTIONS(1475), - [anon_sym_uint128] = ACTIONS(1475), - [anon_sym_float] = ACTIONS(1475), - [anon_sym_double] = ACTIONS(1475), - [anon_sym_float16] = ACTIONS(1475), - [anon_sym_bfloat16] = ACTIONS(1475), - [anon_sym_float128] = ACTIONS(1475), - [anon_sym_iptr] = ACTIONS(1475), - [anon_sym_uptr] = ACTIONS(1475), - [anon_sym_isz] = ACTIONS(1475), - [anon_sym_usz] = ACTIONS(1475), - [anon_sym_anyfault] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_DOLLARtypeof] = ACTIONS(1475), - [anon_sym_DOLLARtypefrom] = ACTIONS(1475), - [anon_sym_DOLLARvatype] = ACTIONS(1475), - [anon_sym_DOLLARevaltype] = ACTIONS(1475), - [sym_real_literal] = ACTIONS(1477), - }, - [391] = { - [sym_line_comment] = STATE(391), - [sym_doc_comment] = STATE(391), - [sym_block_comment] = STATE(391), - [sym_ident] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1481), - [anon_sym_BQUOTE] = ACTIONS(1481), - [sym_bytes_literal] = ACTIONS(1481), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1479), - [sym_at_ident] = ACTIONS(1481), - [sym_hash_ident] = ACTIONS(1481), - [sym_type_ident] = ACTIONS(1481), - [sym_ct_type_ident] = ACTIONS(1481), - [sym_const_ident] = ACTIONS(1479), - [sym_builtin] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_tlocal] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_fn] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_defer] = ACTIONS(1479), - [anon_sym_assert] = ACTIONS(1479), - [anon_sym_case] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1479), - [anon_sym_nextcase] = ACTIONS(1479), - [anon_sym_switch] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_foreach] = ACTIONS(1479), - [anon_sym_foreach_r] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_do] = ACTIONS(1479), - [anon_sym_int] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1481), - [anon_sym_asm] = ACTIONS(1479), - [anon_sym_DOLLARassert] = ACTIONS(1479), - [anon_sym_DOLLARerror] = ACTIONS(1479), - [anon_sym_DOLLARecho] = ACTIONS(1479), - [anon_sym_DOLLARif] = ACTIONS(1479), - [anon_sym_DOLLARswitch] = ACTIONS(1479), - [anon_sym_DOLLARfor] = ACTIONS(1479), - [anon_sym_DOLLARforeach] = ACTIONS(1479), - [anon_sym_DOLLARalignof] = ACTIONS(1479), - [anon_sym_DOLLARextnameof] = ACTIONS(1479), - [anon_sym_DOLLARnameof] = ACTIONS(1479), - [anon_sym_DOLLARoffsetof] = ACTIONS(1479), - [anon_sym_DOLLARqnameof] = ACTIONS(1479), - [anon_sym_DOLLAReval] = ACTIONS(1479), - [anon_sym_DOLLARdefined] = ACTIONS(1479), - [anon_sym_DOLLARsizeof] = ACTIONS(1479), - [anon_sym_DOLLARstringify] = ACTIONS(1479), - [anon_sym_DOLLARis_const] = ACTIONS(1479), - [anon_sym_DOLLARvaconst] = ACTIONS(1479), - [anon_sym_DOLLARvaarg] = ACTIONS(1479), - [anon_sym_DOLLARvaref] = ACTIONS(1479), - [anon_sym_DOLLARvaexpr] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1479), - [anon_sym_false] = ACTIONS(1479), - [anon_sym_null] = ACTIONS(1479), - [anon_sym_DOLLARvacount] = ACTIONS(1479), - [anon_sym_DOLLARfeature] = ACTIONS(1479), - [anon_sym_DOLLARand] = ACTIONS(1479), - [anon_sym_DOLLARor] = ACTIONS(1479), - [anon_sym_DOLLARassignable] = ACTIONS(1479), - [anon_sym_DOLLARembed] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1481), - [anon_sym_typeid] = ACTIONS(1479), - [anon_sym_LBRACE_PIPE] = ACTIONS(1481), - [anon_sym_PIPE_RBRACE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1479), - [anon_sym_bool] = ACTIONS(1479), - [anon_sym_char] = ACTIONS(1479), - [anon_sym_ichar] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [anon_sym_ushort] = ACTIONS(1479), - [anon_sym_uint] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_ulong] = ACTIONS(1479), - [anon_sym_int128] = ACTIONS(1479), - [anon_sym_uint128] = ACTIONS(1479), - [anon_sym_float] = ACTIONS(1479), - [anon_sym_double] = ACTIONS(1479), - [anon_sym_float16] = ACTIONS(1479), - [anon_sym_bfloat16] = ACTIONS(1479), - [anon_sym_float128] = ACTIONS(1479), - [anon_sym_iptr] = ACTIONS(1479), - [anon_sym_uptr] = ACTIONS(1479), - [anon_sym_isz] = ACTIONS(1479), - [anon_sym_usz] = ACTIONS(1479), - [anon_sym_anyfault] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_DOLLARtypeof] = ACTIONS(1479), - [anon_sym_DOLLARtypefrom] = ACTIONS(1479), - [anon_sym_DOLLARvatype] = ACTIONS(1479), - [anon_sym_DOLLARevaltype] = ACTIONS(1479), - [sym_real_literal] = ACTIONS(1481), - }, - [392] = { - [sym_line_comment] = STATE(392), - [sym_doc_comment] = STATE(392), - [sym_block_comment] = STATE(392), - [sym_ident] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [anon_sym_BQUOTE] = ACTIONS(1485), - [sym_bytes_literal] = ACTIONS(1485), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1483), - [sym_at_ident] = ACTIONS(1485), - [sym_hash_ident] = ACTIONS(1485), - [sym_type_ident] = ACTIONS(1485), - [sym_ct_type_ident] = ACTIONS(1485), - [sym_const_ident] = ACTIONS(1483), - [sym_builtin] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_tlocal] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_fn] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_var] = ACTIONS(1483), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_defer] = ACTIONS(1483), - [anon_sym_assert] = ACTIONS(1483), - [anon_sym_case] = ACTIONS(1483), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_nextcase] = ACTIONS(1483), - [anon_sym_switch] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_foreach] = ACTIONS(1483), - [anon_sym_foreach_r] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(1483), - [anon_sym_int] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_asm] = ACTIONS(1483), - [anon_sym_DOLLARassert] = ACTIONS(1483), - [anon_sym_DOLLARerror] = ACTIONS(1483), - [anon_sym_DOLLARecho] = ACTIONS(1483), - [anon_sym_DOLLARif] = ACTIONS(1483), - [anon_sym_DOLLARswitch] = ACTIONS(1483), - [anon_sym_DOLLARfor] = ACTIONS(1483), - [anon_sym_DOLLARforeach] = ACTIONS(1483), - [anon_sym_DOLLARalignof] = ACTIONS(1483), - [anon_sym_DOLLARextnameof] = ACTIONS(1483), - [anon_sym_DOLLARnameof] = ACTIONS(1483), - [anon_sym_DOLLARoffsetof] = ACTIONS(1483), - [anon_sym_DOLLARqnameof] = ACTIONS(1483), - [anon_sym_DOLLAReval] = ACTIONS(1483), - [anon_sym_DOLLARdefined] = ACTIONS(1483), - [anon_sym_DOLLARsizeof] = ACTIONS(1483), - [anon_sym_DOLLARstringify] = ACTIONS(1483), - [anon_sym_DOLLARis_const] = ACTIONS(1483), - [anon_sym_DOLLARvaconst] = ACTIONS(1483), - [anon_sym_DOLLARvaarg] = ACTIONS(1483), - [anon_sym_DOLLARvaref] = ACTIONS(1483), - [anon_sym_DOLLARvaexpr] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [anon_sym_DOLLARvacount] = ACTIONS(1483), - [anon_sym_DOLLARfeature] = ACTIONS(1483), - [anon_sym_DOLLARand] = ACTIONS(1483), - [anon_sym_DOLLARor] = ACTIONS(1483), - [anon_sym_DOLLARassignable] = ACTIONS(1483), - [anon_sym_DOLLARembed] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_TILDE] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_DASH_DASH] = ACTIONS(1485), - [anon_sym_typeid] = ACTIONS(1483), - [anon_sym_LBRACE_PIPE] = ACTIONS(1485), - [anon_sym_PIPE_RBRACE] = ACTIONS(1485), - [anon_sym_void] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_ichar] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [anon_sym_ushort] = ACTIONS(1483), - [anon_sym_uint] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_ulong] = ACTIONS(1483), - [anon_sym_int128] = ACTIONS(1483), - [anon_sym_uint128] = ACTIONS(1483), - [anon_sym_float] = ACTIONS(1483), - [anon_sym_double] = ACTIONS(1483), - [anon_sym_float16] = ACTIONS(1483), - [anon_sym_bfloat16] = ACTIONS(1483), - [anon_sym_float128] = ACTIONS(1483), - [anon_sym_iptr] = ACTIONS(1483), - [anon_sym_uptr] = ACTIONS(1483), - [anon_sym_isz] = ACTIONS(1483), - [anon_sym_usz] = ACTIONS(1483), - [anon_sym_anyfault] = ACTIONS(1483), - [anon_sym_any] = ACTIONS(1483), - [anon_sym_DOLLARtypeof] = ACTIONS(1483), - [anon_sym_DOLLARtypefrom] = ACTIONS(1483), - [anon_sym_DOLLARvatype] = ACTIONS(1483), - [anon_sym_DOLLARevaltype] = ACTIONS(1483), - [sym_real_literal] = ACTIONS(1485), - }, - [393] = { - [sym_line_comment] = STATE(393), - [sym_doc_comment] = STATE(393), - [sym_block_comment] = STATE(393), - [sym_ident] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_BQUOTE] = ACTIONS(1489), - [sym_bytes_literal] = ACTIONS(1489), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1487), - [sym_at_ident] = ACTIONS(1489), - [sym_hash_ident] = ACTIONS(1489), - [sym_type_ident] = ACTIONS(1489), - [sym_ct_type_ident] = ACTIONS(1489), - [sym_const_ident] = ACTIONS(1487), - [sym_builtin] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_tlocal] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_fn] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_var] = ACTIONS(1487), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_defer] = ACTIONS(1487), - [anon_sym_assert] = ACTIONS(1487), - [anon_sym_case] = ACTIONS(1487), - [anon_sym_default] = ACTIONS(1487), - [anon_sym_nextcase] = ACTIONS(1487), - [anon_sym_switch] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_foreach] = ACTIONS(1487), - [anon_sym_foreach_r] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_do] = ACTIONS(1487), - [anon_sym_int] = ACTIONS(1487), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_asm] = ACTIONS(1487), - [anon_sym_DOLLARassert] = ACTIONS(1487), - [anon_sym_DOLLARerror] = ACTIONS(1487), - [anon_sym_DOLLARecho] = ACTIONS(1487), - [anon_sym_DOLLARif] = ACTIONS(1487), - [anon_sym_DOLLARswitch] = ACTIONS(1487), - [anon_sym_DOLLARfor] = ACTIONS(1487), - [anon_sym_DOLLARforeach] = ACTIONS(1487), - [anon_sym_DOLLARalignof] = ACTIONS(1487), - [anon_sym_DOLLARextnameof] = ACTIONS(1487), - [anon_sym_DOLLARnameof] = ACTIONS(1487), - [anon_sym_DOLLARoffsetof] = ACTIONS(1487), - [anon_sym_DOLLARqnameof] = ACTIONS(1487), - [anon_sym_DOLLAReval] = ACTIONS(1487), - [anon_sym_DOLLARdefined] = ACTIONS(1487), - [anon_sym_DOLLARsizeof] = ACTIONS(1487), - [anon_sym_DOLLARstringify] = ACTIONS(1487), - [anon_sym_DOLLARis_const] = ACTIONS(1487), - [anon_sym_DOLLARvaconst] = ACTIONS(1487), - [anon_sym_DOLLARvaarg] = ACTIONS(1487), - [anon_sym_DOLLARvaref] = ACTIONS(1487), - [anon_sym_DOLLARvaexpr] = ACTIONS(1487), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_null] = ACTIONS(1487), - [anon_sym_DOLLARvacount] = ACTIONS(1487), - [anon_sym_DOLLARfeature] = ACTIONS(1487), - [anon_sym_DOLLARand] = ACTIONS(1487), - [anon_sym_DOLLARor] = ACTIONS(1487), - [anon_sym_DOLLARassignable] = ACTIONS(1487), - [anon_sym_DOLLARembed] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1489), - [anon_sym_typeid] = ACTIONS(1487), - [anon_sym_LBRACE_PIPE] = ACTIONS(1489), - [anon_sym_PIPE_RBRACE] = ACTIONS(1489), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_ichar] = ACTIONS(1487), - [anon_sym_short] = ACTIONS(1487), - [anon_sym_ushort] = ACTIONS(1487), - [anon_sym_uint] = ACTIONS(1487), - [anon_sym_long] = ACTIONS(1487), - [anon_sym_ulong] = ACTIONS(1487), - [anon_sym_int128] = ACTIONS(1487), - [anon_sym_uint128] = ACTIONS(1487), - [anon_sym_float] = ACTIONS(1487), - [anon_sym_double] = ACTIONS(1487), - [anon_sym_float16] = ACTIONS(1487), - [anon_sym_bfloat16] = ACTIONS(1487), - [anon_sym_float128] = ACTIONS(1487), - [anon_sym_iptr] = ACTIONS(1487), - [anon_sym_uptr] = ACTIONS(1487), - [anon_sym_isz] = ACTIONS(1487), - [anon_sym_usz] = ACTIONS(1487), - [anon_sym_anyfault] = ACTIONS(1487), - [anon_sym_any] = ACTIONS(1487), - [anon_sym_DOLLARtypeof] = ACTIONS(1487), - [anon_sym_DOLLARtypefrom] = ACTIONS(1487), - [anon_sym_DOLLARvatype] = ACTIONS(1487), - [anon_sym_DOLLARevaltype] = ACTIONS(1487), - [sym_real_literal] = ACTIONS(1489), - }, - [394] = { - [sym_line_comment] = STATE(394), - [sym_doc_comment] = STATE(394), - [sym_block_comment] = STATE(394), - [sym_ident] = ACTIONS(1491), - [sym_integer_literal] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_BQUOTE] = ACTIONS(1493), - [sym_bytes_literal] = ACTIONS(1493), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1491), - [sym_at_ident] = ACTIONS(1493), - [sym_hash_ident] = ACTIONS(1493), - [sym_type_ident] = ACTIONS(1493), - [sym_ct_type_ident] = ACTIONS(1493), - [sym_const_ident] = ACTIONS(1491), - [sym_builtin] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_tlocal] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_fn] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_var] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_defer] = ACTIONS(1491), - [anon_sym_assert] = ACTIONS(1491), - [anon_sym_case] = ACTIONS(1491), - [anon_sym_default] = ACTIONS(1491), - [anon_sym_nextcase] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_foreach] = ACTIONS(1491), - [anon_sym_foreach_r] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_int] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_asm] = ACTIONS(1491), - [anon_sym_DOLLARassert] = ACTIONS(1491), - [anon_sym_DOLLARerror] = ACTIONS(1491), - [anon_sym_DOLLARecho] = ACTIONS(1491), - [anon_sym_DOLLARif] = ACTIONS(1491), - [anon_sym_DOLLARswitch] = ACTIONS(1491), - [anon_sym_DOLLARfor] = ACTIONS(1491), - [anon_sym_DOLLARforeach] = ACTIONS(1491), - [anon_sym_DOLLARalignof] = ACTIONS(1491), - [anon_sym_DOLLARextnameof] = ACTIONS(1491), - [anon_sym_DOLLARnameof] = ACTIONS(1491), - [anon_sym_DOLLARoffsetof] = ACTIONS(1491), - [anon_sym_DOLLARqnameof] = ACTIONS(1491), - [anon_sym_DOLLAReval] = ACTIONS(1491), - [anon_sym_DOLLARdefined] = ACTIONS(1491), - [anon_sym_DOLLARsizeof] = ACTIONS(1491), - [anon_sym_DOLLARstringify] = ACTIONS(1491), - [anon_sym_DOLLARis_const] = ACTIONS(1491), - [anon_sym_DOLLARvaconst] = ACTIONS(1491), - [anon_sym_DOLLARvaarg] = ACTIONS(1491), - [anon_sym_DOLLARvaref] = ACTIONS(1491), - [anon_sym_DOLLARvaexpr] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1491), - [anon_sym_DOLLARvacount] = ACTIONS(1491), - [anon_sym_DOLLARfeature] = ACTIONS(1491), - [anon_sym_DOLLARand] = ACTIONS(1491), - [anon_sym_DOLLARor] = ACTIONS(1491), - [anon_sym_DOLLARassignable] = ACTIONS(1491), - [anon_sym_DOLLARembed] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_typeid] = ACTIONS(1491), - [anon_sym_LBRACE_PIPE] = ACTIONS(1493), - [anon_sym_PIPE_RBRACE] = ACTIONS(1493), - [anon_sym_void] = ACTIONS(1491), - [anon_sym_bool] = ACTIONS(1491), - [anon_sym_char] = ACTIONS(1491), - [anon_sym_ichar] = ACTIONS(1491), - [anon_sym_short] = ACTIONS(1491), - [anon_sym_ushort] = ACTIONS(1491), - [anon_sym_uint] = ACTIONS(1491), - [anon_sym_long] = ACTIONS(1491), - [anon_sym_ulong] = ACTIONS(1491), - [anon_sym_int128] = ACTIONS(1491), - [anon_sym_uint128] = ACTIONS(1491), - [anon_sym_float] = ACTIONS(1491), - [anon_sym_double] = ACTIONS(1491), - [anon_sym_float16] = ACTIONS(1491), - [anon_sym_bfloat16] = ACTIONS(1491), - [anon_sym_float128] = ACTIONS(1491), - [anon_sym_iptr] = ACTIONS(1491), - [anon_sym_uptr] = ACTIONS(1491), - [anon_sym_isz] = ACTIONS(1491), - [anon_sym_usz] = ACTIONS(1491), - [anon_sym_anyfault] = ACTIONS(1491), - [anon_sym_any] = ACTIONS(1491), - [anon_sym_DOLLARtypeof] = ACTIONS(1491), - [anon_sym_DOLLARtypefrom] = ACTIONS(1491), - [anon_sym_DOLLARvatype] = ACTIONS(1491), - [anon_sym_DOLLARevaltype] = ACTIONS(1491), - [sym_real_literal] = ACTIONS(1493), - }, - [395] = { - [sym_line_comment] = STATE(395), - [sym_doc_comment] = STATE(395), - [sym_block_comment] = STATE(395), - [sym_ident] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1497), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [anon_sym_BQUOTE] = ACTIONS(1497), - [sym_bytes_literal] = ACTIONS(1497), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1495), - [sym_at_ident] = ACTIONS(1497), - [sym_hash_ident] = ACTIONS(1497), - [sym_type_ident] = ACTIONS(1497), - [sym_ct_type_ident] = ACTIONS(1497), - [sym_const_ident] = ACTIONS(1495), - [sym_builtin] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_tlocal] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1497), - [anon_sym_fn] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_var] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_defer] = ACTIONS(1495), - [anon_sym_assert] = ACTIONS(1495), - [anon_sym_case] = ACTIONS(1495), - [anon_sym_default] = ACTIONS(1495), - [anon_sym_nextcase] = ACTIONS(1495), - [anon_sym_switch] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_foreach] = ACTIONS(1495), - [anon_sym_foreach_r] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_int] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_asm] = ACTIONS(1495), - [anon_sym_DOLLARassert] = ACTIONS(1495), - [anon_sym_DOLLARerror] = ACTIONS(1495), - [anon_sym_DOLLARecho] = ACTIONS(1495), - [anon_sym_DOLLARif] = ACTIONS(1495), - [anon_sym_DOLLARswitch] = ACTIONS(1495), - [anon_sym_DOLLARfor] = ACTIONS(1495), - [anon_sym_DOLLARforeach] = ACTIONS(1495), - [anon_sym_DOLLARalignof] = ACTIONS(1495), - [anon_sym_DOLLARextnameof] = ACTIONS(1495), - [anon_sym_DOLLARnameof] = ACTIONS(1495), - [anon_sym_DOLLARoffsetof] = ACTIONS(1495), - [anon_sym_DOLLARqnameof] = ACTIONS(1495), - [anon_sym_DOLLAReval] = ACTIONS(1495), - [anon_sym_DOLLARdefined] = ACTIONS(1495), - [anon_sym_DOLLARsizeof] = ACTIONS(1495), - [anon_sym_DOLLARstringify] = ACTIONS(1495), - [anon_sym_DOLLARis_const] = ACTIONS(1495), - [anon_sym_DOLLARvaconst] = ACTIONS(1495), - [anon_sym_DOLLARvaarg] = ACTIONS(1495), - [anon_sym_DOLLARvaref] = ACTIONS(1495), - [anon_sym_DOLLARvaexpr] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_DOLLARvacount] = ACTIONS(1495), - [anon_sym_DOLLARfeature] = ACTIONS(1495), - [anon_sym_DOLLARand] = ACTIONS(1495), - [anon_sym_DOLLARor] = ACTIONS(1495), - [anon_sym_DOLLARassignable] = ACTIONS(1495), - [anon_sym_DOLLARembed] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_TILDE] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [anon_sym_typeid] = ACTIONS(1495), - [anon_sym_LBRACE_PIPE] = ACTIONS(1497), - [anon_sym_PIPE_RBRACE] = ACTIONS(1497), - [anon_sym_void] = ACTIONS(1495), - [anon_sym_bool] = ACTIONS(1495), - [anon_sym_char] = ACTIONS(1495), - [anon_sym_ichar] = ACTIONS(1495), - [anon_sym_short] = ACTIONS(1495), - [anon_sym_ushort] = ACTIONS(1495), - [anon_sym_uint] = ACTIONS(1495), - [anon_sym_long] = ACTIONS(1495), - [anon_sym_ulong] = ACTIONS(1495), - [anon_sym_int128] = ACTIONS(1495), - [anon_sym_uint128] = ACTIONS(1495), - [anon_sym_float] = ACTIONS(1495), - [anon_sym_double] = ACTIONS(1495), - [anon_sym_float16] = ACTIONS(1495), - [anon_sym_bfloat16] = ACTIONS(1495), - [anon_sym_float128] = ACTIONS(1495), - [anon_sym_iptr] = ACTIONS(1495), - [anon_sym_uptr] = ACTIONS(1495), - [anon_sym_isz] = ACTIONS(1495), - [anon_sym_usz] = ACTIONS(1495), - [anon_sym_anyfault] = ACTIONS(1495), - [anon_sym_any] = ACTIONS(1495), - [anon_sym_DOLLARtypeof] = ACTIONS(1495), - [anon_sym_DOLLARtypefrom] = ACTIONS(1495), - [anon_sym_DOLLARvatype] = ACTIONS(1495), - [anon_sym_DOLLARevaltype] = ACTIONS(1495), - [sym_real_literal] = ACTIONS(1497), - }, - [396] = { - [sym_line_comment] = STATE(396), - [sym_doc_comment] = STATE(396), - [sym_block_comment] = STATE(396), - [sym_ident] = ACTIONS(1499), - [sym_integer_literal] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1501), - [anon_sym_BQUOTE] = ACTIONS(1501), - [sym_bytes_literal] = ACTIONS(1501), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1499), - [sym_at_ident] = ACTIONS(1501), - [sym_hash_ident] = ACTIONS(1501), - [sym_type_ident] = ACTIONS(1501), - [sym_ct_type_ident] = ACTIONS(1501), - [sym_const_ident] = ACTIONS(1499), - [sym_builtin] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_static] = ACTIONS(1499), - [anon_sym_tlocal] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1501), - [anon_sym_fn] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_RBRACE] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_var] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_defer] = ACTIONS(1499), - [anon_sym_assert] = ACTIONS(1499), - [anon_sym_case] = ACTIONS(1499), - [anon_sym_default] = ACTIONS(1499), - [anon_sym_nextcase] = ACTIONS(1499), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_foreach] = ACTIONS(1499), - [anon_sym_foreach_r] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_do] = ACTIONS(1499), - [anon_sym_int] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_asm] = ACTIONS(1499), - [anon_sym_DOLLARassert] = ACTIONS(1499), - [anon_sym_DOLLARerror] = ACTIONS(1499), - [anon_sym_DOLLARecho] = ACTIONS(1499), - [anon_sym_DOLLARif] = ACTIONS(1499), - [anon_sym_DOLLARswitch] = ACTIONS(1499), - [anon_sym_DOLLARfor] = ACTIONS(1499), - [anon_sym_DOLLARforeach] = ACTIONS(1499), - [anon_sym_DOLLARalignof] = ACTIONS(1499), - [anon_sym_DOLLARextnameof] = ACTIONS(1499), - [anon_sym_DOLLARnameof] = ACTIONS(1499), - [anon_sym_DOLLARoffsetof] = ACTIONS(1499), - [anon_sym_DOLLARqnameof] = ACTIONS(1499), - [anon_sym_DOLLAReval] = ACTIONS(1499), - [anon_sym_DOLLARdefined] = ACTIONS(1499), - [anon_sym_DOLLARsizeof] = ACTIONS(1499), - [anon_sym_DOLLARstringify] = ACTIONS(1499), - [anon_sym_DOLLARis_const] = ACTIONS(1499), - [anon_sym_DOLLARvaconst] = ACTIONS(1499), - [anon_sym_DOLLARvaarg] = ACTIONS(1499), - [anon_sym_DOLLARvaref] = ACTIONS(1499), - [anon_sym_DOLLARvaexpr] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [anon_sym_DOLLARvacount] = ACTIONS(1499), - [anon_sym_DOLLARfeature] = ACTIONS(1499), - [anon_sym_DOLLARand] = ACTIONS(1499), - [anon_sym_DOLLARor] = ACTIONS(1499), - [anon_sym_DOLLARassignable] = ACTIONS(1499), - [anon_sym_DOLLARembed] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_TILDE] = ACTIONS(1501), - [anon_sym_PLUS_PLUS] = ACTIONS(1501), - [anon_sym_DASH_DASH] = ACTIONS(1501), - [anon_sym_typeid] = ACTIONS(1499), - [anon_sym_LBRACE_PIPE] = ACTIONS(1501), - [anon_sym_PIPE_RBRACE] = ACTIONS(1501), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_bool] = ACTIONS(1499), - [anon_sym_char] = ACTIONS(1499), - [anon_sym_ichar] = ACTIONS(1499), - [anon_sym_short] = ACTIONS(1499), - [anon_sym_ushort] = ACTIONS(1499), - [anon_sym_uint] = ACTIONS(1499), - [anon_sym_long] = ACTIONS(1499), - [anon_sym_ulong] = ACTIONS(1499), - [anon_sym_int128] = ACTIONS(1499), - [anon_sym_uint128] = ACTIONS(1499), - [anon_sym_float] = ACTIONS(1499), - [anon_sym_double] = ACTIONS(1499), - [anon_sym_float16] = ACTIONS(1499), - [anon_sym_bfloat16] = ACTIONS(1499), - [anon_sym_float128] = ACTIONS(1499), - [anon_sym_iptr] = ACTIONS(1499), - [anon_sym_uptr] = ACTIONS(1499), - [anon_sym_isz] = ACTIONS(1499), - [anon_sym_usz] = ACTIONS(1499), - [anon_sym_anyfault] = ACTIONS(1499), - [anon_sym_any] = ACTIONS(1499), - [anon_sym_DOLLARtypeof] = ACTIONS(1499), - [anon_sym_DOLLARtypefrom] = ACTIONS(1499), - [anon_sym_DOLLARvatype] = ACTIONS(1499), - [anon_sym_DOLLARevaltype] = ACTIONS(1499), - [sym_real_literal] = ACTIONS(1501), - }, - [397] = { - [sym_line_comment] = STATE(397), - [sym_doc_comment] = STATE(397), - [sym_block_comment] = STATE(397), - [sym_ident] = ACTIONS(1503), - [sym_integer_literal] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_BQUOTE] = ACTIONS(1505), - [sym_bytes_literal] = ACTIONS(1505), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1503), - [sym_at_ident] = ACTIONS(1505), - [sym_hash_ident] = ACTIONS(1505), - [sym_type_ident] = ACTIONS(1505), - [sym_ct_type_ident] = ACTIONS(1505), - [sym_const_ident] = ACTIONS(1503), - [sym_builtin] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1503), - [anon_sym_tlocal] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym_fn] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1505), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_var] = ACTIONS(1503), - [anon_sym_return] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1503), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_defer] = ACTIONS(1503), - [anon_sym_assert] = ACTIONS(1503), - [anon_sym_case] = ACTIONS(1503), - [anon_sym_default] = ACTIONS(1503), - [anon_sym_nextcase] = ACTIONS(1503), - [anon_sym_switch] = ACTIONS(1503), - [anon_sym_AMP_AMP] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1503), - [anon_sym_for] = ACTIONS(1503), - [anon_sym_foreach] = ACTIONS(1503), - [anon_sym_foreach_r] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_do] = ACTIONS(1503), - [anon_sym_int] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_asm] = ACTIONS(1503), - [anon_sym_DOLLARassert] = ACTIONS(1503), - [anon_sym_DOLLARerror] = ACTIONS(1503), - [anon_sym_DOLLARecho] = ACTIONS(1503), - [anon_sym_DOLLARif] = ACTIONS(1503), - [anon_sym_DOLLARswitch] = ACTIONS(1503), - [anon_sym_DOLLARfor] = ACTIONS(1503), - [anon_sym_DOLLARforeach] = ACTIONS(1503), - [anon_sym_DOLLARalignof] = ACTIONS(1503), - [anon_sym_DOLLARextnameof] = ACTIONS(1503), - [anon_sym_DOLLARnameof] = ACTIONS(1503), - [anon_sym_DOLLARoffsetof] = ACTIONS(1503), - [anon_sym_DOLLARqnameof] = ACTIONS(1503), - [anon_sym_DOLLAReval] = ACTIONS(1503), - [anon_sym_DOLLARdefined] = ACTIONS(1503), - [anon_sym_DOLLARsizeof] = ACTIONS(1503), - [anon_sym_DOLLARstringify] = ACTIONS(1503), - [anon_sym_DOLLARis_const] = ACTIONS(1503), - [anon_sym_DOLLARvaconst] = ACTIONS(1503), - [anon_sym_DOLLARvaarg] = ACTIONS(1503), - [anon_sym_DOLLARvaref] = ACTIONS(1503), - [anon_sym_DOLLARvaexpr] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1503), - [anon_sym_false] = ACTIONS(1503), - [anon_sym_null] = ACTIONS(1503), - [anon_sym_DOLLARvacount] = ACTIONS(1503), - [anon_sym_DOLLARfeature] = ACTIONS(1503), - [anon_sym_DOLLARand] = ACTIONS(1503), - [anon_sym_DOLLARor] = ACTIONS(1503), - [anon_sym_DOLLARassignable] = ACTIONS(1503), - [anon_sym_DOLLARembed] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1505), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [anon_sym_typeid] = ACTIONS(1503), - [anon_sym_LBRACE_PIPE] = ACTIONS(1505), - [anon_sym_PIPE_RBRACE] = ACTIONS(1505), - [anon_sym_void] = ACTIONS(1503), - [anon_sym_bool] = ACTIONS(1503), - [anon_sym_char] = ACTIONS(1503), - [anon_sym_ichar] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [anon_sym_ushort] = ACTIONS(1503), - [anon_sym_uint] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_ulong] = ACTIONS(1503), - [anon_sym_int128] = ACTIONS(1503), - [anon_sym_uint128] = ACTIONS(1503), - [anon_sym_float] = ACTIONS(1503), - [anon_sym_double] = ACTIONS(1503), - [anon_sym_float16] = ACTIONS(1503), - [anon_sym_bfloat16] = ACTIONS(1503), - [anon_sym_float128] = ACTIONS(1503), - [anon_sym_iptr] = ACTIONS(1503), - [anon_sym_uptr] = ACTIONS(1503), - [anon_sym_isz] = ACTIONS(1503), - [anon_sym_usz] = ACTIONS(1503), - [anon_sym_anyfault] = ACTIONS(1503), - [anon_sym_any] = ACTIONS(1503), - [anon_sym_DOLLARtypeof] = ACTIONS(1503), - [anon_sym_DOLLARtypefrom] = ACTIONS(1503), - [anon_sym_DOLLARvatype] = ACTIONS(1503), - [anon_sym_DOLLARevaltype] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1505), - }, - [398] = { - [sym_line_comment] = STATE(398), - [sym_doc_comment] = STATE(398), - [sym_block_comment] = STATE(398), - [sym_ident] = ACTIONS(1507), - [sym_integer_literal] = ACTIONS(1509), - [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(1509), - [anon_sym_BQUOTE] = ACTIONS(1509), - [sym_bytes_literal] = ACTIONS(1509), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1507), - [sym_at_ident] = ACTIONS(1509), - [sym_hash_ident] = ACTIONS(1509), - [sym_type_ident] = ACTIONS(1509), - [sym_ct_type_ident] = ACTIONS(1509), - [sym_const_ident] = ACTIONS(1507), - [sym_builtin] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_static] = ACTIONS(1507), - [anon_sym_tlocal] = ACTIONS(1507), - [anon_sym_SEMI] = ACTIONS(1509), - [anon_sym_fn] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1507), - [anon_sym_var] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_defer] = ACTIONS(1507), - [anon_sym_assert] = ACTIONS(1507), - [anon_sym_case] = ACTIONS(1507), - [anon_sym_default] = ACTIONS(1507), - [anon_sym_nextcase] = ACTIONS(1507), - [anon_sym_switch] = ACTIONS(1507), - [anon_sym_AMP_AMP] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_foreach] = ACTIONS(1507), - [anon_sym_foreach_r] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_do] = ACTIONS(1507), - [anon_sym_int] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_asm] = ACTIONS(1507), - [anon_sym_DOLLARassert] = ACTIONS(1507), - [anon_sym_DOLLARerror] = ACTIONS(1507), - [anon_sym_DOLLARecho] = ACTIONS(1507), - [anon_sym_DOLLARif] = ACTIONS(1507), - [anon_sym_DOLLARswitch] = ACTIONS(1507), - [anon_sym_DOLLARfor] = ACTIONS(1507), - [anon_sym_DOLLARforeach] = ACTIONS(1507), - [anon_sym_DOLLARalignof] = ACTIONS(1507), - [anon_sym_DOLLARextnameof] = ACTIONS(1507), - [anon_sym_DOLLARnameof] = ACTIONS(1507), - [anon_sym_DOLLARoffsetof] = ACTIONS(1507), - [anon_sym_DOLLARqnameof] = ACTIONS(1507), - [anon_sym_DOLLAReval] = ACTIONS(1507), - [anon_sym_DOLLARdefined] = ACTIONS(1507), - [anon_sym_DOLLARsizeof] = ACTIONS(1507), - [anon_sym_DOLLARstringify] = ACTIONS(1507), - [anon_sym_DOLLARis_const] = ACTIONS(1507), - [anon_sym_DOLLARvaconst] = ACTIONS(1507), - [anon_sym_DOLLARvaarg] = ACTIONS(1507), - [anon_sym_DOLLARvaref] = ACTIONS(1507), - [anon_sym_DOLLARvaexpr] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [anon_sym_null] = ACTIONS(1507), - [anon_sym_DOLLARvacount] = ACTIONS(1507), - [anon_sym_DOLLARfeature] = ACTIONS(1507), - [anon_sym_DOLLARand] = ACTIONS(1507), - [anon_sym_DOLLARor] = ACTIONS(1507), - [anon_sym_DOLLARassignable] = ACTIONS(1507), - [anon_sym_DOLLARembed] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_TILDE] = ACTIONS(1509), - [anon_sym_PLUS_PLUS] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_typeid] = ACTIONS(1507), - [anon_sym_LBRACE_PIPE] = ACTIONS(1509), - [anon_sym_PIPE_RBRACE] = ACTIONS(1509), - [anon_sym_void] = ACTIONS(1507), - [anon_sym_bool] = ACTIONS(1507), - [anon_sym_char] = ACTIONS(1507), - [anon_sym_ichar] = ACTIONS(1507), - [anon_sym_short] = ACTIONS(1507), - [anon_sym_ushort] = ACTIONS(1507), - [anon_sym_uint] = ACTIONS(1507), - [anon_sym_long] = ACTIONS(1507), - [anon_sym_ulong] = ACTIONS(1507), - [anon_sym_int128] = ACTIONS(1507), - [anon_sym_uint128] = ACTIONS(1507), - [anon_sym_float] = ACTIONS(1507), - [anon_sym_double] = ACTIONS(1507), - [anon_sym_float16] = ACTIONS(1507), - [anon_sym_bfloat16] = ACTIONS(1507), - [anon_sym_float128] = ACTIONS(1507), - [anon_sym_iptr] = ACTIONS(1507), - [anon_sym_uptr] = ACTIONS(1507), - [anon_sym_isz] = ACTIONS(1507), - [anon_sym_usz] = ACTIONS(1507), - [anon_sym_anyfault] = ACTIONS(1507), - [anon_sym_any] = ACTIONS(1507), - [anon_sym_DOLLARtypeof] = ACTIONS(1507), - [anon_sym_DOLLARtypefrom] = ACTIONS(1507), - [anon_sym_DOLLARvatype] = ACTIONS(1507), - [anon_sym_DOLLARevaltype] = ACTIONS(1507), - [sym_real_literal] = ACTIONS(1509), - }, - [399] = { - [sym_line_comment] = STATE(399), - [sym_doc_comment] = STATE(399), - [sym_block_comment] = STATE(399), - [sym_ident] = ACTIONS(1511), - [sym_integer_literal] = ACTIONS(1513), - [anon_sym_SQUOTE] = ACTIONS(1513), - [anon_sym_DQUOTE] = ACTIONS(1513), - [anon_sym_BQUOTE] = ACTIONS(1513), - [sym_bytes_literal] = ACTIONS(1513), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1511), - [sym_at_ident] = ACTIONS(1513), - [sym_hash_ident] = ACTIONS(1513), - [sym_type_ident] = ACTIONS(1513), - [sym_ct_type_ident] = ACTIONS(1513), - [sym_const_ident] = ACTIONS(1511), - [sym_builtin] = ACTIONS(1513), - [anon_sym_LPAREN] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_tlocal] = ACTIONS(1511), - [anon_sym_SEMI] = ACTIONS(1513), - [anon_sym_fn] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_var] = ACTIONS(1511), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_defer] = ACTIONS(1511), - [anon_sym_assert] = ACTIONS(1511), - [anon_sym_case] = ACTIONS(1511), - [anon_sym_default] = ACTIONS(1511), - [anon_sym_nextcase] = ACTIONS(1511), - [anon_sym_switch] = ACTIONS(1511), - [anon_sym_AMP_AMP] = ACTIONS(1513), - [anon_sym_if] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_foreach] = ACTIONS(1511), - [anon_sym_foreach_r] = ACTIONS(1511), - [anon_sym_while] = ACTIONS(1511), - [anon_sym_do] = ACTIONS(1511), - [anon_sym_int] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_asm] = ACTIONS(1511), - [anon_sym_DOLLARassert] = ACTIONS(1511), - [anon_sym_DOLLARerror] = ACTIONS(1511), - [anon_sym_DOLLARecho] = ACTIONS(1511), - [anon_sym_DOLLARif] = ACTIONS(1511), - [anon_sym_DOLLARswitch] = ACTIONS(1511), - [anon_sym_DOLLARfor] = ACTIONS(1511), - [anon_sym_DOLLARforeach] = ACTIONS(1511), - [anon_sym_DOLLARalignof] = ACTIONS(1511), - [anon_sym_DOLLARextnameof] = ACTIONS(1511), - [anon_sym_DOLLARnameof] = ACTIONS(1511), - [anon_sym_DOLLARoffsetof] = ACTIONS(1511), - [anon_sym_DOLLARqnameof] = ACTIONS(1511), - [anon_sym_DOLLAReval] = ACTIONS(1511), - [anon_sym_DOLLARdefined] = ACTIONS(1511), - [anon_sym_DOLLARsizeof] = ACTIONS(1511), - [anon_sym_DOLLARstringify] = ACTIONS(1511), - [anon_sym_DOLLARis_const] = ACTIONS(1511), - [anon_sym_DOLLARvaconst] = ACTIONS(1511), - [anon_sym_DOLLARvaarg] = ACTIONS(1511), - [anon_sym_DOLLARvaref] = ACTIONS(1511), - [anon_sym_DOLLARvaexpr] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1511), - [anon_sym_false] = ACTIONS(1511), - [anon_sym_null] = ACTIONS(1511), - [anon_sym_DOLLARvacount] = ACTIONS(1511), - [anon_sym_DOLLARfeature] = ACTIONS(1511), - [anon_sym_DOLLARand] = ACTIONS(1511), - [anon_sym_DOLLARor] = ACTIONS(1511), - [anon_sym_DOLLARassignable] = ACTIONS(1511), - [anon_sym_DOLLARembed] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_TILDE] = ACTIONS(1513), - [anon_sym_PLUS_PLUS] = ACTIONS(1513), - [anon_sym_DASH_DASH] = ACTIONS(1513), - [anon_sym_typeid] = ACTIONS(1511), - [anon_sym_LBRACE_PIPE] = ACTIONS(1513), - [anon_sym_PIPE_RBRACE] = ACTIONS(1513), - [anon_sym_void] = ACTIONS(1511), - [anon_sym_bool] = ACTIONS(1511), - [anon_sym_char] = ACTIONS(1511), - [anon_sym_ichar] = ACTIONS(1511), - [anon_sym_short] = ACTIONS(1511), - [anon_sym_ushort] = ACTIONS(1511), - [anon_sym_uint] = ACTIONS(1511), - [anon_sym_long] = ACTIONS(1511), - [anon_sym_ulong] = ACTIONS(1511), - [anon_sym_int128] = ACTIONS(1511), - [anon_sym_uint128] = ACTIONS(1511), - [anon_sym_float] = ACTIONS(1511), - [anon_sym_double] = ACTIONS(1511), - [anon_sym_float16] = ACTIONS(1511), - [anon_sym_bfloat16] = ACTIONS(1511), - [anon_sym_float128] = ACTIONS(1511), - [anon_sym_iptr] = ACTIONS(1511), - [anon_sym_uptr] = ACTIONS(1511), - [anon_sym_isz] = ACTIONS(1511), - [anon_sym_usz] = ACTIONS(1511), - [anon_sym_anyfault] = ACTIONS(1511), - [anon_sym_any] = ACTIONS(1511), - [anon_sym_DOLLARtypeof] = ACTIONS(1511), - [anon_sym_DOLLARtypefrom] = ACTIONS(1511), - [anon_sym_DOLLARvatype] = ACTIONS(1511), - [anon_sym_DOLLARevaltype] = ACTIONS(1511), - [sym_real_literal] = ACTIONS(1513), - }, - [400] = { - [sym_line_comment] = STATE(400), - [sym_doc_comment] = STATE(400), - [sym_block_comment] = STATE(400), - [sym_ident] = ACTIONS(1515), - [sym_integer_literal] = ACTIONS(1517), - [anon_sym_SQUOTE] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(1517), - [anon_sym_BQUOTE] = ACTIONS(1517), - [sym_bytes_literal] = ACTIONS(1517), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1515), - [sym_at_ident] = ACTIONS(1517), - [sym_hash_ident] = ACTIONS(1517), - [sym_type_ident] = ACTIONS(1517), - [sym_ct_type_ident] = ACTIONS(1517), - [sym_const_ident] = ACTIONS(1515), - [sym_builtin] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_static] = ACTIONS(1515), - [anon_sym_tlocal] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1517), - [anon_sym_fn] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_RBRACE] = ACTIONS(1517), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_var] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_defer] = ACTIONS(1515), - [anon_sym_assert] = ACTIONS(1515), - [anon_sym_case] = ACTIONS(1515), - [anon_sym_default] = ACTIONS(1515), - [anon_sym_nextcase] = ACTIONS(1515), - [anon_sym_switch] = ACTIONS(1515), - [anon_sym_AMP_AMP] = ACTIONS(1517), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_foreach] = ACTIONS(1515), - [anon_sym_foreach_r] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_int] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_asm] = ACTIONS(1515), - [anon_sym_DOLLARassert] = ACTIONS(1515), - [anon_sym_DOLLARerror] = ACTIONS(1515), - [anon_sym_DOLLARecho] = ACTIONS(1515), - [anon_sym_DOLLARif] = ACTIONS(1515), - [anon_sym_DOLLARswitch] = ACTIONS(1515), - [anon_sym_DOLLARfor] = ACTIONS(1515), - [anon_sym_DOLLARforeach] = ACTIONS(1515), - [anon_sym_DOLLARalignof] = ACTIONS(1515), - [anon_sym_DOLLARextnameof] = ACTIONS(1515), - [anon_sym_DOLLARnameof] = ACTIONS(1515), - [anon_sym_DOLLARoffsetof] = ACTIONS(1515), - [anon_sym_DOLLARqnameof] = ACTIONS(1515), - [anon_sym_DOLLAReval] = ACTIONS(1515), - [anon_sym_DOLLARdefined] = ACTIONS(1515), - [anon_sym_DOLLARsizeof] = ACTIONS(1515), - [anon_sym_DOLLARstringify] = ACTIONS(1515), - [anon_sym_DOLLARis_const] = ACTIONS(1515), - [anon_sym_DOLLARvaconst] = ACTIONS(1515), - [anon_sym_DOLLARvaarg] = ACTIONS(1515), - [anon_sym_DOLLARvaref] = ACTIONS(1515), - [anon_sym_DOLLARvaexpr] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [anon_sym_null] = ACTIONS(1515), - [anon_sym_DOLLARvacount] = ACTIONS(1515), - [anon_sym_DOLLARfeature] = ACTIONS(1515), - [anon_sym_DOLLARand] = ACTIONS(1515), - [anon_sym_DOLLARor] = ACTIONS(1515), - [anon_sym_DOLLARassignable] = ACTIONS(1515), - [anon_sym_DOLLARembed] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [anon_sym_typeid] = ACTIONS(1515), - [anon_sym_LBRACE_PIPE] = ACTIONS(1517), - [anon_sym_PIPE_RBRACE] = ACTIONS(1517), - [anon_sym_void] = ACTIONS(1515), - [anon_sym_bool] = ACTIONS(1515), - [anon_sym_char] = ACTIONS(1515), - [anon_sym_ichar] = ACTIONS(1515), - [anon_sym_short] = ACTIONS(1515), - [anon_sym_ushort] = ACTIONS(1515), - [anon_sym_uint] = ACTIONS(1515), - [anon_sym_long] = ACTIONS(1515), - [anon_sym_ulong] = ACTIONS(1515), - [anon_sym_int128] = ACTIONS(1515), - [anon_sym_uint128] = ACTIONS(1515), - [anon_sym_float] = ACTIONS(1515), - [anon_sym_double] = ACTIONS(1515), - [anon_sym_float16] = ACTIONS(1515), - [anon_sym_bfloat16] = ACTIONS(1515), - [anon_sym_float128] = ACTIONS(1515), - [anon_sym_iptr] = ACTIONS(1515), - [anon_sym_uptr] = ACTIONS(1515), - [anon_sym_isz] = ACTIONS(1515), - [anon_sym_usz] = ACTIONS(1515), - [anon_sym_anyfault] = ACTIONS(1515), - [anon_sym_any] = ACTIONS(1515), - [anon_sym_DOLLARtypeof] = ACTIONS(1515), - [anon_sym_DOLLARtypefrom] = ACTIONS(1515), - [anon_sym_DOLLARvatype] = ACTIONS(1515), - [anon_sym_DOLLARevaltype] = ACTIONS(1515), - [sym_real_literal] = ACTIONS(1517), - }, - [401] = { - [sym_line_comment] = STATE(401), - [sym_doc_comment] = STATE(401), - [sym_block_comment] = STATE(401), - [sym_ident] = ACTIONS(1377), - [sym_integer_literal] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1379), - [anon_sym_BQUOTE] = ACTIONS(1379), - [sym_bytes_literal] = ACTIONS(1379), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1377), - [sym_at_ident] = ACTIONS(1379), - [sym_hash_ident] = ACTIONS(1379), - [sym_type_ident] = ACTIONS(1379), - [sym_ct_type_ident] = ACTIONS(1379), - [sym_const_ident] = ACTIONS(1377), - [sym_builtin] = ACTIONS(1379), - [anon_sym_LPAREN] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(1377), - [anon_sym_tlocal] = ACTIONS(1377), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_fn] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_const] = ACTIONS(1377), - [anon_sym_var] = ACTIONS(1377), - [anon_sym_return] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1377), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_defer] = ACTIONS(1377), - [anon_sym_assert] = ACTIONS(1377), - [anon_sym_nextcase] = ACTIONS(1377), - [anon_sym_switch] = ACTIONS(1377), - [anon_sym_AMP_AMP] = ACTIONS(1379), - [anon_sym_if] = ACTIONS(1377), - [anon_sym_else] = ACTIONS(1377), - [anon_sym_for] = ACTIONS(1377), - [anon_sym_foreach] = ACTIONS(1377), - [anon_sym_foreach_r] = ACTIONS(1377), - [anon_sym_while] = ACTIONS(1377), - [anon_sym_do] = ACTIONS(1377), - [anon_sym_int] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_asm] = ACTIONS(1377), - [anon_sym_DOLLARassert] = ACTIONS(1377), - [anon_sym_DOLLARerror] = ACTIONS(1377), - [anon_sym_DOLLARecho] = ACTIONS(1377), - [anon_sym_DOLLARif] = ACTIONS(1377), - [anon_sym_DOLLARcase] = ACTIONS(1377), - [anon_sym_DOLLARdefault] = ACTIONS(1377), - [anon_sym_DOLLARswitch] = ACTIONS(1377), - [anon_sym_DOLLARendswitch] = ACTIONS(1377), - [anon_sym_DOLLARfor] = ACTIONS(1377), - [anon_sym_DOLLARforeach] = ACTIONS(1377), - [anon_sym_DOLLARalignof] = ACTIONS(1377), - [anon_sym_DOLLARextnameof] = ACTIONS(1377), - [anon_sym_DOLLARnameof] = ACTIONS(1377), - [anon_sym_DOLLARoffsetof] = ACTIONS(1377), - [anon_sym_DOLLARqnameof] = ACTIONS(1377), - [anon_sym_DOLLAReval] = ACTIONS(1377), - [anon_sym_DOLLARdefined] = ACTIONS(1377), - [anon_sym_DOLLARsizeof] = ACTIONS(1377), - [anon_sym_DOLLARstringify] = ACTIONS(1377), - [anon_sym_DOLLARis_const] = ACTIONS(1377), - [anon_sym_DOLLARvaconst] = ACTIONS(1377), - [anon_sym_DOLLARvaarg] = ACTIONS(1377), - [anon_sym_DOLLARvaref] = ACTIONS(1377), - [anon_sym_DOLLARvaexpr] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1377), - [anon_sym_false] = ACTIONS(1377), - [anon_sym_null] = ACTIONS(1377), - [anon_sym_DOLLARvacount] = ACTIONS(1377), - [anon_sym_DOLLARfeature] = ACTIONS(1377), - [anon_sym_DOLLARand] = ACTIONS(1377), - [anon_sym_DOLLARor] = ACTIONS(1377), - [anon_sym_DOLLARassignable] = ACTIONS(1377), - [anon_sym_DOLLARembed] = ACTIONS(1377), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [anon_sym_typeid] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_bool] = ACTIONS(1377), - [anon_sym_char] = ACTIONS(1377), - [anon_sym_ichar] = ACTIONS(1377), - [anon_sym_short] = ACTIONS(1377), - [anon_sym_ushort] = ACTIONS(1377), - [anon_sym_uint] = ACTIONS(1377), - [anon_sym_long] = ACTIONS(1377), - [anon_sym_ulong] = ACTIONS(1377), - [anon_sym_int128] = ACTIONS(1377), - [anon_sym_uint128] = ACTIONS(1377), - [anon_sym_float] = ACTIONS(1377), - [anon_sym_double] = ACTIONS(1377), - [anon_sym_float16] = ACTIONS(1377), - [anon_sym_bfloat16] = ACTIONS(1377), - [anon_sym_float128] = ACTIONS(1377), - [anon_sym_iptr] = ACTIONS(1377), - [anon_sym_uptr] = ACTIONS(1377), - [anon_sym_isz] = ACTIONS(1377), - [anon_sym_usz] = ACTIONS(1377), - [anon_sym_anyfault] = ACTIONS(1377), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_DOLLARtypeof] = ACTIONS(1377), - [anon_sym_DOLLARtypefrom] = ACTIONS(1377), - [anon_sym_DOLLARvatype] = ACTIONS(1377), - [anon_sym_DOLLARevaltype] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - }, - [402] = { - [sym_line_comment] = STATE(402), - [sym_doc_comment] = STATE(402), - [sym_block_comment] = STATE(402), - [sym_ident] = ACTIONS(1519), - [sym_integer_literal] = ACTIONS(1521), - [anon_sym_SQUOTE] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1521), - [anon_sym_BQUOTE] = ACTIONS(1521), - [sym_bytes_literal] = ACTIONS(1521), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1519), - [sym_at_ident] = ACTIONS(1521), - [sym_hash_ident] = ACTIONS(1521), - [sym_type_ident] = ACTIONS(1521), - [sym_ct_type_ident] = ACTIONS(1521), - [sym_const_ident] = ACTIONS(1519), - [sym_builtin] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_static] = ACTIONS(1519), - [anon_sym_tlocal] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_fn] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_const] = ACTIONS(1519), - [anon_sym_var] = ACTIONS(1519), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_defer] = ACTIONS(1519), - [anon_sym_assert] = ACTIONS(1519), - [anon_sym_case] = ACTIONS(1519), - [anon_sym_default] = ACTIONS(1519), - [anon_sym_nextcase] = ACTIONS(1519), - [anon_sym_switch] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_foreach] = ACTIONS(1519), - [anon_sym_foreach_r] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_do] = ACTIONS(1519), - [anon_sym_int] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1521), - [anon_sym_asm] = ACTIONS(1519), - [anon_sym_DOLLARassert] = ACTIONS(1519), - [anon_sym_DOLLARerror] = ACTIONS(1519), - [anon_sym_DOLLARecho] = ACTIONS(1519), - [anon_sym_DOLLARif] = ACTIONS(1519), - [anon_sym_DOLLARswitch] = ACTIONS(1519), - [anon_sym_DOLLARfor] = ACTIONS(1519), - [anon_sym_DOLLARforeach] = ACTIONS(1519), - [anon_sym_DOLLARalignof] = ACTIONS(1519), - [anon_sym_DOLLARextnameof] = ACTIONS(1519), - [anon_sym_DOLLARnameof] = ACTIONS(1519), - [anon_sym_DOLLARoffsetof] = ACTIONS(1519), - [anon_sym_DOLLARqnameof] = ACTIONS(1519), - [anon_sym_DOLLAReval] = ACTIONS(1519), - [anon_sym_DOLLARdefined] = ACTIONS(1519), - [anon_sym_DOLLARsizeof] = ACTIONS(1519), - [anon_sym_DOLLARstringify] = ACTIONS(1519), - [anon_sym_DOLLARis_const] = ACTIONS(1519), - [anon_sym_DOLLARvaconst] = ACTIONS(1519), - [anon_sym_DOLLARvaarg] = ACTIONS(1519), - [anon_sym_DOLLARvaref] = ACTIONS(1519), - [anon_sym_DOLLARvaexpr] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1519), - [anon_sym_DOLLARvacount] = ACTIONS(1519), - [anon_sym_DOLLARfeature] = ACTIONS(1519), - [anon_sym_DOLLARand] = ACTIONS(1519), - [anon_sym_DOLLARor] = ACTIONS(1519), - [anon_sym_DOLLARassignable] = ACTIONS(1519), - [anon_sym_DOLLARembed] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1521), - [anon_sym_TILDE] = ACTIONS(1521), - [anon_sym_PLUS_PLUS] = ACTIONS(1521), - [anon_sym_DASH_DASH] = ACTIONS(1521), - [anon_sym_typeid] = ACTIONS(1519), - [anon_sym_LBRACE_PIPE] = ACTIONS(1521), - [anon_sym_PIPE_RBRACE] = ACTIONS(1521), - [anon_sym_void] = ACTIONS(1519), - [anon_sym_bool] = ACTIONS(1519), - [anon_sym_char] = ACTIONS(1519), - [anon_sym_ichar] = ACTIONS(1519), - [anon_sym_short] = ACTIONS(1519), - [anon_sym_ushort] = ACTIONS(1519), - [anon_sym_uint] = ACTIONS(1519), - [anon_sym_long] = ACTIONS(1519), - [anon_sym_ulong] = ACTIONS(1519), - [anon_sym_int128] = ACTIONS(1519), - [anon_sym_uint128] = ACTIONS(1519), - [anon_sym_float] = ACTIONS(1519), - [anon_sym_double] = ACTIONS(1519), - [anon_sym_float16] = ACTIONS(1519), - [anon_sym_bfloat16] = ACTIONS(1519), - [anon_sym_float128] = ACTIONS(1519), - [anon_sym_iptr] = ACTIONS(1519), - [anon_sym_uptr] = ACTIONS(1519), - [anon_sym_isz] = ACTIONS(1519), - [anon_sym_usz] = ACTIONS(1519), - [anon_sym_anyfault] = ACTIONS(1519), - [anon_sym_any] = ACTIONS(1519), - [anon_sym_DOLLARtypeof] = ACTIONS(1519), - [anon_sym_DOLLARtypefrom] = ACTIONS(1519), - [anon_sym_DOLLARvatype] = ACTIONS(1519), - [anon_sym_DOLLARevaltype] = ACTIONS(1519), - [sym_real_literal] = ACTIONS(1521), - }, - [403] = { - [sym_line_comment] = STATE(403), - [sym_doc_comment] = STATE(403), - [sym_block_comment] = STATE(403), - [sym_ident] = ACTIONS(1523), - [sym_integer_literal] = ACTIONS(1525), - [anon_sym_SQUOTE] = ACTIONS(1525), - [anon_sym_DQUOTE] = ACTIONS(1525), - [anon_sym_BQUOTE] = ACTIONS(1525), - [sym_bytes_literal] = ACTIONS(1525), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1523), - [sym_at_ident] = ACTIONS(1525), - [sym_hash_ident] = ACTIONS(1525), - [sym_type_ident] = ACTIONS(1525), - [sym_ct_type_ident] = ACTIONS(1525), - [sym_const_ident] = ACTIONS(1523), - [sym_builtin] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_tlocal] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_fn] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_var] = ACTIONS(1523), - [anon_sym_return] = ACTIONS(1523), - [anon_sym_continue] = ACTIONS(1523), - [anon_sym_break] = ACTIONS(1523), - [anon_sym_defer] = ACTIONS(1523), - [anon_sym_assert] = ACTIONS(1523), - [anon_sym_case] = ACTIONS(1523), - [anon_sym_default] = ACTIONS(1523), - [anon_sym_nextcase] = ACTIONS(1523), - [anon_sym_switch] = ACTIONS(1523), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_if] = ACTIONS(1523), - [anon_sym_for] = ACTIONS(1523), - [anon_sym_foreach] = ACTIONS(1523), - [anon_sym_foreach_r] = ACTIONS(1523), - [anon_sym_while] = ACTIONS(1523), - [anon_sym_do] = ACTIONS(1523), - [anon_sym_int] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1523), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_asm] = ACTIONS(1523), - [anon_sym_DOLLARassert] = ACTIONS(1523), - [anon_sym_DOLLARerror] = ACTIONS(1523), - [anon_sym_DOLLARecho] = ACTIONS(1523), - [anon_sym_DOLLARif] = ACTIONS(1523), - [anon_sym_DOLLARswitch] = ACTIONS(1523), - [anon_sym_DOLLARfor] = ACTIONS(1523), - [anon_sym_DOLLARforeach] = ACTIONS(1523), - [anon_sym_DOLLARalignof] = ACTIONS(1523), - [anon_sym_DOLLARextnameof] = ACTIONS(1523), - [anon_sym_DOLLARnameof] = ACTIONS(1523), - [anon_sym_DOLLARoffsetof] = ACTIONS(1523), - [anon_sym_DOLLARqnameof] = ACTIONS(1523), - [anon_sym_DOLLAReval] = ACTIONS(1523), - [anon_sym_DOLLARdefined] = ACTIONS(1523), - [anon_sym_DOLLARsizeof] = ACTIONS(1523), - [anon_sym_DOLLARstringify] = ACTIONS(1523), - [anon_sym_DOLLARis_const] = ACTIONS(1523), - [anon_sym_DOLLARvaconst] = ACTIONS(1523), - [anon_sym_DOLLARvaarg] = ACTIONS(1523), - [anon_sym_DOLLARvaref] = ACTIONS(1523), - [anon_sym_DOLLARvaexpr] = ACTIONS(1523), - [anon_sym_true] = ACTIONS(1523), - [anon_sym_false] = ACTIONS(1523), - [anon_sym_null] = ACTIONS(1523), - [anon_sym_DOLLARvacount] = ACTIONS(1523), - [anon_sym_DOLLARfeature] = ACTIONS(1523), - [anon_sym_DOLLARand] = ACTIONS(1523), - [anon_sym_DOLLARor] = ACTIONS(1523), - [anon_sym_DOLLARassignable] = ACTIONS(1523), - [anon_sym_DOLLARembed] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1525), - [anon_sym_TILDE] = ACTIONS(1525), - [anon_sym_PLUS_PLUS] = ACTIONS(1525), - [anon_sym_DASH_DASH] = ACTIONS(1525), - [anon_sym_typeid] = ACTIONS(1523), - [anon_sym_LBRACE_PIPE] = ACTIONS(1525), - [anon_sym_PIPE_RBRACE] = ACTIONS(1525), - [anon_sym_void] = ACTIONS(1523), - [anon_sym_bool] = ACTIONS(1523), - [anon_sym_char] = ACTIONS(1523), - [anon_sym_ichar] = ACTIONS(1523), - [anon_sym_short] = ACTIONS(1523), - [anon_sym_ushort] = ACTIONS(1523), - [anon_sym_uint] = ACTIONS(1523), - [anon_sym_long] = ACTIONS(1523), - [anon_sym_ulong] = ACTIONS(1523), - [anon_sym_int128] = ACTIONS(1523), - [anon_sym_uint128] = ACTIONS(1523), - [anon_sym_float] = ACTIONS(1523), - [anon_sym_double] = ACTIONS(1523), - [anon_sym_float16] = ACTIONS(1523), - [anon_sym_bfloat16] = ACTIONS(1523), - [anon_sym_float128] = ACTIONS(1523), - [anon_sym_iptr] = ACTIONS(1523), - [anon_sym_uptr] = ACTIONS(1523), - [anon_sym_isz] = ACTIONS(1523), - [anon_sym_usz] = ACTIONS(1523), - [anon_sym_anyfault] = ACTIONS(1523), - [anon_sym_any] = ACTIONS(1523), - [anon_sym_DOLLARtypeof] = ACTIONS(1523), - [anon_sym_DOLLARtypefrom] = ACTIONS(1523), - [anon_sym_DOLLARvatype] = ACTIONS(1523), - [anon_sym_DOLLARevaltype] = ACTIONS(1523), - [sym_real_literal] = ACTIONS(1525), - }, - [404] = { - [sym_line_comment] = STATE(404), - [sym_doc_comment] = STATE(404), - [sym_block_comment] = STATE(404), - [sym_ident] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_DQUOTE] = ACTIONS(1529), - [anon_sym_BQUOTE] = ACTIONS(1529), - [sym_bytes_literal] = ACTIONS(1529), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1527), - [sym_at_ident] = ACTIONS(1529), - [sym_hash_ident] = ACTIONS(1529), - [sym_type_ident] = ACTIONS(1529), - [sym_ct_type_ident] = ACTIONS(1529), - [sym_const_ident] = ACTIONS(1527), - [sym_builtin] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(1527), - [anon_sym_tlocal] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1529), - [anon_sym_fn] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1527), - [anon_sym_var] = ACTIONS(1527), - [anon_sym_return] = ACTIONS(1527), - [anon_sym_continue] = ACTIONS(1527), - [anon_sym_break] = ACTIONS(1527), - [anon_sym_defer] = ACTIONS(1527), - [anon_sym_assert] = ACTIONS(1527), - [anon_sym_case] = ACTIONS(1527), - [anon_sym_default] = ACTIONS(1527), - [anon_sym_nextcase] = ACTIONS(1527), - [anon_sym_switch] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1527), - [anon_sym_for] = ACTIONS(1527), - [anon_sym_foreach] = ACTIONS(1527), - [anon_sym_foreach_r] = ACTIONS(1527), - [anon_sym_while] = ACTIONS(1527), - [anon_sym_do] = ACTIONS(1527), - [anon_sym_int] = ACTIONS(1527), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1529), - [anon_sym_asm] = ACTIONS(1527), - [anon_sym_DOLLARassert] = ACTIONS(1527), - [anon_sym_DOLLARerror] = ACTIONS(1527), - [anon_sym_DOLLARecho] = ACTIONS(1527), - [anon_sym_DOLLARif] = ACTIONS(1527), - [anon_sym_DOLLARswitch] = ACTIONS(1527), - [anon_sym_DOLLARfor] = ACTIONS(1527), - [anon_sym_DOLLARforeach] = ACTIONS(1527), - [anon_sym_DOLLARalignof] = ACTIONS(1527), - [anon_sym_DOLLARextnameof] = ACTIONS(1527), - [anon_sym_DOLLARnameof] = ACTIONS(1527), - [anon_sym_DOLLARoffsetof] = ACTIONS(1527), - [anon_sym_DOLLARqnameof] = ACTIONS(1527), - [anon_sym_DOLLAReval] = ACTIONS(1527), - [anon_sym_DOLLARdefined] = ACTIONS(1527), - [anon_sym_DOLLARsizeof] = ACTIONS(1527), - [anon_sym_DOLLARstringify] = ACTIONS(1527), - [anon_sym_DOLLARis_const] = ACTIONS(1527), - [anon_sym_DOLLARvaconst] = ACTIONS(1527), - [anon_sym_DOLLARvaarg] = ACTIONS(1527), - [anon_sym_DOLLARvaref] = ACTIONS(1527), - [anon_sym_DOLLARvaexpr] = ACTIONS(1527), - [anon_sym_true] = ACTIONS(1527), - [anon_sym_false] = ACTIONS(1527), - [anon_sym_null] = ACTIONS(1527), - [anon_sym_DOLLARvacount] = ACTIONS(1527), - [anon_sym_DOLLARfeature] = ACTIONS(1527), - [anon_sym_DOLLARand] = ACTIONS(1527), - [anon_sym_DOLLARor] = ACTIONS(1527), - [anon_sym_DOLLARassignable] = ACTIONS(1527), - [anon_sym_DOLLARembed] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), - [anon_sym_typeid] = ACTIONS(1527), - [anon_sym_LBRACE_PIPE] = ACTIONS(1529), - [anon_sym_PIPE_RBRACE] = ACTIONS(1529), - [anon_sym_void] = ACTIONS(1527), - [anon_sym_bool] = ACTIONS(1527), - [anon_sym_char] = ACTIONS(1527), - [anon_sym_ichar] = ACTIONS(1527), - [anon_sym_short] = ACTIONS(1527), - [anon_sym_ushort] = ACTIONS(1527), - [anon_sym_uint] = ACTIONS(1527), - [anon_sym_long] = ACTIONS(1527), - [anon_sym_ulong] = ACTIONS(1527), - [anon_sym_int128] = ACTIONS(1527), - [anon_sym_uint128] = ACTIONS(1527), - [anon_sym_float] = ACTIONS(1527), - [anon_sym_double] = ACTIONS(1527), - [anon_sym_float16] = ACTIONS(1527), - [anon_sym_bfloat16] = ACTIONS(1527), - [anon_sym_float128] = ACTIONS(1527), - [anon_sym_iptr] = ACTIONS(1527), - [anon_sym_uptr] = ACTIONS(1527), - [anon_sym_isz] = ACTIONS(1527), - [anon_sym_usz] = ACTIONS(1527), - [anon_sym_anyfault] = ACTIONS(1527), - [anon_sym_any] = ACTIONS(1527), - [anon_sym_DOLLARtypeof] = ACTIONS(1527), - [anon_sym_DOLLARtypefrom] = ACTIONS(1527), - [anon_sym_DOLLARvatype] = ACTIONS(1527), - [anon_sym_DOLLARevaltype] = ACTIONS(1527), - [sym_real_literal] = ACTIONS(1529), - }, - [405] = { - [sym_line_comment] = STATE(405), - [sym_doc_comment] = STATE(405), - [sym_block_comment] = STATE(405), - [sym_ident] = ACTIONS(1531), - [sym_integer_literal] = ACTIONS(1533), - [anon_sym_SQUOTE] = ACTIONS(1533), - [anon_sym_DQUOTE] = ACTIONS(1533), - [anon_sym_BQUOTE] = ACTIONS(1533), - [sym_bytes_literal] = ACTIONS(1533), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1531), - [sym_at_ident] = ACTIONS(1533), - [sym_hash_ident] = ACTIONS(1533), - [sym_type_ident] = ACTIONS(1533), - [sym_ct_type_ident] = ACTIONS(1533), - [sym_const_ident] = ACTIONS(1531), - [sym_builtin] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1531), - [anon_sym_static] = ACTIONS(1531), - [anon_sym_tlocal] = ACTIONS(1531), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_fn] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1531), - [anon_sym_var] = ACTIONS(1531), - [anon_sym_return] = ACTIONS(1531), - [anon_sym_continue] = ACTIONS(1531), - [anon_sym_break] = ACTIONS(1531), - [anon_sym_defer] = ACTIONS(1531), - [anon_sym_assert] = ACTIONS(1531), - [anon_sym_case] = ACTIONS(1531), - [anon_sym_default] = ACTIONS(1531), - [anon_sym_nextcase] = ACTIONS(1531), - [anon_sym_switch] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1531), - [anon_sym_for] = ACTIONS(1531), - [anon_sym_foreach] = ACTIONS(1531), - [anon_sym_foreach_r] = ACTIONS(1531), - [anon_sym_while] = ACTIONS(1531), - [anon_sym_do] = ACTIONS(1531), - [anon_sym_int] = ACTIONS(1531), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_asm] = ACTIONS(1531), - [anon_sym_DOLLARassert] = ACTIONS(1531), - [anon_sym_DOLLARerror] = ACTIONS(1531), - [anon_sym_DOLLARecho] = ACTIONS(1531), - [anon_sym_DOLLARif] = ACTIONS(1531), - [anon_sym_DOLLARswitch] = ACTIONS(1531), - [anon_sym_DOLLARfor] = ACTIONS(1531), - [anon_sym_DOLLARforeach] = ACTIONS(1531), - [anon_sym_DOLLARalignof] = ACTIONS(1531), - [anon_sym_DOLLARextnameof] = ACTIONS(1531), - [anon_sym_DOLLARnameof] = ACTIONS(1531), - [anon_sym_DOLLARoffsetof] = ACTIONS(1531), - [anon_sym_DOLLARqnameof] = ACTIONS(1531), - [anon_sym_DOLLAReval] = ACTIONS(1531), - [anon_sym_DOLLARdefined] = ACTIONS(1531), - [anon_sym_DOLLARsizeof] = ACTIONS(1531), - [anon_sym_DOLLARstringify] = ACTIONS(1531), - [anon_sym_DOLLARis_const] = ACTIONS(1531), - [anon_sym_DOLLARvaconst] = ACTIONS(1531), - [anon_sym_DOLLARvaarg] = ACTIONS(1531), - [anon_sym_DOLLARvaref] = ACTIONS(1531), - [anon_sym_DOLLARvaexpr] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1531), - [anon_sym_false] = ACTIONS(1531), - [anon_sym_null] = ACTIONS(1531), - [anon_sym_DOLLARvacount] = ACTIONS(1531), - [anon_sym_DOLLARfeature] = ACTIONS(1531), - [anon_sym_DOLLARand] = ACTIONS(1531), - [anon_sym_DOLLARor] = ACTIONS(1531), - [anon_sym_DOLLARassignable] = ACTIONS(1531), - [anon_sym_DOLLARembed] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_typeid] = ACTIONS(1531), - [anon_sym_LBRACE_PIPE] = ACTIONS(1533), - [anon_sym_PIPE_RBRACE] = ACTIONS(1533), - [anon_sym_void] = ACTIONS(1531), - [anon_sym_bool] = ACTIONS(1531), - [anon_sym_char] = ACTIONS(1531), - [anon_sym_ichar] = ACTIONS(1531), - [anon_sym_short] = ACTIONS(1531), - [anon_sym_ushort] = ACTIONS(1531), - [anon_sym_uint] = ACTIONS(1531), - [anon_sym_long] = ACTIONS(1531), - [anon_sym_ulong] = ACTIONS(1531), - [anon_sym_int128] = ACTIONS(1531), - [anon_sym_uint128] = ACTIONS(1531), - [anon_sym_float] = ACTIONS(1531), - [anon_sym_double] = ACTIONS(1531), - [anon_sym_float16] = ACTIONS(1531), - [anon_sym_bfloat16] = ACTIONS(1531), - [anon_sym_float128] = ACTIONS(1531), - [anon_sym_iptr] = ACTIONS(1531), - [anon_sym_uptr] = ACTIONS(1531), - [anon_sym_isz] = ACTIONS(1531), - [anon_sym_usz] = ACTIONS(1531), - [anon_sym_anyfault] = ACTIONS(1531), - [anon_sym_any] = ACTIONS(1531), - [anon_sym_DOLLARtypeof] = ACTIONS(1531), - [anon_sym_DOLLARtypefrom] = ACTIONS(1531), - [anon_sym_DOLLARvatype] = ACTIONS(1531), - [anon_sym_DOLLARevaltype] = ACTIONS(1531), - [sym_real_literal] = ACTIONS(1533), - }, - [406] = { - [sym_line_comment] = STATE(406), - [sym_doc_comment] = STATE(406), - [sym_block_comment] = STATE(406), - [sym_ident] = ACTIONS(1535), - [sym_integer_literal] = ACTIONS(1537), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [anon_sym_BQUOTE] = ACTIONS(1537), - [sym_bytes_literal] = ACTIONS(1537), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1535), - [sym_at_ident] = ACTIONS(1537), - [sym_hash_ident] = ACTIONS(1537), - [sym_type_ident] = ACTIONS(1537), - [sym_ct_type_ident] = ACTIONS(1537), - [sym_const_ident] = ACTIONS(1535), - [sym_builtin] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_tlocal] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_fn] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1535), - [anon_sym_var] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_defer] = ACTIONS(1535), - [anon_sym_assert] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1535), - [anon_sym_default] = ACTIONS(1535), - [anon_sym_nextcase] = ACTIONS(1535), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_foreach] = ACTIONS(1535), - [anon_sym_foreach_r] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_int] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_asm] = ACTIONS(1535), - [anon_sym_DOLLARassert] = ACTIONS(1535), - [anon_sym_DOLLARerror] = ACTIONS(1535), - [anon_sym_DOLLARecho] = ACTIONS(1535), - [anon_sym_DOLLARif] = ACTIONS(1535), - [anon_sym_DOLLARswitch] = ACTIONS(1535), - [anon_sym_DOLLARfor] = ACTIONS(1535), - [anon_sym_DOLLARforeach] = ACTIONS(1535), - [anon_sym_DOLLARalignof] = ACTIONS(1535), - [anon_sym_DOLLARextnameof] = ACTIONS(1535), - [anon_sym_DOLLARnameof] = ACTIONS(1535), - [anon_sym_DOLLARoffsetof] = ACTIONS(1535), - [anon_sym_DOLLARqnameof] = ACTIONS(1535), - [anon_sym_DOLLAReval] = ACTIONS(1535), - [anon_sym_DOLLARdefined] = ACTIONS(1535), - [anon_sym_DOLLARsizeof] = ACTIONS(1535), - [anon_sym_DOLLARstringify] = ACTIONS(1535), - [anon_sym_DOLLARis_const] = ACTIONS(1535), - [anon_sym_DOLLARvaconst] = ACTIONS(1535), - [anon_sym_DOLLARvaarg] = ACTIONS(1535), - [anon_sym_DOLLARvaref] = ACTIONS(1535), - [anon_sym_DOLLARvaexpr] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1535), - [anon_sym_false] = ACTIONS(1535), - [anon_sym_null] = ACTIONS(1535), - [anon_sym_DOLLARvacount] = ACTIONS(1535), - [anon_sym_DOLLARfeature] = ACTIONS(1535), - [anon_sym_DOLLARand] = ACTIONS(1535), - [anon_sym_DOLLARor] = ACTIONS(1535), - [anon_sym_DOLLARassignable] = ACTIONS(1535), - [anon_sym_DOLLARembed] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_typeid] = ACTIONS(1535), - [anon_sym_LBRACE_PIPE] = ACTIONS(1537), - [anon_sym_PIPE_RBRACE] = ACTIONS(1537), - [anon_sym_void] = ACTIONS(1535), - [anon_sym_bool] = ACTIONS(1535), - [anon_sym_char] = ACTIONS(1535), - [anon_sym_ichar] = ACTIONS(1535), - [anon_sym_short] = ACTIONS(1535), - [anon_sym_ushort] = ACTIONS(1535), - [anon_sym_uint] = ACTIONS(1535), - [anon_sym_long] = ACTIONS(1535), - [anon_sym_ulong] = ACTIONS(1535), - [anon_sym_int128] = ACTIONS(1535), - [anon_sym_uint128] = ACTIONS(1535), - [anon_sym_float] = ACTIONS(1535), - [anon_sym_double] = ACTIONS(1535), - [anon_sym_float16] = ACTIONS(1535), - [anon_sym_bfloat16] = ACTIONS(1535), - [anon_sym_float128] = ACTIONS(1535), - [anon_sym_iptr] = ACTIONS(1535), - [anon_sym_uptr] = ACTIONS(1535), - [anon_sym_isz] = ACTIONS(1535), - [anon_sym_usz] = ACTIONS(1535), - [anon_sym_anyfault] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_DOLLARtypeof] = ACTIONS(1535), - [anon_sym_DOLLARtypefrom] = ACTIONS(1535), - [anon_sym_DOLLARvatype] = ACTIONS(1535), - [anon_sym_DOLLARevaltype] = ACTIONS(1535), - [sym_real_literal] = ACTIONS(1537), - }, - [407] = { - [sym_line_comment] = STATE(407), - [sym_doc_comment] = STATE(407), - [sym_block_comment] = STATE(407), - [sym_ident] = ACTIONS(1539), - [sym_integer_literal] = ACTIONS(1541), - [anon_sym_SQUOTE] = ACTIONS(1541), - [anon_sym_DQUOTE] = ACTIONS(1541), - [anon_sym_BQUOTE] = ACTIONS(1541), - [sym_bytes_literal] = ACTIONS(1541), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1539), - [sym_at_ident] = ACTIONS(1541), - [sym_hash_ident] = ACTIONS(1541), - [sym_type_ident] = ACTIONS(1541), - [sym_ct_type_ident] = ACTIONS(1541), - [sym_const_ident] = ACTIONS(1539), - [sym_builtin] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1539), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_tlocal] = ACTIONS(1539), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_fn] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1541), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_defer] = ACTIONS(1539), - [anon_sym_assert] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1539), - [anon_sym_default] = ACTIONS(1539), - [anon_sym_nextcase] = ACTIONS(1539), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_AMP_AMP] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_foreach] = ACTIONS(1539), - [anon_sym_foreach_r] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_int] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1539), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_asm] = ACTIONS(1539), - [anon_sym_DOLLARassert] = ACTIONS(1539), - [anon_sym_DOLLARerror] = ACTIONS(1539), - [anon_sym_DOLLARecho] = ACTIONS(1539), - [anon_sym_DOLLARif] = ACTIONS(1539), - [anon_sym_DOLLARswitch] = ACTIONS(1539), - [anon_sym_DOLLARfor] = ACTIONS(1539), - [anon_sym_DOLLARforeach] = ACTIONS(1539), - [anon_sym_DOLLARalignof] = ACTIONS(1539), - [anon_sym_DOLLARextnameof] = ACTIONS(1539), - [anon_sym_DOLLARnameof] = ACTIONS(1539), - [anon_sym_DOLLARoffsetof] = ACTIONS(1539), - [anon_sym_DOLLARqnameof] = ACTIONS(1539), - [anon_sym_DOLLAReval] = ACTIONS(1539), - [anon_sym_DOLLARdefined] = ACTIONS(1539), - [anon_sym_DOLLARsizeof] = ACTIONS(1539), - [anon_sym_DOLLARstringify] = ACTIONS(1539), - [anon_sym_DOLLARis_const] = ACTIONS(1539), - [anon_sym_DOLLARvaconst] = ACTIONS(1539), - [anon_sym_DOLLARvaarg] = ACTIONS(1539), - [anon_sym_DOLLARvaref] = ACTIONS(1539), - [anon_sym_DOLLARvaexpr] = ACTIONS(1539), - [anon_sym_true] = ACTIONS(1539), - [anon_sym_false] = ACTIONS(1539), - [anon_sym_null] = ACTIONS(1539), - [anon_sym_DOLLARvacount] = ACTIONS(1539), - [anon_sym_DOLLARfeature] = ACTIONS(1539), - [anon_sym_DOLLARand] = ACTIONS(1539), - [anon_sym_DOLLARor] = ACTIONS(1539), - [anon_sym_DOLLARassignable] = ACTIONS(1539), - [anon_sym_DOLLARembed] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1541), - [anon_sym_DASH_DASH] = ACTIONS(1541), - [anon_sym_typeid] = ACTIONS(1539), - [anon_sym_LBRACE_PIPE] = ACTIONS(1541), - [anon_sym_PIPE_RBRACE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1539), - [anon_sym_bool] = ACTIONS(1539), - [anon_sym_char] = ACTIONS(1539), - [anon_sym_ichar] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [anon_sym_ushort] = ACTIONS(1539), - [anon_sym_uint] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_ulong] = ACTIONS(1539), - [anon_sym_int128] = ACTIONS(1539), - [anon_sym_uint128] = ACTIONS(1539), - [anon_sym_float] = ACTIONS(1539), - [anon_sym_double] = ACTIONS(1539), - [anon_sym_float16] = ACTIONS(1539), - [anon_sym_bfloat16] = ACTIONS(1539), - [anon_sym_float128] = ACTIONS(1539), - [anon_sym_iptr] = ACTIONS(1539), - [anon_sym_uptr] = ACTIONS(1539), - [anon_sym_isz] = ACTIONS(1539), - [anon_sym_usz] = ACTIONS(1539), - [anon_sym_anyfault] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_DOLLARtypeof] = ACTIONS(1539), - [anon_sym_DOLLARtypefrom] = ACTIONS(1539), - [anon_sym_DOLLARvatype] = ACTIONS(1539), - [anon_sym_DOLLARevaltype] = ACTIONS(1539), - [sym_real_literal] = ACTIONS(1541), - }, - [408] = { - [sym_line_comment] = STATE(408), - [sym_doc_comment] = STATE(408), - [sym_block_comment] = STATE(408), - [sym_ident] = ACTIONS(1543), - [sym_integer_literal] = ACTIONS(1545), - [anon_sym_SQUOTE] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1545), - [anon_sym_BQUOTE] = ACTIONS(1545), - [sym_bytes_literal] = ACTIONS(1545), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1543), - [sym_at_ident] = ACTIONS(1545), - [sym_hash_ident] = ACTIONS(1545), - [sym_type_ident] = ACTIONS(1545), - [sym_ct_type_ident] = ACTIONS(1545), - [sym_const_ident] = ACTIONS(1543), - [sym_builtin] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_tlocal] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_fn] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_const] = ACTIONS(1543), - [anon_sym_var] = ACTIONS(1543), - [anon_sym_return] = ACTIONS(1543), - [anon_sym_continue] = ACTIONS(1543), - [anon_sym_break] = ACTIONS(1543), - [anon_sym_defer] = ACTIONS(1543), - [anon_sym_assert] = ACTIONS(1543), - [anon_sym_case] = ACTIONS(1543), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_nextcase] = ACTIONS(1543), - [anon_sym_switch] = ACTIONS(1543), - [anon_sym_AMP_AMP] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1543), - [anon_sym_foreach] = ACTIONS(1543), - [anon_sym_foreach_r] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1543), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_int] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1543), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_asm] = ACTIONS(1543), - [anon_sym_DOLLARassert] = ACTIONS(1543), - [anon_sym_DOLLARerror] = ACTIONS(1543), - [anon_sym_DOLLARecho] = ACTIONS(1543), - [anon_sym_DOLLARif] = ACTIONS(1543), - [anon_sym_DOLLARswitch] = ACTIONS(1543), - [anon_sym_DOLLARfor] = ACTIONS(1543), - [anon_sym_DOLLARforeach] = ACTIONS(1543), - [anon_sym_DOLLARalignof] = ACTIONS(1543), - [anon_sym_DOLLARextnameof] = ACTIONS(1543), - [anon_sym_DOLLARnameof] = ACTIONS(1543), - [anon_sym_DOLLARoffsetof] = ACTIONS(1543), - [anon_sym_DOLLARqnameof] = ACTIONS(1543), - [anon_sym_DOLLAReval] = ACTIONS(1543), - [anon_sym_DOLLARdefined] = ACTIONS(1543), - [anon_sym_DOLLARsizeof] = ACTIONS(1543), - [anon_sym_DOLLARstringify] = ACTIONS(1543), - [anon_sym_DOLLARis_const] = ACTIONS(1543), - [anon_sym_DOLLARvaconst] = ACTIONS(1543), - [anon_sym_DOLLARvaarg] = ACTIONS(1543), - [anon_sym_DOLLARvaref] = ACTIONS(1543), - [anon_sym_DOLLARvaexpr] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(1543), - [anon_sym_false] = ACTIONS(1543), - [anon_sym_null] = ACTIONS(1543), - [anon_sym_DOLLARvacount] = ACTIONS(1543), - [anon_sym_DOLLARfeature] = ACTIONS(1543), - [anon_sym_DOLLARand] = ACTIONS(1543), - [anon_sym_DOLLARor] = ACTIONS(1543), - [anon_sym_DOLLARassignable] = ACTIONS(1543), - [anon_sym_DOLLARembed] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1545), - [anon_sym_TILDE] = ACTIONS(1545), - [anon_sym_PLUS_PLUS] = ACTIONS(1545), - [anon_sym_DASH_DASH] = ACTIONS(1545), - [anon_sym_typeid] = ACTIONS(1543), - [anon_sym_LBRACE_PIPE] = ACTIONS(1545), - [anon_sym_PIPE_RBRACE] = ACTIONS(1545), - [anon_sym_void] = ACTIONS(1543), - [anon_sym_bool] = ACTIONS(1543), - [anon_sym_char] = ACTIONS(1543), - [anon_sym_ichar] = ACTIONS(1543), - [anon_sym_short] = ACTIONS(1543), - [anon_sym_ushort] = ACTIONS(1543), - [anon_sym_uint] = ACTIONS(1543), - [anon_sym_long] = ACTIONS(1543), - [anon_sym_ulong] = ACTIONS(1543), - [anon_sym_int128] = ACTIONS(1543), - [anon_sym_uint128] = ACTIONS(1543), - [anon_sym_float] = ACTIONS(1543), - [anon_sym_double] = ACTIONS(1543), - [anon_sym_float16] = ACTIONS(1543), - [anon_sym_bfloat16] = ACTIONS(1543), - [anon_sym_float128] = ACTIONS(1543), - [anon_sym_iptr] = ACTIONS(1543), - [anon_sym_uptr] = ACTIONS(1543), - [anon_sym_isz] = ACTIONS(1543), - [anon_sym_usz] = ACTIONS(1543), - [anon_sym_anyfault] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_DOLLARtypeof] = ACTIONS(1543), - [anon_sym_DOLLARtypefrom] = ACTIONS(1543), - [anon_sym_DOLLARvatype] = ACTIONS(1543), - [anon_sym_DOLLARevaltype] = ACTIONS(1543), - [sym_real_literal] = ACTIONS(1545), - }, - [409] = { - [sym_line_comment] = STATE(409), - [sym_doc_comment] = STATE(409), - [sym_block_comment] = STATE(409), - [sym_ident] = ACTIONS(1547), - [sym_integer_literal] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1549), - [anon_sym_BQUOTE] = ACTIONS(1549), - [sym_bytes_literal] = ACTIONS(1549), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1547), - [sym_at_ident] = ACTIONS(1549), - [sym_hash_ident] = ACTIONS(1549), - [sym_type_ident] = ACTIONS(1549), - [sym_ct_type_ident] = ACTIONS(1549), - [sym_const_ident] = ACTIONS(1547), - [sym_builtin] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1547), - [anon_sym_static] = ACTIONS(1547), - [anon_sym_tlocal] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_fn] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_RBRACE] = ACTIONS(1549), - [anon_sym_const] = ACTIONS(1547), - [anon_sym_var] = ACTIONS(1547), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_continue] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1547), - [anon_sym_defer] = ACTIONS(1547), - [anon_sym_assert] = ACTIONS(1547), - [anon_sym_case] = ACTIONS(1547), - [anon_sym_default] = ACTIONS(1547), - [anon_sym_nextcase] = ACTIONS(1547), - [anon_sym_switch] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1547), - [anon_sym_for] = ACTIONS(1547), - [anon_sym_foreach] = ACTIONS(1547), - [anon_sym_foreach_r] = ACTIONS(1547), - [anon_sym_while] = ACTIONS(1547), - [anon_sym_do] = ACTIONS(1547), - [anon_sym_int] = ACTIONS(1547), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1549), - [anon_sym_asm] = ACTIONS(1547), - [anon_sym_DOLLARassert] = ACTIONS(1547), - [anon_sym_DOLLARerror] = ACTIONS(1547), - [anon_sym_DOLLARecho] = ACTIONS(1547), - [anon_sym_DOLLARif] = ACTIONS(1547), - [anon_sym_DOLLARswitch] = ACTIONS(1547), - [anon_sym_DOLLARfor] = ACTIONS(1547), - [anon_sym_DOLLARforeach] = ACTIONS(1547), - [anon_sym_DOLLARalignof] = ACTIONS(1547), - [anon_sym_DOLLARextnameof] = ACTIONS(1547), - [anon_sym_DOLLARnameof] = ACTIONS(1547), - [anon_sym_DOLLARoffsetof] = ACTIONS(1547), - [anon_sym_DOLLARqnameof] = ACTIONS(1547), - [anon_sym_DOLLAReval] = ACTIONS(1547), - [anon_sym_DOLLARdefined] = ACTIONS(1547), - [anon_sym_DOLLARsizeof] = ACTIONS(1547), - [anon_sym_DOLLARstringify] = ACTIONS(1547), - [anon_sym_DOLLARis_const] = ACTIONS(1547), - [anon_sym_DOLLARvaconst] = ACTIONS(1547), - [anon_sym_DOLLARvaarg] = ACTIONS(1547), - [anon_sym_DOLLARvaref] = ACTIONS(1547), - [anon_sym_DOLLARvaexpr] = ACTIONS(1547), - [anon_sym_true] = ACTIONS(1547), - [anon_sym_false] = ACTIONS(1547), - [anon_sym_null] = ACTIONS(1547), - [anon_sym_DOLLARvacount] = ACTIONS(1547), - [anon_sym_DOLLARfeature] = ACTIONS(1547), - [anon_sym_DOLLARand] = ACTIONS(1547), - [anon_sym_DOLLARor] = ACTIONS(1547), - [anon_sym_DOLLARassignable] = ACTIONS(1547), - [anon_sym_DOLLARembed] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_typeid] = ACTIONS(1547), - [anon_sym_LBRACE_PIPE] = ACTIONS(1549), - [anon_sym_PIPE_RBRACE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1547), - [anon_sym_bool] = ACTIONS(1547), - [anon_sym_char] = ACTIONS(1547), - [anon_sym_ichar] = ACTIONS(1547), - [anon_sym_short] = ACTIONS(1547), - [anon_sym_ushort] = ACTIONS(1547), - [anon_sym_uint] = ACTIONS(1547), - [anon_sym_long] = ACTIONS(1547), - [anon_sym_ulong] = ACTIONS(1547), - [anon_sym_int128] = ACTIONS(1547), - [anon_sym_uint128] = ACTIONS(1547), - [anon_sym_float] = ACTIONS(1547), - [anon_sym_double] = ACTIONS(1547), - [anon_sym_float16] = ACTIONS(1547), - [anon_sym_bfloat16] = ACTIONS(1547), - [anon_sym_float128] = ACTIONS(1547), - [anon_sym_iptr] = ACTIONS(1547), - [anon_sym_uptr] = ACTIONS(1547), - [anon_sym_isz] = ACTIONS(1547), - [anon_sym_usz] = ACTIONS(1547), - [anon_sym_anyfault] = ACTIONS(1547), - [anon_sym_any] = ACTIONS(1547), - [anon_sym_DOLLARtypeof] = ACTIONS(1547), - [anon_sym_DOLLARtypefrom] = ACTIONS(1547), - [anon_sym_DOLLARvatype] = ACTIONS(1547), - [anon_sym_DOLLARevaltype] = ACTIONS(1547), - [sym_real_literal] = ACTIONS(1549), - }, - [410] = { - [sym_line_comment] = STATE(410), - [sym_doc_comment] = STATE(410), - [sym_block_comment] = STATE(410), - [sym_ident] = ACTIONS(1551), - [sym_integer_literal] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1553), - [anon_sym_BQUOTE] = ACTIONS(1553), - [sym_bytes_literal] = ACTIONS(1553), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1551), - [sym_at_ident] = ACTIONS(1553), - [sym_hash_ident] = ACTIONS(1553), - [sym_type_ident] = ACTIONS(1553), - [sym_ct_type_ident] = ACTIONS(1553), - [sym_const_ident] = ACTIONS(1551), - [sym_builtin] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1551), - [anon_sym_tlocal] = ACTIONS(1551), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_fn] = ACTIONS(1551), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_const] = ACTIONS(1551), - [anon_sym_var] = ACTIONS(1551), - [anon_sym_return] = ACTIONS(1551), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_break] = ACTIONS(1551), - [anon_sym_defer] = ACTIONS(1551), - [anon_sym_assert] = ACTIONS(1551), - [anon_sym_case] = ACTIONS(1551), - [anon_sym_default] = ACTIONS(1551), - [anon_sym_nextcase] = ACTIONS(1551), - [anon_sym_switch] = ACTIONS(1551), - [anon_sym_AMP_AMP] = ACTIONS(1553), - [anon_sym_if] = ACTIONS(1551), - [anon_sym_for] = ACTIONS(1551), - [anon_sym_foreach] = ACTIONS(1551), - [anon_sym_foreach_r] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1551), - [anon_sym_do] = ACTIONS(1551), - [anon_sym_int] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(1553), - [anon_sym_asm] = ACTIONS(1551), - [anon_sym_DOLLARassert] = ACTIONS(1551), - [anon_sym_DOLLARerror] = ACTIONS(1551), - [anon_sym_DOLLARecho] = ACTIONS(1551), - [anon_sym_DOLLARif] = ACTIONS(1551), - [anon_sym_DOLLARswitch] = ACTIONS(1551), - [anon_sym_DOLLARfor] = ACTIONS(1551), - [anon_sym_DOLLARforeach] = ACTIONS(1551), - [anon_sym_DOLLARalignof] = ACTIONS(1551), - [anon_sym_DOLLARextnameof] = ACTIONS(1551), - [anon_sym_DOLLARnameof] = ACTIONS(1551), - [anon_sym_DOLLARoffsetof] = ACTIONS(1551), - [anon_sym_DOLLARqnameof] = ACTIONS(1551), - [anon_sym_DOLLAReval] = ACTIONS(1551), - [anon_sym_DOLLARdefined] = ACTIONS(1551), - [anon_sym_DOLLARsizeof] = ACTIONS(1551), - [anon_sym_DOLLARstringify] = ACTIONS(1551), - [anon_sym_DOLLARis_const] = ACTIONS(1551), - [anon_sym_DOLLARvaconst] = ACTIONS(1551), - [anon_sym_DOLLARvaarg] = ACTIONS(1551), - [anon_sym_DOLLARvaref] = ACTIONS(1551), - [anon_sym_DOLLARvaexpr] = ACTIONS(1551), - [anon_sym_true] = ACTIONS(1551), - [anon_sym_false] = ACTIONS(1551), - [anon_sym_null] = ACTIONS(1551), - [anon_sym_DOLLARvacount] = ACTIONS(1551), - [anon_sym_DOLLARfeature] = ACTIONS(1551), - [anon_sym_DOLLARand] = ACTIONS(1551), - [anon_sym_DOLLARor] = ACTIONS(1551), - [anon_sym_DOLLARassignable] = ACTIONS(1551), - [anon_sym_DOLLARembed] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1553), - [anon_sym_TILDE] = ACTIONS(1553), - [anon_sym_PLUS_PLUS] = ACTIONS(1553), - [anon_sym_DASH_DASH] = ACTIONS(1553), - [anon_sym_typeid] = ACTIONS(1551), - [anon_sym_LBRACE_PIPE] = ACTIONS(1553), - [anon_sym_PIPE_RBRACE] = ACTIONS(1553), - [anon_sym_void] = ACTIONS(1551), - [anon_sym_bool] = ACTIONS(1551), - [anon_sym_char] = ACTIONS(1551), - [anon_sym_ichar] = ACTIONS(1551), - [anon_sym_short] = ACTIONS(1551), - [anon_sym_ushort] = ACTIONS(1551), - [anon_sym_uint] = ACTIONS(1551), - [anon_sym_long] = ACTIONS(1551), - [anon_sym_ulong] = ACTIONS(1551), - [anon_sym_int128] = ACTIONS(1551), - [anon_sym_uint128] = ACTIONS(1551), - [anon_sym_float] = ACTIONS(1551), - [anon_sym_double] = ACTIONS(1551), - [anon_sym_float16] = ACTIONS(1551), - [anon_sym_bfloat16] = ACTIONS(1551), - [anon_sym_float128] = ACTIONS(1551), - [anon_sym_iptr] = ACTIONS(1551), - [anon_sym_uptr] = ACTIONS(1551), - [anon_sym_isz] = ACTIONS(1551), - [anon_sym_usz] = ACTIONS(1551), - [anon_sym_anyfault] = ACTIONS(1551), - [anon_sym_any] = ACTIONS(1551), - [anon_sym_DOLLARtypeof] = ACTIONS(1551), - [anon_sym_DOLLARtypefrom] = ACTIONS(1551), - [anon_sym_DOLLARvatype] = ACTIONS(1551), - [anon_sym_DOLLARevaltype] = ACTIONS(1551), - [sym_real_literal] = ACTIONS(1553), - }, - [411] = { - [sym_line_comment] = STATE(411), - [sym_doc_comment] = STATE(411), - [sym_block_comment] = STATE(411), - [sym_ident] = ACTIONS(1365), - [sym_integer_literal] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1367), - [sym_bytes_literal] = ACTIONS(1367), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1365), - [sym_at_ident] = ACTIONS(1367), - [sym_hash_ident] = ACTIONS(1367), - [sym_type_ident] = ACTIONS(1367), - [sym_ct_type_ident] = ACTIONS(1367), - [sym_const_ident] = ACTIONS(1365), - [sym_builtin] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_tlocal] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_fn] = ACTIONS(1365), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_var] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_defer] = ACTIONS(1365), - [anon_sym_assert] = ACTIONS(1365), - [anon_sym_case] = ACTIONS(1365), - [anon_sym_default] = ACTIONS(1365), - [anon_sym_nextcase] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_foreach] = ACTIONS(1365), - [anon_sym_foreach_r] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_do] = ACTIONS(1365), - [anon_sym_int] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_asm] = ACTIONS(1365), - [anon_sym_DOLLARassert] = ACTIONS(1365), - [anon_sym_DOLLARerror] = ACTIONS(1365), - [anon_sym_DOLLARecho] = ACTIONS(1365), - [anon_sym_DOLLARif] = ACTIONS(1365), - [anon_sym_DOLLARswitch] = ACTIONS(1365), - [anon_sym_DOLLARfor] = ACTIONS(1365), - [anon_sym_DOLLARforeach] = ACTIONS(1365), - [anon_sym_DOLLARalignof] = ACTIONS(1365), - [anon_sym_DOLLARextnameof] = ACTIONS(1365), - [anon_sym_DOLLARnameof] = ACTIONS(1365), - [anon_sym_DOLLARoffsetof] = ACTIONS(1365), - [anon_sym_DOLLARqnameof] = ACTIONS(1365), - [anon_sym_DOLLAReval] = ACTIONS(1365), - [anon_sym_DOLLARdefined] = ACTIONS(1365), - [anon_sym_DOLLARsizeof] = ACTIONS(1365), - [anon_sym_DOLLARstringify] = ACTIONS(1365), - [anon_sym_DOLLARis_const] = ACTIONS(1365), - [anon_sym_DOLLARvaconst] = ACTIONS(1365), - [anon_sym_DOLLARvaarg] = ACTIONS(1365), - [anon_sym_DOLLARvaref] = ACTIONS(1365), - [anon_sym_DOLLARvaexpr] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1365), - [anon_sym_false] = ACTIONS(1365), - [anon_sym_null] = ACTIONS(1365), - [anon_sym_DOLLARvacount] = ACTIONS(1365), - [anon_sym_DOLLARfeature] = ACTIONS(1365), - [anon_sym_DOLLARand] = ACTIONS(1365), - [anon_sym_DOLLARor] = ACTIONS(1365), - [anon_sym_DOLLARassignable] = ACTIONS(1365), - [anon_sym_DOLLARembed] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_typeid] = ACTIONS(1365), - [anon_sym_LBRACE_PIPE] = ACTIONS(1367), - [anon_sym_PIPE_RBRACE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1365), - [anon_sym_bool] = ACTIONS(1365), - [anon_sym_char] = ACTIONS(1365), - [anon_sym_ichar] = ACTIONS(1365), - [anon_sym_short] = ACTIONS(1365), - [anon_sym_ushort] = ACTIONS(1365), - [anon_sym_uint] = ACTIONS(1365), - [anon_sym_long] = ACTIONS(1365), - [anon_sym_ulong] = ACTIONS(1365), - [anon_sym_int128] = ACTIONS(1365), - [anon_sym_uint128] = ACTIONS(1365), - [anon_sym_float] = ACTIONS(1365), - [anon_sym_double] = ACTIONS(1365), - [anon_sym_float16] = ACTIONS(1365), - [anon_sym_bfloat16] = ACTIONS(1365), - [anon_sym_float128] = ACTIONS(1365), - [anon_sym_iptr] = ACTIONS(1365), - [anon_sym_uptr] = ACTIONS(1365), - [anon_sym_isz] = ACTIONS(1365), - [anon_sym_usz] = ACTIONS(1365), - [anon_sym_anyfault] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1365), - [anon_sym_DOLLARtypeof] = ACTIONS(1365), - [anon_sym_DOLLARtypefrom] = ACTIONS(1365), - [anon_sym_DOLLARvatype] = ACTIONS(1365), - [anon_sym_DOLLARevaltype] = ACTIONS(1365), - [sym_real_literal] = ACTIONS(1367), - }, - [412] = { - [sym_line_comment] = STATE(412), - [sym_doc_comment] = STATE(412), - [sym_block_comment] = STATE(412), - [sym_ident] = ACTIONS(1555), - [sym_integer_literal] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_BQUOTE] = ACTIONS(1557), - [sym_bytes_literal] = ACTIONS(1557), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1555), - [sym_at_ident] = ACTIONS(1557), - [sym_hash_ident] = ACTIONS(1557), - [sym_type_ident] = ACTIONS(1557), - [sym_ct_type_ident] = ACTIONS(1557), - [sym_const_ident] = ACTIONS(1555), - [sym_builtin] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_AMP] = ACTIONS(1555), - [anon_sym_static] = ACTIONS(1555), - [anon_sym_tlocal] = ACTIONS(1555), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_const] = ACTIONS(1555), - [anon_sym_var] = ACTIONS(1555), - [anon_sym_return] = ACTIONS(1555), - [anon_sym_continue] = ACTIONS(1555), - [anon_sym_break] = ACTIONS(1555), - [anon_sym_defer] = ACTIONS(1555), - [anon_sym_assert] = ACTIONS(1555), - [anon_sym_case] = ACTIONS(1555), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_nextcase] = ACTIONS(1555), - [anon_sym_switch] = ACTIONS(1555), - [anon_sym_AMP_AMP] = ACTIONS(1557), - [anon_sym_if] = ACTIONS(1555), - [anon_sym_for] = ACTIONS(1555), - [anon_sym_foreach] = ACTIONS(1555), - [anon_sym_foreach_r] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_do] = ACTIONS(1555), - [anon_sym_int] = ACTIONS(1555), - [anon_sym_PLUS] = ACTIONS(1555), - [anon_sym_DASH] = ACTIONS(1555), - [anon_sym_STAR] = ACTIONS(1557), - [anon_sym_asm] = ACTIONS(1555), - [anon_sym_DOLLARassert] = ACTIONS(1555), - [anon_sym_DOLLARerror] = ACTIONS(1555), - [anon_sym_DOLLARecho] = ACTIONS(1555), - [anon_sym_DOLLARif] = ACTIONS(1555), - [anon_sym_DOLLARswitch] = ACTIONS(1555), - [anon_sym_DOLLARfor] = ACTIONS(1555), - [anon_sym_DOLLARforeach] = ACTIONS(1555), - [anon_sym_DOLLARalignof] = ACTIONS(1555), - [anon_sym_DOLLARextnameof] = ACTIONS(1555), - [anon_sym_DOLLARnameof] = ACTIONS(1555), - [anon_sym_DOLLARoffsetof] = ACTIONS(1555), - [anon_sym_DOLLARqnameof] = ACTIONS(1555), - [anon_sym_DOLLAReval] = ACTIONS(1555), - [anon_sym_DOLLARdefined] = ACTIONS(1555), - [anon_sym_DOLLARsizeof] = ACTIONS(1555), - [anon_sym_DOLLARstringify] = ACTIONS(1555), - [anon_sym_DOLLARis_const] = ACTIONS(1555), - [anon_sym_DOLLARvaconst] = ACTIONS(1555), - [anon_sym_DOLLARvaarg] = ACTIONS(1555), - [anon_sym_DOLLARvaref] = ACTIONS(1555), - [anon_sym_DOLLARvaexpr] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(1555), - [anon_sym_false] = ACTIONS(1555), - [anon_sym_null] = ACTIONS(1555), - [anon_sym_DOLLARvacount] = ACTIONS(1555), - [anon_sym_DOLLARfeature] = ACTIONS(1555), - [anon_sym_DOLLARand] = ACTIONS(1555), - [anon_sym_DOLLARor] = ACTIONS(1555), - [anon_sym_DOLLARassignable] = ACTIONS(1555), - [anon_sym_DOLLARembed] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1557), - [anon_sym_TILDE] = ACTIONS(1557), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [anon_sym_typeid] = ACTIONS(1555), - [anon_sym_LBRACE_PIPE] = ACTIONS(1557), - [anon_sym_PIPE_RBRACE] = ACTIONS(1557), - [anon_sym_void] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [anon_sym_ichar] = ACTIONS(1555), - [anon_sym_short] = ACTIONS(1555), - [anon_sym_ushort] = ACTIONS(1555), - [anon_sym_uint] = ACTIONS(1555), - [anon_sym_long] = ACTIONS(1555), - [anon_sym_ulong] = ACTIONS(1555), - [anon_sym_int128] = ACTIONS(1555), - [anon_sym_uint128] = ACTIONS(1555), - [anon_sym_float] = ACTIONS(1555), - [anon_sym_double] = ACTIONS(1555), - [anon_sym_float16] = ACTIONS(1555), - [anon_sym_bfloat16] = ACTIONS(1555), - [anon_sym_float128] = ACTIONS(1555), - [anon_sym_iptr] = ACTIONS(1555), - [anon_sym_uptr] = ACTIONS(1555), - [anon_sym_isz] = ACTIONS(1555), - [anon_sym_usz] = ACTIONS(1555), - [anon_sym_anyfault] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1555), - [anon_sym_DOLLARtypeof] = ACTIONS(1555), - [anon_sym_DOLLARtypefrom] = ACTIONS(1555), - [anon_sym_DOLLARvatype] = ACTIONS(1555), - [anon_sym_DOLLARevaltype] = ACTIONS(1555), - [sym_real_literal] = ACTIONS(1557), - }, - [413] = { - [sym_line_comment] = STATE(413), - [sym_doc_comment] = STATE(413), - [sym_block_comment] = STATE(413), - [sym_ident] = ACTIONS(1371), - [sym_integer_literal] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1373), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BQUOTE] = ACTIONS(1373), - [sym_bytes_literal] = ACTIONS(1373), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1371), - [sym_at_ident] = ACTIONS(1373), - [sym_hash_ident] = ACTIONS(1373), - [sym_type_ident] = ACTIONS(1373), - [sym_ct_type_ident] = ACTIONS(1373), - [sym_const_ident] = ACTIONS(1371), - [sym_builtin] = ACTIONS(1373), - [anon_sym_LPAREN] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1371), - [anon_sym_static] = ACTIONS(1371), - [anon_sym_tlocal] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_fn] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_const] = ACTIONS(1371), - [anon_sym_var] = ACTIONS(1371), - [anon_sym_return] = ACTIONS(1371), - [anon_sym_continue] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(1371), - [anon_sym_defer] = ACTIONS(1371), - [anon_sym_assert] = ACTIONS(1371), - [anon_sym_nextcase] = ACTIONS(1371), - [anon_sym_switch] = ACTIONS(1371), - [anon_sym_AMP_AMP] = ACTIONS(1373), - [anon_sym_if] = ACTIONS(1371), - [anon_sym_else] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1371), - [anon_sym_foreach] = ACTIONS(1371), - [anon_sym_foreach_r] = ACTIONS(1371), - [anon_sym_while] = ACTIONS(1371), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_int] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_asm] = ACTIONS(1371), - [anon_sym_DOLLARassert] = ACTIONS(1371), - [anon_sym_DOLLARerror] = ACTIONS(1371), - [anon_sym_DOLLARecho] = ACTIONS(1371), - [anon_sym_DOLLARif] = ACTIONS(1371), - [anon_sym_DOLLARcase] = ACTIONS(1371), - [anon_sym_DOLLARdefault] = ACTIONS(1371), - [anon_sym_DOLLARswitch] = ACTIONS(1371), - [anon_sym_DOLLARendswitch] = ACTIONS(1371), - [anon_sym_DOLLARfor] = ACTIONS(1371), - [anon_sym_DOLLARforeach] = ACTIONS(1371), - [anon_sym_DOLLARalignof] = ACTIONS(1371), - [anon_sym_DOLLARextnameof] = ACTIONS(1371), - [anon_sym_DOLLARnameof] = ACTIONS(1371), - [anon_sym_DOLLARoffsetof] = ACTIONS(1371), - [anon_sym_DOLLARqnameof] = ACTIONS(1371), - [anon_sym_DOLLAReval] = ACTIONS(1371), - [anon_sym_DOLLARdefined] = ACTIONS(1371), - [anon_sym_DOLLARsizeof] = ACTIONS(1371), - [anon_sym_DOLLARstringify] = ACTIONS(1371), - [anon_sym_DOLLARis_const] = ACTIONS(1371), - [anon_sym_DOLLARvaconst] = ACTIONS(1371), - [anon_sym_DOLLARvaarg] = ACTIONS(1371), - [anon_sym_DOLLARvaref] = ACTIONS(1371), - [anon_sym_DOLLARvaexpr] = ACTIONS(1371), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_null] = ACTIONS(1371), - [anon_sym_DOLLARvacount] = ACTIONS(1371), - [anon_sym_DOLLARfeature] = ACTIONS(1371), - [anon_sym_DOLLARand] = ACTIONS(1371), - [anon_sym_DOLLARor] = ACTIONS(1371), - [anon_sym_DOLLARassignable] = ACTIONS(1371), - [anon_sym_DOLLARembed] = ACTIONS(1371), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), - [anon_sym_typeid] = ACTIONS(1371), - [anon_sym_LBRACE_PIPE] = ACTIONS(1373), - [anon_sym_void] = ACTIONS(1371), - [anon_sym_bool] = ACTIONS(1371), - [anon_sym_char] = ACTIONS(1371), - [anon_sym_ichar] = ACTIONS(1371), - [anon_sym_short] = ACTIONS(1371), - [anon_sym_ushort] = ACTIONS(1371), - [anon_sym_uint] = ACTIONS(1371), - [anon_sym_long] = ACTIONS(1371), - [anon_sym_ulong] = ACTIONS(1371), - [anon_sym_int128] = ACTIONS(1371), - [anon_sym_uint128] = ACTIONS(1371), - [anon_sym_float] = ACTIONS(1371), - [anon_sym_double] = ACTIONS(1371), - [anon_sym_float16] = ACTIONS(1371), - [anon_sym_bfloat16] = ACTIONS(1371), - [anon_sym_float128] = ACTIONS(1371), - [anon_sym_iptr] = ACTIONS(1371), - [anon_sym_uptr] = ACTIONS(1371), - [anon_sym_isz] = ACTIONS(1371), - [anon_sym_usz] = ACTIONS(1371), - [anon_sym_anyfault] = ACTIONS(1371), - [anon_sym_any] = ACTIONS(1371), - [anon_sym_DOLLARtypeof] = ACTIONS(1371), - [anon_sym_DOLLARtypefrom] = ACTIONS(1371), - [anon_sym_DOLLARvatype] = ACTIONS(1371), - [anon_sym_DOLLARevaltype] = ACTIONS(1371), - [sym_real_literal] = ACTIONS(1373), - }, - [414] = { - [sym_line_comment] = STATE(414), - [sym_doc_comment] = STATE(414), - [sym_block_comment] = STATE(414), - [sym_ident] = ACTIONS(1559), - [sym_integer_literal] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_bytes_literal] = ACTIONS(1561), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1559), - [sym_at_ident] = ACTIONS(1561), - [sym_hash_ident] = ACTIONS(1561), - [sym_type_ident] = ACTIONS(1561), - [sym_ct_type_ident] = ACTIONS(1561), - [sym_const_ident] = ACTIONS(1559), - [sym_builtin] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_tlocal] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_fn] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_RBRACE] = ACTIONS(1561), - [anon_sym_const] = ACTIONS(1559), - [anon_sym_var] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_defer] = ACTIONS(1559), - [anon_sym_assert] = ACTIONS(1559), - [anon_sym_case] = ACTIONS(1559), - [anon_sym_default] = ACTIONS(1559), - [anon_sym_nextcase] = ACTIONS(1559), - [anon_sym_switch] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_foreach] = ACTIONS(1559), - [anon_sym_foreach_r] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_int] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_STAR] = ACTIONS(1561), - [anon_sym_asm] = ACTIONS(1559), - [anon_sym_DOLLARassert] = ACTIONS(1559), - [anon_sym_DOLLARerror] = ACTIONS(1559), - [anon_sym_DOLLARecho] = ACTIONS(1559), - [anon_sym_DOLLARif] = ACTIONS(1559), - [anon_sym_DOLLARswitch] = ACTIONS(1559), - [anon_sym_DOLLARfor] = ACTIONS(1559), - [anon_sym_DOLLARforeach] = ACTIONS(1559), - [anon_sym_DOLLARalignof] = ACTIONS(1559), - [anon_sym_DOLLARextnameof] = ACTIONS(1559), - [anon_sym_DOLLARnameof] = ACTIONS(1559), - [anon_sym_DOLLARoffsetof] = ACTIONS(1559), - [anon_sym_DOLLARqnameof] = ACTIONS(1559), - [anon_sym_DOLLAReval] = ACTIONS(1559), - [anon_sym_DOLLARdefined] = ACTIONS(1559), - [anon_sym_DOLLARsizeof] = ACTIONS(1559), - [anon_sym_DOLLARstringify] = ACTIONS(1559), - [anon_sym_DOLLARis_const] = ACTIONS(1559), - [anon_sym_DOLLARvaconst] = ACTIONS(1559), - [anon_sym_DOLLARvaarg] = ACTIONS(1559), - [anon_sym_DOLLARvaref] = ACTIONS(1559), - [anon_sym_DOLLARvaexpr] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1559), - [anon_sym_false] = ACTIONS(1559), - [anon_sym_null] = ACTIONS(1559), - [anon_sym_DOLLARvacount] = ACTIONS(1559), - [anon_sym_DOLLARfeature] = ACTIONS(1559), - [anon_sym_DOLLARand] = ACTIONS(1559), - [anon_sym_DOLLARor] = ACTIONS(1559), - [anon_sym_DOLLARassignable] = ACTIONS(1559), - [anon_sym_DOLLARembed] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1561), - [anon_sym_TILDE] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_typeid] = ACTIONS(1559), - [anon_sym_LBRACE_PIPE] = ACTIONS(1561), - [anon_sym_PIPE_RBRACE] = ACTIONS(1561), - [anon_sym_void] = ACTIONS(1559), - [anon_sym_bool] = ACTIONS(1559), - [anon_sym_char] = ACTIONS(1559), - [anon_sym_ichar] = ACTIONS(1559), - [anon_sym_short] = ACTIONS(1559), - [anon_sym_ushort] = ACTIONS(1559), - [anon_sym_uint] = ACTIONS(1559), - [anon_sym_long] = ACTIONS(1559), - [anon_sym_ulong] = ACTIONS(1559), - [anon_sym_int128] = ACTIONS(1559), - [anon_sym_uint128] = ACTIONS(1559), - [anon_sym_float] = ACTIONS(1559), - [anon_sym_double] = ACTIONS(1559), - [anon_sym_float16] = ACTIONS(1559), - [anon_sym_bfloat16] = ACTIONS(1559), - [anon_sym_float128] = ACTIONS(1559), - [anon_sym_iptr] = ACTIONS(1559), - [anon_sym_uptr] = ACTIONS(1559), - [anon_sym_isz] = ACTIONS(1559), - [anon_sym_usz] = ACTIONS(1559), - [anon_sym_anyfault] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_DOLLARtypeof] = ACTIONS(1559), - [anon_sym_DOLLARtypefrom] = ACTIONS(1559), - [anon_sym_DOLLARvatype] = ACTIONS(1559), - [anon_sym_DOLLARevaltype] = ACTIONS(1559), - [sym_real_literal] = ACTIONS(1561), - }, - [415] = { - [sym_line_comment] = STATE(415), - [sym_doc_comment] = STATE(415), - [sym_block_comment] = STATE(415), - [sym_ident] = ACTIONS(1563), - [sym_integer_literal] = ACTIONS(1565), - [anon_sym_SQUOTE] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1565), - [anon_sym_BQUOTE] = ACTIONS(1565), - [sym_bytes_literal] = ACTIONS(1565), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1563), - [sym_at_ident] = ACTIONS(1565), - [sym_hash_ident] = ACTIONS(1565), - [sym_type_ident] = ACTIONS(1565), - [sym_ct_type_ident] = ACTIONS(1565), - [sym_const_ident] = ACTIONS(1563), - [sym_builtin] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_static] = ACTIONS(1563), - [anon_sym_tlocal] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_fn] = ACTIONS(1563), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_RBRACE] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1563), - [anon_sym_var] = ACTIONS(1563), - [anon_sym_return] = ACTIONS(1563), - [anon_sym_continue] = ACTIONS(1563), - [anon_sym_break] = ACTIONS(1563), - [anon_sym_defer] = ACTIONS(1563), - [anon_sym_assert] = ACTIONS(1563), - [anon_sym_case] = ACTIONS(1563), - [anon_sym_default] = ACTIONS(1563), - [anon_sym_nextcase] = ACTIONS(1563), - [anon_sym_switch] = ACTIONS(1563), - [anon_sym_AMP_AMP] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1563), - [anon_sym_for] = ACTIONS(1563), - [anon_sym_foreach] = ACTIONS(1563), - [anon_sym_foreach_r] = ACTIONS(1563), - [anon_sym_while] = ACTIONS(1563), - [anon_sym_do] = ACTIONS(1563), - [anon_sym_int] = ACTIONS(1563), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_asm] = ACTIONS(1563), - [anon_sym_DOLLARassert] = ACTIONS(1563), - [anon_sym_DOLLARerror] = ACTIONS(1563), - [anon_sym_DOLLARecho] = ACTIONS(1563), - [anon_sym_DOLLARif] = ACTIONS(1563), - [anon_sym_DOLLARswitch] = ACTIONS(1563), - [anon_sym_DOLLARfor] = ACTIONS(1563), - [anon_sym_DOLLARforeach] = ACTIONS(1563), - [anon_sym_DOLLARalignof] = ACTIONS(1563), - [anon_sym_DOLLARextnameof] = ACTIONS(1563), - [anon_sym_DOLLARnameof] = ACTIONS(1563), - [anon_sym_DOLLARoffsetof] = ACTIONS(1563), - [anon_sym_DOLLARqnameof] = ACTIONS(1563), - [anon_sym_DOLLAReval] = ACTIONS(1563), - [anon_sym_DOLLARdefined] = ACTIONS(1563), - [anon_sym_DOLLARsizeof] = ACTIONS(1563), - [anon_sym_DOLLARstringify] = ACTIONS(1563), - [anon_sym_DOLLARis_const] = ACTIONS(1563), - [anon_sym_DOLLARvaconst] = ACTIONS(1563), - [anon_sym_DOLLARvaarg] = ACTIONS(1563), - [anon_sym_DOLLARvaref] = ACTIONS(1563), - [anon_sym_DOLLARvaexpr] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1563), - [anon_sym_false] = ACTIONS(1563), - [anon_sym_null] = ACTIONS(1563), - [anon_sym_DOLLARvacount] = ACTIONS(1563), - [anon_sym_DOLLARfeature] = ACTIONS(1563), - [anon_sym_DOLLARand] = ACTIONS(1563), - [anon_sym_DOLLARor] = ACTIONS(1563), - [anon_sym_DOLLARassignable] = ACTIONS(1563), - [anon_sym_DOLLARembed] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_typeid] = ACTIONS(1563), - [anon_sym_LBRACE_PIPE] = ACTIONS(1565), - [anon_sym_PIPE_RBRACE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1563), - [anon_sym_bool] = ACTIONS(1563), - [anon_sym_char] = ACTIONS(1563), - [anon_sym_ichar] = ACTIONS(1563), - [anon_sym_short] = ACTIONS(1563), - [anon_sym_ushort] = ACTIONS(1563), - [anon_sym_uint] = ACTIONS(1563), - [anon_sym_long] = ACTIONS(1563), - [anon_sym_ulong] = ACTIONS(1563), - [anon_sym_int128] = ACTIONS(1563), - [anon_sym_uint128] = ACTIONS(1563), - [anon_sym_float] = ACTIONS(1563), - [anon_sym_double] = ACTIONS(1563), - [anon_sym_float16] = ACTIONS(1563), - [anon_sym_bfloat16] = ACTIONS(1563), - [anon_sym_float128] = ACTIONS(1563), - [anon_sym_iptr] = ACTIONS(1563), - [anon_sym_uptr] = ACTIONS(1563), - [anon_sym_isz] = ACTIONS(1563), - [anon_sym_usz] = ACTIONS(1563), - [anon_sym_anyfault] = ACTIONS(1563), - [anon_sym_any] = ACTIONS(1563), - [anon_sym_DOLLARtypeof] = ACTIONS(1563), - [anon_sym_DOLLARtypefrom] = ACTIONS(1563), - [anon_sym_DOLLARvatype] = ACTIONS(1563), - [anon_sym_DOLLARevaltype] = ACTIONS(1563), - [sym_real_literal] = ACTIONS(1565), - }, - [416] = { - [sym_line_comment] = STATE(416), - [sym_doc_comment] = STATE(416), - [sym_block_comment] = STATE(416), - [sym_ident] = ACTIONS(1567), - [sym_integer_literal] = ACTIONS(1569), - [anon_sym_SQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [anon_sym_BQUOTE] = ACTIONS(1569), - [sym_bytes_literal] = ACTIONS(1569), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1567), - [sym_at_ident] = ACTIONS(1569), - [sym_hash_ident] = ACTIONS(1569), - [sym_type_ident] = ACTIONS(1569), - [sym_ct_type_ident] = ACTIONS(1569), - [sym_const_ident] = ACTIONS(1567), - [sym_builtin] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_AMP] = ACTIONS(1567), - [anon_sym_static] = ACTIONS(1567), - [anon_sym_tlocal] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1569), - [anon_sym_fn] = ACTIONS(1567), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_RBRACE] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(1567), - [anon_sym_return] = ACTIONS(1567), - [anon_sym_continue] = ACTIONS(1567), - [anon_sym_break] = ACTIONS(1567), - [anon_sym_defer] = ACTIONS(1567), - [anon_sym_assert] = ACTIONS(1567), - [anon_sym_case] = ACTIONS(1567), - [anon_sym_default] = ACTIONS(1567), - [anon_sym_nextcase] = ACTIONS(1567), - [anon_sym_switch] = ACTIONS(1567), - [anon_sym_AMP_AMP] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1567), - [anon_sym_for] = ACTIONS(1567), - [anon_sym_foreach] = ACTIONS(1567), - [anon_sym_foreach_r] = ACTIONS(1567), - [anon_sym_while] = ACTIONS(1567), - [anon_sym_do] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), - [anon_sym_STAR] = ACTIONS(1569), - [anon_sym_asm] = ACTIONS(1567), - [anon_sym_DOLLARassert] = ACTIONS(1567), - [anon_sym_DOLLARerror] = ACTIONS(1567), - [anon_sym_DOLLARecho] = ACTIONS(1567), - [anon_sym_DOLLARif] = ACTIONS(1567), - [anon_sym_DOLLARswitch] = ACTIONS(1567), - [anon_sym_DOLLARfor] = ACTIONS(1567), - [anon_sym_DOLLARforeach] = ACTIONS(1567), - [anon_sym_DOLLARalignof] = ACTIONS(1567), - [anon_sym_DOLLARextnameof] = ACTIONS(1567), - [anon_sym_DOLLARnameof] = ACTIONS(1567), - [anon_sym_DOLLARoffsetof] = ACTIONS(1567), - [anon_sym_DOLLARqnameof] = ACTIONS(1567), - [anon_sym_DOLLAReval] = ACTIONS(1567), - [anon_sym_DOLLARdefined] = ACTIONS(1567), - [anon_sym_DOLLARsizeof] = ACTIONS(1567), - [anon_sym_DOLLARstringify] = ACTIONS(1567), - [anon_sym_DOLLARis_const] = ACTIONS(1567), - [anon_sym_DOLLARvaconst] = ACTIONS(1567), - [anon_sym_DOLLARvaarg] = ACTIONS(1567), - [anon_sym_DOLLARvaref] = ACTIONS(1567), - [anon_sym_DOLLARvaexpr] = ACTIONS(1567), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [anon_sym_null] = ACTIONS(1567), - [anon_sym_DOLLARvacount] = ACTIONS(1567), - [anon_sym_DOLLARfeature] = ACTIONS(1567), - [anon_sym_DOLLARand] = ACTIONS(1567), - [anon_sym_DOLLARor] = ACTIONS(1567), - [anon_sym_DOLLARassignable] = ACTIONS(1567), - [anon_sym_DOLLARembed] = ACTIONS(1567), - [anon_sym_BANG] = ACTIONS(1569), - [anon_sym_TILDE] = ACTIONS(1569), - [anon_sym_PLUS_PLUS] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1569), - [anon_sym_typeid] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [anon_sym_PIPE_RBRACE] = ACTIONS(1569), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_char] = ACTIONS(1567), - [anon_sym_ichar] = ACTIONS(1567), - [anon_sym_short] = ACTIONS(1567), - [anon_sym_ushort] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_long] = ACTIONS(1567), - [anon_sym_ulong] = ACTIONS(1567), - [anon_sym_int128] = ACTIONS(1567), - [anon_sym_uint128] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_double] = ACTIONS(1567), - [anon_sym_float16] = ACTIONS(1567), - [anon_sym_bfloat16] = ACTIONS(1567), - [anon_sym_float128] = ACTIONS(1567), - [anon_sym_iptr] = ACTIONS(1567), - [anon_sym_uptr] = ACTIONS(1567), - [anon_sym_isz] = ACTIONS(1567), - [anon_sym_usz] = ACTIONS(1567), - [anon_sym_anyfault] = ACTIONS(1567), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_DOLLARtypeof] = ACTIONS(1567), - [anon_sym_DOLLARtypefrom] = ACTIONS(1567), - [anon_sym_DOLLARvatype] = ACTIONS(1567), - [anon_sym_DOLLARevaltype] = ACTIONS(1567), - [sym_real_literal] = ACTIONS(1569), - }, - [417] = { - [sym_line_comment] = STATE(417), - [sym_doc_comment] = STATE(417), - [sym_block_comment] = STATE(417), - [sym_ident] = ACTIONS(1571), - [sym_integer_literal] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_BQUOTE] = ACTIONS(1573), - [sym_bytes_literal] = ACTIONS(1573), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1571), - [sym_at_ident] = ACTIONS(1573), - [sym_hash_ident] = ACTIONS(1573), - [sym_type_ident] = ACTIONS(1573), - [sym_ct_type_ident] = ACTIONS(1573), - [sym_const_ident] = ACTIONS(1571), - [sym_builtin] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_static] = ACTIONS(1571), - [anon_sym_tlocal] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_fn] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_const] = ACTIONS(1571), - [anon_sym_var] = ACTIONS(1571), - [anon_sym_return] = ACTIONS(1571), - [anon_sym_continue] = ACTIONS(1571), - [anon_sym_break] = ACTIONS(1571), - [anon_sym_defer] = ACTIONS(1571), - [anon_sym_assert] = ACTIONS(1571), - [anon_sym_case] = ACTIONS(1571), - [anon_sym_default] = ACTIONS(1571), - [anon_sym_nextcase] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1571), - [anon_sym_AMP_AMP] = ACTIONS(1573), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_for] = ACTIONS(1571), - [anon_sym_foreach] = ACTIONS(1571), - [anon_sym_foreach_r] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1571), - [anon_sym_do] = ACTIONS(1571), - [anon_sym_int] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_asm] = ACTIONS(1571), - [anon_sym_DOLLARassert] = ACTIONS(1571), - [anon_sym_DOLLARerror] = ACTIONS(1571), - [anon_sym_DOLLARecho] = ACTIONS(1571), - [anon_sym_DOLLARif] = ACTIONS(1571), - [anon_sym_DOLLARswitch] = ACTIONS(1571), - [anon_sym_DOLLARfor] = ACTIONS(1571), - [anon_sym_DOLLARforeach] = ACTIONS(1571), - [anon_sym_DOLLARalignof] = ACTIONS(1571), - [anon_sym_DOLLARextnameof] = ACTIONS(1571), - [anon_sym_DOLLARnameof] = ACTIONS(1571), - [anon_sym_DOLLARoffsetof] = ACTIONS(1571), - [anon_sym_DOLLARqnameof] = ACTIONS(1571), - [anon_sym_DOLLAReval] = ACTIONS(1571), - [anon_sym_DOLLARdefined] = ACTIONS(1571), - [anon_sym_DOLLARsizeof] = ACTIONS(1571), - [anon_sym_DOLLARstringify] = ACTIONS(1571), - [anon_sym_DOLLARis_const] = ACTIONS(1571), - [anon_sym_DOLLARvaconst] = ACTIONS(1571), - [anon_sym_DOLLARvaarg] = ACTIONS(1571), - [anon_sym_DOLLARvaref] = ACTIONS(1571), - [anon_sym_DOLLARvaexpr] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [anon_sym_DOLLARvacount] = ACTIONS(1571), - [anon_sym_DOLLARfeature] = ACTIONS(1571), - [anon_sym_DOLLARand] = ACTIONS(1571), - [anon_sym_DOLLARor] = ACTIONS(1571), - [anon_sym_DOLLARassignable] = ACTIONS(1571), - [anon_sym_DOLLARembed] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_PLUS_PLUS] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1573), - [anon_sym_typeid] = ACTIONS(1571), - [anon_sym_LBRACE_PIPE] = ACTIONS(1573), - [anon_sym_PIPE_RBRACE] = ACTIONS(1573), - [anon_sym_void] = ACTIONS(1571), - [anon_sym_bool] = ACTIONS(1571), - [anon_sym_char] = ACTIONS(1571), - [anon_sym_ichar] = ACTIONS(1571), - [anon_sym_short] = ACTIONS(1571), - [anon_sym_ushort] = ACTIONS(1571), - [anon_sym_uint] = ACTIONS(1571), - [anon_sym_long] = ACTIONS(1571), - [anon_sym_ulong] = ACTIONS(1571), - [anon_sym_int128] = ACTIONS(1571), - [anon_sym_uint128] = ACTIONS(1571), - [anon_sym_float] = ACTIONS(1571), - [anon_sym_double] = ACTIONS(1571), - [anon_sym_float16] = ACTIONS(1571), - [anon_sym_bfloat16] = ACTIONS(1571), - [anon_sym_float128] = ACTIONS(1571), - [anon_sym_iptr] = ACTIONS(1571), - [anon_sym_uptr] = ACTIONS(1571), - [anon_sym_isz] = ACTIONS(1571), - [anon_sym_usz] = ACTIONS(1571), - [anon_sym_anyfault] = ACTIONS(1571), - [anon_sym_any] = ACTIONS(1571), - [anon_sym_DOLLARtypeof] = ACTIONS(1571), - [anon_sym_DOLLARtypefrom] = ACTIONS(1571), - [anon_sym_DOLLARvatype] = ACTIONS(1571), - [anon_sym_DOLLARevaltype] = ACTIONS(1571), - [sym_real_literal] = ACTIONS(1573), - }, - [418] = { - [sym_line_comment] = STATE(418), - [sym_doc_comment] = STATE(418), - [sym_block_comment] = STATE(418), - [sym_ident] = ACTIONS(1575), - [sym_integer_literal] = ACTIONS(1577), - [anon_sym_SQUOTE] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1577), - [anon_sym_BQUOTE] = ACTIONS(1577), - [sym_bytes_literal] = ACTIONS(1577), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1575), - [sym_at_ident] = ACTIONS(1577), - [sym_hash_ident] = ACTIONS(1577), - [sym_type_ident] = ACTIONS(1577), - [sym_ct_type_ident] = ACTIONS(1577), - [sym_const_ident] = ACTIONS(1575), - [sym_builtin] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1575), - [anon_sym_static] = ACTIONS(1575), - [anon_sym_tlocal] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_fn] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1577), - [anon_sym_const] = ACTIONS(1575), - [anon_sym_var] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_defer] = ACTIONS(1575), - [anon_sym_assert] = ACTIONS(1575), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1575), - [anon_sym_nextcase] = ACTIONS(1575), - [anon_sym_switch] = ACTIONS(1575), - [anon_sym_AMP_AMP] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_foreach] = ACTIONS(1575), - [anon_sym_foreach_r] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_do] = ACTIONS(1575), - [anon_sym_int] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_asm] = ACTIONS(1575), - [anon_sym_DOLLARassert] = ACTIONS(1575), - [anon_sym_DOLLARerror] = ACTIONS(1575), - [anon_sym_DOLLARecho] = ACTIONS(1575), - [anon_sym_DOLLARif] = ACTIONS(1575), - [anon_sym_DOLLARswitch] = ACTIONS(1575), - [anon_sym_DOLLARfor] = ACTIONS(1575), - [anon_sym_DOLLARforeach] = ACTIONS(1575), - [anon_sym_DOLLARalignof] = ACTIONS(1575), - [anon_sym_DOLLARextnameof] = ACTIONS(1575), - [anon_sym_DOLLARnameof] = ACTIONS(1575), - [anon_sym_DOLLARoffsetof] = ACTIONS(1575), - [anon_sym_DOLLARqnameof] = ACTIONS(1575), - [anon_sym_DOLLAReval] = ACTIONS(1575), - [anon_sym_DOLLARdefined] = ACTIONS(1575), - [anon_sym_DOLLARsizeof] = ACTIONS(1575), - [anon_sym_DOLLARstringify] = ACTIONS(1575), - [anon_sym_DOLLARis_const] = ACTIONS(1575), - [anon_sym_DOLLARvaconst] = ACTIONS(1575), - [anon_sym_DOLLARvaarg] = ACTIONS(1575), - [anon_sym_DOLLARvaref] = ACTIONS(1575), - [anon_sym_DOLLARvaexpr] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_DOLLARvacount] = ACTIONS(1575), - [anon_sym_DOLLARfeature] = ACTIONS(1575), - [anon_sym_DOLLARand] = ACTIONS(1575), - [anon_sym_DOLLARor] = ACTIONS(1575), - [anon_sym_DOLLARassignable] = ACTIONS(1575), - [anon_sym_DOLLARembed] = ACTIONS(1575), - [anon_sym_BANG] = ACTIONS(1577), - [anon_sym_TILDE] = ACTIONS(1577), - [anon_sym_PLUS_PLUS] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1577), - [anon_sym_typeid] = ACTIONS(1575), - [anon_sym_LBRACE_PIPE] = ACTIONS(1577), - [anon_sym_PIPE_RBRACE] = ACTIONS(1577), - [anon_sym_void] = ACTIONS(1575), - [anon_sym_bool] = ACTIONS(1575), - [anon_sym_char] = ACTIONS(1575), - [anon_sym_ichar] = ACTIONS(1575), - [anon_sym_short] = ACTIONS(1575), - [anon_sym_ushort] = ACTIONS(1575), - [anon_sym_uint] = ACTIONS(1575), - [anon_sym_long] = ACTIONS(1575), - [anon_sym_ulong] = ACTIONS(1575), - [anon_sym_int128] = ACTIONS(1575), - [anon_sym_uint128] = ACTIONS(1575), - [anon_sym_float] = ACTIONS(1575), - [anon_sym_double] = ACTIONS(1575), - [anon_sym_float16] = ACTIONS(1575), - [anon_sym_bfloat16] = ACTIONS(1575), - [anon_sym_float128] = ACTIONS(1575), - [anon_sym_iptr] = ACTIONS(1575), - [anon_sym_uptr] = ACTIONS(1575), - [anon_sym_isz] = ACTIONS(1575), - [anon_sym_usz] = ACTIONS(1575), - [anon_sym_anyfault] = ACTIONS(1575), - [anon_sym_any] = ACTIONS(1575), - [anon_sym_DOLLARtypeof] = ACTIONS(1575), - [anon_sym_DOLLARtypefrom] = ACTIONS(1575), - [anon_sym_DOLLARvatype] = ACTIONS(1575), - [anon_sym_DOLLARevaltype] = ACTIONS(1575), - [sym_real_literal] = ACTIONS(1577), - }, - [419] = { - [sym_line_comment] = STATE(419), - [sym_doc_comment] = STATE(419), - [sym_block_comment] = STATE(419), - [sym_ident] = ACTIONS(1579), - [sym_integer_literal] = ACTIONS(1581), - [anon_sym_SQUOTE] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1581), - [anon_sym_BQUOTE] = ACTIONS(1581), - [sym_bytes_literal] = ACTIONS(1581), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1579), - [sym_at_ident] = ACTIONS(1581), - [sym_hash_ident] = ACTIONS(1581), - [sym_type_ident] = ACTIONS(1581), - [sym_ct_type_ident] = ACTIONS(1581), - [sym_const_ident] = ACTIONS(1579), - [sym_builtin] = ACTIONS(1581), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_tlocal] = ACTIONS(1579), - [anon_sym_SEMI] = ACTIONS(1581), - [anon_sym_fn] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_RBRACE] = ACTIONS(1581), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_var] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_defer] = ACTIONS(1579), - [anon_sym_assert] = ACTIONS(1579), - [anon_sym_case] = ACTIONS(1579), - [anon_sym_default] = ACTIONS(1579), - [anon_sym_nextcase] = ACTIONS(1579), - [anon_sym_switch] = ACTIONS(1579), - [anon_sym_AMP_AMP] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_foreach] = ACTIONS(1579), - [anon_sym_foreach_r] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_int] = ACTIONS(1579), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_STAR] = ACTIONS(1581), - [anon_sym_asm] = ACTIONS(1579), - [anon_sym_DOLLARassert] = ACTIONS(1579), - [anon_sym_DOLLARerror] = ACTIONS(1579), - [anon_sym_DOLLARecho] = ACTIONS(1579), - [anon_sym_DOLLARif] = ACTIONS(1579), - [anon_sym_DOLLARswitch] = ACTIONS(1579), - [anon_sym_DOLLARfor] = ACTIONS(1579), - [anon_sym_DOLLARforeach] = ACTIONS(1579), - [anon_sym_DOLLARalignof] = ACTIONS(1579), - [anon_sym_DOLLARextnameof] = ACTIONS(1579), - [anon_sym_DOLLARnameof] = ACTIONS(1579), - [anon_sym_DOLLARoffsetof] = ACTIONS(1579), - [anon_sym_DOLLARqnameof] = ACTIONS(1579), - [anon_sym_DOLLAReval] = ACTIONS(1579), - [anon_sym_DOLLARdefined] = ACTIONS(1579), - [anon_sym_DOLLARsizeof] = ACTIONS(1579), - [anon_sym_DOLLARstringify] = ACTIONS(1579), - [anon_sym_DOLLARis_const] = ACTIONS(1579), - [anon_sym_DOLLARvaconst] = ACTIONS(1579), - [anon_sym_DOLLARvaarg] = ACTIONS(1579), - [anon_sym_DOLLARvaref] = ACTIONS(1579), - [anon_sym_DOLLARvaexpr] = ACTIONS(1579), - [anon_sym_true] = ACTIONS(1579), - [anon_sym_false] = ACTIONS(1579), - [anon_sym_null] = ACTIONS(1579), - [anon_sym_DOLLARvacount] = ACTIONS(1579), - [anon_sym_DOLLARfeature] = ACTIONS(1579), - [anon_sym_DOLLARand] = ACTIONS(1579), - [anon_sym_DOLLARor] = ACTIONS(1579), - [anon_sym_DOLLARassignable] = ACTIONS(1579), - [anon_sym_DOLLARembed] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1581), - [anon_sym_TILDE] = ACTIONS(1581), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [anon_sym_typeid] = ACTIONS(1579), - [anon_sym_LBRACE_PIPE] = ACTIONS(1581), - [anon_sym_PIPE_RBRACE] = ACTIONS(1581), - [anon_sym_void] = ACTIONS(1579), - [anon_sym_bool] = ACTIONS(1579), - [anon_sym_char] = ACTIONS(1579), - [anon_sym_ichar] = ACTIONS(1579), - [anon_sym_short] = ACTIONS(1579), - [anon_sym_ushort] = ACTIONS(1579), - [anon_sym_uint] = ACTIONS(1579), - [anon_sym_long] = ACTIONS(1579), - [anon_sym_ulong] = ACTIONS(1579), - [anon_sym_int128] = ACTIONS(1579), - [anon_sym_uint128] = ACTIONS(1579), - [anon_sym_float] = ACTIONS(1579), - [anon_sym_double] = ACTIONS(1579), - [anon_sym_float16] = ACTIONS(1579), - [anon_sym_bfloat16] = ACTIONS(1579), - [anon_sym_float128] = ACTIONS(1579), - [anon_sym_iptr] = ACTIONS(1579), - [anon_sym_uptr] = ACTIONS(1579), - [anon_sym_isz] = ACTIONS(1579), - [anon_sym_usz] = ACTIONS(1579), - [anon_sym_anyfault] = ACTIONS(1579), - [anon_sym_any] = ACTIONS(1579), - [anon_sym_DOLLARtypeof] = ACTIONS(1579), - [anon_sym_DOLLARtypefrom] = ACTIONS(1579), - [anon_sym_DOLLARvatype] = ACTIONS(1579), - [anon_sym_DOLLARevaltype] = ACTIONS(1579), - [sym_real_literal] = ACTIONS(1581), - }, - [420] = { - [sym_line_comment] = STATE(420), - [sym_doc_comment] = STATE(420), - [sym_block_comment] = STATE(420), - [sym_ident] = ACTIONS(1583), - [sym_integer_literal] = ACTIONS(1585), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1585), - [anon_sym_BQUOTE] = ACTIONS(1585), - [sym_bytes_literal] = ACTIONS(1585), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1583), - [sym_at_ident] = ACTIONS(1585), - [sym_hash_ident] = ACTIONS(1585), - [sym_type_ident] = ACTIONS(1585), - [sym_ct_type_ident] = ACTIONS(1585), - [sym_const_ident] = ACTIONS(1583), - [sym_builtin] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_static] = ACTIONS(1583), - [anon_sym_tlocal] = ACTIONS(1583), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_fn] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_RBRACE] = ACTIONS(1585), - [anon_sym_const] = ACTIONS(1583), - [anon_sym_var] = ACTIONS(1583), - [anon_sym_return] = ACTIONS(1583), - [anon_sym_continue] = ACTIONS(1583), - [anon_sym_break] = ACTIONS(1583), - [anon_sym_defer] = ACTIONS(1583), - [anon_sym_assert] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1583), - [anon_sym_default] = ACTIONS(1583), - [anon_sym_nextcase] = ACTIONS(1583), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1583), - [anon_sym_foreach] = ACTIONS(1583), - [anon_sym_foreach_r] = ACTIONS(1583), - [anon_sym_while] = ACTIONS(1583), - [anon_sym_do] = ACTIONS(1583), - [anon_sym_int] = ACTIONS(1583), - [anon_sym_PLUS] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_asm] = ACTIONS(1583), - [anon_sym_DOLLARassert] = ACTIONS(1583), - [anon_sym_DOLLARerror] = ACTIONS(1583), - [anon_sym_DOLLARecho] = ACTIONS(1583), - [anon_sym_DOLLARif] = ACTIONS(1583), - [anon_sym_DOLLARswitch] = ACTIONS(1583), - [anon_sym_DOLLARfor] = ACTIONS(1583), - [anon_sym_DOLLARforeach] = ACTIONS(1583), - [anon_sym_DOLLARalignof] = ACTIONS(1583), - [anon_sym_DOLLARextnameof] = ACTIONS(1583), - [anon_sym_DOLLARnameof] = ACTIONS(1583), - [anon_sym_DOLLARoffsetof] = ACTIONS(1583), - [anon_sym_DOLLARqnameof] = ACTIONS(1583), - [anon_sym_DOLLAReval] = ACTIONS(1583), - [anon_sym_DOLLARdefined] = ACTIONS(1583), - [anon_sym_DOLLARsizeof] = ACTIONS(1583), - [anon_sym_DOLLARstringify] = ACTIONS(1583), - [anon_sym_DOLLARis_const] = ACTIONS(1583), - [anon_sym_DOLLARvaconst] = ACTIONS(1583), - [anon_sym_DOLLARvaarg] = ACTIONS(1583), - [anon_sym_DOLLARvaref] = ACTIONS(1583), - [anon_sym_DOLLARvaexpr] = ACTIONS(1583), - [anon_sym_true] = ACTIONS(1583), - [anon_sym_false] = ACTIONS(1583), - [anon_sym_null] = ACTIONS(1583), - [anon_sym_DOLLARvacount] = ACTIONS(1583), - [anon_sym_DOLLARfeature] = ACTIONS(1583), - [anon_sym_DOLLARand] = ACTIONS(1583), - [anon_sym_DOLLARor] = ACTIONS(1583), - [anon_sym_DOLLARassignable] = ACTIONS(1583), - [anon_sym_DOLLARembed] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1585), - [anon_sym_TILDE] = ACTIONS(1585), - [anon_sym_PLUS_PLUS] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1585), - [anon_sym_typeid] = ACTIONS(1583), - [anon_sym_LBRACE_PIPE] = ACTIONS(1585), - [anon_sym_PIPE_RBRACE] = ACTIONS(1585), - [anon_sym_void] = ACTIONS(1583), - [anon_sym_bool] = ACTIONS(1583), - [anon_sym_char] = ACTIONS(1583), - [anon_sym_ichar] = ACTIONS(1583), - [anon_sym_short] = ACTIONS(1583), - [anon_sym_ushort] = ACTIONS(1583), - [anon_sym_uint] = ACTIONS(1583), - [anon_sym_long] = ACTIONS(1583), - [anon_sym_ulong] = ACTIONS(1583), - [anon_sym_int128] = ACTIONS(1583), - [anon_sym_uint128] = ACTIONS(1583), - [anon_sym_float] = ACTIONS(1583), - [anon_sym_double] = ACTIONS(1583), - [anon_sym_float16] = ACTIONS(1583), - [anon_sym_bfloat16] = ACTIONS(1583), - [anon_sym_float128] = ACTIONS(1583), - [anon_sym_iptr] = ACTIONS(1583), - [anon_sym_uptr] = ACTIONS(1583), - [anon_sym_isz] = ACTIONS(1583), - [anon_sym_usz] = ACTIONS(1583), - [anon_sym_anyfault] = ACTIONS(1583), - [anon_sym_any] = ACTIONS(1583), - [anon_sym_DOLLARtypeof] = ACTIONS(1583), - [anon_sym_DOLLARtypefrom] = ACTIONS(1583), - [anon_sym_DOLLARvatype] = ACTIONS(1583), - [anon_sym_DOLLARevaltype] = ACTIONS(1583), - [sym_real_literal] = ACTIONS(1585), - }, - [421] = { - [sym_line_comment] = STATE(421), - [sym_doc_comment] = STATE(421), - [sym_block_comment] = STATE(421), - [sym_ident] = ACTIONS(1587), - [sym_integer_literal] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [anon_sym_BQUOTE] = ACTIONS(1589), - [sym_bytes_literal] = ACTIONS(1589), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1587), - [sym_at_ident] = ACTIONS(1589), - [sym_hash_ident] = ACTIONS(1589), - [sym_type_ident] = ACTIONS(1589), - [sym_ct_type_ident] = ACTIONS(1589), - [sym_const_ident] = ACTIONS(1587), - [sym_builtin] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_static] = ACTIONS(1587), - [anon_sym_tlocal] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_fn] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_const] = ACTIONS(1587), - [anon_sym_var] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_defer] = ACTIONS(1587), - [anon_sym_assert] = ACTIONS(1587), - [anon_sym_case] = ACTIONS(1587), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_nextcase] = ACTIONS(1587), - [anon_sym_switch] = ACTIONS(1587), - [anon_sym_AMP_AMP] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_foreach] = ACTIONS(1587), - [anon_sym_foreach_r] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_int] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_asm] = ACTIONS(1587), - [anon_sym_DOLLARassert] = ACTIONS(1587), - [anon_sym_DOLLARerror] = ACTIONS(1587), - [anon_sym_DOLLARecho] = ACTIONS(1587), - [anon_sym_DOLLARif] = ACTIONS(1587), - [anon_sym_DOLLARswitch] = ACTIONS(1587), - [anon_sym_DOLLARfor] = ACTIONS(1587), - [anon_sym_DOLLARforeach] = ACTIONS(1587), - [anon_sym_DOLLARalignof] = ACTIONS(1587), - [anon_sym_DOLLARextnameof] = ACTIONS(1587), - [anon_sym_DOLLARnameof] = ACTIONS(1587), - [anon_sym_DOLLARoffsetof] = ACTIONS(1587), - [anon_sym_DOLLARqnameof] = ACTIONS(1587), - [anon_sym_DOLLAReval] = ACTIONS(1587), - [anon_sym_DOLLARdefined] = ACTIONS(1587), - [anon_sym_DOLLARsizeof] = ACTIONS(1587), - [anon_sym_DOLLARstringify] = ACTIONS(1587), - [anon_sym_DOLLARis_const] = ACTIONS(1587), - [anon_sym_DOLLARvaconst] = ACTIONS(1587), - [anon_sym_DOLLARvaarg] = ACTIONS(1587), - [anon_sym_DOLLARvaref] = ACTIONS(1587), - [anon_sym_DOLLARvaexpr] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [anon_sym_DOLLARvacount] = ACTIONS(1587), - [anon_sym_DOLLARfeature] = ACTIONS(1587), - [anon_sym_DOLLARand] = ACTIONS(1587), - [anon_sym_DOLLARor] = ACTIONS(1587), - [anon_sym_DOLLARassignable] = ACTIONS(1587), - [anon_sym_DOLLARembed] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_typeid] = ACTIONS(1587), - [anon_sym_LBRACE_PIPE] = ACTIONS(1589), - [anon_sym_PIPE_RBRACE] = ACTIONS(1589), - [anon_sym_void] = ACTIONS(1587), - [anon_sym_bool] = ACTIONS(1587), - [anon_sym_char] = ACTIONS(1587), - [anon_sym_ichar] = ACTIONS(1587), - [anon_sym_short] = ACTIONS(1587), - [anon_sym_ushort] = ACTIONS(1587), - [anon_sym_uint] = ACTIONS(1587), - [anon_sym_long] = ACTIONS(1587), - [anon_sym_ulong] = ACTIONS(1587), - [anon_sym_int128] = ACTIONS(1587), - [anon_sym_uint128] = ACTIONS(1587), - [anon_sym_float] = ACTIONS(1587), - [anon_sym_double] = ACTIONS(1587), - [anon_sym_float16] = ACTIONS(1587), - [anon_sym_bfloat16] = ACTIONS(1587), - [anon_sym_float128] = ACTIONS(1587), - [anon_sym_iptr] = ACTIONS(1587), - [anon_sym_uptr] = ACTIONS(1587), - [anon_sym_isz] = ACTIONS(1587), - [anon_sym_usz] = ACTIONS(1587), - [anon_sym_anyfault] = ACTIONS(1587), - [anon_sym_any] = ACTIONS(1587), - [anon_sym_DOLLARtypeof] = ACTIONS(1587), - [anon_sym_DOLLARtypefrom] = ACTIONS(1587), - [anon_sym_DOLLARvatype] = ACTIONS(1587), - [anon_sym_DOLLARevaltype] = ACTIONS(1587), - [sym_real_literal] = ACTIONS(1589), - }, - [422] = { - [sym_line_comment] = STATE(422), - [sym_doc_comment] = STATE(422), - [sym_block_comment] = STATE(422), - [sym_ident] = ACTIONS(1591), - [sym_integer_literal] = ACTIONS(1593), - [anon_sym_SQUOTE] = ACTIONS(1593), - [anon_sym_DQUOTE] = ACTIONS(1593), - [anon_sym_BQUOTE] = ACTIONS(1593), - [sym_bytes_literal] = ACTIONS(1593), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1591), - [sym_at_ident] = ACTIONS(1593), - [sym_hash_ident] = ACTIONS(1593), - [sym_type_ident] = ACTIONS(1593), - [sym_ct_type_ident] = ACTIONS(1593), - [sym_const_ident] = ACTIONS(1591), - [sym_builtin] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_static] = ACTIONS(1591), - [anon_sym_tlocal] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1593), - [anon_sym_fn] = ACTIONS(1591), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1593), - [anon_sym_const] = ACTIONS(1591), - [anon_sym_var] = ACTIONS(1591), - [anon_sym_return] = ACTIONS(1591), - [anon_sym_continue] = ACTIONS(1591), - [anon_sym_break] = ACTIONS(1591), - [anon_sym_defer] = ACTIONS(1591), - [anon_sym_assert] = ACTIONS(1591), - [anon_sym_case] = ACTIONS(1591), - [anon_sym_default] = ACTIONS(1591), - [anon_sym_nextcase] = ACTIONS(1591), - [anon_sym_switch] = ACTIONS(1591), - [anon_sym_AMP_AMP] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1591), - [anon_sym_foreach] = ACTIONS(1591), - [anon_sym_foreach_r] = ACTIONS(1591), - [anon_sym_while] = ACTIONS(1591), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_int] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1591), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_asm] = ACTIONS(1591), - [anon_sym_DOLLARassert] = ACTIONS(1591), - [anon_sym_DOLLARerror] = ACTIONS(1591), - [anon_sym_DOLLARecho] = ACTIONS(1591), - [anon_sym_DOLLARif] = ACTIONS(1591), - [anon_sym_DOLLARswitch] = ACTIONS(1591), - [anon_sym_DOLLARfor] = ACTIONS(1591), - [anon_sym_DOLLARforeach] = ACTIONS(1591), - [anon_sym_DOLLARalignof] = ACTIONS(1591), - [anon_sym_DOLLARextnameof] = ACTIONS(1591), - [anon_sym_DOLLARnameof] = ACTIONS(1591), - [anon_sym_DOLLARoffsetof] = ACTIONS(1591), - [anon_sym_DOLLARqnameof] = ACTIONS(1591), - [anon_sym_DOLLAReval] = ACTIONS(1591), - [anon_sym_DOLLARdefined] = ACTIONS(1591), - [anon_sym_DOLLARsizeof] = ACTIONS(1591), - [anon_sym_DOLLARstringify] = ACTIONS(1591), - [anon_sym_DOLLARis_const] = ACTIONS(1591), - [anon_sym_DOLLARvaconst] = ACTIONS(1591), - [anon_sym_DOLLARvaarg] = ACTIONS(1591), - [anon_sym_DOLLARvaref] = ACTIONS(1591), - [anon_sym_DOLLARvaexpr] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [anon_sym_DOLLARvacount] = ACTIONS(1591), - [anon_sym_DOLLARfeature] = ACTIONS(1591), - [anon_sym_DOLLARand] = ACTIONS(1591), - [anon_sym_DOLLARor] = ACTIONS(1591), - [anon_sym_DOLLARassignable] = ACTIONS(1591), - [anon_sym_DOLLARembed] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1593), - [anon_sym_TILDE] = ACTIONS(1593), - [anon_sym_PLUS_PLUS] = ACTIONS(1593), - [anon_sym_DASH_DASH] = ACTIONS(1593), - [anon_sym_typeid] = ACTIONS(1591), - [anon_sym_LBRACE_PIPE] = ACTIONS(1593), - [anon_sym_PIPE_RBRACE] = ACTIONS(1593), - [anon_sym_void] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_ichar] = ACTIONS(1591), - [anon_sym_short] = ACTIONS(1591), - [anon_sym_ushort] = ACTIONS(1591), - [anon_sym_uint] = ACTIONS(1591), - [anon_sym_long] = ACTIONS(1591), - [anon_sym_ulong] = ACTIONS(1591), - [anon_sym_int128] = ACTIONS(1591), - [anon_sym_uint128] = ACTIONS(1591), - [anon_sym_float] = ACTIONS(1591), - [anon_sym_double] = ACTIONS(1591), - [anon_sym_float16] = ACTIONS(1591), - [anon_sym_bfloat16] = ACTIONS(1591), - [anon_sym_float128] = ACTIONS(1591), - [anon_sym_iptr] = ACTIONS(1591), - [anon_sym_uptr] = ACTIONS(1591), - [anon_sym_isz] = ACTIONS(1591), - [anon_sym_usz] = ACTIONS(1591), - [anon_sym_anyfault] = ACTIONS(1591), - [anon_sym_any] = ACTIONS(1591), - [anon_sym_DOLLARtypeof] = ACTIONS(1591), - [anon_sym_DOLLARtypefrom] = ACTIONS(1591), - [anon_sym_DOLLARvatype] = ACTIONS(1591), - [anon_sym_DOLLARevaltype] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1593), - }, - [423] = { - [sym_line_comment] = STATE(423), - [sym_doc_comment] = STATE(423), - [sym_block_comment] = STATE(423), - [sym_ident] = ACTIONS(1595), - [sym_integer_literal] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(1597), - [anon_sym_DQUOTE] = ACTIONS(1597), - [anon_sym_BQUOTE] = ACTIONS(1597), - [sym_bytes_literal] = ACTIONS(1597), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1595), - [sym_at_ident] = ACTIONS(1597), - [sym_hash_ident] = ACTIONS(1597), - [sym_type_ident] = ACTIONS(1597), - [sym_ct_type_ident] = ACTIONS(1597), - [sym_const_ident] = ACTIONS(1595), - [sym_builtin] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_tlocal] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_fn] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(1595), - [anon_sym_var] = ACTIONS(1595), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_continue] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1595), - [anon_sym_defer] = ACTIONS(1595), - [anon_sym_assert] = ACTIONS(1595), - [anon_sym_case] = ACTIONS(1595), - [anon_sym_default] = ACTIONS(1595), - [anon_sym_nextcase] = ACTIONS(1595), - [anon_sym_switch] = ACTIONS(1595), - [anon_sym_AMP_AMP] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1595), - [anon_sym_for] = ACTIONS(1595), - [anon_sym_foreach] = ACTIONS(1595), - [anon_sym_foreach_r] = ACTIONS(1595), - [anon_sym_while] = ACTIONS(1595), - [anon_sym_do] = ACTIONS(1595), - [anon_sym_int] = ACTIONS(1595), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1597), - [anon_sym_asm] = ACTIONS(1595), - [anon_sym_DOLLARassert] = ACTIONS(1595), - [anon_sym_DOLLARerror] = ACTIONS(1595), - [anon_sym_DOLLARecho] = ACTIONS(1595), - [anon_sym_DOLLARif] = ACTIONS(1595), - [anon_sym_DOLLARswitch] = ACTIONS(1595), - [anon_sym_DOLLARfor] = ACTIONS(1595), - [anon_sym_DOLLARforeach] = ACTIONS(1595), - [anon_sym_DOLLARalignof] = ACTIONS(1595), - [anon_sym_DOLLARextnameof] = ACTIONS(1595), - [anon_sym_DOLLARnameof] = ACTIONS(1595), - [anon_sym_DOLLARoffsetof] = ACTIONS(1595), - [anon_sym_DOLLARqnameof] = ACTIONS(1595), - [anon_sym_DOLLAReval] = ACTIONS(1595), - [anon_sym_DOLLARdefined] = ACTIONS(1595), - [anon_sym_DOLLARsizeof] = ACTIONS(1595), - [anon_sym_DOLLARstringify] = ACTIONS(1595), - [anon_sym_DOLLARis_const] = ACTIONS(1595), - [anon_sym_DOLLARvaconst] = ACTIONS(1595), - [anon_sym_DOLLARvaarg] = ACTIONS(1595), - [anon_sym_DOLLARvaref] = ACTIONS(1595), - [anon_sym_DOLLARvaexpr] = ACTIONS(1595), - [anon_sym_true] = ACTIONS(1595), - [anon_sym_false] = ACTIONS(1595), - [anon_sym_null] = ACTIONS(1595), - [anon_sym_DOLLARvacount] = ACTIONS(1595), - [anon_sym_DOLLARfeature] = ACTIONS(1595), - [anon_sym_DOLLARand] = ACTIONS(1595), - [anon_sym_DOLLARor] = ACTIONS(1595), - [anon_sym_DOLLARassignable] = ACTIONS(1595), - [anon_sym_DOLLARembed] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1597), - [anon_sym_TILDE] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_DASH_DASH] = ACTIONS(1597), - [anon_sym_typeid] = ACTIONS(1595), - [anon_sym_LBRACE_PIPE] = ACTIONS(1597), - [anon_sym_PIPE_RBRACE] = ACTIONS(1597), - [anon_sym_void] = ACTIONS(1595), - [anon_sym_bool] = ACTIONS(1595), - [anon_sym_char] = ACTIONS(1595), - [anon_sym_ichar] = ACTIONS(1595), - [anon_sym_short] = ACTIONS(1595), - [anon_sym_ushort] = ACTIONS(1595), - [anon_sym_uint] = ACTIONS(1595), - [anon_sym_long] = ACTIONS(1595), - [anon_sym_ulong] = ACTIONS(1595), - [anon_sym_int128] = ACTIONS(1595), - [anon_sym_uint128] = ACTIONS(1595), - [anon_sym_float] = ACTIONS(1595), - [anon_sym_double] = ACTIONS(1595), - [anon_sym_float16] = ACTIONS(1595), - [anon_sym_bfloat16] = ACTIONS(1595), - [anon_sym_float128] = ACTIONS(1595), - [anon_sym_iptr] = ACTIONS(1595), - [anon_sym_uptr] = ACTIONS(1595), - [anon_sym_isz] = ACTIONS(1595), - [anon_sym_usz] = ACTIONS(1595), - [anon_sym_anyfault] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_DOLLARtypeof] = ACTIONS(1595), - [anon_sym_DOLLARtypefrom] = ACTIONS(1595), - [anon_sym_DOLLARvatype] = ACTIONS(1595), - [anon_sym_DOLLARevaltype] = ACTIONS(1595), - [sym_real_literal] = ACTIONS(1597), + [anon_sym_float16] = ACTIONS(1457), + [anon_sym_bfloat16] = ACTIONS(1457), + [anon_sym_float128] = ACTIONS(1457), + [anon_sym_iptr] = ACTIONS(1457), + [anon_sym_uptr] = ACTIONS(1457), + [anon_sym_isz] = ACTIONS(1457), + [anon_sym_usz] = ACTIONS(1457), + [anon_sym_anyfault] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_DOLLARtypeof] = ACTIONS(1457), + [anon_sym_DOLLARtypefrom] = ACTIONS(1457), + [anon_sym_DOLLARevaltype] = ACTIONS(1457), + [anon_sym_DOLLARvatype] = ACTIONS(1457), + [sym_real_literal] = ACTIONS(1459), }, - [424] = { - [sym_line_comment] = STATE(424), - [sym_doc_comment] = STATE(424), - [sym_block_comment] = STATE(424), - [sym_ident] = ACTIONS(1599), - [sym_integer_literal] = ACTIONS(1601), - [anon_sym_SQUOTE] = ACTIONS(1601), - [anon_sym_DQUOTE] = ACTIONS(1601), - [anon_sym_BQUOTE] = ACTIONS(1601), - [sym_bytes_literal] = ACTIONS(1601), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1599), - [sym_at_ident] = ACTIONS(1601), - [sym_hash_ident] = ACTIONS(1601), - [sym_type_ident] = ACTIONS(1601), - [sym_ct_type_ident] = ACTIONS(1601), - [sym_const_ident] = ACTIONS(1599), - [sym_builtin] = ACTIONS(1601), - [anon_sym_LPAREN] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_static] = ACTIONS(1599), - [anon_sym_tlocal] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1601), - [anon_sym_const] = ACTIONS(1599), - [anon_sym_var] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_break] = ACTIONS(1599), - [anon_sym_defer] = ACTIONS(1599), - [anon_sym_assert] = ACTIONS(1599), - [anon_sym_case] = ACTIONS(1599), - [anon_sym_default] = ACTIONS(1599), - [anon_sym_nextcase] = ACTIONS(1599), - [anon_sym_switch] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_foreach] = ACTIONS(1599), - [anon_sym_foreach_r] = ACTIONS(1599), - [anon_sym_while] = ACTIONS(1599), - [anon_sym_do] = ACTIONS(1599), - [anon_sym_int] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_asm] = ACTIONS(1599), - [anon_sym_DOLLARassert] = ACTIONS(1599), - [anon_sym_DOLLARerror] = ACTIONS(1599), - [anon_sym_DOLLARecho] = ACTIONS(1599), - [anon_sym_DOLLARif] = ACTIONS(1599), - [anon_sym_DOLLARswitch] = ACTIONS(1599), - [anon_sym_DOLLARfor] = ACTIONS(1599), - [anon_sym_DOLLARforeach] = ACTIONS(1599), - [anon_sym_DOLLARalignof] = ACTIONS(1599), - [anon_sym_DOLLARextnameof] = ACTIONS(1599), - [anon_sym_DOLLARnameof] = ACTIONS(1599), - [anon_sym_DOLLARoffsetof] = ACTIONS(1599), - [anon_sym_DOLLARqnameof] = ACTIONS(1599), - [anon_sym_DOLLAReval] = ACTIONS(1599), - [anon_sym_DOLLARdefined] = ACTIONS(1599), - [anon_sym_DOLLARsizeof] = ACTIONS(1599), - [anon_sym_DOLLARstringify] = ACTIONS(1599), - [anon_sym_DOLLARis_const] = ACTIONS(1599), - [anon_sym_DOLLARvaconst] = ACTIONS(1599), - [anon_sym_DOLLARvaarg] = ACTIONS(1599), - [anon_sym_DOLLARvaref] = ACTIONS(1599), - [anon_sym_DOLLARvaexpr] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1599), - [anon_sym_false] = ACTIONS(1599), - [anon_sym_null] = ACTIONS(1599), - [anon_sym_DOLLARvacount] = ACTIONS(1599), - [anon_sym_DOLLARfeature] = ACTIONS(1599), - [anon_sym_DOLLARand] = ACTIONS(1599), - [anon_sym_DOLLARor] = ACTIONS(1599), - [anon_sym_DOLLARassignable] = ACTIONS(1599), - [anon_sym_DOLLARembed] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1601), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_PLUS_PLUS] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1601), - [anon_sym_typeid] = ACTIONS(1599), - [anon_sym_LBRACE_PIPE] = ACTIONS(1601), - [anon_sym_PIPE_RBRACE] = ACTIONS(1601), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_bool] = ACTIONS(1599), - [anon_sym_char] = ACTIONS(1599), - [anon_sym_ichar] = ACTIONS(1599), - [anon_sym_short] = ACTIONS(1599), - [anon_sym_ushort] = ACTIONS(1599), - [anon_sym_uint] = ACTIONS(1599), - [anon_sym_long] = ACTIONS(1599), - [anon_sym_ulong] = ACTIONS(1599), - [anon_sym_int128] = ACTIONS(1599), - [anon_sym_uint128] = ACTIONS(1599), - [anon_sym_float] = ACTIONS(1599), - [anon_sym_double] = ACTIONS(1599), - [anon_sym_float16] = ACTIONS(1599), - [anon_sym_bfloat16] = ACTIONS(1599), - [anon_sym_float128] = ACTIONS(1599), - [anon_sym_iptr] = ACTIONS(1599), - [anon_sym_uptr] = ACTIONS(1599), - [anon_sym_isz] = ACTIONS(1599), - [anon_sym_usz] = ACTIONS(1599), - [anon_sym_anyfault] = ACTIONS(1599), - [anon_sym_any] = ACTIONS(1599), - [anon_sym_DOLLARtypeof] = ACTIONS(1599), - [anon_sym_DOLLARtypefrom] = ACTIONS(1599), - [anon_sym_DOLLARvatype] = ACTIONS(1599), - [anon_sym_DOLLARevaltype] = ACTIONS(1599), - [sym_real_literal] = ACTIONS(1601), + [367] = { + [sym_line_comment] = STATE(367), + [sym_doc_comment] = STATE(367), + [sym_block_comment] = STATE(367), + [sym_ident] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_bytes_literal] = ACTIONS(1463), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1461), + [sym_at_ident] = ACTIONS(1463), + [sym_hash_ident] = ACTIONS(1463), + [sym_type_ident] = ACTIONS(1463), + [sym_ct_type_ident] = ACTIONS(1463), + [sym_const_ident] = ACTIONS(1461), + [sym_builtin] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_tlocal] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_RBRACE] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_defer] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1461), + [anon_sym_case] = ACTIONS(1461), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_nextcase] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_foreach] = ACTIONS(1461), + [anon_sym_foreach_r] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_int] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_asm] = ACTIONS(1461), + [anon_sym_DOLLARassert] = ACTIONS(1461), + [anon_sym_DOLLARerror] = ACTIONS(1461), + [anon_sym_DOLLARecho] = ACTIONS(1461), + [anon_sym_DOLLARif] = ACTIONS(1461), + [anon_sym_DOLLARswitch] = ACTIONS(1461), + [anon_sym_DOLLARfor] = ACTIONS(1461), + [anon_sym_DOLLARforeach] = ACTIONS(1461), + [anon_sym_DOLLARalignof] = ACTIONS(1461), + [anon_sym_DOLLARextnameof] = ACTIONS(1461), + [anon_sym_DOLLARnameof] = ACTIONS(1461), + [anon_sym_DOLLARoffsetof] = ACTIONS(1461), + [anon_sym_DOLLARqnameof] = ACTIONS(1461), + [anon_sym_DOLLARvaconst] = ACTIONS(1461), + [anon_sym_DOLLARvaarg] = ACTIONS(1461), + [anon_sym_DOLLARvaref] = ACTIONS(1461), + [anon_sym_DOLLARvaexpr] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_DOLLARvacount] = ACTIONS(1461), + [anon_sym_DOLLAReval] = ACTIONS(1461), + [anon_sym_DOLLARis_const] = ACTIONS(1461), + [anon_sym_DOLLARsizeof] = ACTIONS(1461), + [anon_sym_DOLLARstringify] = ACTIONS(1461), + [anon_sym_DOLLARappend] = ACTIONS(1461), + [anon_sym_DOLLARconcat] = ACTIONS(1461), + [anon_sym_DOLLARdefined] = ACTIONS(1461), + [anon_sym_DOLLARembed] = ACTIONS(1461), + [anon_sym_DOLLARand] = ACTIONS(1461), + [anon_sym_DOLLARor] = ACTIONS(1461), + [anon_sym_DOLLARfeature] = ACTIONS(1461), + [anon_sym_DOLLARassignable] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_typeid] = ACTIONS(1461), + [anon_sym_LBRACE_PIPE] = ACTIONS(1463), + [anon_sym_PIPE_RBRACE] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_ichar] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [anon_sym_ushort] = ACTIONS(1461), + [anon_sym_uint] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_ulong] = ACTIONS(1461), + [anon_sym_int128] = ACTIONS(1461), + [anon_sym_uint128] = ACTIONS(1461), + [anon_sym_float] = ACTIONS(1461), + [anon_sym_double] = ACTIONS(1461), + [anon_sym_float16] = ACTIONS(1461), + [anon_sym_bfloat16] = ACTIONS(1461), + [anon_sym_float128] = ACTIONS(1461), + [anon_sym_iptr] = ACTIONS(1461), + [anon_sym_uptr] = ACTIONS(1461), + [anon_sym_isz] = ACTIONS(1461), + [anon_sym_usz] = ACTIONS(1461), + [anon_sym_anyfault] = ACTIONS(1461), + [anon_sym_any] = ACTIONS(1461), + [anon_sym_DOLLARtypeof] = ACTIONS(1461), + [anon_sym_DOLLARtypefrom] = ACTIONS(1461), + [anon_sym_DOLLARevaltype] = ACTIONS(1461), + [anon_sym_DOLLARvatype] = ACTIONS(1461), + [sym_real_literal] = ACTIONS(1463), }, - [425] = { - [sym_line_comment] = STATE(425), - [sym_doc_comment] = STATE(425), - [sym_block_comment] = STATE(425), - [sym_ident] = ACTIONS(1603), - [sym_integer_literal] = ACTIONS(1605), - [anon_sym_SQUOTE] = ACTIONS(1605), - [anon_sym_DQUOTE] = ACTIONS(1605), - [anon_sym_BQUOTE] = ACTIONS(1605), - [sym_bytes_literal] = ACTIONS(1605), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1603), - [sym_at_ident] = ACTIONS(1605), - [sym_hash_ident] = ACTIONS(1605), - [sym_type_ident] = ACTIONS(1605), - [sym_ct_type_ident] = ACTIONS(1605), - [sym_const_ident] = ACTIONS(1603), - [sym_builtin] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1605), - [anon_sym_AMP] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1603), - [anon_sym_tlocal] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1605), - [anon_sym_fn] = ACTIONS(1603), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1603), - [anon_sym_var] = ACTIONS(1603), - [anon_sym_return] = ACTIONS(1603), - [anon_sym_continue] = ACTIONS(1603), - [anon_sym_break] = ACTIONS(1603), - [anon_sym_defer] = ACTIONS(1603), - [anon_sym_assert] = ACTIONS(1603), - [anon_sym_case] = ACTIONS(1603), - [anon_sym_default] = ACTIONS(1603), - [anon_sym_nextcase] = ACTIONS(1603), - [anon_sym_switch] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1603), - [anon_sym_for] = ACTIONS(1603), - [anon_sym_foreach] = ACTIONS(1603), - [anon_sym_foreach_r] = ACTIONS(1603), - [anon_sym_while] = ACTIONS(1603), - [anon_sym_do] = ACTIONS(1603), - [anon_sym_int] = ACTIONS(1603), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_asm] = ACTIONS(1603), - [anon_sym_DOLLARassert] = ACTIONS(1603), - [anon_sym_DOLLARerror] = ACTIONS(1603), - [anon_sym_DOLLARecho] = ACTIONS(1603), - [anon_sym_DOLLARif] = ACTIONS(1603), - [anon_sym_DOLLARswitch] = ACTIONS(1603), - [anon_sym_DOLLARfor] = ACTIONS(1603), - [anon_sym_DOLLARforeach] = ACTIONS(1603), - [anon_sym_DOLLARalignof] = ACTIONS(1603), - [anon_sym_DOLLARextnameof] = ACTIONS(1603), - [anon_sym_DOLLARnameof] = ACTIONS(1603), - [anon_sym_DOLLARoffsetof] = ACTIONS(1603), - [anon_sym_DOLLARqnameof] = ACTIONS(1603), - [anon_sym_DOLLAReval] = ACTIONS(1603), - [anon_sym_DOLLARdefined] = ACTIONS(1603), - [anon_sym_DOLLARsizeof] = ACTIONS(1603), - [anon_sym_DOLLARstringify] = ACTIONS(1603), - [anon_sym_DOLLARis_const] = ACTIONS(1603), - [anon_sym_DOLLARvaconst] = ACTIONS(1603), - [anon_sym_DOLLARvaarg] = ACTIONS(1603), - [anon_sym_DOLLARvaref] = ACTIONS(1603), - [anon_sym_DOLLARvaexpr] = ACTIONS(1603), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [anon_sym_null] = ACTIONS(1603), - [anon_sym_DOLLARvacount] = ACTIONS(1603), - [anon_sym_DOLLARfeature] = ACTIONS(1603), - [anon_sym_DOLLARand] = ACTIONS(1603), - [anon_sym_DOLLARor] = ACTIONS(1603), - [anon_sym_DOLLARassignable] = ACTIONS(1603), - [anon_sym_DOLLARembed] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1605), - [anon_sym_DASH_DASH] = ACTIONS(1605), - [anon_sym_typeid] = ACTIONS(1603), - [anon_sym_LBRACE_PIPE] = ACTIONS(1605), - [anon_sym_PIPE_RBRACE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_ichar] = ACTIONS(1603), - [anon_sym_short] = ACTIONS(1603), - [anon_sym_ushort] = ACTIONS(1603), - [anon_sym_uint] = ACTIONS(1603), - [anon_sym_long] = ACTIONS(1603), - [anon_sym_ulong] = ACTIONS(1603), - [anon_sym_int128] = ACTIONS(1603), - [anon_sym_uint128] = ACTIONS(1603), - [anon_sym_float] = ACTIONS(1603), - [anon_sym_double] = ACTIONS(1603), - [anon_sym_float16] = ACTIONS(1603), - [anon_sym_bfloat16] = ACTIONS(1603), - [anon_sym_float128] = ACTIONS(1603), - [anon_sym_iptr] = ACTIONS(1603), - [anon_sym_uptr] = ACTIONS(1603), - [anon_sym_isz] = ACTIONS(1603), - [anon_sym_usz] = ACTIONS(1603), - [anon_sym_anyfault] = ACTIONS(1603), - [anon_sym_any] = ACTIONS(1603), - [anon_sym_DOLLARtypeof] = ACTIONS(1603), - [anon_sym_DOLLARtypefrom] = ACTIONS(1603), - [anon_sym_DOLLARvatype] = ACTIONS(1603), - [anon_sym_DOLLARevaltype] = ACTIONS(1603), - [sym_real_literal] = ACTIONS(1605), + [368] = { + [sym_line_comment] = STATE(368), + [sym_doc_comment] = STATE(368), + [sym_block_comment] = STATE(368), + [sym_ident] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_BQUOTE] = ACTIONS(1467), + [sym_bytes_literal] = ACTIONS(1467), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1465), + [sym_at_ident] = ACTIONS(1467), + [sym_hash_ident] = ACTIONS(1467), + [sym_type_ident] = ACTIONS(1467), + [sym_ct_type_ident] = ACTIONS(1467), + [sym_const_ident] = ACTIONS(1465), + [sym_builtin] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_tlocal] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_defer] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1465), + [anon_sym_case] = ACTIONS(1465), + [anon_sym_default] = ACTIONS(1465), + [anon_sym_nextcase] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_foreach] = ACTIONS(1465), + [anon_sym_foreach_r] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_int] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_asm] = ACTIONS(1465), + [anon_sym_DOLLARassert] = ACTIONS(1465), + [anon_sym_DOLLARerror] = ACTIONS(1465), + [anon_sym_DOLLARecho] = ACTIONS(1465), + [anon_sym_DOLLARif] = ACTIONS(1465), + [anon_sym_DOLLARswitch] = ACTIONS(1465), + [anon_sym_DOLLARfor] = ACTIONS(1465), + [anon_sym_DOLLARforeach] = ACTIONS(1465), + [anon_sym_DOLLARalignof] = ACTIONS(1465), + [anon_sym_DOLLARextnameof] = ACTIONS(1465), + [anon_sym_DOLLARnameof] = ACTIONS(1465), + [anon_sym_DOLLARoffsetof] = ACTIONS(1465), + [anon_sym_DOLLARqnameof] = ACTIONS(1465), + [anon_sym_DOLLARvaconst] = ACTIONS(1465), + [anon_sym_DOLLARvaarg] = ACTIONS(1465), + [anon_sym_DOLLARvaref] = ACTIONS(1465), + [anon_sym_DOLLARvaexpr] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1465), + [anon_sym_DOLLARvacount] = ACTIONS(1465), + [anon_sym_DOLLAReval] = ACTIONS(1465), + [anon_sym_DOLLARis_const] = ACTIONS(1465), + [anon_sym_DOLLARsizeof] = ACTIONS(1465), + [anon_sym_DOLLARstringify] = ACTIONS(1465), + [anon_sym_DOLLARappend] = ACTIONS(1465), + [anon_sym_DOLLARconcat] = ACTIONS(1465), + [anon_sym_DOLLARdefined] = ACTIONS(1465), + [anon_sym_DOLLARembed] = ACTIONS(1465), + [anon_sym_DOLLARand] = ACTIONS(1465), + [anon_sym_DOLLARor] = ACTIONS(1465), + [anon_sym_DOLLARfeature] = ACTIONS(1465), + [anon_sym_DOLLARassignable] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_typeid] = ACTIONS(1465), + [anon_sym_LBRACE_PIPE] = ACTIONS(1467), + [anon_sym_PIPE_RBRACE] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_ichar] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [anon_sym_ushort] = ACTIONS(1465), + [anon_sym_uint] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_ulong] = ACTIONS(1465), + [anon_sym_int128] = ACTIONS(1465), + [anon_sym_uint128] = ACTIONS(1465), + [anon_sym_float] = ACTIONS(1465), + [anon_sym_double] = ACTIONS(1465), + [anon_sym_float16] = ACTIONS(1465), + [anon_sym_bfloat16] = ACTIONS(1465), + [anon_sym_float128] = ACTIONS(1465), + [anon_sym_iptr] = ACTIONS(1465), + [anon_sym_uptr] = ACTIONS(1465), + [anon_sym_isz] = ACTIONS(1465), + [anon_sym_usz] = ACTIONS(1465), + [anon_sym_anyfault] = ACTIONS(1465), + [anon_sym_any] = ACTIONS(1465), + [anon_sym_DOLLARtypeof] = ACTIONS(1465), + [anon_sym_DOLLARtypefrom] = ACTIONS(1465), + [anon_sym_DOLLARevaltype] = ACTIONS(1465), + [anon_sym_DOLLARvatype] = ACTIONS(1465), + [sym_real_literal] = ACTIONS(1467), }, - [426] = { - [sym_line_comment] = STATE(426), - [sym_doc_comment] = STATE(426), - [sym_block_comment] = STATE(426), - [sym_ident] = ACTIONS(1607), - [sym_integer_literal] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1609), - [anon_sym_BQUOTE] = ACTIONS(1609), - [sym_bytes_literal] = ACTIONS(1609), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1607), - [sym_at_ident] = ACTIONS(1609), - [sym_hash_ident] = ACTIONS(1609), - [sym_type_ident] = ACTIONS(1609), - [sym_ct_type_ident] = ACTIONS(1609), - [sym_const_ident] = ACTIONS(1607), - [sym_builtin] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1607), - [anon_sym_tlocal] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_fn] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1609), - [anon_sym_const] = ACTIONS(1607), - [anon_sym_var] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_defer] = ACTIONS(1607), - [anon_sym_assert] = ACTIONS(1607), - [anon_sym_case] = ACTIONS(1607), - [anon_sym_default] = ACTIONS(1607), - [anon_sym_nextcase] = ACTIONS(1607), - [anon_sym_switch] = ACTIONS(1607), - [anon_sym_AMP_AMP] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_foreach] = ACTIONS(1607), - [anon_sym_foreach_r] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [anon_sym_do] = ACTIONS(1607), - [anon_sym_int] = ACTIONS(1607), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1609), - [anon_sym_asm] = ACTIONS(1607), - [anon_sym_DOLLARassert] = ACTIONS(1607), - [anon_sym_DOLLARerror] = ACTIONS(1607), - [anon_sym_DOLLARecho] = ACTIONS(1607), - [anon_sym_DOLLARif] = ACTIONS(1607), - [anon_sym_DOLLARswitch] = ACTIONS(1607), - [anon_sym_DOLLARfor] = ACTIONS(1607), - [anon_sym_DOLLARforeach] = ACTIONS(1607), - [anon_sym_DOLLARalignof] = ACTIONS(1607), - [anon_sym_DOLLARextnameof] = ACTIONS(1607), - [anon_sym_DOLLARnameof] = ACTIONS(1607), - [anon_sym_DOLLARoffsetof] = ACTIONS(1607), - [anon_sym_DOLLARqnameof] = ACTIONS(1607), - [anon_sym_DOLLAReval] = ACTIONS(1607), - [anon_sym_DOLLARdefined] = ACTIONS(1607), - [anon_sym_DOLLARsizeof] = ACTIONS(1607), - [anon_sym_DOLLARstringify] = ACTIONS(1607), - [anon_sym_DOLLARis_const] = ACTIONS(1607), - [anon_sym_DOLLARvaconst] = ACTIONS(1607), - [anon_sym_DOLLARvaarg] = ACTIONS(1607), - [anon_sym_DOLLARvaref] = ACTIONS(1607), - [anon_sym_DOLLARvaexpr] = ACTIONS(1607), - [anon_sym_true] = ACTIONS(1607), - [anon_sym_false] = ACTIONS(1607), - [anon_sym_null] = ACTIONS(1607), - [anon_sym_DOLLARvacount] = ACTIONS(1607), - [anon_sym_DOLLARfeature] = ACTIONS(1607), - [anon_sym_DOLLARand] = ACTIONS(1607), - [anon_sym_DOLLARor] = ACTIONS(1607), - [anon_sym_DOLLARassignable] = ACTIONS(1607), - [anon_sym_DOLLARembed] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_TILDE] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym_typeid] = ACTIONS(1607), - [anon_sym_LBRACE_PIPE] = ACTIONS(1609), - [anon_sym_PIPE_RBRACE] = ACTIONS(1609), - [anon_sym_void] = ACTIONS(1607), - [anon_sym_bool] = ACTIONS(1607), - [anon_sym_char] = ACTIONS(1607), - [anon_sym_ichar] = ACTIONS(1607), - [anon_sym_short] = ACTIONS(1607), - [anon_sym_ushort] = ACTIONS(1607), - [anon_sym_uint] = ACTIONS(1607), - [anon_sym_long] = ACTIONS(1607), - [anon_sym_ulong] = ACTIONS(1607), - [anon_sym_int128] = ACTIONS(1607), - [anon_sym_uint128] = ACTIONS(1607), - [anon_sym_float] = ACTIONS(1607), - [anon_sym_double] = ACTIONS(1607), - [anon_sym_float16] = ACTIONS(1607), - [anon_sym_bfloat16] = ACTIONS(1607), - [anon_sym_float128] = ACTIONS(1607), - [anon_sym_iptr] = ACTIONS(1607), - [anon_sym_uptr] = ACTIONS(1607), - [anon_sym_isz] = ACTIONS(1607), - [anon_sym_usz] = ACTIONS(1607), - [anon_sym_anyfault] = ACTIONS(1607), - [anon_sym_any] = ACTIONS(1607), - [anon_sym_DOLLARtypeof] = ACTIONS(1607), - [anon_sym_DOLLARtypefrom] = ACTIONS(1607), - [anon_sym_DOLLARvatype] = ACTIONS(1607), - [anon_sym_DOLLARevaltype] = ACTIONS(1607), - [sym_real_literal] = ACTIONS(1609), + [369] = { + [sym_line_comment] = STATE(369), + [sym_doc_comment] = STATE(369), + [sym_block_comment] = STATE(369), + [sym_ident] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1471), + [sym_bytes_literal] = ACTIONS(1471), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1469), + [sym_at_ident] = ACTIONS(1471), + [sym_hash_ident] = ACTIONS(1471), + [sym_type_ident] = ACTIONS(1471), + [sym_ct_type_ident] = ACTIONS(1471), + [sym_const_ident] = ACTIONS(1469), + [sym_builtin] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_tlocal] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_defer] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1469), + [anon_sym_case] = ACTIONS(1469), + [anon_sym_default] = ACTIONS(1469), + [anon_sym_nextcase] = ACTIONS(1469), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_foreach] = ACTIONS(1469), + [anon_sym_foreach_r] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_int] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1469), + [anon_sym_DOLLARassert] = ACTIONS(1469), + [anon_sym_DOLLARerror] = ACTIONS(1469), + [anon_sym_DOLLARecho] = ACTIONS(1469), + [anon_sym_DOLLARif] = ACTIONS(1469), + [anon_sym_DOLLARswitch] = ACTIONS(1469), + [anon_sym_DOLLARfor] = ACTIONS(1469), + [anon_sym_DOLLARforeach] = ACTIONS(1469), + [anon_sym_DOLLARalignof] = ACTIONS(1469), + [anon_sym_DOLLARextnameof] = ACTIONS(1469), + [anon_sym_DOLLARnameof] = ACTIONS(1469), + [anon_sym_DOLLARoffsetof] = ACTIONS(1469), + [anon_sym_DOLLARqnameof] = ACTIONS(1469), + [anon_sym_DOLLARvaconst] = ACTIONS(1469), + [anon_sym_DOLLARvaarg] = ACTIONS(1469), + [anon_sym_DOLLARvaref] = ACTIONS(1469), + [anon_sym_DOLLARvaexpr] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_DOLLARvacount] = ACTIONS(1469), + [anon_sym_DOLLAReval] = ACTIONS(1469), + [anon_sym_DOLLARis_const] = ACTIONS(1469), + [anon_sym_DOLLARsizeof] = ACTIONS(1469), + [anon_sym_DOLLARstringify] = ACTIONS(1469), + [anon_sym_DOLLARappend] = ACTIONS(1469), + [anon_sym_DOLLARconcat] = ACTIONS(1469), + [anon_sym_DOLLARdefined] = ACTIONS(1469), + [anon_sym_DOLLARembed] = ACTIONS(1469), + [anon_sym_DOLLARand] = ACTIONS(1469), + [anon_sym_DOLLARor] = ACTIONS(1469), + [anon_sym_DOLLARfeature] = ACTIONS(1469), + [anon_sym_DOLLARassignable] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_typeid] = ACTIONS(1469), + [anon_sym_LBRACE_PIPE] = ACTIONS(1471), + [anon_sym_PIPE_RBRACE] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_ichar] = ACTIONS(1469), + [anon_sym_short] = ACTIONS(1469), + [anon_sym_ushort] = ACTIONS(1469), + [anon_sym_uint] = ACTIONS(1469), + [anon_sym_long] = ACTIONS(1469), + [anon_sym_ulong] = ACTIONS(1469), + [anon_sym_int128] = ACTIONS(1469), + [anon_sym_uint128] = ACTIONS(1469), + [anon_sym_float] = ACTIONS(1469), + [anon_sym_double] = ACTIONS(1469), + [anon_sym_float16] = ACTIONS(1469), + [anon_sym_bfloat16] = ACTIONS(1469), + [anon_sym_float128] = ACTIONS(1469), + [anon_sym_iptr] = ACTIONS(1469), + [anon_sym_uptr] = ACTIONS(1469), + [anon_sym_isz] = ACTIONS(1469), + [anon_sym_usz] = ACTIONS(1469), + [anon_sym_anyfault] = ACTIONS(1469), + [anon_sym_any] = ACTIONS(1469), + [anon_sym_DOLLARtypeof] = ACTIONS(1469), + [anon_sym_DOLLARtypefrom] = ACTIONS(1469), + [anon_sym_DOLLARevaltype] = ACTIONS(1469), + [anon_sym_DOLLARvatype] = ACTIONS(1469), + [sym_real_literal] = ACTIONS(1471), }, - [427] = { - [sym_line_comment] = STATE(427), - [sym_doc_comment] = STATE(427), - [sym_block_comment] = STATE(427), - [sym_ident] = ACTIONS(1611), - [sym_integer_literal] = ACTIONS(1613), - [anon_sym_SQUOTE] = ACTIONS(1613), - [anon_sym_DQUOTE] = ACTIONS(1613), - [anon_sym_BQUOTE] = ACTIONS(1613), - [sym_bytes_literal] = ACTIONS(1613), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1611), - [sym_at_ident] = ACTIONS(1613), - [sym_hash_ident] = ACTIONS(1613), - [sym_type_ident] = ACTIONS(1613), - [sym_ct_type_ident] = ACTIONS(1613), - [sym_const_ident] = ACTIONS(1611), - [sym_builtin] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(1611), - [anon_sym_tlocal] = ACTIONS(1611), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_RBRACE] = ACTIONS(1613), - [anon_sym_const] = ACTIONS(1611), - [anon_sym_var] = ACTIONS(1611), - [anon_sym_return] = ACTIONS(1611), - [anon_sym_continue] = ACTIONS(1611), - [anon_sym_break] = ACTIONS(1611), - [anon_sym_defer] = ACTIONS(1611), - [anon_sym_assert] = ACTIONS(1611), - [anon_sym_case] = ACTIONS(1611), - [anon_sym_default] = ACTIONS(1611), - [anon_sym_nextcase] = ACTIONS(1611), - [anon_sym_switch] = ACTIONS(1611), - [anon_sym_AMP_AMP] = ACTIONS(1613), - [anon_sym_if] = ACTIONS(1611), - [anon_sym_for] = ACTIONS(1611), - [anon_sym_foreach] = ACTIONS(1611), - [anon_sym_foreach_r] = ACTIONS(1611), - [anon_sym_while] = ACTIONS(1611), - [anon_sym_do] = ACTIONS(1611), - [anon_sym_int] = ACTIONS(1611), - [anon_sym_PLUS] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1611), - [anon_sym_STAR] = ACTIONS(1613), - [anon_sym_asm] = ACTIONS(1611), - [anon_sym_DOLLARassert] = ACTIONS(1611), - [anon_sym_DOLLARerror] = ACTIONS(1611), - [anon_sym_DOLLARecho] = ACTIONS(1611), - [anon_sym_DOLLARif] = ACTIONS(1611), - [anon_sym_DOLLARswitch] = ACTIONS(1611), - [anon_sym_DOLLARfor] = ACTIONS(1611), - [anon_sym_DOLLARforeach] = ACTIONS(1611), - [anon_sym_DOLLARalignof] = ACTIONS(1611), - [anon_sym_DOLLARextnameof] = ACTIONS(1611), - [anon_sym_DOLLARnameof] = ACTIONS(1611), - [anon_sym_DOLLARoffsetof] = ACTIONS(1611), - [anon_sym_DOLLARqnameof] = ACTIONS(1611), - [anon_sym_DOLLAReval] = ACTIONS(1611), - [anon_sym_DOLLARdefined] = ACTIONS(1611), - [anon_sym_DOLLARsizeof] = ACTIONS(1611), - [anon_sym_DOLLARstringify] = ACTIONS(1611), - [anon_sym_DOLLARis_const] = ACTIONS(1611), - [anon_sym_DOLLARvaconst] = ACTIONS(1611), - [anon_sym_DOLLARvaarg] = ACTIONS(1611), - [anon_sym_DOLLARvaref] = ACTIONS(1611), - [anon_sym_DOLLARvaexpr] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1611), - [anon_sym_false] = ACTIONS(1611), - [anon_sym_null] = ACTIONS(1611), - [anon_sym_DOLLARvacount] = ACTIONS(1611), - [anon_sym_DOLLARfeature] = ACTIONS(1611), - [anon_sym_DOLLARand] = ACTIONS(1611), - [anon_sym_DOLLARor] = ACTIONS(1611), - [anon_sym_DOLLARassignable] = ACTIONS(1611), - [anon_sym_DOLLARembed] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1613), - [anon_sym_TILDE] = ACTIONS(1613), - [anon_sym_PLUS_PLUS] = ACTIONS(1613), - [anon_sym_DASH_DASH] = ACTIONS(1613), - [anon_sym_typeid] = ACTIONS(1611), - [anon_sym_LBRACE_PIPE] = ACTIONS(1613), - [anon_sym_PIPE_RBRACE] = ACTIONS(1613), - [anon_sym_void] = ACTIONS(1611), - [anon_sym_bool] = ACTIONS(1611), - [anon_sym_char] = ACTIONS(1611), - [anon_sym_ichar] = ACTIONS(1611), - [anon_sym_short] = ACTIONS(1611), - [anon_sym_ushort] = ACTIONS(1611), - [anon_sym_uint] = ACTIONS(1611), - [anon_sym_long] = ACTIONS(1611), - [anon_sym_ulong] = ACTIONS(1611), - [anon_sym_int128] = ACTIONS(1611), - [anon_sym_uint128] = ACTIONS(1611), - [anon_sym_float] = ACTIONS(1611), - [anon_sym_double] = ACTIONS(1611), - [anon_sym_float16] = ACTIONS(1611), - [anon_sym_bfloat16] = ACTIONS(1611), - [anon_sym_float128] = ACTIONS(1611), - [anon_sym_iptr] = ACTIONS(1611), - [anon_sym_uptr] = ACTIONS(1611), - [anon_sym_isz] = ACTIONS(1611), - [anon_sym_usz] = ACTIONS(1611), - [anon_sym_anyfault] = ACTIONS(1611), - [anon_sym_any] = ACTIONS(1611), - [anon_sym_DOLLARtypeof] = ACTIONS(1611), - [anon_sym_DOLLARtypefrom] = ACTIONS(1611), - [anon_sym_DOLLARvatype] = ACTIONS(1611), - [anon_sym_DOLLARevaltype] = ACTIONS(1611), - [sym_real_literal] = ACTIONS(1613), + [370] = { + [sym_line_comment] = STATE(370), + [sym_doc_comment] = STATE(370), + [sym_block_comment] = STATE(370), + [sym_ident] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_BQUOTE] = ACTIONS(1475), + [sym_bytes_literal] = ACTIONS(1475), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1473), + [sym_at_ident] = ACTIONS(1475), + [sym_hash_ident] = ACTIONS(1475), + [sym_type_ident] = ACTIONS(1475), + [sym_ct_type_ident] = ACTIONS(1475), + [sym_const_ident] = ACTIONS(1473), + [sym_builtin] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_tlocal] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_defer] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_case] = ACTIONS(1473), + [anon_sym_default] = ACTIONS(1473), + [anon_sym_nextcase] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_foreach] = ACTIONS(1473), + [anon_sym_foreach_r] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_asm] = ACTIONS(1473), + [anon_sym_DOLLARassert] = ACTIONS(1473), + [anon_sym_DOLLARerror] = ACTIONS(1473), + [anon_sym_DOLLARecho] = ACTIONS(1473), + [anon_sym_DOLLARif] = ACTIONS(1473), + [anon_sym_DOLLARswitch] = ACTIONS(1473), + [anon_sym_DOLLARfor] = ACTIONS(1473), + [anon_sym_DOLLARforeach] = ACTIONS(1473), + [anon_sym_DOLLARalignof] = ACTIONS(1473), + [anon_sym_DOLLARextnameof] = ACTIONS(1473), + [anon_sym_DOLLARnameof] = ACTIONS(1473), + [anon_sym_DOLLARoffsetof] = ACTIONS(1473), + [anon_sym_DOLLARqnameof] = ACTIONS(1473), + [anon_sym_DOLLARvaconst] = ACTIONS(1473), + [anon_sym_DOLLARvaarg] = ACTIONS(1473), + [anon_sym_DOLLARvaref] = ACTIONS(1473), + [anon_sym_DOLLARvaexpr] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_DOLLARvacount] = ACTIONS(1473), + [anon_sym_DOLLAReval] = ACTIONS(1473), + [anon_sym_DOLLARis_const] = ACTIONS(1473), + [anon_sym_DOLLARsizeof] = ACTIONS(1473), + [anon_sym_DOLLARstringify] = ACTIONS(1473), + [anon_sym_DOLLARappend] = ACTIONS(1473), + [anon_sym_DOLLARconcat] = ACTIONS(1473), + [anon_sym_DOLLARdefined] = ACTIONS(1473), + [anon_sym_DOLLARembed] = ACTIONS(1473), + [anon_sym_DOLLARand] = ACTIONS(1473), + [anon_sym_DOLLARor] = ACTIONS(1473), + [anon_sym_DOLLARfeature] = ACTIONS(1473), + [anon_sym_DOLLARassignable] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_typeid] = ACTIONS(1473), + [anon_sym_LBRACE_PIPE] = ACTIONS(1475), + [anon_sym_PIPE_RBRACE] = ACTIONS(1475), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_ichar] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_ushort] = ACTIONS(1473), + [anon_sym_uint] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_ulong] = ACTIONS(1473), + [anon_sym_int128] = ACTIONS(1473), + [anon_sym_uint128] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_float16] = ACTIONS(1473), + [anon_sym_bfloat16] = ACTIONS(1473), + [anon_sym_float128] = ACTIONS(1473), + [anon_sym_iptr] = ACTIONS(1473), + [anon_sym_uptr] = ACTIONS(1473), + [anon_sym_isz] = ACTIONS(1473), + [anon_sym_usz] = ACTIONS(1473), + [anon_sym_anyfault] = ACTIONS(1473), + [anon_sym_any] = ACTIONS(1473), + [anon_sym_DOLLARtypeof] = ACTIONS(1473), + [anon_sym_DOLLARtypefrom] = ACTIONS(1473), + [anon_sym_DOLLARevaltype] = ACTIONS(1473), + [anon_sym_DOLLARvatype] = ACTIONS(1473), + [sym_real_literal] = ACTIONS(1475), }, - [428] = { - [sym_line_comment] = STATE(428), - [sym_doc_comment] = STATE(428), - [sym_block_comment] = STATE(428), - [sym_ident] = ACTIONS(1615), - [sym_integer_literal] = ACTIONS(1617), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_DQUOTE] = ACTIONS(1617), - [anon_sym_BQUOTE] = ACTIONS(1617), - [sym_bytes_literal] = ACTIONS(1617), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1615), - [sym_at_ident] = ACTIONS(1617), - [sym_hash_ident] = ACTIONS(1617), - [sym_type_ident] = ACTIONS(1617), - [sym_ct_type_ident] = ACTIONS(1617), - [sym_const_ident] = ACTIONS(1615), - [sym_builtin] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1615), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_tlocal] = ACTIONS(1615), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_fn] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1615), - [anon_sym_RBRACE] = ACTIONS(1617), - [anon_sym_const] = ACTIONS(1615), - [anon_sym_var] = ACTIONS(1615), - [anon_sym_return] = ACTIONS(1615), - [anon_sym_continue] = ACTIONS(1615), - [anon_sym_break] = ACTIONS(1615), - [anon_sym_defer] = ACTIONS(1615), - [anon_sym_assert] = ACTIONS(1615), - [anon_sym_case] = ACTIONS(1615), - [anon_sym_default] = ACTIONS(1615), - [anon_sym_nextcase] = ACTIONS(1615), - [anon_sym_switch] = ACTIONS(1615), - [anon_sym_AMP_AMP] = ACTIONS(1617), - [anon_sym_if] = ACTIONS(1615), - [anon_sym_for] = ACTIONS(1615), - [anon_sym_foreach] = ACTIONS(1615), - [anon_sym_foreach_r] = ACTIONS(1615), - [anon_sym_while] = ACTIONS(1615), - [anon_sym_do] = ACTIONS(1615), - [anon_sym_int] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1617), - [anon_sym_asm] = ACTIONS(1615), - [anon_sym_DOLLARassert] = ACTIONS(1615), - [anon_sym_DOLLARerror] = ACTIONS(1615), - [anon_sym_DOLLARecho] = ACTIONS(1615), - [anon_sym_DOLLARif] = ACTIONS(1615), - [anon_sym_DOLLARswitch] = ACTIONS(1615), - [anon_sym_DOLLARfor] = ACTIONS(1615), - [anon_sym_DOLLARforeach] = ACTIONS(1615), - [anon_sym_DOLLARalignof] = ACTIONS(1615), - [anon_sym_DOLLARextnameof] = ACTIONS(1615), - [anon_sym_DOLLARnameof] = ACTIONS(1615), - [anon_sym_DOLLARoffsetof] = ACTIONS(1615), - [anon_sym_DOLLARqnameof] = ACTIONS(1615), - [anon_sym_DOLLAReval] = ACTIONS(1615), - [anon_sym_DOLLARdefined] = ACTIONS(1615), - [anon_sym_DOLLARsizeof] = ACTIONS(1615), - [anon_sym_DOLLARstringify] = ACTIONS(1615), - [anon_sym_DOLLARis_const] = ACTIONS(1615), - [anon_sym_DOLLARvaconst] = ACTIONS(1615), - [anon_sym_DOLLARvaarg] = ACTIONS(1615), - [anon_sym_DOLLARvaref] = ACTIONS(1615), - [anon_sym_DOLLARvaexpr] = ACTIONS(1615), - [anon_sym_true] = ACTIONS(1615), - [anon_sym_false] = ACTIONS(1615), - [anon_sym_null] = ACTIONS(1615), - [anon_sym_DOLLARvacount] = ACTIONS(1615), - [anon_sym_DOLLARfeature] = ACTIONS(1615), - [anon_sym_DOLLARand] = ACTIONS(1615), - [anon_sym_DOLLARor] = ACTIONS(1615), - [anon_sym_DOLLARassignable] = ACTIONS(1615), - [anon_sym_DOLLARembed] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_typeid] = ACTIONS(1615), - [anon_sym_LBRACE_PIPE] = ACTIONS(1617), - [anon_sym_PIPE_RBRACE] = ACTIONS(1617), - [anon_sym_void] = ACTIONS(1615), - [anon_sym_bool] = ACTIONS(1615), - [anon_sym_char] = ACTIONS(1615), - [anon_sym_ichar] = ACTIONS(1615), - [anon_sym_short] = ACTIONS(1615), - [anon_sym_ushort] = ACTIONS(1615), - [anon_sym_uint] = ACTIONS(1615), - [anon_sym_long] = ACTIONS(1615), - [anon_sym_ulong] = ACTIONS(1615), - [anon_sym_int128] = ACTIONS(1615), - [anon_sym_uint128] = ACTIONS(1615), - [anon_sym_float] = ACTIONS(1615), - [anon_sym_double] = ACTIONS(1615), - [anon_sym_float16] = ACTIONS(1615), - [anon_sym_bfloat16] = ACTIONS(1615), - [anon_sym_float128] = ACTIONS(1615), - [anon_sym_iptr] = ACTIONS(1615), - [anon_sym_uptr] = ACTIONS(1615), - [anon_sym_isz] = ACTIONS(1615), - [anon_sym_usz] = ACTIONS(1615), - [anon_sym_anyfault] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_DOLLARtypeof] = ACTIONS(1615), - [anon_sym_DOLLARtypefrom] = ACTIONS(1615), - [anon_sym_DOLLARvatype] = ACTIONS(1615), - [anon_sym_DOLLARevaltype] = ACTIONS(1615), - [sym_real_literal] = ACTIONS(1617), + [371] = { + [sym_line_comment] = STATE(371), + [sym_doc_comment] = STATE(371), + [sym_block_comment] = STATE(371), + [sym_ident] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [sym_bytes_literal] = ACTIONS(1479), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1477), + [sym_at_ident] = ACTIONS(1479), + [sym_hash_ident] = ACTIONS(1479), + [sym_type_ident] = ACTIONS(1479), + [sym_ct_type_ident] = ACTIONS(1479), + [sym_const_ident] = ACTIONS(1477), + [sym_builtin] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_tlocal] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_RBRACE] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_var] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_defer] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1477), + [anon_sym_case] = ACTIONS(1477), + [anon_sym_default] = ACTIONS(1477), + [anon_sym_nextcase] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_foreach] = ACTIONS(1477), + [anon_sym_foreach_r] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_do] = ACTIONS(1477), + [anon_sym_int] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym_DOLLARassert] = ACTIONS(1477), + [anon_sym_DOLLARerror] = ACTIONS(1477), + [anon_sym_DOLLARecho] = ACTIONS(1477), + [anon_sym_DOLLARif] = ACTIONS(1477), + [anon_sym_DOLLARswitch] = ACTIONS(1477), + [anon_sym_DOLLARfor] = ACTIONS(1477), + [anon_sym_DOLLARforeach] = ACTIONS(1477), + [anon_sym_DOLLARalignof] = ACTIONS(1477), + [anon_sym_DOLLARextnameof] = ACTIONS(1477), + [anon_sym_DOLLARnameof] = ACTIONS(1477), + [anon_sym_DOLLARoffsetof] = ACTIONS(1477), + [anon_sym_DOLLARqnameof] = ACTIONS(1477), + [anon_sym_DOLLARvaconst] = ACTIONS(1477), + [anon_sym_DOLLARvaarg] = ACTIONS(1477), + [anon_sym_DOLLARvaref] = ACTIONS(1477), + [anon_sym_DOLLARvaexpr] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_DOLLARvacount] = ACTIONS(1477), + [anon_sym_DOLLAReval] = ACTIONS(1477), + [anon_sym_DOLLARis_const] = ACTIONS(1477), + [anon_sym_DOLLARsizeof] = ACTIONS(1477), + [anon_sym_DOLLARstringify] = ACTIONS(1477), + [anon_sym_DOLLARappend] = ACTIONS(1477), + [anon_sym_DOLLARconcat] = ACTIONS(1477), + [anon_sym_DOLLARdefined] = ACTIONS(1477), + [anon_sym_DOLLARembed] = ACTIONS(1477), + [anon_sym_DOLLARand] = ACTIONS(1477), + [anon_sym_DOLLARor] = ACTIONS(1477), + [anon_sym_DOLLARfeature] = ACTIONS(1477), + [anon_sym_DOLLARassignable] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_PLUS_PLUS] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_typeid] = ACTIONS(1477), + [anon_sym_LBRACE_PIPE] = ACTIONS(1479), + [anon_sym_PIPE_RBRACE] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_ichar] = ACTIONS(1477), + [anon_sym_short] = ACTIONS(1477), + [anon_sym_ushort] = ACTIONS(1477), + [anon_sym_uint] = ACTIONS(1477), + [anon_sym_long] = ACTIONS(1477), + [anon_sym_ulong] = ACTIONS(1477), + [anon_sym_int128] = ACTIONS(1477), + [anon_sym_uint128] = ACTIONS(1477), + [anon_sym_float] = ACTIONS(1477), + [anon_sym_double] = ACTIONS(1477), + [anon_sym_float16] = ACTIONS(1477), + [anon_sym_bfloat16] = ACTIONS(1477), + [anon_sym_float128] = ACTIONS(1477), + [anon_sym_iptr] = ACTIONS(1477), + [anon_sym_uptr] = ACTIONS(1477), + [anon_sym_isz] = ACTIONS(1477), + [anon_sym_usz] = ACTIONS(1477), + [anon_sym_anyfault] = ACTIONS(1477), + [anon_sym_any] = ACTIONS(1477), + [anon_sym_DOLLARtypeof] = ACTIONS(1477), + [anon_sym_DOLLARtypefrom] = ACTIONS(1477), + [anon_sym_DOLLARevaltype] = ACTIONS(1477), + [anon_sym_DOLLARvatype] = ACTIONS(1477), + [sym_real_literal] = ACTIONS(1479), }, - [429] = { - [sym_line_comment] = STATE(429), - [sym_doc_comment] = STATE(429), - [sym_block_comment] = STATE(429), - [sym_ident] = ACTIONS(1619), - [sym_integer_literal] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_BQUOTE] = ACTIONS(1621), - [sym_bytes_literal] = ACTIONS(1621), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1619), - [sym_at_ident] = ACTIONS(1621), - [sym_hash_ident] = ACTIONS(1621), - [sym_type_ident] = ACTIONS(1621), - [sym_ct_type_ident] = ACTIONS(1621), - [sym_const_ident] = ACTIONS(1619), - [sym_builtin] = ACTIONS(1621), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_static] = ACTIONS(1619), - [anon_sym_tlocal] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_fn] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1619), - [anon_sym_RBRACE] = ACTIONS(1621), - [anon_sym_const] = ACTIONS(1619), - [anon_sym_var] = ACTIONS(1619), - [anon_sym_return] = ACTIONS(1619), - [anon_sym_continue] = ACTIONS(1619), - [anon_sym_break] = ACTIONS(1619), - [anon_sym_defer] = ACTIONS(1619), - [anon_sym_assert] = ACTIONS(1619), - [anon_sym_case] = ACTIONS(1619), - [anon_sym_default] = ACTIONS(1619), - [anon_sym_nextcase] = ACTIONS(1619), - [anon_sym_switch] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1619), - [anon_sym_for] = ACTIONS(1619), - [anon_sym_foreach] = ACTIONS(1619), - [anon_sym_foreach_r] = ACTIONS(1619), - [anon_sym_while] = ACTIONS(1619), - [anon_sym_do] = ACTIONS(1619), - [anon_sym_int] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_asm] = ACTIONS(1619), - [anon_sym_DOLLARassert] = ACTIONS(1619), - [anon_sym_DOLLARerror] = ACTIONS(1619), - [anon_sym_DOLLARecho] = ACTIONS(1619), - [anon_sym_DOLLARif] = ACTIONS(1619), - [anon_sym_DOLLARswitch] = ACTIONS(1619), - [anon_sym_DOLLARfor] = ACTIONS(1619), - [anon_sym_DOLLARforeach] = ACTIONS(1619), - [anon_sym_DOLLARalignof] = ACTIONS(1619), - [anon_sym_DOLLARextnameof] = ACTIONS(1619), - [anon_sym_DOLLARnameof] = ACTIONS(1619), - [anon_sym_DOLLARoffsetof] = ACTIONS(1619), - [anon_sym_DOLLARqnameof] = ACTIONS(1619), - [anon_sym_DOLLAReval] = ACTIONS(1619), - [anon_sym_DOLLARdefined] = ACTIONS(1619), - [anon_sym_DOLLARsizeof] = ACTIONS(1619), - [anon_sym_DOLLARstringify] = ACTIONS(1619), - [anon_sym_DOLLARis_const] = ACTIONS(1619), - [anon_sym_DOLLARvaconst] = ACTIONS(1619), - [anon_sym_DOLLARvaarg] = ACTIONS(1619), - [anon_sym_DOLLARvaref] = ACTIONS(1619), - [anon_sym_DOLLARvaexpr] = ACTIONS(1619), - [anon_sym_true] = ACTIONS(1619), - [anon_sym_false] = ACTIONS(1619), - [anon_sym_null] = ACTIONS(1619), - [anon_sym_DOLLARvacount] = ACTIONS(1619), - [anon_sym_DOLLARfeature] = ACTIONS(1619), - [anon_sym_DOLLARand] = ACTIONS(1619), - [anon_sym_DOLLARor] = ACTIONS(1619), - [anon_sym_DOLLARassignable] = ACTIONS(1619), - [anon_sym_DOLLARembed] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_typeid] = ACTIONS(1619), - [anon_sym_LBRACE_PIPE] = ACTIONS(1621), - [anon_sym_PIPE_RBRACE] = ACTIONS(1621), - [anon_sym_void] = ACTIONS(1619), - [anon_sym_bool] = ACTIONS(1619), - [anon_sym_char] = ACTIONS(1619), - [anon_sym_ichar] = ACTIONS(1619), - [anon_sym_short] = ACTIONS(1619), - [anon_sym_ushort] = ACTIONS(1619), - [anon_sym_uint] = ACTIONS(1619), - [anon_sym_long] = ACTIONS(1619), - [anon_sym_ulong] = ACTIONS(1619), - [anon_sym_int128] = ACTIONS(1619), - [anon_sym_uint128] = ACTIONS(1619), - [anon_sym_float] = ACTIONS(1619), - [anon_sym_double] = ACTIONS(1619), - [anon_sym_float16] = ACTIONS(1619), - [anon_sym_bfloat16] = ACTIONS(1619), - [anon_sym_float128] = ACTIONS(1619), - [anon_sym_iptr] = ACTIONS(1619), - [anon_sym_uptr] = ACTIONS(1619), - [anon_sym_isz] = ACTIONS(1619), - [anon_sym_usz] = ACTIONS(1619), - [anon_sym_anyfault] = ACTIONS(1619), - [anon_sym_any] = ACTIONS(1619), - [anon_sym_DOLLARtypeof] = ACTIONS(1619), - [anon_sym_DOLLARtypefrom] = ACTIONS(1619), - [anon_sym_DOLLARvatype] = ACTIONS(1619), - [anon_sym_DOLLARevaltype] = ACTIONS(1619), - [sym_real_literal] = ACTIONS(1621), + [372] = { + [sym_line_comment] = STATE(372), + [sym_doc_comment] = STATE(372), + [sym_block_comment] = STATE(372), + [sym_ident] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_BQUOTE] = ACTIONS(1483), + [sym_bytes_literal] = ACTIONS(1483), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1481), + [sym_at_ident] = ACTIONS(1483), + [sym_hash_ident] = ACTIONS(1483), + [sym_type_ident] = ACTIONS(1483), + [sym_ct_type_ident] = ACTIONS(1483), + [sym_const_ident] = ACTIONS(1481), + [sym_builtin] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_tlocal] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_defer] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1481), + [anon_sym_case] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1481), + [anon_sym_nextcase] = ACTIONS(1481), + [anon_sym_switch] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_foreach] = ACTIONS(1481), + [anon_sym_foreach_r] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_int] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_asm] = ACTIONS(1481), + [anon_sym_DOLLARassert] = ACTIONS(1481), + [anon_sym_DOLLARerror] = ACTIONS(1481), + [anon_sym_DOLLARecho] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1481), + [anon_sym_DOLLARswitch] = ACTIONS(1481), + [anon_sym_DOLLARfor] = ACTIONS(1481), + [anon_sym_DOLLARforeach] = ACTIONS(1481), + [anon_sym_DOLLARalignof] = ACTIONS(1481), + [anon_sym_DOLLARextnameof] = ACTIONS(1481), + [anon_sym_DOLLARnameof] = ACTIONS(1481), + [anon_sym_DOLLARoffsetof] = ACTIONS(1481), + [anon_sym_DOLLARqnameof] = ACTIONS(1481), + [anon_sym_DOLLARvaconst] = ACTIONS(1481), + [anon_sym_DOLLARvaarg] = ACTIONS(1481), + [anon_sym_DOLLARvaref] = ACTIONS(1481), + [anon_sym_DOLLARvaexpr] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_DOLLARvacount] = ACTIONS(1481), + [anon_sym_DOLLAReval] = ACTIONS(1481), + [anon_sym_DOLLARis_const] = ACTIONS(1481), + [anon_sym_DOLLARsizeof] = ACTIONS(1481), + [anon_sym_DOLLARstringify] = ACTIONS(1481), + [anon_sym_DOLLARappend] = ACTIONS(1481), + [anon_sym_DOLLARconcat] = ACTIONS(1481), + [anon_sym_DOLLARdefined] = ACTIONS(1481), + [anon_sym_DOLLARembed] = ACTIONS(1481), + [anon_sym_DOLLARand] = ACTIONS(1481), + [anon_sym_DOLLARor] = ACTIONS(1481), + [anon_sym_DOLLARfeature] = ACTIONS(1481), + [anon_sym_DOLLARassignable] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_typeid] = ACTIONS(1481), + [anon_sym_LBRACE_PIPE] = ACTIONS(1483), + [anon_sym_PIPE_RBRACE] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_ichar] = ACTIONS(1481), + [anon_sym_short] = ACTIONS(1481), + [anon_sym_ushort] = ACTIONS(1481), + [anon_sym_uint] = ACTIONS(1481), + [anon_sym_long] = ACTIONS(1481), + [anon_sym_ulong] = ACTIONS(1481), + [anon_sym_int128] = ACTIONS(1481), + [anon_sym_uint128] = ACTIONS(1481), + [anon_sym_float] = ACTIONS(1481), + [anon_sym_double] = ACTIONS(1481), + [anon_sym_float16] = ACTIONS(1481), + [anon_sym_bfloat16] = ACTIONS(1481), + [anon_sym_float128] = ACTIONS(1481), + [anon_sym_iptr] = ACTIONS(1481), + [anon_sym_uptr] = ACTIONS(1481), + [anon_sym_isz] = ACTIONS(1481), + [anon_sym_usz] = ACTIONS(1481), + [anon_sym_anyfault] = ACTIONS(1481), + [anon_sym_any] = ACTIONS(1481), + [anon_sym_DOLLARtypeof] = ACTIONS(1481), + [anon_sym_DOLLARtypefrom] = ACTIONS(1481), + [anon_sym_DOLLARevaltype] = ACTIONS(1481), + [anon_sym_DOLLARvatype] = ACTIONS(1481), + [sym_real_literal] = ACTIONS(1483), }, - [430] = { - [sym_line_comment] = STATE(430), - [sym_doc_comment] = STATE(430), - [sym_block_comment] = STATE(430), - [sym_ident] = ACTIONS(1623), - [sym_integer_literal] = ACTIONS(1625), - [anon_sym_SQUOTE] = ACTIONS(1625), - [anon_sym_DQUOTE] = ACTIONS(1625), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_bytes_literal] = ACTIONS(1625), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1623), - [sym_at_ident] = ACTIONS(1625), - [sym_hash_ident] = ACTIONS(1625), - [sym_type_ident] = ACTIONS(1625), - [sym_ct_type_ident] = ACTIONS(1625), - [sym_const_ident] = ACTIONS(1623), - [sym_builtin] = ACTIONS(1625), - [anon_sym_LPAREN] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_static] = ACTIONS(1623), - [anon_sym_tlocal] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1625), - [anon_sym_fn] = ACTIONS(1623), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_RBRACE] = ACTIONS(1625), - [anon_sym_const] = ACTIONS(1623), - [anon_sym_var] = ACTIONS(1623), - [anon_sym_return] = ACTIONS(1623), - [anon_sym_continue] = ACTIONS(1623), - [anon_sym_break] = ACTIONS(1623), - [anon_sym_defer] = ACTIONS(1623), - [anon_sym_assert] = ACTIONS(1623), - [anon_sym_case] = ACTIONS(1623), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_nextcase] = ACTIONS(1623), - [anon_sym_switch] = ACTIONS(1623), - [anon_sym_AMP_AMP] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1623), - [anon_sym_for] = ACTIONS(1623), - [anon_sym_foreach] = ACTIONS(1623), - [anon_sym_foreach_r] = ACTIONS(1623), - [anon_sym_while] = ACTIONS(1623), - [anon_sym_do] = ACTIONS(1623), - [anon_sym_int] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_asm] = ACTIONS(1623), - [anon_sym_DOLLARassert] = ACTIONS(1623), - [anon_sym_DOLLARerror] = ACTIONS(1623), - [anon_sym_DOLLARecho] = ACTIONS(1623), - [anon_sym_DOLLARif] = ACTIONS(1623), - [anon_sym_DOLLARswitch] = ACTIONS(1623), - [anon_sym_DOLLARfor] = ACTIONS(1623), - [anon_sym_DOLLARforeach] = ACTIONS(1623), - [anon_sym_DOLLARalignof] = ACTIONS(1623), - [anon_sym_DOLLARextnameof] = ACTIONS(1623), - [anon_sym_DOLLARnameof] = ACTIONS(1623), - [anon_sym_DOLLARoffsetof] = ACTIONS(1623), - [anon_sym_DOLLARqnameof] = ACTIONS(1623), - [anon_sym_DOLLAReval] = ACTIONS(1623), - [anon_sym_DOLLARdefined] = ACTIONS(1623), - [anon_sym_DOLLARsizeof] = ACTIONS(1623), - [anon_sym_DOLLARstringify] = ACTIONS(1623), - [anon_sym_DOLLARis_const] = ACTIONS(1623), - [anon_sym_DOLLARvaconst] = ACTIONS(1623), - [anon_sym_DOLLARvaarg] = ACTIONS(1623), - [anon_sym_DOLLARvaref] = ACTIONS(1623), - [anon_sym_DOLLARvaexpr] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_null] = ACTIONS(1623), - [anon_sym_DOLLARvacount] = ACTIONS(1623), - [anon_sym_DOLLARfeature] = ACTIONS(1623), - [anon_sym_DOLLARand] = ACTIONS(1623), - [anon_sym_DOLLARor] = ACTIONS(1623), - [anon_sym_DOLLARassignable] = ACTIONS(1623), - [anon_sym_DOLLARembed] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1625), - [anon_sym_TILDE] = ACTIONS(1625), - [anon_sym_PLUS_PLUS] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1625), - [anon_sym_typeid] = ACTIONS(1623), - [anon_sym_LBRACE_PIPE] = ACTIONS(1625), - [anon_sym_PIPE_RBRACE] = ACTIONS(1625), - [anon_sym_void] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_ichar] = ACTIONS(1623), - [anon_sym_short] = ACTIONS(1623), - [anon_sym_ushort] = ACTIONS(1623), - [anon_sym_uint] = ACTIONS(1623), - [anon_sym_long] = ACTIONS(1623), - [anon_sym_ulong] = ACTIONS(1623), - [anon_sym_int128] = ACTIONS(1623), - [anon_sym_uint128] = ACTIONS(1623), - [anon_sym_float] = ACTIONS(1623), - [anon_sym_double] = ACTIONS(1623), - [anon_sym_float16] = ACTIONS(1623), - [anon_sym_bfloat16] = ACTIONS(1623), - [anon_sym_float128] = ACTIONS(1623), - [anon_sym_iptr] = ACTIONS(1623), - [anon_sym_uptr] = ACTIONS(1623), - [anon_sym_isz] = ACTIONS(1623), - [anon_sym_usz] = ACTIONS(1623), - [anon_sym_anyfault] = ACTIONS(1623), - [anon_sym_any] = ACTIONS(1623), - [anon_sym_DOLLARtypeof] = ACTIONS(1623), - [anon_sym_DOLLARtypefrom] = ACTIONS(1623), - [anon_sym_DOLLARvatype] = ACTIONS(1623), - [anon_sym_DOLLARevaltype] = ACTIONS(1623), - [sym_real_literal] = ACTIONS(1625), + [373] = { + [sym_line_comment] = STATE(373), + [sym_doc_comment] = STATE(373), + [sym_block_comment] = STATE(373), + [sym_ident] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_BQUOTE] = ACTIONS(1487), + [sym_bytes_literal] = ACTIONS(1487), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1485), + [sym_at_ident] = ACTIONS(1487), + [sym_hash_ident] = ACTIONS(1487), + [sym_type_ident] = ACTIONS(1487), + [sym_ct_type_ident] = ACTIONS(1487), + [sym_const_ident] = ACTIONS(1485), + [sym_builtin] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_tlocal] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_var] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_defer] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1485), + [anon_sym_case] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(1485), + [anon_sym_nextcase] = ACTIONS(1485), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_foreach] = ACTIONS(1485), + [anon_sym_foreach_r] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_int] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_asm] = ACTIONS(1485), + [anon_sym_DOLLARassert] = ACTIONS(1485), + [anon_sym_DOLLARerror] = ACTIONS(1485), + [anon_sym_DOLLARecho] = ACTIONS(1485), + [anon_sym_DOLLARif] = ACTIONS(1485), + [anon_sym_DOLLARswitch] = ACTIONS(1485), + [anon_sym_DOLLARfor] = ACTIONS(1485), + [anon_sym_DOLLARforeach] = ACTIONS(1485), + [anon_sym_DOLLARalignof] = ACTIONS(1485), + [anon_sym_DOLLARextnameof] = ACTIONS(1485), + [anon_sym_DOLLARnameof] = ACTIONS(1485), + [anon_sym_DOLLARoffsetof] = ACTIONS(1485), + [anon_sym_DOLLARqnameof] = ACTIONS(1485), + [anon_sym_DOLLARvaconst] = ACTIONS(1485), + [anon_sym_DOLLARvaarg] = ACTIONS(1485), + [anon_sym_DOLLARvaref] = ACTIONS(1485), + [anon_sym_DOLLARvaexpr] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_DOLLARvacount] = ACTIONS(1485), + [anon_sym_DOLLAReval] = ACTIONS(1485), + [anon_sym_DOLLARis_const] = ACTIONS(1485), + [anon_sym_DOLLARsizeof] = ACTIONS(1485), + [anon_sym_DOLLARstringify] = ACTIONS(1485), + [anon_sym_DOLLARappend] = ACTIONS(1485), + [anon_sym_DOLLARconcat] = ACTIONS(1485), + [anon_sym_DOLLARdefined] = ACTIONS(1485), + [anon_sym_DOLLARembed] = ACTIONS(1485), + [anon_sym_DOLLARand] = ACTIONS(1485), + [anon_sym_DOLLARor] = ACTIONS(1485), + [anon_sym_DOLLARfeature] = ACTIONS(1485), + [anon_sym_DOLLARassignable] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_typeid] = ACTIONS(1485), + [anon_sym_LBRACE_PIPE] = ACTIONS(1487), + [anon_sym_PIPE_RBRACE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_ichar] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_ushort] = ACTIONS(1485), + [anon_sym_uint] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_ulong] = ACTIONS(1485), + [anon_sym_int128] = ACTIONS(1485), + [anon_sym_uint128] = ACTIONS(1485), + [anon_sym_float] = ACTIONS(1485), + [anon_sym_double] = ACTIONS(1485), + [anon_sym_float16] = ACTIONS(1485), + [anon_sym_bfloat16] = ACTIONS(1485), + [anon_sym_float128] = ACTIONS(1485), + [anon_sym_iptr] = ACTIONS(1485), + [anon_sym_uptr] = ACTIONS(1485), + [anon_sym_isz] = ACTIONS(1485), + [anon_sym_usz] = ACTIONS(1485), + [anon_sym_anyfault] = ACTIONS(1485), + [anon_sym_any] = ACTIONS(1485), + [anon_sym_DOLLARtypeof] = ACTIONS(1485), + [anon_sym_DOLLARtypefrom] = ACTIONS(1485), + [anon_sym_DOLLARevaltype] = ACTIONS(1485), + [anon_sym_DOLLARvatype] = ACTIONS(1485), + [sym_real_literal] = ACTIONS(1487), }, - [431] = { - [sym_line_comment] = STATE(431), - [sym_doc_comment] = STATE(431), - [sym_block_comment] = STATE(431), - [sym_ident] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [anon_sym_BQUOTE] = ACTIONS(1629), - [sym_bytes_literal] = ACTIONS(1629), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1627), - [sym_at_ident] = ACTIONS(1629), - [sym_hash_ident] = ACTIONS(1629), - [sym_type_ident] = ACTIONS(1629), - [sym_ct_type_ident] = ACTIONS(1629), - [sym_const_ident] = ACTIONS(1627), - [sym_builtin] = ACTIONS(1629), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_AMP] = ACTIONS(1627), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_tlocal] = ACTIONS(1627), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_fn] = ACTIONS(1627), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_RBRACE] = ACTIONS(1629), - [anon_sym_const] = ACTIONS(1627), - [anon_sym_var] = ACTIONS(1627), - [anon_sym_return] = ACTIONS(1627), - [anon_sym_continue] = ACTIONS(1627), - [anon_sym_break] = ACTIONS(1627), - [anon_sym_defer] = ACTIONS(1627), - [anon_sym_assert] = ACTIONS(1627), - [anon_sym_case] = ACTIONS(1627), - [anon_sym_default] = ACTIONS(1627), - [anon_sym_nextcase] = ACTIONS(1627), - [anon_sym_switch] = ACTIONS(1627), - [anon_sym_AMP_AMP] = ACTIONS(1629), - [anon_sym_if] = ACTIONS(1627), - [anon_sym_for] = ACTIONS(1627), - [anon_sym_foreach] = ACTIONS(1627), - [anon_sym_foreach_r] = ACTIONS(1627), - [anon_sym_while] = ACTIONS(1627), - [anon_sym_do] = ACTIONS(1627), - [anon_sym_int] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_STAR] = ACTIONS(1629), - [anon_sym_asm] = ACTIONS(1627), - [anon_sym_DOLLARassert] = ACTIONS(1627), - [anon_sym_DOLLARerror] = ACTIONS(1627), - [anon_sym_DOLLARecho] = ACTIONS(1627), - [anon_sym_DOLLARif] = ACTIONS(1627), - [anon_sym_DOLLARswitch] = ACTIONS(1627), - [anon_sym_DOLLARfor] = ACTIONS(1627), - [anon_sym_DOLLARforeach] = ACTIONS(1627), - [anon_sym_DOLLARalignof] = ACTIONS(1627), - [anon_sym_DOLLARextnameof] = ACTIONS(1627), - [anon_sym_DOLLARnameof] = ACTIONS(1627), - [anon_sym_DOLLARoffsetof] = ACTIONS(1627), - [anon_sym_DOLLARqnameof] = ACTIONS(1627), - [anon_sym_DOLLAReval] = ACTIONS(1627), - [anon_sym_DOLLARdefined] = ACTIONS(1627), - [anon_sym_DOLLARsizeof] = ACTIONS(1627), - [anon_sym_DOLLARstringify] = ACTIONS(1627), - [anon_sym_DOLLARis_const] = ACTIONS(1627), - [anon_sym_DOLLARvaconst] = ACTIONS(1627), - [anon_sym_DOLLARvaarg] = ACTIONS(1627), - [anon_sym_DOLLARvaref] = ACTIONS(1627), - [anon_sym_DOLLARvaexpr] = ACTIONS(1627), - [anon_sym_true] = ACTIONS(1627), - [anon_sym_false] = ACTIONS(1627), - [anon_sym_null] = ACTIONS(1627), - [anon_sym_DOLLARvacount] = ACTIONS(1627), - [anon_sym_DOLLARfeature] = ACTIONS(1627), - [anon_sym_DOLLARand] = ACTIONS(1627), - [anon_sym_DOLLARor] = ACTIONS(1627), - [anon_sym_DOLLARassignable] = ACTIONS(1627), - [anon_sym_DOLLARembed] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1629), - [anon_sym_TILDE] = ACTIONS(1629), - [anon_sym_PLUS_PLUS] = ACTIONS(1629), - [anon_sym_DASH_DASH] = ACTIONS(1629), - [anon_sym_typeid] = ACTIONS(1627), - [anon_sym_LBRACE_PIPE] = ACTIONS(1629), - [anon_sym_PIPE_RBRACE] = ACTIONS(1629), - [anon_sym_void] = ACTIONS(1627), - [anon_sym_bool] = ACTIONS(1627), - [anon_sym_char] = ACTIONS(1627), - [anon_sym_ichar] = ACTIONS(1627), - [anon_sym_short] = ACTIONS(1627), - [anon_sym_ushort] = ACTIONS(1627), - [anon_sym_uint] = ACTIONS(1627), - [anon_sym_long] = ACTIONS(1627), - [anon_sym_ulong] = ACTIONS(1627), - [anon_sym_int128] = ACTIONS(1627), - [anon_sym_uint128] = ACTIONS(1627), - [anon_sym_float] = ACTIONS(1627), - [anon_sym_double] = ACTIONS(1627), - [anon_sym_float16] = ACTIONS(1627), - [anon_sym_bfloat16] = ACTIONS(1627), - [anon_sym_float128] = ACTIONS(1627), - [anon_sym_iptr] = ACTIONS(1627), - [anon_sym_uptr] = ACTIONS(1627), - [anon_sym_isz] = ACTIONS(1627), - [anon_sym_usz] = ACTIONS(1627), - [anon_sym_anyfault] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_DOLLARtypeof] = ACTIONS(1627), - [anon_sym_DOLLARtypefrom] = ACTIONS(1627), - [anon_sym_DOLLARvatype] = ACTIONS(1627), - [anon_sym_DOLLARevaltype] = ACTIONS(1627), - [sym_real_literal] = ACTIONS(1629), + [374] = { + [sym_line_comment] = STATE(374), + [sym_doc_comment] = STATE(374), + [sym_block_comment] = STATE(374), + [sym_ident] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_BQUOTE] = ACTIONS(1491), + [sym_bytes_literal] = ACTIONS(1491), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1489), + [sym_at_ident] = ACTIONS(1491), + [sym_hash_ident] = ACTIONS(1491), + [sym_type_ident] = ACTIONS(1491), + [sym_ct_type_ident] = ACTIONS(1491), + [sym_const_ident] = ACTIONS(1489), + [sym_builtin] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_tlocal] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_var] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_defer] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1489), + [anon_sym_case] = ACTIONS(1489), + [anon_sym_default] = ACTIONS(1489), + [anon_sym_nextcase] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_foreach] = ACTIONS(1489), + [anon_sym_foreach_r] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_int] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_asm] = ACTIONS(1489), + [anon_sym_DOLLARassert] = ACTIONS(1489), + [anon_sym_DOLLARerror] = ACTIONS(1489), + [anon_sym_DOLLARecho] = ACTIONS(1489), + [anon_sym_DOLLARif] = ACTIONS(1489), + [anon_sym_DOLLARswitch] = ACTIONS(1489), + [anon_sym_DOLLARfor] = ACTIONS(1489), + [anon_sym_DOLLARforeach] = ACTIONS(1489), + [anon_sym_DOLLARalignof] = ACTIONS(1489), + [anon_sym_DOLLARextnameof] = ACTIONS(1489), + [anon_sym_DOLLARnameof] = ACTIONS(1489), + [anon_sym_DOLLARoffsetof] = ACTIONS(1489), + [anon_sym_DOLLARqnameof] = ACTIONS(1489), + [anon_sym_DOLLARvaconst] = ACTIONS(1489), + [anon_sym_DOLLARvaarg] = ACTIONS(1489), + [anon_sym_DOLLARvaref] = ACTIONS(1489), + [anon_sym_DOLLARvaexpr] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_DOLLARvacount] = ACTIONS(1489), + [anon_sym_DOLLAReval] = ACTIONS(1489), + [anon_sym_DOLLARis_const] = ACTIONS(1489), + [anon_sym_DOLLARsizeof] = ACTIONS(1489), + [anon_sym_DOLLARstringify] = ACTIONS(1489), + [anon_sym_DOLLARappend] = ACTIONS(1489), + [anon_sym_DOLLARconcat] = ACTIONS(1489), + [anon_sym_DOLLARdefined] = ACTIONS(1489), + [anon_sym_DOLLARembed] = ACTIONS(1489), + [anon_sym_DOLLARand] = ACTIONS(1489), + [anon_sym_DOLLARor] = ACTIONS(1489), + [anon_sym_DOLLARfeature] = ACTIONS(1489), + [anon_sym_DOLLARassignable] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_typeid] = ACTIONS(1489), + [anon_sym_LBRACE_PIPE] = ACTIONS(1491), + [anon_sym_PIPE_RBRACE] = ACTIONS(1491), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_ichar] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_ushort] = ACTIONS(1489), + [anon_sym_uint] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_ulong] = ACTIONS(1489), + [anon_sym_int128] = ACTIONS(1489), + [anon_sym_uint128] = ACTIONS(1489), + [anon_sym_float] = ACTIONS(1489), + [anon_sym_double] = ACTIONS(1489), + [anon_sym_float16] = ACTIONS(1489), + [anon_sym_bfloat16] = ACTIONS(1489), + [anon_sym_float128] = ACTIONS(1489), + [anon_sym_iptr] = ACTIONS(1489), + [anon_sym_uptr] = ACTIONS(1489), + [anon_sym_isz] = ACTIONS(1489), + [anon_sym_usz] = ACTIONS(1489), + [anon_sym_anyfault] = ACTIONS(1489), + [anon_sym_any] = ACTIONS(1489), + [anon_sym_DOLLARtypeof] = ACTIONS(1489), + [anon_sym_DOLLARtypefrom] = ACTIONS(1489), + [anon_sym_DOLLARevaltype] = ACTIONS(1489), + [anon_sym_DOLLARvatype] = ACTIONS(1489), + [sym_real_literal] = ACTIONS(1491), }, - [432] = { - [sym_line_comment] = STATE(432), - [sym_doc_comment] = STATE(432), - [sym_block_comment] = STATE(432), - [sym_ident] = ACTIONS(1631), - [sym_integer_literal] = ACTIONS(1633), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_bytes_literal] = ACTIONS(1633), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1631), - [sym_at_ident] = ACTIONS(1633), - [sym_hash_ident] = ACTIONS(1633), - [sym_type_ident] = ACTIONS(1633), - [sym_ct_type_ident] = ACTIONS(1633), - [sym_const_ident] = ACTIONS(1631), - [sym_builtin] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_AMP] = ACTIONS(1631), - [anon_sym_static] = ACTIONS(1631), - [anon_sym_tlocal] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_defer] = ACTIONS(1631), - [anon_sym_assert] = ACTIONS(1631), - [anon_sym_case] = ACTIONS(1631), - [anon_sym_default] = ACTIONS(1631), - [anon_sym_nextcase] = ACTIONS(1631), - [anon_sym_switch] = ACTIONS(1631), - [anon_sym_AMP_AMP] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_foreach] = ACTIONS(1631), - [anon_sym_foreach_r] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_int] = ACTIONS(1631), - [anon_sym_PLUS] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_asm] = ACTIONS(1631), - [anon_sym_DOLLARassert] = ACTIONS(1631), - [anon_sym_DOLLARerror] = ACTIONS(1631), - [anon_sym_DOLLARecho] = ACTIONS(1631), - [anon_sym_DOLLARif] = ACTIONS(1631), - [anon_sym_DOLLARswitch] = ACTIONS(1631), - [anon_sym_DOLLARfor] = ACTIONS(1631), - [anon_sym_DOLLARforeach] = ACTIONS(1631), - [anon_sym_DOLLARalignof] = ACTIONS(1631), - [anon_sym_DOLLARextnameof] = ACTIONS(1631), - [anon_sym_DOLLARnameof] = ACTIONS(1631), - [anon_sym_DOLLARoffsetof] = ACTIONS(1631), - [anon_sym_DOLLARqnameof] = ACTIONS(1631), - [anon_sym_DOLLAReval] = ACTIONS(1631), - [anon_sym_DOLLARdefined] = ACTIONS(1631), - [anon_sym_DOLLARsizeof] = ACTIONS(1631), - [anon_sym_DOLLARstringify] = ACTIONS(1631), - [anon_sym_DOLLARis_const] = ACTIONS(1631), - [anon_sym_DOLLARvaconst] = ACTIONS(1631), - [anon_sym_DOLLARvaarg] = ACTIONS(1631), - [anon_sym_DOLLARvaref] = ACTIONS(1631), - [anon_sym_DOLLARvaexpr] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1631), - [anon_sym_false] = ACTIONS(1631), - [anon_sym_null] = ACTIONS(1631), - [anon_sym_DOLLARvacount] = ACTIONS(1631), - [anon_sym_DOLLARfeature] = ACTIONS(1631), - [anon_sym_DOLLARand] = ACTIONS(1631), - [anon_sym_DOLLARor] = ACTIONS(1631), - [anon_sym_DOLLARassignable] = ACTIONS(1631), - [anon_sym_DOLLARembed] = ACTIONS(1631), - [anon_sym_BANG] = ACTIONS(1633), - [anon_sym_TILDE] = ACTIONS(1633), - [anon_sym_PLUS_PLUS] = ACTIONS(1633), - [anon_sym_DASH_DASH] = ACTIONS(1633), - [anon_sym_typeid] = ACTIONS(1631), - [anon_sym_LBRACE_PIPE] = ACTIONS(1633), - [anon_sym_PIPE_RBRACE] = ACTIONS(1633), - [anon_sym_void] = ACTIONS(1631), - [anon_sym_bool] = ACTIONS(1631), - [anon_sym_char] = ACTIONS(1631), - [anon_sym_ichar] = ACTIONS(1631), - [anon_sym_short] = ACTIONS(1631), - [anon_sym_ushort] = ACTIONS(1631), - [anon_sym_uint] = ACTIONS(1631), - [anon_sym_long] = ACTIONS(1631), - [anon_sym_ulong] = ACTIONS(1631), - [anon_sym_int128] = ACTIONS(1631), - [anon_sym_uint128] = ACTIONS(1631), - [anon_sym_float] = ACTIONS(1631), - [anon_sym_double] = ACTIONS(1631), - [anon_sym_float16] = ACTIONS(1631), - [anon_sym_bfloat16] = ACTIONS(1631), - [anon_sym_float128] = ACTIONS(1631), - [anon_sym_iptr] = ACTIONS(1631), - [anon_sym_uptr] = ACTIONS(1631), - [anon_sym_isz] = ACTIONS(1631), - [anon_sym_usz] = ACTIONS(1631), - [anon_sym_anyfault] = ACTIONS(1631), - [anon_sym_any] = ACTIONS(1631), - [anon_sym_DOLLARtypeof] = ACTIONS(1631), - [anon_sym_DOLLARtypefrom] = ACTIONS(1631), - [anon_sym_DOLLARvatype] = ACTIONS(1631), - [anon_sym_DOLLARevaltype] = ACTIONS(1631), - [sym_real_literal] = ACTIONS(1633), + [375] = { + [sym_line_comment] = STATE(375), + [sym_doc_comment] = STATE(375), + [sym_block_comment] = STATE(375), + [sym_ident] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_BQUOTE] = ACTIONS(1495), + [sym_bytes_literal] = ACTIONS(1495), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1493), + [sym_at_ident] = ACTIONS(1495), + [sym_hash_ident] = ACTIONS(1495), + [sym_type_ident] = ACTIONS(1495), + [sym_ct_type_ident] = ACTIONS(1495), + [sym_const_ident] = ACTIONS(1493), + [sym_builtin] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_tlocal] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_RBRACE] = ACTIONS(1495), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_var] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_defer] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_case] = ACTIONS(1493), + [anon_sym_default] = ACTIONS(1493), + [anon_sym_nextcase] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_foreach] = ACTIONS(1493), + [anon_sym_foreach_r] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_asm] = ACTIONS(1493), + [anon_sym_DOLLARassert] = ACTIONS(1493), + [anon_sym_DOLLARerror] = ACTIONS(1493), + [anon_sym_DOLLARecho] = ACTIONS(1493), + [anon_sym_DOLLARif] = ACTIONS(1493), + [anon_sym_DOLLARswitch] = ACTIONS(1493), + [anon_sym_DOLLARfor] = ACTIONS(1493), + [anon_sym_DOLLARforeach] = ACTIONS(1493), + [anon_sym_DOLLARalignof] = ACTIONS(1493), + [anon_sym_DOLLARextnameof] = ACTIONS(1493), + [anon_sym_DOLLARnameof] = ACTIONS(1493), + [anon_sym_DOLLARoffsetof] = ACTIONS(1493), + [anon_sym_DOLLARqnameof] = ACTIONS(1493), + [anon_sym_DOLLARvaconst] = ACTIONS(1493), + [anon_sym_DOLLARvaarg] = ACTIONS(1493), + [anon_sym_DOLLARvaref] = ACTIONS(1493), + [anon_sym_DOLLARvaexpr] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_DOLLARvacount] = ACTIONS(1493), + [anon_sym_DOLLAReval] = ACTIONS(1493), + [anon_sym_DOLLARis_const] = ACTIONS(1493), + [anon_sym_DOLLARsizeof] = ACTIONS(1493), + [anon_sym_DOLLARstringify] = ACTIONS(1493), + [anon_sym_DOLLARappend] = ACTIONS(1493), + [anon_sym_DOLLARconcat] = ACTIONS(1493), + [anon_sym_DOLLARdefined] = ACTIONS(1493), + [anon_sym_DOLLARembed] = ACTIONS(1493), + [anon_sym_DOLLARand] = ACTIONS(1493), + [anon_sym_DOLLARor] = ACTIONS(1493), + [anon_sym_DOLLARfeature] = ACTIONS(1493), + [anon_sym_DOLLARassignable] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_typeid] = ACTIONS(1493), + [anon_sym_LBRACE_PIPE] = ACTIONS(1495), + [anon_sym_PIPE_RBRACE] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_ichar] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_ushort] = ACTIONS(1493), + [anon_sym_uint] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_ulong] = ACTIONS(1493), + [anon_sym_int128] = ACTIONS(1493), + [anon_sym_uint128] = ACTIONS(1493), + [anon_sym_float] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_float16] = ACTIONS(1493), + [anon_sym_bfloat16] = ACTIONS(1493), + [anon_sym_float128] = ACTIONS(1493), + [anon_sym_iptr] = ACTIONS(1493), + [anon_sym_uptr] = ACTIONS(1493), + [anon_sym_isz] = ACTIONS(1493), + [anon_sym_usz] = ACTIONS(1493), + [anon_sym_anyfault] = ACTIONS(1493), + [anon_sym_any] = ACTIONS(1493), + [anon_sym_DOLLARtypeof] = ACTIONS(1493), + [anon_sym_DOLLARtypefrom] = ACTIONS(1493), + [anon_sym_DOLLARevaltype] = ACTIONS(1493), + [anon_sym_DOLLARvatype] = ACTIONS(1493), + [sym_real_literal] = ACTIONS(1495), }, - [433] = { - [sym_line_comment] = STATE(433), - [sym_doc_comment] = STATE(433), - [sym_block_comment] = STATE(433), - [sym_ident] = ACTIONS(1539), - [sym_integer_literal] = ACTIONS(1541), - [anon_sym_SQUOTE] = ACTIONS(1541), - [anon_sym_DQUOTE] = ACTIONS(1541), - [anon_sym_BQUOTE] = ACTIONS(1541), - [sym_bytes_literal] = ACTIONS(1541), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1539), - [sym_at_ident] = ACTIONS(1541), - [sym_hash_ident] = ACTIONS(1541), - [sym_type_ident] = ACTIONS(1541), - [sym_ct_type_ident] = ACTIONS(1541), - [sym_const_ident] = ACTIONS(1539), - [sym_builtin] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1539), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_tlocal] = ACTIONS(1539), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_fn] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_defer] = ACTIONS(1539), - [anon_sym_assert] = ACTIONS(1539), - [anon_sym_nextcase] = ACTIONS(1539), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_AMP_AMP] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_foreach] = ACTIONS(1539), - [anon_sym_foreach_r] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_int] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1539), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_asm] = ACTIONS(1539), - [anon_sym_DOLLARassert] = ACTIONS(1539), - [anon_sym_DOLLARerror] = ACTIONS(1539), - [anon_sym_DOLLARecho] = ACTIONS(1539), - [anon_sym_DOLLARif] = ACTIONS(1539), - [anon_sym_DOLLARcase] = ACTIONS(1539), - [anon_sym_DOLLARdefault] = ACTIONS(1539), - [anon_sym_DOLLARswitch] = ACTIONS(1539), - [anon_sym_DOLLARendswitch] = ACTIONS(1539), - [anon_sym_DOLLARfor] = ACTIONS(1539), - [anon_sym_DOLLARforeach] = ACTIONS(1539), - [anon_sym_DOLLARalignof] = ACTIONS(1539), - [anon_sym_DOLLARextnameof] = ACTIONS(1539), - [anon_sym_DOLLARnameof] = ACTIONS(1539), - [anon_sym_DOLLARoffsetof] = ACTIONS(1539), - [anon_sym_DOLLARqnameof] = ACTIONS(1539), - [anon_sym_DOLLAReval] = ACTIONS(1539), - [anon_sym_DOLLARdefined] = ACTIONS(1539), - [anon_sym_DOLLARsizeof] = ACTIONS(1539), - [anon_sym_DOLLARstringify] = ACTIONS(1539), - [anon_sym_DOLLARis_const] = ACTIONS(1539), - [anon_sym_DOLLARvaconst] = ACTIONS(1539), - [anon_sym_DOLLARvaarg] = ACTIONS(1539), - [anon_sym_DOLLARvaref] = ACTIONS(1539), - [anon_sym_DOLLARvaexpr] = ACTIONS(1539), - [anon_sym_true] = ACTIONS(1539), - [anon_sym_false] = ACTIONS(1539), - [anon_sym_null] = ACTIONS(1539), - [anon_sym_DOLLARvacount] = ACTIONS(1539), - [anon_sym_DOLLARfeature] = ACTIONS(1539), - [anon_sym_DOLLARand] = ACTIONS(1539), - [anon_sym_DOLLARor] = ACTIONS(1539), - [anon_sym_DOLLARassignable] = ACTIONS(1539), - [anon_sym_DOLLARembed] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1541), - [anon_sym_DASH_DASH] = ACTIONS(1541), - [anon_sym_typeid] = ACTIONS(1539), - [anon_sym_LBRACE_PIPE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1539), - [anon_sym_bool] = ACTIONS(1539), - [anon_sym_char] = ACTIONS(1539), - [anon_sym_ichar] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [anon_sym_ushort] = ACTIONS(1539), - [anon_sym_uint] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_ulong] = ACTIONS(1539), - [anon_sym_int128] = ACTIONS(1539), - [anon_sym_uint128] = ACTIONS(1539), - [anon_sym_float] = ACTIONS(1539), - [anon_sym_double] = ACTIONS(1539), - [anon_sym_float16] = ACTIONS(1539), - [anon_sym_bfloat16] = ACTIONS(1539), - [anon_sym_float128] = ACTIONS(1539), - [anon_sym_iptr] = ACTIONS(1539), - [anon_sym_uptr] = ACTIONS(1539), - [anon_sym_isz] = ACTIONS(1539), - [anon_sym_usz] = ACTIONS(1539), - [anon_sym_anyfault] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_DOLLARtypeof] = ACTIONS(1539), - [anon_sym_DOLLARtypefrom] = ACTIONS(1539), - [anon_sym_DOLLARvatype] = ACTIONS(1539), - [anon_sym_DOLLARevaltype] = ACTIONS(1539), - [sym_real_literal] = ACTIONS(1541), + [376] = { + [sym_line_comment] = STATE(376), + [sym_doc_comment] = STATE(376), + [sym_block_comment] = STATE(376), + [sym_ident] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1499), + [sym_bytes_literal] = ACTIONS(1499), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1497), + [sym_at_ident] = ACTIONS(1499), + [sym_hash_ident] = ACTIONS(1499), + [sym_type_ident] = ACTIONS(1499), + [sym_ct_type_ident] = ACTIONS(1499), + [sym_const_ident] = ACTIONS(1497), + [sym_builtin] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_tlocal] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_var] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_defer] = ACTIONS(1497), + [anon_sym_assert] = ACTIONS(1497), + [anon_sym_case] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1497), + [anon_sym_nextcase] = ACTIONS(1497), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_foreach] = ACTIONS(1497), + [anon_sym_foreach_r] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_int] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_asm] = ACTIONS(1497), + [anon_sym_DOLLARassert] = ACTIONS(1497), + [anon_sym_DOLLARerror] = ACTIONS(1497), + [anon_sym_DOLLARecho] = ACTIONS(1497), + [anon_sym_DOLLARif] = ACTIONS(1497), + [anon_sym_DOLLARswitch] = ACTIONS(1497), + [anon_sym_DOLLARfor] = ACTIONS(1497), + [anon_sym_DOLLARforeach] = ACTIONS(1497), + [anon_sym_DOLLARalignof] = ACTIONS(1497), + [anon_sym_DOLLARextnameof] = ACTIONS(1497), + [anon_sym_DOLLARnameof] = ACTIONS(1497), + [anon_sym_DOLLARoffsetof] = ACTIONS(1497), + [anon_sym_DOLLARqnameof] = ACTIONS(1497), + [anon_sym_DOLLARvaconst] = ACTIONS(1497), + [anon_sym_DOLLARvaarg] = ACTIONS(1497), + [anon_sym_DOLLARvaref] = ACTIONS(1497), + [anon_sym_DOLLARvaexpr] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_DOLLARvacount] = ACTIONS(1497), + [anon_sym_DOLLAReval] = ACTIONS(1497), + [anon_sym_DOLLARis_const] = ACTIONS(1497), + [anon_sym_DOLLARsizeof] = ACTIONS(1497), + [anon_sym_DOLLARstringify] = ACTIONS(1497), + [anon_sym_DOLLARappend] = ACTIONS(1497), + [anon_sym_DOLLARconcat] = ACTIONS(1497), + [anon_sym_DOLLARdefined] = ACTIONS(1497), + [anon_sym_DOLLARembed] = ACTIONS(1497), + [anon_sym_DOLLARand] = ACTIONS(1497), + [anon_sym_DOLLARor] = ACTIONS(1497), + [anon_sym_DOLLARfeature] = ACTIONS(1497), + [anon_sym_DOLLARassignable] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_typeid] = ACTIONS(1497), + [anon_sym_LBRACE_PIPE] = ACTIONS(1499), + [anon_sym_PIPE_RBRACE] = ACTIONS(1499), + [anon_sym_void] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_ichar] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [anon_sym_ushort] = ACTIONS(1497), + [anon_sym_uint] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_ulong] = ACTIONS(1497), + [anon_sym_int128] = ACTIONS(1497), + [anon_sym_uint128] = ACTIONS(1497), + [anon_sym_float] = ACTIONS(1497), + [anon_sym_double] = ACTIONS(1497), + [anon_sym_float16] = ACTIONS(1497), + [anon_sym_bfloat16] = ACTIONS(1497), + [anon_sym_float128] = ACTIONS(1497), + [anon_sym_iptr] = ACTIONS(1497), + [anon_sym_uptr] = ACTIONS(1497), + [anon_sym_isz] = ACTIONS(1497), + [anon_sym_usz] = ACTIONS(1497), + [anon_sym_anyfault] = ACTIONS(1497), + [anon_sym_any] = ACTIONS(1497), + [anon_sym_DOLLARtypeof] = ACTIONS(1497), + [anon_sym_DOLLARtypefrom] = ACTIONS(1497), + [anon_sym_DOLLARevaltype] = ACTIONS(1497), + [anon_sym_DOLLARvatype] = ACTIONS(1497), + [sym_real_literal] = ACTIONS(1499), }, - [434] = { - [sym_line_comment] = STATE(434), - [sym_doc_comment] = STATE(434), - [sym_block_comment] = STATE(434), - [sym_ident] = ACTIONS(1631), - [sym_integer_literal] = ACTIONS(1633), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_bytes_literal] = ACTIONS(1633), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1631), - [sym_at_ident] = ACTIONS(1633), - [sym_hash_ident] = ACTIONS(1633), - [sym_type_ident] = ACTIONS(1633), - [sym_ct_type_ident] = ACTIONS(1633), - [sym_const_ident] = ACTIONS(1631), - [sym_builtin] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_AMP] = ACTIONS(1631), - [anon_sym_static] = ACTIONS(1631), - [anon_sym_tlocal] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_defer] = ACTIONS(1631), - [anon_sym_assert] = ACTIONS(1631), - [anon_sym_nextcase] = ACTIONS(1631), - [anon_sym_switch] = ACTIONS(1631), - [anon_sym_AMP_AMP] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_foreach] = ACTIONS(1631), - [anon_sym_foreach_r] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_int] = ACTIONS(1631), - [anon_sym_PLUS] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_asm] = ACTIONS(1631), - [anon_sym_DOLLARassert] = ACTIONS(1631), - [anon_sym_DOLLARerror] = ACTIONS(1631), - [anon_sym_DOLLARecho] = ACTIONS(1631), - [anon_sym_DOLLARif] = ACTIONS(1631), - [anon_sym_DOLLARcase] = ACTIONS(1631), - [anon_sym_DOLLARdefault] = ACTIONS(1631), - [anon_sym_DOLLARswitch] = ACTIONS(1631), - [anon_sym_DOLLARendswitch] = ACTIONS(1631), - [anon_sym_DOLLARfor] = ACTIONS(1631), - [anon_sym_DOLLARforeach] = ACTIONS(1631), - [anon_sym_DOLLARalignof] = ACTIONS(1631), - [anon_sym_DOLLARextnameof] = ACTIONS(1631), - [anon_sym_DOLLARnameof] = ACTIONS(1631), - [anon_sym_DOLLARoffsetof] = ACTIONS(1631), - [anon_sym_DOLLARqnameof] = ACTIONS(1631), - [anon_sym_DOLLAReval] = ACTIONS(1631), - [anon_sym_DOLLARdefined] = ACTIONS(1631), - [anon_sym_DOLLARsizeof] = ACTIONS(1631), - [anon_sym_DOLLARstringify] = ACTIONS(1631), - [anon_sym_DOLLARis_const] = ACTIONS(1631), - [anon_sym_DOLLARvaconst] = ACTIONS(1631), - [anon_sym_DOLLARvaarg] = ACTIONS(1631), - [anon_sym_DOLLARvaref] = ACTIONS(1631), - [anon_sym_DOLLARvaexpr] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1631), - [anon_sym_false] = ACTIONS(1631), - [anon_sym_null] = ACTIONS(1631), - [anon_sym_DOLLARvacount] = ACTIONS(1631), - [anon_sym_DOLLARfeature] = ACTIONS(1631), - [anon_sym_DOLLARand] = ACTIONS(1631), - [anon_sym_DOLLARor] = ACTIONS(1631), - [anon_sym_DOLLARassignable] = ACTIONS(1631), - [anon_sym_DOLLARembed] = ACTIONS(1631), - [anon_sym_BANG] = ACTIONS(1633), - [anon_sym_TILDE] = ACTIONS(1633), - [anon_sym_PLUS_PLUS] = ACTIONS(1633), - [anon_sym_DASH_DASH] = ACTIONS(1633), - [anon_sym_typeid] = ACTIONS(1631), - [anon_sym_LBRACE_PIPE] = ACTIONS(1633), - [anon_sym_void] = ACTIONS(1631), - [anon_sym_bool] = ACTIONS(1631), - [anon_sym_char] = ACTIONS(1631), - [anon_sym_ichar] = ACTIONS(1631), - [anon_sym_short] = ACTIONS(1631), - [anon_sym_ushort] = ACTIONS(1631), - [anon_sym_uint] = ACTIONS(1631), - [anon_sym_long] = ACTIONS(1631), - [anon_sym_ulong] = ACTIONS(1631), - [anon_sym_int128] = ACTIONS(1631), - [anon_sym_uint128] = ACTIONS(1631), - [anon_sym_float] = ACTIONS(1631), - [anon_sym_double] = ACTIONS(1631), - [anon_sym_float16] = ACTIONS(1631), - [anon_sym_bfloat16] = ACTIONS(1631), - [anon_sym_float128] = ACTIONS(1631), - [anon_sym_iptr] = ACTIONS(1631), - [anon_sym_uptr] = ACTIONS(1631), - [anon_sym_isz] = ACTIONS(1631), - [anon_sym_usz] = ACTIONS(1631), - [anon_sym_anyfault] = ACTIONS(1631), - [anon_sym_any] = ACTIONS(1631), - [anon_sym_DOLLARtypeof] = ACTIONS(1631), - [anon_sym_DOLLARtypefrom] = ACTIONS(1631), - [anon_sym_DOLLARvatype] = ACTIONS(1631), - [anon_sym_DOLLARevaltype] = ACTIONS(1631), - [sym_real_literal] = ACTIONS(1633), + [377] = { + [sym_line_comment] = STATE(377), + [sym_doc_comment] = STATE(377), + [sym_block_comment] = STATE(377), + [sym_ident] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1503), + [anon_sym_BQUOTE] = ACTIONS(1503), + [sym_bytes_literal] = ACTIONS(1503), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1501), + [sym_at_ident] = ACTIONS(1503), + [sym_hash_ident] = ACTIONS(1503), + [sym_type_ident] = ACTIONS(1503), + [sym_ct_type_ident] = ACTIONS(1503), + [sym_const_ident] = ACTIONS(1501), + [sym_builtin] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_tlocal] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_RBRACE] = ACTIONS(1503), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_var] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_defer] = ACTIONS(1501), + [anon_sym_assert] = ACTIONS(1501), + [anon_sym_case] = ACTIONS(1501), + [anon_sym_default] = ACTIONS(1501), + [anon_sym_nextcase] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_foreach] = ACTIONS(1501), + [anon_sym_foreach_r] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_int] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym_DOLLARassert] = ACTIONS(1501), + [anon_sym_DOLLARerror] = ACTIONS(1501), + [anon_sym_DOLLARecho] = ACTIONS(1501), + [anon_sym_DOLLARif] = ACTIONS(1501), + [anon_sym_DOLLARswitch] = ACTIONS(1501), + [anon_sym_DOLLARfor] = ACTIONS(1501), + [anon_sym_DOLLARforeach] = ACTIONS(1501), + [anon_sym_DOLLARalignof] = ACTIONS(1501), + [anon_sym_DOLLARextnameof] = ACTIONS(1501), + [anon_sym_DOLLARnameof] = ACTIONS(1501), + [anon_sym_DOLLARoffsetof] = ACTIONS(1501), + [anon_sym_DOLLARqnameof] = ACTIONS(1501), + [anon_sym_DOLLARvaconst] = ACTIONS(1501), + [anon_sym_DOLLARvaarg] = ACTIONS(1501), + [anon_sym_DOLLARvaref] = ACTIONS(1501), + [anon_sym_DOLLARvaexpr] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_DOLLARvacount] = ACTIONS(1501), + [anon_sym_DOLLAReval] = ACTIONS(1501), + [anon_sym_DOLLARis_const] = ACTIONS(1501), + [anon_sym_DOLLARsizeof] = ACTIONS(1501), + [anon_sym_DOLLARstringify] = ACTIONS(1501), + [anon_sym_DOLLARappend] = ACTIONS(1501), + [anon_sym_DOLLARconcat] = ACTIONS(1501), + [anon_sym_DOLLARdefined] = ACTIONS(1501), + [anon_sym_DOLLARembed] = ACTIONS(1501), + [anon_sym_DOLLARand] = ACTIONS(1501), + [anon_sym_DOLLARor] = ACTIONS(1501), + [anon_sym_DOLLARfeature] = ACTIONS(1501), + [anon_sym_DOLLARassignable] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_typeid] = ACTIONS(1501), + [anon_sym_LBRACE_PIPE] = ACTIONS(1503), + [anon_sym_PIPE_RBRACE] = ACTIONS(1503), + [anon_sym_void] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_ichar] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_ushort] = ACTIONS(1501), + [anon_sym_uint] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_ulong] = ACTIONS(1501), + [anon_sym_int128] = ACTIONS(1501), + [anon_sym_uint128] = ACTIONS(1501), + [anon_sym_float] = ACTIONS(1501), + [anon_sym_double] = ACTIONS(1501), + [anon_sym_float16] = ACTIONS(1501), + [anon_sym_bfloat16] = ACTIONS(1501), + [anon_sym_float128] = ACTIONS(1501), + [anon_sym_iptr] = ACTIONS(1501), + [anon_sym_uptr] = ACTIONS(1501), + [anon_sym_isz] = ACTIONS(1501), + [anon_sym_usz] = ACTIONS(1501), + [anon_sym_anyfault] = ACTIONS(1501), + [anon_sym_any] = ACTIONS(1501), + [anon_sym_DOLLARtypeof] = ACTIONS(1501), + [anon_sym_DOLLARtypefrom] = ACTIONS(1501), + [anon_sym_DOLLARevaltype] = ACTIONS(1501), + [anon_sym_DOLLARvatype] = ACTIONS(1501), + [sym_real_literal] = ACTIONS(1503), }, - [435] = { - [sym_line_comment] = STATE(435), - [sym_doc_comment] = STATE(435), - [sym_block_comment] = STATE(435), - [sym_ident] = ACTIONS(1365), - [sym_integer_literal] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1367), - [sym_bytes_literal] = ACTIONS(1367), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1365), - [sym_at_ident] = ACTIONS(1367), - [sym_hash_ident] = ACTIONS(1367), - [sym_type_ident] = ACTIONS(1367), - [sym_ct_type_ident] = ACTIONS(1367), - [sym_const_ident] = ACTIONS(1365), - [sym_builtin] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_tlocal] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_fn] = ACTIONS(1365), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_var] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_defer] = ACTIONS(1365), - [anon_sym_assert] = ACTIONS(1365), - [anon_sym_nextcase] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_foreach] = ACTIONS(1365), - [anon_sym_foreach_r] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_do] = ACTIONS(1365), - [anon_sym_int] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_asm] = ACTIONS(1365), - [anon_sym_DOLLARassert] = ACTIONS(1365), - [anon_sym_DOLLARerror] = ACTIONS(1365), - [anon_sym_DOLLARecho] = ACTIONS(1365), - [anon_sym_DOLLARif] = ACTIONS(1365), - [anon_sym_DOLLARcase] = ACTIONS(1365), - [anon_sym_DOLLARdefault] = ACTIONS(1365), - [anon_sym_DOLLARswitch] = ACTIONS(1365), - [anon_sym_DOLLARendswitch] = ACTIONS(1365), - [anon_sym_DOLLARfor] = ACTIONS(1365), - [anon_sym_DOLLARforeach] = ACTIONS(1365), - [anon_sym_DOLLARalignof] = ACTIONS(1365), - [anon_sym_DOLLARextnameof] = ACTIONS(1365), - [anon_sym_DOLLARnameof] = ACTIONS(1365), - [anon_sym_DOLLARoffsetof] = ACTIONS(1365), - [anon_sym_DOLLARqnameof] = ACTIONS(1365), - [anon_sym_DOLLAReval] = ACTIONS(1365), - [anon_sym_DOLLARdefined] = ACTIONS(1365), - [anon_sym_DOLLARsizeof] = ACTIONS(1365), - [anon_sym_DOLLARstringify] = ACTIONS(1365), - [anon_sym_DOLLARis_const] = ACTIONS(1365), - [anon_sym_DOLLARvaconst] = ACTIONS(1365), - [anon_sym_DOLLARvaarg] = ACTIONS(1365), - [anon_sym_DOLLARvaref] = ACTIONS(1365), - [anon_sym_DOLLARvaexpr] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1365), - [anon_sym_false] = ACTIONS(1365), - [anon_sym_null] = ACTIONS(1365), - [anon_sym_DOLLARvacount] = ACTIONS(1365), - [anon_sym_DOLLARfeature] = ACTIONS(1365), - [anon_sym_DOLLARand] = ACTIONS(1365), - [anon_sym_DOLLARor] = ACTIONS(1365), - [anon_sym_DOLLARassignable] = ACTIONS(1365), - [anon_sym_DOLLARembed] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_typeid] = ACTIONS(1365), - [anon_sym_LBRACE_PIPE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1365), - [anon_sym_bool] = ACTIONS(1365), - [anon_sym_char] = ACTIONS(1365), - [anon_sym_ichar] = ACTIONS(1365), - [anon_sym_short] = ACTIONS(1365), - [anon_sym_ushort] = ACTIONS(1365), - [anon_sym_uint] = ACTIONS(1365), - [anon_sym_long] = ACTIONS(1365), - [anon_sym_ulong] = ACTIONS(1365), - [anon_sym_int128] = ACTIONS(1365), - [anon_sym_uint128] = ACTIONS(1365), - [anon_sym_float] = ACTIONS(1365), - [anon_sym_double] = ACTIONS(1365), - [anon_sym_float16] = ACTIONS(1365), - [anon_sym_bfloat16] = ACTIONS(1365), - [anon_sym_float128] = ACTIONS(1365), - [anon_sym_iptr] = ACTIONS(1365), - [anon_sym_uptr] = ACTIONS(1365), - [anon_sym_isz] = ACTIONS(1365), - [anon_sym_usz] = ACTIONS(1365), - [anon_sym_anyfault] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1365), - [anon_sym_DOLLARtypeof] = ACTIONS(1365), - [anon_sym_DOLLARtypefrom] = ACTIONS(1365), - [anon_sym_DOLLARvatype] = ACTIONS(1365), - [anon_sym_DOLLARevaltype] = ACTIONS(1365), - [sym_real_literal] = ACTIONS(1367), + [378] = { + [sym_line_comment] = STATE(378), + [sym_doc_comment] = STATE(378), + [sym_block_comment] = STATE(378), + [sym_ident] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_bytes_literal] = ACTIONS(1507), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1505), + [sym_at_ident] = ACTIONS(1507), + [sym_hash_ident] = ACTIONS(1507), + [sym_type_ident] = ACTIONS(1507), + [sym_ct_type_ident] = ACTIONS(1507), + [sym_const_ident] = ACTIONS(1505), + [sym_builtin] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_tlocal] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_defer] = ACTIONS(1505), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_case] = ACTIONS(1505), + [anon_sym_default] = ACTIONS(1505), + [anon_sym_nextcase] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(1505), + [anon_sym_foreach_r] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_int] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_asm] = ACTIONS(1505), + [anon_sym_DOLLARassert] = ACTIONS(1505), + [anon_sym_DOLLARerror] = ACTIONS(1505), + [anon_sym_DOLLARecho] = ACTIONS(1505), + [anon_sym_DOLLARif] = ACTIONS(1505), + [anon_sym_DOLLARswitch] = ACTIONS(1505), + [anon_sym_DOLLARfor] = ACTIONS(1505), + [anon_sym_DOLLARforeach] = ACTIONS(1505), + [anon_sym_DOLLARalignof] = ACTIONS(1505), + [anon_sym_DOLLARextnameof] = ACTIONS(1505), + [anon_sym_DOLLARnameof] = ACTIONS(1505), + [anon_sym_DOLLARoffsetof] = ACTIONS(1505), + [anon_sym_DOLLARqnameof] = ACTIONS(1505), + [anon_sym_DOLLARvaconst] = ACTIONS(1505), + [anon_sym_DOLLARvaarg] = ACTIONS(1505), + [anon_sym_DOLLARvaref] = ACTIONS(1505), + [anon_sym_DOLLARvaexpr] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_DOLLARvacount] = ACTIONS(1505), + [anon_sym_DOLLAReval] = ACTIONS(1505), + [anon_sym_DOLLARis_const] = ACTIONS(1505), + [anon_sym_DOLLARsizeof] = ACTIONS(1505), + [anon_sym_DOLLARstringify] = ACTIONS(1505), + [anon_sym_DOLLARappend] = ACTIONS(1505), + [anon_sym_DOLLARconcat] = ACTIONS(1505), + [anon_sym_DOLLARdefined] = ACTIONS(1505), + [anon_sym_DOLLARembed] = ACTIONS(1505), + [anon_sym_DOLLARand] = ACTIONS(1505), + [anon_sym_DOLLARor] = ACTIONS(1505), + [anon_sym_DOLLARfeature] = ACTIONS(1505), + [anon_sym_DOLLARassignable] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_typeid] = ACTIONS(1505), + [anon_sym_LBRACE_PIPE] = ACTIONS(1507), + [anon_sym_PIPE_RBRACE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_ichar] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [anon_sym_ushort] = ACTIONS(1505), + [anon_sym_uint] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_ulong] = ACTIONS(1505), + [anon_sym_int128] = ACTIONS(1505), + [anon_sym_uint128] = ACTIONS(1505), + [anon_sym_float] = ACTIONS(1505), + [anon_sym_double] = ACTIONS(1505), + [anon_sym_float16] = ACTIONS(1505), + [anon_sym_bfloat16] = ACTIONS(1505), + [anon_sym_float128] = ACTIONS(1505), + [anon_sym_iptr] = ACTIONS(1505), + [anon_sym_uptr] = ACTIONS(1505), + [anon_sym_isz] = ACTIONS(1505), + [anon_sym_usz] = ACTIONS(1505), + [anon_sym_anyfault] = ACTIONS(1505), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_DOLLARtypeof] = ACTIONS(1505), + [anon_sym_DOLLARtypefrom] = ACTIONS(1505), + [anon_sym_DOLLARevaltype] = ACTIONS(1505), + [anon_sym_DOLLARvatype] = ACTIONS(1505), + [sym_real_literal] = ACTIONS(1507), }, - [436] = { - [sym_line_comment] = STATE(436), - [sym_doc_comment] = STATE(436), - [sym_block_comment] = STATE(436), - [sym_ident] = ACTIONS(1409), - [sym_integer_literal] = ACTIONS(1411), - [anon_sym_SQUOTE] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [anon_sym_BQUOTE] = ACTIONS(1411), - [sym_bytes_literal] = ACTIONS(1411), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1409), - [sym_at_ident] = ACTIONS(1411), - [sym_hash_ident] = ACTIONS(1411), - [sym_type_ident] = ACTIONS(1411), - [sym_ct_type_ident] = ACTIONS(1411), - [sym_const_ident] = ACTIONS(1409), - [sym_builtin] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_tlocal] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_fn] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_var] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_defer] = ACTIONS(1409), - [anon_sym_assert] = ACTIONS(1409), - [anon_sym_nextcase] = ACTIONS(1409), - [anon_sym_switch] = ACTIONS(1409), - [anon_sym_AMP_AMP] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_foreach] = ACTIONS(1409), - [anon_sym_foreach_r] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_do] = ACTIONS(1409), - [anon_sym_int] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_asm] = ACTIONS(1409), - [anon_sym_DOLLARassert] = ACTIONS(1409), - [anon_sym_DOLLARerror] = ACTIONS(1409), - [anon_sym_DOLLARecho] = ACTIONS(1409), - [anon_sym_DOLLARif] = ACTIONS(1409), - [anon_sym_DOLLARcase] = ACTIONS(1409), - [anon_sym_DOLLARdefault] = ACTIONS(1409), - [anon_sym_DOLLARswitch] = ACTIONS(1409), - [anon_sym_DOLLARendswitch] = ACTIONS(1409), - [anon_sym_DOLLARfor] = ACTIONS(1409), - [anon_sym_DOLLARforeach] = ACTIONS(1409), - [anon_sym_DOLLARalignof] = ACTIONS(1409), - [anon_sym_DOLLARextnameof] = ACTIONS(1409), - [anon_sym_DOLLARnameof] = ACTIONS(1409), - [anon_sym_DOLLARoffsetof] = ACTIONS(1409), - [anon_sym_DOLLARqnameof] = ACTIONS(1409), - [anon_sym_DOLLAReval] = ACTIONS(1409), - [anon_sym_DOLLARdefined] = ACTIONS(1409), - [anon_sym_DOLLARsizeof] = ACTIONS(1409), - [anon_sym_DOLLARstringify] = ACTIONS(1409), - [anon_sym_DOLLARis_const] = ACTIONS(1409), - [anon_sym_DOLLARvaconst] = ACTIONS(1409), - [anon_sym_DOLLARvaarg] = ACTIONS(1409), - [anon_sym_DOLLARvaref] = ACTIONS(1409), - [anon_sym_DOLLARvaexpr] = ACTIONS(1409), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_DOLLARvacount] = ACTIONS(1409), - [anon_sym_DOLLARfeature] = ACTIONS(1409), - [anon_sym_DOLLARand] = ACTIONS(1409), - [anon_sym_DOLLARor] = ACTIONS(1409), - [anon_sym_DOLLARassignable] = ACTIONS(1409), - [anon_sym_DOLLARembed] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_typeid] = ACTIONS(1409), - [anon_sym_LBRACE_PIPE] = ACTIONS(1411), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_bool] = ACTIONS(1409), - [anon_sym_char] = ACTIONS(1409), - [anon_sym_ichar] = ACTIONS(1409), - [anon_sym_short] = ACTIONS(1409), - [anon_sym_ushort] = ACTIONS(1409), - [anon_sym_uint] = ACTIONS(1409), - [anon_sym_long] = ACTIONS(1409), - [anon_sym_ulong] = ACTIONS(1409), - [anon_sym_int128] = ACTIONS(1409), - [anon_sym_uint128] = ACTIONS(1409), - [anon_sym_float] = ACTIONS(1409), - [anon_sym_double] = ACTIONS(1409), - [anon_sym_float16] = ACTIONS(1409), - [anon_sym_bfloat16] = ACTIONS(1409), - [anon_sym_float128] = ACTIONS(1409), - [anon_sym_iptr] = ACTIONS(1409), - [anon_sym_uptr] = ACTIONS(1409), - [anon_sym_isz] = ACTIONS(1409), - [anon_sym_usz] = ACTIONS(1409), - [anon_sym_anyfault] = ACTIONS(1409), - [anon_sym_any] = ACTIONS(1409), - [anon_sym_DOLLARtypeof] = ACTIONS(1409), - [anon_sym_DOLLARtypefrom] = ACTIONS(1409), - [anon_sym_DOLLARvatype] = ACTIONS(1409), - [anon_sym_DOLLARevaltype] = ACTIONS(1409), - [sym_real_literal] = ACTIONS(1411), + [379] = { + [sym_line_comment] = STATE(379), + [sym_doc_comment] = STATE(379), + [sym_block_comment] = STATE(379), + [sym_ident] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1511), + [anon_sym_BQUOTE] = ACTIONS(1511), + [sym_bytes_literal] = ACTIONS(1511), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1509), + [sym_at_ident] = ACTIONS(1511), + [sym_hash_ident] = ACTIONS(1511), + [sym_type_ident] = ACTIONS(1511), + [sym_ct_type_ident] = ACTIONS(1511), + [sym_const_ident] = ACTIONS(1509), + [sym_builtin] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_tlocal] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_fn] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_RBRACE] = ACTIONS(1511), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_defer] = ACTIONS(1509), + [anon_sym_assert] = ACTIONS(1509), + [anon_sym_case] = ACTIONS(1509), + [anon_sym_default] = ACTIONS(1509), + [anon_sym_nextcase] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_foreach] = ACTIONS(1509), + [anon_sym_foreach_r] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_int] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_asm] = ACTIONS(1509), + [anon_sym_DOLLARassert] = ACTIONS(1509), + [anon_sym_DOLLARerror] = ACTIONS(1509), + [anon_sym_DOLLARecho] = ACTIONS(1509), + [anon_sym_DOLLARif] = ACTIONS(1509), + [anon_sym_DOLLARswitch] = ACTIONS(1509), + [anon_sym_DOLLARfor] = ACTIONS(1509), + [anon_sym_DOLLARforeach] = ACTIONS(1509), + [anon_sym_DOLLARalignof] = ACTIONS(1509), + [anon_sym_DOLLARextnameof] = ACTIONS(1509), + [anon_sym_DOLLARnameof] = ACTIONS(1509), + [anon_sym_DOLLARoffsetof] = ACTIONS(1509), + [anon_sym_DOLLARqnameof] = ACTIONS(1509), + [anon_sym_DOLLARvaconst] = ACTIONS(1509), + [anon_sym_DOLLARvaarg] = ACTIONS(1509), + [anon_sym_DOLLARvaref] = ACTIONS(1509), + [anon_sym_DOLLARvaexpr] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_DOLLARvacount] = ACTIONS(1509), + [anon_sym_DOLLAReval] = ACTIONS(1509), + [anon_sym_DOLLARis_const] = ACTIONS(1509), + [anon_sym_DOLLARsizeof] = ACTIONS(1509), + [anon_sym_DOLLARstringify] = ACTIONS(1509), + [anon_sym_DOLLARappend] = ACTIONS(1509), + [anon_sym_DOLLARconcat] = ACTIONS(1509), + [anon_sym_DOLLARdefined] = ACTIONS(1509), + [anon_sym_DOLLARembed] = ACTIONS(1509), + [anon_sym_DOLLARand] = ACTIONS(1509), + [anon_sym_DOLLARor] = ACTIONS(1509), + [anon_sym_DOLLARfeature] = ACTIONS(1509), + [anon_sym_DOLLARassignable] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_typeid] = ACTIONS(1509), + [anon_sym_LBRACE_PIPE] = ACTIONS(1511), + [anon_sym_PIPE_RBRACE] = ACTIONS(1511), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_ichar] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [anon_sym_ushort] = ACTIONS(1509), + [anon_sym_uint] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_ulong] = ACTIONS(1509), + [anon_sym_int128] = ACTIONS(1509), + [anon_sym_uint128] = ACTIONS(1509), + [anon_sym_float] = ACTIONS(1509), + [anon_sym_double] = ACTIONS(1509), + [anon_sym_float16] = ACTIONS(1509), + [anon_sym_bfloat16] = ACTIONS(1509), + [anon_sym_float128] = ACTIONS(1509), + [anon_sym_iptr] = ACTIONS(1509), + [anon_sym_uptr] = ACTIONS(1509), + [anon_sym_isz] = ACTIONS(1509), + [anon_sym_usz] = ACTIONS(1509), + [anon_sym_anyfault] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_DOLLARtypeof] = ACTIONS(1509), + [anon_sym_DOLLARtypefrom] = ACTIONS(1509), + [anon_sym_DOLLARevaltype] = ACTIONS(1509), + [anon_sym_DOLLARvatype] = ACTIONS(1509), + [sym_real_literal] = ACTIONS(1511), }, - [437] = { - [sym_line_comment] = STATE(437), - [sym_doc_comment] = STATE(437), - [sym_block_comment] = STATE(437), - [sym_ident] = ACTIONS(1555), - [sym_integer_literal] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_BQUOTE] = ACTIONS(1557), - [sym_bytes_literal] = ACTIONS(1557), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1555), - [sym_at_ident] = ACTIONS(1557), - [sym_hash_ident] = ACTIONS(1557), - [sym_type_ident] = ACTIONS(1557), - [sym_ct_type_ident] = ACTIONS(1557), - [sym_const_ident] = ACTIONS(1555), - [sym_builtin] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_AMP] = ACTIONS(1555), - [anon_sym_static] = ACTIONS(1555), - [anon_sym_tlocal] = ACTIONS(1555), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_const] = ACTIONS(1555), - [anon_sym_var] = ACTIONS(1555), - [anon_sym_return] = ACTIONS(1555), - [anon_sym_continue] = ACTIONS(1555), - [anon_sym_break] = ACTIONS(1555), - [anon_sym_defer] = ACTIONS(1555), - [anon_sym_assert] = ACTIONS(1555), - [anon_sym_nextcase] = ACTIONS(1555), - [anon_sym_switch] = ACTIONS(1555), - [anon_sym_AMP_AMP] = ACTIONS(1557), - [anon_sym_if] = ACTIONS(1555), - [anon_sym_for] = ACTIONS(1555), - [anon_sym_foreach] = ACTIONS(1555), - [anon_sym_foreach_r] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_do] = ACTIONS(1555), - [anon_sym_int] = ACTIONS(1555), - [anon_sym_PLUS] = ACTIONS(1555), - [anon_sym_DASH] = ACTIONS(1555), - [anon_sym_STAR] = ACTIONS(1557), - [anon_sym_asm] = ACTIONS(1555), - [anon_sym_DOLLARassert] = ACTIONS(1555), - [anon_sym_DOLLARerror] = ACTIONS(1555), - [anon_sym_DOLLARecho] = ACTIONS(1555), - [anon_sym_DOLLARif] = ACTIONS(1555), - [anon_sym_DOLLARcase] = ACTIONS(1555), - [anon_sym_DOLLARdefault] = ACTIONS(1555), - [anon_sym_DOLLARswitch] = ACTIONS(1555), - [anon_sym_DOLLARendswitch] = ACTIONS(1555), - [anon_sym_DOLLARfor] = ACTIONS(1555), - [anon_sym_DOLLARforeach] = ACTIONS(1555), - [anon_sym_DOLLARalignof] = ACTIONS(1555), - [anon_sym_DOLLARextnameof] = ACTIONS(1555), - [anon_sym_DOLLARnameof] = ACTIONS(1555), - [anon_sym_DOLLARoffsetof] = ACTIONS(1555), - [anon_sym_DOLLARqnameof] = ACTIONS(1555), - [anon_sym_DOLLAReval] = ACTIONS(1555), - [anon_sym_DOLLARdefined] = ACTIONS(1555), - [anon_sym_DOLLARsizeof] = ACTIONS(1555), - [anon_sym_DOLLARstringify] = ACTIONS(1555), - [anon_sym_DOLLARis_const] = ACTIONS(1555), - [anon_sym_DOLLARvaconst] = ACTIONS(1555), - [anon_sym_DOLLARvaarg] = ACTIONS(1555), - [anon_sym_DOLLARvaref] = ACTIONS(1555), - [anon_sym_DOLLARvaexpr] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(1555), - [anon_sym_false] = ACTIONS(1555), - [anon_sym_null] = ACTIONS(1555), - [anon_sym_DOLLARvacount] = ACTIONS(1555), - [anon_sym_DOLLARfeature] = ACTIONS(1555), - [anon_sym_DOLLARand] = ACTIONS(1555), - [anon_sym_DOLLARor] = ACTIONS(1555), - [anon_sym_DOLLARassignable] = ACTIONS(1555), - [anon_sym_DOLLARembed] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1557), - [anon_sym_TILDE] = ACTIONS(1557), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [anon_sym_typeid] = ACTIONS(1555), - [anon_sym_LBRACE_PIPE] = ACTIONS(1557), - [anon_sym_void] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [anon_sym_ichar] = ACTIONS(1555), - [anon_sym_short] = ACTIONS(1555), - [anon_sym_ushort] = ACTIONS(1555), - [anon_sym_uint] = ACTIONS(1555), - [anon_sym_long] = ACTIONS(1555), - [anon_sym_ulong] = ACTIONS(1555), - [anon_sym_int128] = ACTIONS(1555), - [anon_sym_uint128] = ACTIONS(1555), - [anon_sym_float] = ACTIONS(1555), - [anon_sym_double] = ACTIONS(1555), - [anon_sym_float16] = ACTIONS(1555), - [anon_sym_bfloat16] = ACTIONS(1555), - [anon_sym_float128] = ACTIONS(1555), - [anon_sym_iptr] = ACTIONS(1555), - [anon_sym_uptr] = ACTIONS(1555), - [anon_sym_isz] = ACTIONS(1555), - [anon_sym_usz] = ACTIONS(1555), - [anon_sym_anyfault] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1555), - [anon_sym_DOLLARtypeof] = ACTIONS(1555), - [anon_sym_DOLLARtypefrom] = ACTIONS(1555), - [anon_sym_DOLLARvatype] = ACTIONS(1555), - [anon_sym_DOLLARevaltype] = ACTIONS(1555), - [sym_real_literal] = ACTIONS(1557), + [380] = { + [sym_line_comment] = STATE(380), + [sym_doc_comment] = STATE(380), + [sym_block_comment] = STATE(380), + [sym_ident] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_bytes_literal] = ACTIONS(1515), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1513), + [sym_at_ident] = ACTIONS(1515), + [sym_hash_ident] = ACTIONS(1515), + [sym_type_ident] = ACTIONS(1515), + [sym_ct_type_ident] = ACTIONS(1515), + [sym_const_ident] = ACTIONS(1513), + [sym_builtin] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_tlocal] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_var] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_defer] = ACTIONS(1513), + [anon_sym_assert] = ACTIONS(1513), + [anon_sym_case] = ACTIONS(1513), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_nextcase] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_foreach] = ACTIONS(1513), + [anon_sym_foreach_r] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_int] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_asm] = ACTIONS(1513), + [anon_sym_DOLLARassert] = ACTIONS(1513), + [anon_sym_DOLLARerror] = ACTIONS(1513), + [anon_sym_DOLLARecho] = ACTIONS(1513), + [anon_sym_DOLLARif] = ACTIONS(1513), + [anon_sym_DOLLARswitch] = ACTIONS(1513), + [anon_sym_DOLLARfor] = ACTIONS(1513), + [anon_sym_DOLLARforeach] = ACTIONS(1513), + [anon_sym_DOLLARalignof] = ACTIONS(1513), + [anon_sym_DOLLARextnameof] = ACTIONS(1513), + [anon_sym_DOLLARnameof] = ACTIONS(1513), + [anon_sym_DOLLARoffsetof] = ACTIONS(1513), + [anon_sym_DOLLARqnameof] = ACTIONS(1513), + [anon_sym_DOLLARvaconst] = ACTIONS(1513), + [anon_sym_DOLLARvaarg] = ACTIONS(1513), + [anon_sym_DOLLARvaref] = ACTIONS(1513), + [anon_sym_DOLLARvaexpr] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_DOLLARvacount] = ACTIONS(1513), + [anon_sym_DOLLAReval] = ACTIONS(1513), + [anon_sym_DOLLARis_const] = ACTIONS(1513), + [anon_sym_DOLLARsizeof] = ACTIONS(1513), + [anon_sym_DOLLARstringify] = ACTIONS(1513), + [anon_sym_DOLLARappend] = ACTIONS(1513), + [anon_sym_DOLLARconcat] = ACTIONS(1513), + [anon_sym_DOLLARdefined] = ACTIONS(1513), + [anon_sym_DOLLARembed] = ACTIONS(1513), + [anon_sym_DOLLARand] = ACTIONS(1513), + [anon_sym_DOLLARor] = ACTIONS(1513), + [anon_sym_DOLLARfeature] = ACTIONS(1513), + [anon_sym_DOLLARassignable] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_typeid] = ACTIONS(1513), + [anon_sym_LBRACE_PIPE] = ACTIONS(1515), + [anon_sym_PIPE_RBRACE] = ACTIONS(1515), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_ichar] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_ushort] = ACTIONS(1513), + [anon_sym_uint] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_ulong] = ACTIONS(1513), + [anon_sym_int128] = ACTIONS(1513), + [anon_sym_uint128] = ACTIONS(1513), + [anon_sym_float] = ACTIONS(1513), + [anon_sym_double] = ACTIONS(1513), + [anon_sym_float16] = ACTIONS(1513), + [anon_sym_bfloat16] = ACTIONS(1513), + [anon_sym_float128] = ACTIONS(1513), + [anon_sym_iptr] = ACTIONS(1513), + [anon_sym_uptr] = ACTIONS(1513), + [anon_sym_isz] = ACTIONS(1513), + [anon_sym_usz] = ACTIONS(1513), + [anon_sym_anyfault] = ACTIONS(1513), + [anon_sym_any] = ACTIONS(1513), + [anon_sym_DOLLARtypeof] = ACTIONS(1513), + [anon_sym_DOLLARtypefrom] = ACTIONS(1513), + [anon_sym_DOLLARevaltype] = ACTIONS(1513), + [anon_sym_DOLLARvatype] = ACTIONS(1513), + [sym_real_literal] = ACTIONS(1515), }, - [438] = { - [sym_line_comment] = STATE(438), - [sym_doc_comment] = STATE(438), - [sym_block_comment] = STATE(438), - [sym_ident] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1415), - [anon_sym_BQUOTE] = ACTIONS(1415), - [sym_bytes_literal] = ACTIONS(1415), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1413), - [sym_at_ident] = ACTIONS(1415), - [sym_hash_ident] = ACTIONS(1415), - [sym_type_ident] = ACTIONS(1415), - [sym_ct_type_ident] = ACTIONS(1415), - [sym_const_ident] = ACTIONS(1413), - [sym_builtin] = ACTIONS(1415), - [anon_sym_LPAREN] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_tlocal] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_fn] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_defer] = ACTIONS(1413), - [anon_sym_assert] = ACTIONS(1413), - [anon_sym_nextcase] = ACTIONS(1413), - [anon_sym_switch] = ACTIONS(1413), - [anon_sym_AMP_AMP] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_foreach] = ACTIONS(1413), - [anon_sym_foreach_r] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_int] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_asm] = ACTIONS(1413), - [anon_sym_DOLLARassert] = ACTIONS(1413), - [anon_sym_DOLLARerror] = ACTIONS(1413), - [anon_sym_DOLLARecho] = ACTIONS(1413), - [anon_sym_DOLLARif] = ACTIONS(1413), - [anon_sym_DOLLARcase] = ACTIONS(1413), - [anon_sym_DOLLARdefault] = ACTIONS(1413), - [anon_sym_DOLLARswitch] = ACTIONS(1413), - [anon_sym_DOLLARendswitch] = ACTIONS(1413), - [anon_sym_DOLLARfor] = ACTIONS(1413), - [anon_sym_DOLLARforeach] = ACTIONS(1413), - [anon_sym_DOLLARalignof] = ACTIONS(1413), - [anon_sym_DOLLARextnameof] = ACTIONS(1413), - [anon_sym_DOLLARnameof] = ACTIONS(1413), - [anon_sym_DOLLARoffsetof] = ACTIONS(1413), - [anon_sym_DOLLARqnameof] = ACTIONS(1413), - [anon_sym_DOLLAReval] = ACTIONS(1413), - [anon_sym_DOLLARdefined] = ACTIONS(1413), - [anon_sym_DOLLARsizeof] = ACTIONS(1413), - [anon_sym_DOLLARstringify] = ACTIONS(1413), - [anon_sym_DOLLARis_const] = ACTIONS(1413), - [anon_sym_DOLLARvaconst] = ACTIONS(1413), - [anon_sym_DOLLARvaarg] = ACTIONS(1413), - [anon_sym_DOLLARvaref] = ACTIONS(1413), - [anon_sym_DOLLARvaexpr] = ACTIONS(1413), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_null] = ACTIONS(1413), - [anon_sym_DOLLARvacount] = ACTIONS(1413), - [anon_sym_DOLLARfeature] = ACTIONS(1413), - [anon_sym_DOLLARand] = ACTIONS(1413), - [anon_sym_DOLLARor] = ACTIONS(1413), - [anon_sym_DOLLARassignable] = ACTIONS(1413), - [anon_sym_DOLLARembed] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_typeid] = ACTIONS(1413), - [anon_sym_LBRACE_PIPE] = ACTIONS(1415), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_bool] = ACTIONS(1413), - [anon_sym_char] = ACTIONS(1413), - [anon_sym_ichar] = ACTIONS(1413), - [anon_sym_short] = ACTIONS(1413), - [anon_sym_ushort] = ACTIONS(1413), - [anon_sym_uint] = ACTIONS(1413), - [anon_sym_long] = ACTIONS(1413), - [anon_sym_ulong] = ACTIONS(1413), - [anon_sym_int128] = ACTIONS(1413), - [anon_sym_uint128] = ACTIONS(1413), - [anon_sym_float] = ACTIONS(1413), - [anon_sym_double] = ACTIONS(1413), - [anon_sym_float16] = ACTIONS(1413), - [anon_sym_bfloat16] = ACTIONS(1413), - [anon_sym_float128] = ACTIONS(1413), - [anon_sym_iptr] = ACTIONS(1413), - [anon_sym_uptr] = ACTIONS(1413), - [anon_sym_isz] = ACTIONS(1413), - [anon_sym_usz] = ACTIONS(1413), - [anon_sym_anyfault] = ACTIONS(1413), - [anon_sym_any] = ACTIONS(1413), - [anon_sym_DOLLARtypeof] = ACTIONS(1413), - [anon_sym_DOLLARtypefrom] = ACTIONS(1413), - [anon_sym_DOLLARvatype] = ACTIONS(1413), - [anon_sym_DOLLARevaltype] = ACTIONS(1413), - [sym_real_literal] = ACTIONS(1415), + [381] = { + [sym_line_comment] = STATE(381), + [sym_doc_comment] = STATE(381), + [sym_block_comment] = STATE(381), + [sym_ident] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_BQUOTE] = ACTIONS(1519), + [sym_bytes_literal] = ACTIONS(1519), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1517), + [sym_at_ident] = ACTIONS(1519), + [sym_hash_ident] = ACTIONS(1519), + [sym_type_ident] = ACTIONS(1519), + [sym_ct_type_ident] = ACTIONS(1519), + [sym_const_ident] = ACTIONS(1517), + [sym_builtin] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_tlocal] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_defer] = ACTIONS(1517), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_case] = ACTIONS(1517), + [anon_sym_default] = ACTIONS(1517), + [anon_sym_nextcase] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_foreach] = ACTIONS(1517), + [anon_sym_foreach_r] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_int] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_asm] = ACTIONS(1517), + [anon_sym_DOLLARassert] = ACTIONS(1517), + [anon_sym_DOLLARerror] = ACTIONS(1517), + [anon_sym_DOLLARecho] = ACTIONS(1517), + [anon_sym_DOLLARif] = ACTIONS(1517), + [anon_sym_DOLLARswitch] = ACTIONS(1517), + [anon_sym_DOLLARfor] = ACTIONS(1517), + [anon_sym_DOLLARforeach] = ACTIONS(1517), + [anon_sym_DOLLARalignof] = ACTIONS(1517), + [anon_sym_DOLLARextnameof] = ACTIONS(1517), + [anon_sym_DOLLARnameof] = ACTIONS(1517), + [anon_sym_DOLLARoffsetof] = ACTIONS(1517), + [anon_sym_DOLLARqnameof] = ACTIONS(1517), + [anon_sym_DOLLARvaconst] = ACTIONS(1517), + [anon_sym_DOLLARvaarg] = ACTIONS(1517), + [anon_sym_DOLLARvaref] = ACTIONS(1517), + [anon_sym_DOLLARvaexpr] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_DOLLARvacount] = ACTIONS(1517), + [anon_sym_DOLLAReval] = ACTIONS(1517), + [anon_sym_DOLLARis_const] = ACTIONS(1517), + [anon_sym_DOLLARsizeof] = ACTIONS(1517), + [anon_sym_DOLLARstringify] = ACTIONS(1517), + [anon_sym_DOLLARappend] = ACTIONS(1517), + [anon_sym_DOLLARconcat] = ACTIONS(1517), + [anon_sym_DOLLARdefined] = ACTIONS(1517), + [anon_sym_DOLLARembed] = ACTIONS(1517), + [anon_sym_DOLLARand] = ACTIONS(1517), + [anon_sym_DOLLARor] = ACTIONS(1517), + [anon_sym_DOLLARfeature] = ACTIONS(1517), + [anon_sym_DOLLARassignable] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_typeid] = ACTIONS(1517), + [anon_sym_LBRACE_PIPE] = ACTIONS(1519), + [anon_sym_PIPE_RBRACE] = ACTIONS(1519), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_ichar] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [anon_sym_ushort] = ACTIONS(1517), + [anon_sym_uint] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_ulong] = ACTIONS(1517), + [anon_sym_int128] = ACTIONS(1517), + [anon_sym_uint128] = ACTIONS(1517), + [anon_sym_float] = ACTIONS(1517), + [anon_sym_double] = ACTIONS(1517), + [anon_sym_float16] = ACTIONS(1517), + [anon_sym_bfloat16] = ACTIONS(1517), + [anon_sym_float128] = ACTIONS(1517), + [anon_sym_iptr] = ACTIONS(1517), + [anon_sym_uptr] = ACTIONS(1517), + [anon_sym_isz] = ACTIONS(1517), + [anon_sym_usz] = ACTIONS(1517), + [anon_sym_anyfault] = ACTIONS(1517), + [anon_sym_any] = ACTIONS(1517), + [anon_sym_DOLLARtypeof] = ACTIONS(1517), + [anon_sym_DOLLARtypefrom] = ACTIONS(1517), + [anon_sym_DOLLARevaltype] = ACTIONS(1517), + [anon_sym_DOLLARvatype] = ACTIONS(1517), + [sym_real_literal] = ACTIONS(1519), }, - [439] = { - [sym_line_comment] = STATE(439), - [sym_doc_comment] = STATE(439), - [sym_block_comment] = STATE(439), - [sym_ident] = ACTIONS(1507), - [sym_integer_literal] = ACTIONS(1509), - [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(1509), - [anon_sym_BQUOTE] = ACTIONS(1509), - [sym_bytes_literal] = ACTIONS(1509), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1507), - [sym_at_ident] = ACTIONS(1509), - [sym_hash_ident] = ACTIONS(1509), - [sym_type_ident] = ACTIONS(1509), - [sym_ct_type_ident] = ACTIONS(1509), - [sym_const_ident] = ACTIONS(1507), - [sym_builtin] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_static] = ACTIONS(1507), - [anon_sym_tlocal] = ACTIONS(1507), - [anon_sym_SEMI] = ACTIONS(1509), - [anon_sym_fn] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [anon_sym_var] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_defer] = ACTIONS(1507), - [anon_sym_assert] = ACTIONS(1507), - [anon_sym_nextcase] = ACTIONS(1507), - [anon_sym_switch] = ACTIONS(1507), - [anon_sym_AMP_AMP] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_foreach] = ACTIONS(1507), - [anon_sym_foreach_r] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_do] = ACTIONS(1507), - [anon_sym_int] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_asm] = ACTIONS(1507), - [anon_sym_DOLLARassert] = ACTIONS(1507), - [anon_sym_DOLLARerror] = ACTIONS(1507), - [anon_sym_DOLLARecho] = ACTIONS(1507), - [anon_sym_DOLLARif] = ACTIONS(1507), - [anon_sym_DOLLARcase] = ACTIONS(1507), - [anon_sym_DOLLARdefault] = ACTIONS(1507), - [anon_sym_DOLLARswitch] = ACTIONS(1507), - [anon_sym_DOLLARendswitch] = ACTIONS(1507), - [anon_sym_DOLLARfor] = ACTIONS(1507), - [anon_sym_DOLLARforeach] = ACTIONS(1507), - [anon_sym_DOLLARalignof] = ACTIONS(1507), - [anon_sym_DOLLARextnameof] = ACTIONS(1507), - [anon_sym_DOLLARnameof] = ACTIONS(1507), - [anon_sym_DOLLARoffsetof] = ACTIONS(1507), - [anon_sym_DOLLARqnameof] = ACTIONS(1507), - [anon_sym_DOLLAReval] = ACTIONS(1507), - [anon_sym_DOLLARdefined] = ACTIONS(1507), - [anon_sym_DOLLARsizeof] = ACTIONS(1507), - [anon_sym_DOLLARstringify] = ACTIONS(1507), - [anon_sym_DOLLARis_const] = ACTIONS(1507), - [anon_sym_DOLLARvaconst] = ACTIONS(1507), - [anon_sym_DOLLARvaarg] = ACTIONS(1507), - [anon_sym_DOLLARvaref] = ACTIONS(1507), - [anon_sym_DOLLARvaexpr] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [anon_sym_null] = ACTIONS(1507), - [anon_sym_DOLLARvacount] = ACTIONS(1507), - [anon_sym_DOLLARfeature] = ACTIONS(1507), - [anon_sym_DOLLARand] = ACTIONS(1507), - [anon_sym_DOLLARor] = ACTIONS(1507), - [anon_sym_DOLLARassignable] = ACTIONS(1507), - [anon_sym_DOLLARembed] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_TILDE] = ACTIONS(1509), - [anon_sym_PLUS_PLUS] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_typeid] = ACTIONS(1507), - [anon_sym_LBRACE_PIPE] = ACTIONS(1509), - [anon_sym_void] = ACTIONS(1507), - [anon_sym_bool] = ACTIONS(1507), - [anon_sym_char] = ACTIONS(1507), - [anon_sym_ichar] = ACTIONS(1507), - [anon_sym_short] = ACTIONS(1507), - [anon_sym_ushort] = ACTIONS(1507), - [anon_sym_uint] = ACTIONS(1507), - [anon_sym_long] = ACTIONS(1507), - [anon_sym_ulong] = ACTIONS(1507), - [anon_sym_int128] = ACTIONS(1507), - [anon_sym_uint128] = ACTIONS(1507), - [anon_sym_float] = ACTIONS(1507), - [anon_sym_double] = ACTIONS(1507), - [anon_sym_float16] = ACTIONS(1507), - [anon_sym_bfloat16] = ACTIONS(1507), - [anon_sym_float128] = ACTIONS(1507), - [anon_sym_iptr] = ACTIONS(1507), - [anon_sym_uptr] = ACTIONS(1507), - [anon_sym_isz] = ACTIONS(1507), - [anon_sym_usz] = ACTIONS(1507), - [anon_sym_anyfault] = ACTIONS(1507), - [anon_sym_any] = ACTIONS(1507), - [anon_sym_DOLLARtypeof] = ACTIONS(1507), - [anon_sym_DOLLARtypefrom] = ACTIONS(1507), - [anon_sym_DOLLARvatype] = ACTIONS(1507), - [anon_sym_DOLLARevaltype] = ACTIONS(1507), - [sym_real_literal] = ACTIONS(1509), + [382] = { + [sym_line_comment] = STATE(382), + [sym_doc_comment] = STATE(382), + [sym_block_comment] = STATE(382), + [sym_ident] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1523), + [sym_bytes_literal] = ACTIONS(1523), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1521), + [sym_at_ident] = ACTIONS(1523), + [sym_hash_ident] = ACTIONS(1523), + [sym_type_ident] = ACTIONS(1523), + [sym_ct_type_ident] = ACTIONS(1523), + [sym_const_ident] = ACTIONS(1521), + [sym_builtin] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_tlocal] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_RBRACE] = ACTIONS(1523), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_var] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_defer] = ACTIONS(1521), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_case] = ACTIONS(1521), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_nextcase] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_foreach] = ACTIONS(1521), + [anon_sym_foreach_r] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_int] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_asm] = ACTIONS(1521), + [anon_sym_DOLLARassert] = ACTIONS(1521), + [anon_sym_DOLLARerror] = ACTIONS(1521), + [anon_sym_DOLLARecho] = ACTIONS(1521), + [anon_sym_DOLLARif] = ACTIONS(1521), + [anon_sym_DOLLARswitch] = ACTIONS(1521), + [anon_sym_DOLLARfor] = ACTIONS(1521), + [anon_sym_DOLLARforeach] = ACTIONS(1521), + [anon_sym_DOLLARalignof] = ACTIONS(1521), + [anon_sym_DOLLARextnameof] = ACTIONS(1521), + [anon_sym_DOLLARnameof] = ACTIONS(1521), + [anon_sym_DOLLARoffsetof] = ACTIONS(1521), + [anon_sym_DOLLARqnameof] = ACTIONS(1521), + [anon_sym_DOLLARvaconst] = ACTIONS(1521), + [anon_sym_DOLLARvaarg] = ACTIONS(1521), + [anon_sym_DOLLARvaref] = ACTIONS(1521), + [anon_sym_DOLLARvaexpr] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [anon_sym_DOLLARvacount] = ACTIONS(1521), + [anon_sym_DOLLAReval] = ACTIONS(1521), + [anon_sym_DOLLARis_const] = ACTIONS(1521), + [anon_sym_DOLLARsizeof] = ACTIONS(1521), + [anon_sym_DOLLARstringify] = ACTIONS(1521), + [anon_sym_DOLLARappend] = ACTIONS(1521), + [anon_sym_DOLLARconcat] = ACTIONS(1521), + [anon_sym_DOLLARdefined] = ACTIONS(1521), + [anon_sym_DOLLARembed] = ACTIONS(1521), + [anon_sym_DOLLARand] = ACTIONS(1521), + [anon_sym_DOLLARor] = ACTIONS(1521), + [anon_sym_DOLLARfeature] = ACTIONS(1521), + [anon_sym_DOLLARassignable] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_typeid] = ACTIONS(1521), + [anon_sym_LBRACE_PIPE] = ACTIONS(1523), + [anon_sym_PIPE_RBRACE] = ACTIONS(1523), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_ichar] = ACTIONS(1521), + [anon_sym_short] = ACTIONS(1521), + [anon_sym_ushort] = ACTIONS(1521), + [anon_sym_uint] = ACTIONS(1521), + [anon_sym_long] = ACTIONS(1521), + [anon_sym_ulong] = ACTIONS(1521), + [anon_sym_int128] = ACTIONS(1521), + [anon_sym_uint128] = ACTIONS(1521), + [anon_sym_float] = ACTIONS(1521), + [anon_sym_double] = ACTIONS(1521), + [anon_sym_float16] = ACTIONS(1521), + [anon_sym_bfloat16] = ACTIONS(1521), + [anon_sym_float128] = ACTIONS(1521), + [anon_sym_iptr] = ACTIONS(1521), + [anon_sym_uptr] = ACTIONS(1521), + [anon_sym_isz] = ACTIONS(1521), + [anon_sym_usz] = ACTIONS(1521), + [anon_sym_anyfault] = ACTIONS(1521), + [anon_sym_any] = ACTIONS(1521), + [anon_sym_DOLLARtypeof] = ACTIONS(1521), + [anon_sym_DOLLARtypefrom] = ACTIONS(1521), + [anon_sym_DOLLARevaltype] = ACTIONS(1521), + [anon_sym_DOLLARvatype] = ACTIONS(1521), + [sym_real_literal] = ACTIONS(1523), }, - [440] = { - [sym_line_comment] = STATE(440), - [sym_doc_comment] = STATE(440), - [sym_block_comment] = STATE(440), - [sym_ident] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_BQUOTE] = ACTIONS(1489), - [sym_bytes_literal] = ACTIONS(1489), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1487), - [sym_at_ident] = ACTIONS(1489), - [sym_hash_ident] = ACTIONS(1489), - [sym_type_ident] = ACTIONS(1489), - [sym_ct_type_ident] = ACTIONS(1489), - [sym_const_ident] = ACTIONS(1487), - [sym_builtin] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_tlocal] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_fn] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_var] = ACTIONS(1487), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_defer] = ACTIONS(1487), - [anon_sym_assert] = ACTIONS(1487), - [anon_sym_nextcase] = ACTIONS(1487), - [anon_sym_switch] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_foreach] = ACTIONS(1487), - [anon_sym_foreach_r] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_do] = ACTIONS(1487), - [anon_sym_int] = ACTIONS(1487), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_asm] = ACTIONS(1487), - [anon_sym_DOLLARassert] = ACTIONS(1487), - [anon_sym_DOLLARerror] = ACTIONS(1487), - [anon_sym_DOLLARecho] = ACTIONS(1487), - [anon_sym_DOLLARif] = ACTIONS(1487), - [anon_sym_DOLLARcase] = ACTIONS(1487), - [anon_sym_DOLLARdefault] = ACTIONS(1487), - [anon_sym_DOLLARswitch] = ACTIONS(1487), - [anon_sym_DOLLARendswitch] = ACTIONS(1487), - [anon_sym_DOLLARfor] = ACTIONS(1487), - [anon_sym_DOLLARforeach] = ACTIONS(1487), - [anon_sym_DOLLARalignof] = ACTIONS(1487), - [anon_sym_DOLLARextnameof] = ACTIONS(1487), - [anon_sym_DOLLARnameof] = ACTIONS(1487), - [anon_sym_DOLLARoffsetof] = ACTIONS(1487), - [anon_sym_DOLLARqnameof] = ACTIONS(1487), - [anon_sym_DOLLAReval] = ACTIONS(1487), - [anon_sym_DOLLARdefined] = ACTIONS(1487), - [anon_sym_DOLLARsizeof] = ACTIONS(1487), - [anon_sym_DOLLARstringify] = ACTIONS(1487), - [anon_sym_DOLLARis_const] = ACTIONS(1487), - [anon_sym_DOLLARvaconst] = ACTIONS(1487), - [anon_sym_DOLLARvaarg] = ACTIONS(1487), - [anon_sym_DOLLARvaref] = ACTIONS(1487), - [anon_sym_DOLLARvaexpr] = ACTIONS(1487), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_null] = ACTIONS(1487), - [anon_sym_DOLLARvacount] = ACTIONS(1487), - [anon_sym_DOLLARfeature] = ACTIONS(1487), - [anon_sym_DOLLARand] = ACTIONS(1487), - [anon_sym_DOLLARor] = ACTIONS(1487), - [anon_sym_DOLLARassignable] = ACTIONS(1487), - [anon_sym_DOLLARembed] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1489), - [anon_sym_typeid] = ACTIONS(1487), - [anon_sym_LBRACE_PIPE] = ACTIONS(1489), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_ichar] = ACTIONS(1487), - [anon_sym_short] = ACTIONS(1487), - [anon_sym_ushort] = ACTIONS(1487), - [anon_sym_uint] = ACTIONS(1487), - [anon_sym_long] = ACTIONS(1487), - [anon_sym_ulong] = ACTIONS(1487), - [anon_sym_int128] = ACTIONS(1487), - [anon_sym_uint128] = ACTIONS(1487), - [anon_sym_float] = ACTIONS(1487), - [anon_sym_double] = ACTIONS(1487), - [anon_sym_float16] = ACTIONS(1487), - [anon_sym_bfloat16] = ACTIONS(1487), - [anon_sym_float128] = ACTIONS(1487), - [anon_sym_iptr] = ACTIONS(1487), - [anon_sym_uptr] = ACTIONS(1487), - [anon_sym_isz] = ACTIONS(1487), - [anon_sym_usz] = ACTIONS(1487), - [anon_sym_anyfault] = ACTIONS(1487), - [anon_sym_any] = ACTIONS(1487), - [anon_sym_DOLLARtypeof] = ACTIONS(1487), - [anon_sym_DOLLARtypefrom] = ACTIONS(1487), - [anon_sym_DOLLARvatype] = ACTIONS(1487), - [anon_sym_DOLLARevaltype] = ACTIONS(1487), - [sym_real_literal] = ACTIONS(1489), + [383] = { + [sym_line_comment] = STATE(383), + [sym_doc_comment] = STATE(383), + [sym_block_comment] = STATE(383), + [sym_ident] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), + [anon_sym_BQUOTE] = ACTIONS(1527), + [sym_bytes_literal] = ACTIONS(1527), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1525), + [sym_at_ident] = ACTIONS(1527), + [sym_hash_ident] = ACTIONS(1527), + [sym_type_ident] = ACTIONS(1527), + [sym_ct_type_ident] = ACTIONS(1527), + [sym_const_ident] = ACTIONS(1525), + [sym_builtin] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_tlocal] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_fn] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_var] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_defer] = ACTIONS(1525), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_case] = ACTIONS(1525), + [anon_sym_default] = ACTIONS(1525), + [anon_sym_nextcase] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_foreach] = ACTIONS(1525), + [anon_sym_foreach_r] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_int] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym_DOLLARassert] = ACTIONS(1525), + [anon_sym_DOLLARerror] = ACTIONS(1525), + [anon_sym_DOLLARecho] = ACTIONS(1525), + [anon_sym_DOLLARif] = ACTIONS(1525), + [anon_sym_DOLLARswitch] = ACTIONS(1525), + [anon_sym_DOLLARfor] = ACTIONS(1525), + [anon_sym_DOLLARforeach] = ACTIONS(1525), + [anon_sym_DOLLARalignof] = ACTIONS(1525), + [anon_sym_DOLLARextnameof] = ACTIONS(1525), + [anon_sym_DOLLARnameof] = ACTIONS(1525), + [anon_sym_DOLLARoffsetof] = ACTIONS(1525), + [anon_sym_DOLLARqnameof] = ACTIONS(1525), + [anon_sym_DOLLARvaconst] = ACTIONS(1525), + [anon_sym_DOLLARvaarg] = ACTIONS(1525), + [anon_sym_DOLLARvaref] = ACTIONS(1525), + [anon_sym_DOLLARvaexpr] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_DOLLARvacount] = ACTIONS(1525), + [anon_sym_DOLLAReval] = ACTIONS(1525), + [anon_sym_DOLLARis_const] = ACTIONS(1525), + [anon_sym_DOLLARsizeof] = ACTIONS(1525), + [anon_sym_DOLLARstringify] = ACTIONS(1525), + [anon_sym_DOLLARappend] = ACTIONS(1525), + [anon_sym_DOLLARconcat] = ACTIONS(1525), + [anon_sym_DOLLARdefined] = ACTIONS(1525), + [anon_sym_DOLLARembed] = ACTIONS(1525), + [anon_sym_DOLLARand] = ACTIONS(1525), + [anon_sym_DOLLARor] = ACTIONS(1525), + [anon_sym_DOLLARfeature] = ACTIONS(1525), + [anon_sym_DOLLARassignable] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_typeid] = ACTIONS(1525), + [anon_sym_LBRACE_PIPE] = ACTIONS(1527), + [anon_sym_PIPE_RBRACE] = ACTIONS(1527), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_bool] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_ichar] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [anon_sym_ushort] = ACTIONS(1525), + [anon_sym_uint] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_ulong] = ACTIONS(1525), + [anon_sym_int128] = ACTIONS(1525), + [anon_sym_uint128] = ACTIONS(1525), + [anon_sym_float] = ACTIONS(1525), + [anon_sym_double] = ACTIONS(1525), + [anon_sym_float16] = ACTIONS(1525), + [anon_sym_bfloat16] = ACTIONS(1525), + [anon_sym_float128] = ACTIONS(1525), + [anon_sym_iptr] = ACTIONS(1525), + [anon_sym_uptr] = ACTIONS(1525), + [anon_sym_isz] = ACTIONS(1525), + [anon_sym_usz] = ACTIONS(1525), + [anon_sym_anyfault] = ACTIONS(1525), + [anon_sym_any] = ACTIONS(1525), + [anon_sym_DOLLARtypeof] = ACTIONS(1525), + [anon_sym_DOLLARtypefrom] = ACTIONS(1525), + [anon_sym_DOLLARevaltype] = ACTIONS(1525), + [anon_sym_DOLLARvatype] = ACTIONS(1525), + [sym_real_literal] = ACTIONS(1527), }, - [441] = { - [sym_line_comment] = STATE(441), - [sym_doc_comment] = STATE(441), - [sym_block_comment] = STATE(441), - [sym_ident] = ACTIONS(1385), - [sym_integer_literal] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1387), - [anon_sym_DQUOTE] = ACTIONS(1387), - [anon_sym_BQUOTE] = ACTIONS(1387), - [sym_bytes_literal] = ACTIONS(1387), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1385), - [sym_at_ident] = ACTIONS(1387), - [sym_hash_ident] = ACTIONS(1387), - [sym_type_ident] = ACTIONS(1387), - [sym_ct_type_ident] = ACTIONS(1387), - [sym_const_ident] = ACTIONS(1385), - [sym_builtin] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1385), - [anon_sym_tlocal] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_fn] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_var] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_defer] = ACTIONS(1385), - [anon_sym_assert] = ACTIONS(1385), - [anon_sym_nextcase] = ACTIONS(1385), - [anon_sym_switch] = ACTIONS(1385), - [anon_sym_AMP_AMP] = ACTIONS(1387), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_foreach] = ACTIONS(1385), - [anon_sym_foreach_r] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_do] = ACTIONS(1385), - [anon_sym_int] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_asm] = ACTIONS(1385), - [anon_sym_DOLLARassert] = ACTIONS(1385), - [anon_sym_DOLLARerror] = ACTIONS(1385), - [anon_sym_DOLLARecho] = ACTIONS(1385), - [anon_sym_DOLLARif] = ACTIONS(1385), - [anon_sym_DOLLARcase] = ACTIONS(1385), - [anon_sym_DOLLARdefault] = ACTIONS(1385), - [anon_sym_DOLLARswitch] = ACTIONS(1385), - [anon_sym_DOLLARendswitch] = ACTIONS(1385), - [anon_sym_DOLLARfor] = ACTIONS(1385), - [anon_sym_DOLLARforeach] = ACTIONS(1385), - [anon_sym_DOLLARalignof] = ACTIONS(1385), - [anon_sym_DOLLARextnameof] = ACTIONS(1385), - [anon_sym_DOLLARnameof] = ACTIONS(1385), - [anon_sym_DOLLARoffsetof] = ACTIONS(1385), - [anon_sym_DOLLARqnameof] = ACTIONS(1385), - [anon_sym_DOLLAReval] = ACTIONS(1385), - [anon_sym_DOLLARdefined] = ACTIONS(1385), - [anon_sym_DOLLARsizeof] = ACTIONS(1385), - [anon_sym_DOLLARstringify] = ACTIONS(1385), - [anon_sym_DOLLARis_const] = ACTIONS(1385), - [anon_sym_DOLLARvaconst] = ACTIONS(1385), - [anon_sym_DOLLARvaarg] = ACTIONS(1385), - [anon_sym_DOLLARvaref] = ACTIONS(1385), - [anon_sym_DOLLARvaexpr] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1385), - [anon_sym_false] = ACTIONS(1385), - [anon_sym_null] = ACTIONS(1385), - [anon_sym_DOLLARvacount] = ACTIONS(1385), - [anon_sym_DOLLARfeature] = ACTIONS(1385), - [anon_sym_DOLLARand] = ACTIONS(1385), - [anon_sym_DOLLARor] = ACTIONS(1385), - [anon_sym_DOLLARassignable] = ACTIONS(1385), - [anon_sym_DOLLARembed] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_PLUS_PLUS] = ACTIONS(1387), - [anon_sym_DASH_DASH] = ACTIONS(1387), - [anon_sym_typeid] = ACTIONS(1385), - [anon_sym_LBRACE_PIPE] = ACTIONS(1387), - [anon_sym_void] = ACTIONS(1385), - [anon_sym_bool] = ACTIONS(1385), - [anon_sym_char] = ACTIONS(1385), - [anon_sym_ichar] = ACTIONS(1385), - [anon_sym_short] = ACTIONS(1385), - [anon_sym_ushort] = ACTIONS(1385), - [anon_sym_uint] = ACTIONS(1385), - [anon_sym_long] = ACTIONS(1385), - [anon_sym_ulong] = ACTIONS(1385), - [anon_sym_int128] = ACTIONS(1385), - [anon_sym_uint128] = ACTIONS(1385), - [anon_sym_float] = ACTIONS(1385), - [anon_sym_double] = ACTIONS(1385), - [anon_sym_float16] = ACTIONS(1385), - [anon_sym_bfloat16] = ACTIONS(1385), - [anon_sym_float128] = ACTIONS(1385), - [anon_sym_iptr] = ACTIONS(1385), - [anon_sym_uptr] = ACTIONS(1385), - [anon_sym_isz] = ACTIONS(1385), - [anon_sym_usz] = ACTIONS(1385), - [anon_sym_anyfault] = ACTIONS(1385), - [anon_sym_any] = ACTIONS(1385), - [anon_sym_DOLLARtypeof] = ACTIONS(1385), - [anon_sym_DOLLARtypefrom] = ACTIONS(1385), - [anon_sym_DOLLARvatype] = ACTIONS(1385), - [anon_sym_DOLLARevaltype] = ACTIONS(1385), - [sym_real_literal] = ACTIONS(1387), + [384] = { + [sym_line_comment] = STATE(384), + [sym_doc_comment] = STATE(384), + [sym_block_comment] = STATE(384), + [sym_ident] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [sym_bytes_literal] = ACTIONS(1531), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1529), + [sym_at_ident] = ACTIONS(1531), + [sym_hash_ident] = ACTIONS(1531), + [sym_type_ident] = ACTIONS(1531), + [sym_ct_type_ident] = ACTIONS(1531), + [sym_const_ident] = ACTIONS(1529), + [sym_builtin] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_tlocal] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1531), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_defer] = ACTIONS(1529), + [anon_sym_assert] = ACTIONS(1529), + [anon_sym_case] = ACTIONS(1529), + [anon_sym_default] = ACTIONS(1529), + [anon_sym_nextcase] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_foreach] = ACTIONS(1529), + [anon_sym_foreach_r] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_int] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_asm] = ACTIONS(1529), + [anon_sym_DOLLARassert] = ACTIONS(1529), + [anon_sym_DOLLARerror] = ACTIONS(1529), + [anon_sym_DOLLARecho] = ACTIONS(1529), + [anon_sym_DOLLARif] = ACTIONS(1529), + [anon_sym_DOLLARswitch] = ACTIONS(1529), + [anon_sym_DOLLARfor] = ACTIONS(1529), + [anon_sym_DOLLARforeach] = ACTIONS(1529), + [anon_sym_DOLLARalignof] = ACTIONS(1529), + [anon_sym_DOLLARextnameof] = ACTIONS(1529), + [anon_sym_DOLLARnameof] = ACTIONS(1529), + [anon_sym_DOLLARoffsetof] = ACTIONS(1529), + [anon_sym_DOLLARqnameof] = ACTIONS(1529), + [anon_sym_DOLLARvaconst] = ACTIONS(1529), + [anon_sym_DOLLARvaarg] = ACTIONS(1529), + [anon_sym_DOLLARvaref] = ACTIONS(1529), + [anon_sym_DOLLARvaexpr] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_null] = ACTIONS(1529), + [anon_sym_DOLLARvacount] = ACTIONS(1529), + [anon_sym_DOLLAReval] = ACTIONS(1529), + [anon_sym_DOLLARis_const] = ACTIONS(1529), + [anon_sym_DOLLARsizeof] = ACTIONS(1529), + [anon_sym_DOLLARstringify] = ACTIONS(1529), + [anon_sym_DOLLARappend] = ACTIONS(1529), + [anon_sym_DOLLARconcat] = ACTIONS(1529), + [anon_sym_DOLLARdefined] = ACTIONS(1529), + [anon_sym_DOLLARembed] = ACTIONS(1529), + [anon_sym_DOLLARand] = ACTIONS(1529), + [anon_sym_DOLLARor] = ACTIONS(1529), + [anon_sym_DOLLARfeature] = ACTIONS(1529), + [anon_sym_DOLLARassignable] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1531), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_typeid] = ACTIONS(1529), + [anon_sym_LBRACE_PIPE] = ACTIONS(1531), + [anon_sym_PIPE_RBRACE] = ACTIONS(1531), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_ichar] = ACTIONS(1529), + [anon_sym_short] = ACTIONS(1529), + [anon_sym_ushort] = ACTIONS(1529), + [anon_sym_uint] = ACTIONS(1529), + [anon_sym_long] = ACTIONS(1529), + [anon_sym_ulong] = ACTIONS(1529), + [anon_sym_int128] = ACTIONS(1529), + [anon_sym_uint128] = ACTIONS(1529), + [anon_sym_float] = ACTIONS(1529), + [anon_sym_double] = ACTIONS(1529), + [anon_sym_float16] = ACTIONS(1529), + [anon_sym_bfloat16] = ACTIONS(1529), + [anon_sym_float128] = ACTIONS(1529), + [anon_sym_iptr] = ACTIONS(1529), + [anon_sym_uptr] = ACTIONS(1529), + [anon_sym_isz] = ACTIONS(1529), + [anon_sym_usz] = ACTIONS(1529), + [anon_sym_anyfault] = ACTIONS(1529), + [anon_sym_any] = ACTIONS(1529), + [anon_sym_DOLLARtypeof] = ACTIONS(1529), + [anon_sym_DOLLARtypefrom] = ACTIONS(1529), + [anon_sym_DOLLARevaltype] = ACTIONS(1529), + [anon_sym_DOLLARvatype] = ACTIONS(1529), + [sym_real_literal] = ACTIONS(1531), }, - [442] = { - [sym_line_comment] = STATE(442), - [sym_doc_comment] = STATE(442), - [sym_block_comment] = STATE(442), - [sym_ident] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [anon_sym_BQUOTE] = ACTIONS(1485), - [sym_bytes_literal] = ACTIONS(1485), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1483), - [sym_at_ident] = ACTIONS(1485), - [sym_hash_ident] = ACTIONS(1485), - [sym_type_ident] = ACTIONS(1485), - [sym_ct_type_ident] = ACTIONS(1485), - [sym_const_ident] = ACTIONS(1483), - [sym_builtin] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_tlocal] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_fn] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_var] = ACTIONS(1483), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_defer] = ACTIONS(1483), - [anon_sym_assert] = ACTIONS(1483), - [anon_sym_nextcase] = ACTIONS(1483), - [anon_sym_switch] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_foreach] = ACTIONS(1483), - [anon_sym_foreach_r] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(1483), - [anon_sym_int] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_asm] = ACTIONS(1483), - [anon_sym_DOLLARassert] = ACTIONS(1483), - [anon_sym_DOLLARerror] = ACTIONS(1483), - [anon_sym_DOLLARecho] = ACTIONS(1483), - [anon_sym_DOLLARif] = ACTIONS(1483), - [anon_sym_DOLLARcase] = ACTIONS(1483), - [anon_sym_DOLLARdefault] = ACTIONS(1483), - [anon_sym_DOLLARswitch] = ACTIONS(1483), - [anon_sym_DOLLARendswitch] = ACTIONS(1483), - [anon_sym_DOLLARfor] = ACTIONS(1483), - [anon_sym_DOLLARforeach] = ACTIONS(1483), - [anon_sym_DOLLARalignof] = ACTIONS(1483), - [anon_sym_DOLLARextnameof] = ACTIONS(1483), - [anon_sym_DOLLARnameof] = ACTIONS(1483), - [anon_sym_DOLLARoffsetof] = ACTIONS(1483), - [anon_sym_DOLLARqnameof] = ACTIONS(1483), - [anon_sym_DOLLAReval] = ACTIONS(1483), - [anon_sym_DOLLARdefined] = ACTIONS(1483), - [anon_sym_DOLLARsizeof] = ACTIONS(1483), - [anon_sym_DOLLARstringify] = ACTIONS(1483), - [anon_sym_DOLLARis_const] = ACTIONS(1483), - [anon_sym_DOLLARvaconst] = ACTIONS(1483), - [anon_sym_DOLLARvaarg] = ACTIONS(1483), - [anon_sym_DOLLARvaref] = ACTIONS(1483), - [anon_sym_DOLLARvaexpr] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [anon_sym_DOLLARvacount] = ACTIONS(1483), - [anon_sym_DOLLARfeature] = ACTIONS(1483), - [anon_sym_DOLLARand] = ACTIONS(1483), - [anon_sym_DOLLARor] = ACTIONS(1483), - [anon_sym_DOLLARassignable] = ACTIONS(1483), - [anon_sym_DOLLARembed] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_TILDE] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_DASH_DASH] = ACTIONS(1485), - [anon_sym_typeid] = ACTIONS(1483), - [anon_sym_LBRACE_PIPE] = ACTIONS(1485), - [anon_sym_void] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_ichar] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [anon_sym_ushort] = ACTIONS(1483), - [anon_sym_uint] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_ulong] = ACTIONS(1483), - [anon_sym_int128] = ACTIONS(1483), - [anon_sym_uint128] = ACTIONS(1483), - [anon_sym_float] = ACTIONS(1483), - [anon_sym_double] = ACTIONS(1483), - [anon_sym_float16] = ACTIONS(1483), - [anon_sym_bfloat16] = ACTIONS(1483), - [anon_sym_float128] = ACTIONS(1483), - [anon_sym_iptr] = ACTIONS(1483), - [anon_sym_uptr] = ACTIONS(1483), - [anon_sym_isz] = ACTIONS(1483), - [anon_sym_usz] = ACTIONS(1483), - [anon_sym_anyfault] = ACTIONS(1483), - [anon_sym_any] = ACTIONS(1483), - [anon_sym_DOLLARtypeof] = ACTIONS(1483), - [anon_sym_DOLLARtypefrom] = ACTIONS(1483), - [anon_sym_DOLLARvatype] = ACTIONS(1483), - [anon_sym_DOLLARevaltype] = ACTIONS(1483), - [sym_real_literal] = ACTIONS(1485), + [385] = { + [sym_line_comment] = STATE(385), + [sym_doc_comment] = STATE(385), + [sym_block_comment] = STATE(385), + [sym_ident] = ACTIONS(1533), + [sym_integer_literal] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1535), + [anon_sym_BQUOTE] = ACTIONS(1535), + [sym_bytes_literal] = ACTIONS(1535), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1533), + [sym_at_ident] = ACTIONS(1535), + [sym_hash_ident] = ACTIONS(1535), + [sym_type_ident] = ACTIONS(1535), + [sym_ct_type_ident] = ACTIONS(1535), + [sym_const_ident] = ACTIONS(1533), + [sym_builtin] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_tlocal] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_RBRACE] = ACTIONS(1535), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_var] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_defer] = ACTIONS(1533), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_case] = ACTIONS(1533), + [anon_sym_default] = ACTIONS(1533), + [anon_sym_nextcase] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_foreach] = ACTIONS(1533), + [anon_sym_foreach_r] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_int] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_asm] = ACTIONS(1533), + [anon_sym_DOLLARassert] = ACTIONS(1533), + [anon_sym_DOLLARerror] = ACTIONS(1533), + [anon_sym_DOLLARecho] = ACTIONS(1533), + [anon_sym_DOLLARif] = ACTIONS(1533), + [anon_sym_DOLLARswitch] = ACTIONS(1533), + [anon_sym_DOLLARfor] = ACTIONS(1533), + [anon_sym_DOLLARforeach] = ACTIONS(1533), + [anon_sym_DOLLARalignof] = ACTIONS(1533), + [anon_sym_DOLLARextnameof] = ACTIONS(1533), + [anon_sym_DOLLARnameof] = ACTIONS(1533), + [anon_sym_DOLLARoffsetof] = ACTIONS(1533), + [anon_sym_DOLLARqnameof] = ACTIONS(1533), + [anon_sym_DOLLARvaconst] = ACTIONS(1533), + [anon_sym_DOLLARvaarg] = ACTIONS(1533), + [anon_sym_DOLLARvaref] = ACTIONS(1533), + [anon_sym_DOLLARvaexpr] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_null] = ACTIONS(1533), + [anon_sym_DOLLARvacount] = ACTIONS(1533), + [anon_sym_DOLLAReval] = ACTIONS(1533), + [anon_sym_DOLLARis_const] = ACTIONS(1533), + [anon_sym_DOLLARsizeof] = ACTIONS(1533), + [anon_sym_DOLLARstringify] = ACTIONS(1533), + [anon_sym_DOLLARappend] = ACTIONS(1533), + [anon_sym_DOLLARconcat] = ACTIONS(1533), + [anon_sym_DOLLARdefined] = ACTIONS(1533), + [anon_sym_DOLLARembed] = ACTIONS(1533), + [anon_sym_DOLLARand] = ACTIONS(1533), + [anon_sym_DOLLARor] = ACTIONS(1533), + [anon_sym_DOLLARfeature] = ACTIONS(1533), + [anon_sym_DOLLARassignable] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_typeid] = ACTIONS(1533), + [anon_sym_LBRACE_PIPE] = ACTIONS(1535), + [anon_sym_PIPE_RBRACE] = ACTIONS(1535), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_bool] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_ichar] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_ushort] = ACTIONS(1533), + [anon_sym_uint] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_ulong] = ACTIONS(1533), + [anon_sym_int128] = ACTIONS(1533), + [anon_sym_uint128] = ACTIONS(1533), + [anon_sym_float] = ACTIONS(1533), + [anon_sym_double] = ACTIONS(1533), + [anon_sym_float16] = ACTIONS(1533), + [anon_sym_bfloat16] = ACTIONS(1533), + [anon_sym_float128] = ACTIONS(1533), + [anon_sym_iptr] = ACTIONS(1533), + [anon_sym_uptr] = ACTIONS(1533), + [anon_sym_isz] = ACTIONS(1533), + [anon_sym_usz] = ACTIONS(1533), + [anon_sym_anyfault] = ACTIONS(1533), + [anon_sym_any] = ACTIONS(1533), + [anon_sym_DOLLARtypeof] = ACTIONS(1533), + [anon_sym_DOLLARtypefrom] = ACTIONS(1533), + [anon_sym_DOLLARevaltype] = ACTIONS(1533), + [anon_sym_DOLLARvatype] = ACTIONS(1533), + [sym_real_literal] = ACTIONS(1535), }, - [443] = { - [sym_line_comment] = STATE(443), - [sym_doc_comment] = STATE(443), - [sym_block_comment] = STATE(443), - [sym_ident] = ACTIONS(1559), - [sym_integer_literal] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_bytes_literal] = ACTIONS(1561), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1559), - [sym_at_ident] = ACTIONS(1561), - [sym_hash_ident] = ACTIONS(1561), - [sym_type_ident] = ACTIONS(1561), - [sym_ct_type_ident] = ACTIONS(1561), - [sym_const_ident] = ACTIONS(1559), - [sym_builtin] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_tlocal] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_fn] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [anon_sym_var] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_defer] = ACTIONS(1559), - [anon_sym_assert] = ACTIONS(1559), - [anon_sym_nextcase] = ACTIONS(1559), - [anon_sym_switch] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_foreach] = ACTIONS(1559), - [anon_sym_foreach_r] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_int] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_STAR] = ACTIONS(1561), - [anon_sym_asm] = ACTIONS(1559), - [anon_sym_DOLLARassert] = ACTIONS(1559), - [anon_sym_DOLLARerror] = ACTIONS(1559), - [anon_sym_DOLLARecho] = ACTIONS(1559), - [anon_sym_DOLLARif] = ACTIONS(1559), - [anon_sym_DOLLARcase] = ACTIONS(1559), - [anon_sym_DOLLARdefault] = ACTIONS(1559), - [anon_sym_DOLLARswitch] = ACTIONS(1559), - [anon_sym_DOLLARendswitch] = ACTIONS(1559), - [anon_sym_DOLLARfor] = ACTIONS(1559), - [anon_sym_DOLLARforeach] = ACTIONS(1559), - [anon_sym_DOLLARalignof] = ACTIONS(1559), - [anon_sym_DOLLARextnameof] = ACTIONS(1559), - [anon_sym_DOLLARnameof] = ACTIONS(1559), - [anon_sym_DOLLARoffsetof] = ACTIONS(1559), - [anon_sym_DOLLARqnameof] = ACTIONS(1559), - [anon_sym_DOLLAReval] = ACTIONS(1559), - [anon_sym_DOLLARdefined] = ACTIONS(1559), - [anon_sym_DOLLARsizeof] = ACTIONS(1559), - [anon_sym_DOLLARstringify] = ACTIONS(1559), - [anon_sym_DOLLARis_const] = ACTIONS(1559), - [anon_sym_DOLLARvaconst] = ACTIONS(1559), - [anon_sym_DOLLARvaarg] = ACTIONS(1559), - [anon_sym_DOLLARvaref] = ACTIONS(1559), - [anon_sym_DOLLARvaexpr] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1559), - [anon_sym_false] = ACTIONS(1559), - [anon_sym_null] = ACTIONS(1559), - [anon_sym_DOLLARvacount] = ACTIONS(1559), - [anon_sym_DOLLARfeature] = ACTIONS(1559), - [anon_sym_DOLLARand] = ACTIONS(1559), - [anon_sym_DOLLARor] = ACTIONS(1559), - [anon_sym_DOLLARassignable] = ACTIONS(1559), - [anon_sym_DOLLARembed] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1561), - [anon_sym_TILDE] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_typeid] = ACTIONS(1559), - [anon_sym_LBRACE_PIPE] = ACTIONS(1561), - [anon_sym_void] = ACTIONS(1559), - [anon_sym_bool] = ACTIONS(1559), - [anon_sym_char] = ACTIONS(1559), - [anon_sym_ichar] = ACTIONS(1559), - [anon_sym_short] = ACTIONS(1559), - [anon_sym_ushort] = ACTIONS(1559), - [anon_sym_uint] = ACTIONS(1559), - [anon_sym_long] = ACTIONS(1559), - [anon_sym_ulong] = ACTIONS(1559), - [anon_sym_int128] = ACTIONS(1559), - [anon_sym_uint128] = ACTIONS(1559), - [anon_sym_float] = ACTIONS(1559), - [anon_sym_double] = ACTIONS(1559), - [anon_sym_float16] = ACTIONS(1559), - [anon_sym_bfloat16] = ACTIONS(1559), - [anon_sym_float128] = ACTIONS(1559), - [anon_sym_iptr] = ACTIONS(1559), - [anon_sym_uptr] = ACTIONS(1559), - [anon_sym_isz] = ACTIONS(1559), - [anon_sym_usz] = ACTIONS(1559), - [anon_sym_anyfault] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_DOLLARtypeof] = ACTIONS(1559), - [anon_sym_DOLLARtypefrom] = ACTIONS(1559), - [anon_sym_DOLLARvatype] = ACTIONS(1559), - [anon_sym_DOLLARevaltype] = ACTIONS(1559), - [sym_real_literal] = ACTIONS(1561), + [386] = { + [sym_line_comment] = STATE(386), + [sym_doc_comment] = STATE(386), + [sym_block_comment] = STATE(386), + [sym_ident] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1539), + [anon_sym_BQUOTE] = ACTIONS(1539), + [sym_bytes_literal] = ACTIONS(1539), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1537), + [sym_at_ident] = ACTIONS(1539), + [sym_hash_ident] = ACTIONS(1539), + [sym_type_ident] = ACTIONS(1539), + [sym_ct_type_ident] = ACTIONS(1539), + [sym_const_ident] = ACTIONS(1537), + [sym_builtin] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_tlocal] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_defer] = ACTIONS(1537), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_case] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1537), + [anon_sym_nextcase] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_foreach] = ACTIONS(1537), + [anon_sym_foreach_r] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_int] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym_DOLLARassert] = ACTIONS(1537), + [anon_sym_DOLLARerror] = ACTIONS(1537), + [anon_sym_DOLLARecho] = ACTIONS(1537), + [anon_sym_DOLLARif] = ACTIONS(1537), + [anon_sym_DOLLARswitch] = ACTIONS(1537), + [anon_sym_DOLLARfor] = ACTIONS(1537), + [anon_sym_DOLLARforeach] = ACTIONS(1537), + [anon_sym_DOLLARalignof] = ACTIONS(1537), + [anon_sym_DOLLARextnameof] = ACTIONS(1537), + [anon_sym_DOLLARnameof] = ACTIONS(1537), + [anon_sym_DOLLARoffsetof] = ACTIONS(1537), + [anon_sym_DOLLARqnameof] = ACTIONS(1537), + [anon_sym_DOLLARvaconst] = ACTIONS(1537), + [anon_sym_DOLLARvaarg] = ACTIONS(1537), + [anon_sym_DOLLARvaref] = ACTIONS(1537), + [anon_sym_DOLLARvaexpr] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [anon_sym_DOLLARvacount] = ACTIONS(1537), + [anon_sym_DOLLAReval] = ACTIONS(1537), + [anon_sym_DOLLARis_const] = ACTIONS(1537), + [anon_sym_DOLLARsizeof] = ACTIONS(1537), + [anon_sym_DOLLARstringify] = ACTIONS(1537), + [anon_sym_DOLLARappend] = ACTIONS(1537), + [anon_sym_DOLLARconcat] = ACTIONS(1537), + [anon_sym_DOLLARdefined] = ACTIONS(1537), + [anon_sym_DOLLARembed] = ACTIONS(1537), + [anon_sym_DOLLARand] = ACTIONS(1537), + [anon_sym_DOLLARor] = ACTIONS(1537), + [anon_sym_DOLLARfeature] = ACTIONS(1537), + [anon_sym_DOLLARassignable] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_typeid] = ACTIONS(1537), + [anon_sym_LBRACE_PIPE] = ACTIONS(1539), + [anon_sym_PIPE_RBRACE] = ACTIONS(1539), + [anon_sym_void] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_ichar] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [anon_sym_ushort] = ACTIONS(1537), + [anon_sym_uint] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_ulong] = ACTIONS(1537), + [anon_sym_int128] = ACTIONS(1537), + [anon_sym_uint128] = ACTIONS(1537), + [anon_sym_float] = ACTIONS(1537), + [anon_sym_double] = ACTIONS(1537), + [anon_sym_float16] = ACTIONS(1537), + [anon_sym_bfloat16] = ACTIONS(1537), + [anon_sym_float128] = ACTIONS(1537), + [anon_sym_iptr] = ACTIONS(1537), + [anon_sym_uptr] = ACTIONS(1537), + [anon_sym_isz] = ACTIONS(1537), + [anon_sym_usz] = ACTIONS(1537), + [anon_sym_anyfault] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_DOLLARtypeof] = ACTIONS(1537), + [anon_sym_DOLLARtypefrom] = ACTIONS(1537), + [anon_sym_DOLLARevaltype] = ACTIONS(1537), + [anon_sym_DOLLARvatype] = ACTIONS(1537), + [sym_real_literal] = ACTIONS(1539), }, - [444] = { - [sym_line_comment] = STATE(444), - [sym_doc_comment] = STATE(444), - [sym_block_comment] = STATE(444), - [sym_ident] = ACTIONS(1567), - [sym_integer_literal] = ACTIONS(1569), - [anon_sym_SQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [anon_sym_BQUOTE] = ACTIONS(1569), - [sym_bytes_literal] = ACTIONS(1569), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1567), - [sym_at_ident] = ACTIONS(1569), - [sym_hash_ident] = ACTIONS(1569), - [sym_type_ident] = ACTIONS(1569), - [sym_ct_type_ident] = ACTIONS(1569), - [sym_const_ident] = ACTIONS(1567), - [sym_builtin] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_AMP] = ACTIONS(1567), - [anon_sym_static] = ACTIONS(1567), - [anon_sym_tlocal] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1569), - [anon_sym_fn] = ACTIONS(1567), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_const] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(1567), - [anon_sym_return] = ACTIONS(1567), - [anon_sym_continue] = ACTIONS(1567), - [anon_sym_break] = ACTIONS(1567), - [anon_sym_defer] = ACTIONS(1567), - [anon_sym_assert] = ACTIONS(1567), - [anon_sym_nextcase] = ACTIONS(1567), - [anon_sym_switch] = ACTIONS(1567), - [anon_sym_AMP_AMP] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1567), - [anon_sym_for] = ACTIONS(1567), - [anon_sym_foreach] = ACTIONS(1567), - [anon_sym_foreach_r] = ACTIONS(1567), - [anon_sym_while] = ACTIONS(1567), - [anon_sym_do] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), - [anon_sym_STAR] = ACTIONS(1569), - [anon_sym_asm] = ACTIONS(1567), - [anon_sym_DOLLARassert] = ACTIONS(1567), - [anon_sym_DOLLARerror] = ACTIONS(1567), - [anon_sym_DOLLARecho] = ACTIONS(1567), - [anon_sym_DOLLARif] = ACTIONS(1567), - [anon_sym_DOLLARcase] = ACTIONS(1567), - [anon_sym_DOLLARdefault] = ACTIONS(1567), - [anon_sym_DOLLARswitch] = ACTIONS(1567), - [anon_sym_DOLLARendswitch] = ACTIONS(1567), - [anon_sym_DOLLARfor] = ACTIONS(1567), - [anon_sym_DOLLARforeach] = ACTIONS(1567), - [anon_sym_DOLLARalignof] = ACTIONS(1567), - [anon_sym_DOLLARextnameof] = ACTIONS(1567), - [anon_sym_DOLLARnameof] = ACTIONS(1567), - [anon_sym_DOLLARoffsetof] = ACTIONS(1567), - [anon_sym_DOLLARqnameof] = ACTIONS(1567), - [anon_sym_DOLLAReval] = ACTIONS(1567), - [anon_sym_DOLLARdefined] = ACTIONS(1567), - [anon_sym_DOLLARsizeof] = ACTIONS(1567), - [anon_sym_DOLLARstringify] = ACTIONS(1567), - [anon_sym_DOLLARis_const] = ACTIONS(1567), - [anon_sym_DOLLARvaconst] = ACTIONS(1567), - [anon_sym_DOLLARvaarg] = ACTIONS(1567), - [anon_sym_DOLLARvaref] = ACTIONS(1567), - [anon_sym_DOLLARvaexpr] = ACTIONS(1567), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [anon_sym_null] = ACTIONS(1567), - [anon_sym_DOLLARvacount] = ACTIONS(1567), - [anon_sym_DOLLARfeature] = ACTIONS(1567), - [anon_sym_DOLLARand] = ACTIONS(1567), - [anon_sym_DOLLARor] = ACTIONS(1567), - [anon_sym_DOLLARassignable] = ACTIONS(1567), - [anon_sym_DOLLARembed] = ACTIONS(1567), - [anon_sym_BANG] = ACTIONS(1569), - [anon_sym_TILDE] = ACTIONS(1569), - [anon_sym_PLUS_PLUS] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1569), - [anon_sym_typeid] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_char] = ACTIONS(1567), - [anon_sym_ichar] = ACTIONS(1567), - [anon_sym_short] = ACTIONS(1567), - [anon_sym_ushort] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_long] = ACTIONS(1567), - [anon_sym_ulong] = ACTIONS(1567), - [anon_sym_int128] = ACTIONS(1567), - [anon_sym_uint128] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_double] = ACTIONS(1567), - [anon_sym_float16] = ACTIONS(1567), - [anon_sym_bfloat16] = ACTIONS(1567), - [anon_sym_float128] = ACTIONS(1567), - [anon_sym_iptr] = ACTIONS(1567), - [anon_sym_uptr] = ACTIONS(1567), - [anon_sym_isz] = ACTIONS(1567), - [anon_sym_usz] = ACTIONS(1567), - [anon_sym_anyfault] = ACTIONS(1567), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_DOLLARtypeof] = ACTIONS(1567), - [anon_sym_DOLLARtypefrom] = ACTIONS(1567), - [anon_sym_DOLLARvatype] = ACTIONS(1567), - [anon_sym_DOLLARevaltype] = ACTIONS(1567), - [sym_real_literal] = ACTIONS(1569), + [387] = { + [sym_line_comment] = STATE(387), + [sym_doc_comment] = STATE(387), + [sym_block_comment] = STATE(387), + [sym_ident] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_BQUOTE] = ACTIONS(1543), + [sym_bytes_literal] = ACTIONS(1543), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1541), + [sym_at_ident] = ACTIONS(1543), + [sym_hash_ident] = ACTIONS(1543), + [sym_type_ident] = ACTIONS(1543), + [sym_ct_type_ident] = ACTIONS(1543), + [sym_const_ident] = ACTIONS(1541), + [sym_builtin] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_tlocal] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_defer] = ACTIONS(1541), + [anon_sym_assert] = ACTIONS(1541), + [anon_sym_case] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1541), + [anon_sym_nextcase] = ACTIONS(1541), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_foreach] = ACTIONS(1541), + [anon_sym_foreach_r] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_int] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym_DOLLARassert] = ACTIONS(1541), + [anon_sym_DOLLARerror] = ACTIONS(1541), + [anon_sym_DOLLARecho] = ACTIONS(1541), + [anon_sym_DOLLARif] = ACTIONS(1541), + [anon_sym_DOLLARswitch] = ACTIONS(1541), + [anon_sym_DOLLARfor] = ACTIONS(1541), + [anon_sym_DOLLARforeach] = ACTIONS(1541), + [anon_sym_DOLLARalignof] = ACTIONS(1541), + [anon_sym_DOLLARextnameof] = ACTIONS(1541), + [anon_sym_DOLLARnameof] = ACTIONS(1541), + [anon_sym_DOLLARoffsetof] = ACTIONS(1541), + [anon_sym_DOLLARqnameof] = ACTIONS(1541), + [anon_sym_DOLLARvaconst] = ACTIONS(1541), + [anon_sym_DOLLARvaarg] = ACTIONS(1541), + [anon_sym_DOLLARvaref] = ACTIONS(1541), + [anon_sym_DOLLARvaexpr] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_null] = ACTIONS(1541), + [anon_sym_DOLLARvacount] = ACTIONS(1541), + [anon_sym_DOLLAReval] = ACTIONS(1541), + [anon_sym_DOLLARis_const] = ACTIONS(1541), + [anon_sym_DOLLARsizeof] = ACTIONS(1541), + [anon_sym_DOLLARstringify] = ACTIONS(1541), + [anon_sym_DOLLARappend] = ACTIONS(1541), + [anon_sym_DOLLARconcat] = ACTIONS(1541), + [anon_sym_DOLLARdefined] = ACTIONS(1541), + [anon_sym_DOLLARembed] = ACTIONS(1541), + [anon_sym_DOLLARand] = ACTIONS(1541), + [anon_sym_DOLLARor] = ACTIONS(1541), + [anon_sym_DOLLARfeature] = ACTIONS(1541), + [anon_sym_DOLLARassignable] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_typeid] = ACTIONS(1541), + [anon_sym_LBRACE_PIPE] = ACTIONS(1543), + [anon_sym_PIPE_RBRACE] = ACTIONS(1543), + [anon_sym_void] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_ichar] = ACTIONS(1541), + [anon_sym_short] = ACTIONS(1541), + [anon_sym_ushort] = ACTIONS(1541), + [anon_sym_uint] = ACTIONS(1541), + [anon_sym_long] = ACTIONS(1541), + [anon_sym_ulong] = ACTIONS(1541), + [anon_sym_int128] = ACTIONS(1541), + [anon_sym_uint128] = ACTIONS(1541), + [anon_sym_float] = ACTIONS(1541), + [anon_sym_double] = ACTIONS(1541), + [anon_sym_float16] = ACTIONS(1541), + [anon_sym_bfloat16] = ACTIONS(1541), + [anon_sym_float128] = ACTIONS(1541), + [anon_sym_iptr] = ACTIONS(1541), + [anon_sym_uptr] = ACTIONS(1541), + [anon_sym_isz] = ACTIONS(1541), + [anon_sym_usz] = ACTIONS(1541), + [anon_sym_anyfault] = ACTIONS(1541), + [anon_sym_any] = ACTIONS(1541), + [anon_sym_DOLLARtypeof] = ACTIONS(1541), + [anon_sym_DOLLARtypefrom] = ACTIONS(1541), + [anon_sym_DOLLARevaltype] = ACTIONS(1541), + [anon_sym_DOLLARvatype] = ACTIONS(1541), + [sym_real_literal] = ACTIONS(1543), }, - [445] = { - [sym_line_comment] = STATE(445), - [sym_doc_comment] = STATE(445), - [sym_block_comment] = STATE(445), - [sym_ident] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1481), - [anon_sym_BQUOTE] = ACTIONS(1481), - [sym_bytes_literal] = ACTIONS(1481), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1479), - [sym_at_ident] = ACTIONS(1481), - [sym_hash_ident] = ACTIONS(1481), - [sym_type_ident] = ACTIONS(1481), - [sym_ct_type_ident] = ACTIONS(1481), - [sym_const_ident] = ACTIONS(1479), - [sym_builtin] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_tlocal] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_fn] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_defer] = ACTIONS(1479), - [anon_sym_assert] = ACTIONS(1479), - [anon_sym_nextcase] = ACTIONS(1479), - [anon_sym_switch] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_foreach] = ACTIONS(1479), - [anon_sym_foreach_r] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_do] = ACTIONS(1479), - [anon_sym_int] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1481), - [anon_sym_asm] = ACTIONS(1479), - [anon_sym_DOLLARassert] = ACTIONS(1479), - [anon_sym_DOLLARerror] = ACTIONS(1479), - [anon_sym_DOLLARecho] = ACTIONS(1479), - [anon_sym_DOLLARif] = ACTIONS(1479), - [anon_sym_DOLLARcase] = ACTIONS(1479), - [anon_sym_DOLLARdefault] = ACTIONS(1479), - [anon_sym_DOLLARswitch] = ACTIONS(1479), - [anon_sym_DOLLARendswitch] = ACTIONS(1479), - [anon_sym_DOLLARfor] = ACTIONS(1479), - [anon_sym_DOLLARforeach] = ACTIONS(1479), - [anon_sym_DOLLARalignof] = ACTIONS(1479), - [anon_sym_DOLLARextnameof] = ACTIONS(1479), - [anon_sym_DOLLARnameof] = ACTIONS(1479), - [anon_sym_DOLLARoffsetof] = ACTIONS(1479), - [anon_sym_DOLLARqnameof] = ACTIONS(1479), - [anon_sym_DOLLAReval] = ACTIONS(1479), - [anon_sym_DOLLARdefined] = ACTIONS(1479), - [anon_sym_DOLLARsizeof] = ACTIONS(1479), - [anon_sym_DOLLARstringify] = ACTIONS(1479), - [anon_sym_DOLLARis_const] = ACTIONS(1479), - [anon_sym_DOLLARvaconst] = ACTIONS(1479), - [anon_sym_DOLLARvaarg] = ACTIONS(1479), - [anon_sym_DOLLARvaref] = ACTIONS(1479), - [anon_sym_DOLLARvaexpr] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1479), - [anon_sym_false] = ACTIONS(1479), - [anon_sym_null] = ACTIONS(1479), - [anon_sym_DOLLARvacount] = ACTIONS(1479), - [anon_sym_DOLLARfeature] = ACTIONS(1479), - [anon_sym_DOLLARand] = ACTIONS(1479), - [anon_sym_DOLLARor] = ACTIONS(1479), - [anon_sym_DOLLARassignable] = ACTIONS(1479), - [anon_sym_DOLLARembed] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1481), - [anon_sym_typeid] = ACTIONS(1479), - [anon_sym_LBRACE_PIPE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1479), - [anon_sym_bool] = ACTIONS(1479), - [anon_sym_char] = ACTIONS(1479), - [anon_sym_ichar] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [anon_sym_ushort] = ACTIONS(1479), - [anon_sym_uint] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_ulong] = ACTIONS(1479), - [anon_sym_int128] = ACTIONS(1479), - [anon_sym_uint128] = ACTIONS(1479), - [anon_sym_float] = ACTIONS(1479), - [anon_sym_double] = ACTIONS(1479), - [anon_sym_float16] = ACTIONS(1479), - [anon_sym_bfloat16] = ACTIONS(1479), - [anon_sym_float128] = ACTIONS(1479), - [anon_sym_iptr] = ACTIONS(1479), - [anon_sym_uptr] = ACTIONS(1479), - [anon_sym_isz] = ACTIONS(1479), - [anon_sym_usz] = ACTIONS(1479), - [anon_sym_anyfault] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_DOLLARtypeof] = ACTIONS(1479), - [anon_sym_DOLLARtypefrom] = ACTIONS(1479), - [anon_sym_DOLLARvatype] = ACTIONS(1479), - [anon_sym_DOLLARevaltype] = ACTIONS(1479), - [sym_real_literal] = ACTIONS(1481), + [388] = { + [sym_line_comment] = STATE(388), + [sym_doc_comment] = STATE(388), + [sym_block_comment] = STATE(388), + [sym_ident] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_bytes_literal] = ACTIONS(1547), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1545), + [sym_at_ident] = ACTIONS(1547), + [sym_hash_ident] = ACTIONS(1547), + [sym_type_ident] = ACTIONS(1547), + [sym_ct_type_ident] = ACTIONS(1547), + [sym_const_ident] = ACTIONS(1545), + [sym_builtin] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_tlocal] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_fn] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_defer] = ACTIONS(1545), + [anon_sym_assert] = ACTIONS(1545), + [anon_sym_case] = ACTIONS(1545), + [anon_sym_default] = ACTIONS(1545), + [anon_sym_nextcase] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_foreach] = ACTIONS(1545), + [anon_sym_foreach_r] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_int] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_asm] = ACTIONS(1545), + [anon_sym_DOLLARassert] = ACTIONS(1545), + [anon_sym_DOLLARerror] = ACTIONS(1545), + [anon_sym_DOLLARecho] = ACTIONS(1545), + [anon_sym_DOLLARif] = ACTIONS(1545), + [anon_sym_DOLLARswitch] = ACTIONS(1545), + [anon_sym_DOLLARfor] = ACTIONS(1545), + [anon_sym_DOLLARforeach] = ACTIONS(1545), + [anon_sym_DOLLARalignof] = ACTIONS(1545), + [anon_sym_DOLLARextnameof] = ACTIONS(1545), + [anon_sym_DOLLARnameof] = ACTIONS(1545), + [anon_sym_DOLLARoffsetof] = ACTIONS(1545), + [anon_sym_DOLLARqnameof] = ACTIONS(1545), + [anon_sym_DOLLARvaconst] = ACTIONS(1545), + [anon_sym_DOLLARvaarg] = ACTIONS(1545), + [anon_sym_DOLLARvaref] = ACTIONS(1545), + [anon_sym_DOLLARvaexpr] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_DOLLARvacount] = ACTIONS(1545), + [anon_sym_DOLLAReval] = ACTIONS(1545), + [anon_sym_DOLLARis_const] = ACTIONS(1545), + [anon_sym_DOLLARsizeof] = ACTIONS(1545), + [anon_sym_DOLLARstringify] = ACTIONS(1545), + [anon_sym_DOLLARappend] = ACTIONS(1545), + [anon_sym_DOLLARconcat] = ACTIONS(1545), + [anon_sym_DOLLARdefined] = ACTIONS(1545), + [anon_sym_DOLLARembed] = ACTIONS(1545), + [anon_sym_DOLLARand] = ACTIONS(1545), + [anon_sym_DOLLARor] = ACTIONS(1545), + [anon_sym_DOLLARfeature] = ACTIONS(1545), + [anon_sym_DOLLARassignable] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1547), + [anon_sym_typeid] = ACTIONS(1545), + [anon_sym_LBRACE_PIPE] = ACTIONS(1547), + [anon_sym_PIPE_RBRACE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_ichar] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [anon_sym_ushort] = ACTIONS(1545), + [anon_sym_uint] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_ulong] = ACTIONS(1545), + [anon_sym_int128] = ACTIONS(1545), + [anon_sym_uint128] = ACTIONS(1545), + [anon_sym_float] = ACTIONS(1545), + [anon_sym_double] = ACTIONS(1545), + [anon_sym_float16] = ACTIONS(1545), + [anon_sym_bfloat16] = ACTIONS(1545), + [anon_sym_float128] = ACTIONS(1545), + [anon_sym_iptr] = ACTIONS(1545), + [anon_sym_uptr] = ACTIONS(1545), + [anon_sym_isz] = ACTIONS(1545), + [anon_sym_usz] = ACTIONS(1545), + [anon_sym_anyfault] = ACTIONS(1545), + [anon_sym_any] = ACTIONS(1545), + [anon_sym_DOLLARtypeof] = ACTIONS(1545), + [anon_sym_DOLLARtypefrom] = ACTIONS(1545), + [anon_sym_DOLLARevaltype] = ACTIONS(1545), + [anon_sym_DOLLARvatype] = ACTIONS(1545), + [sym_real_literal] = ACTIONS(1547), }, - [446] = { - [sym_line_comment] = STATE(446), - [sym_doc_comment] = STATE(446), - [sym_block_comment] = STATE(446), - [sym_ident] = ACTIONS(1475), - [sym_integer_literal] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1477), - [sym_bytes_literal] = ACTIONS(1477), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1475), - [sym_at_ident] = ACTIONS(1477), - [sym_hash_ident] = ACTIONS(1477), - [sym_type_ident] = ACTIONS(1477), - [sym_ct_type_ident] = ACTIONS(1477), - [sym_const_ident] = ACTIONS(1475), - [sym_builtin] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_tlocal] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_fn] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_var] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_defer] = ACTIONS(1475), - [anon_sym_assert] = ACTIONS(1475), - [anon_sym_nextcase] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_foreach] = ACTIONS(1475), - [anon_sym_foreach_r] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_int] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_asm] = ACTIONS(1475), - [anon_sym_DOLLARassert] = ACTIONS(1475), - [anon_sym_DOLLARerror] = ACTIONS(1475), - [anon_sym_DOLLARecho] = ACTIONS(1475), - [anon_sym_DOLLARif] = ACTIONS(1475), - [anon_sym_DOLLARcase] = ACTIONS(1475), - [anon_sym_DOLLARdefault] = ACTIONS(1475), - [anon_sym_DOLLARswitch] = ACTIONS(1475), - [anon_sym_DOLLARendswitch] = ACTIONS(1475), - [anon_sym_DOLLARfor] = ACTIONS(1475), - [anon_sym_DOLLARforeach] = ACTIONS(1475), - [anon_sym_DOLLARalignof] = ACTIONS(1475), - [anon_sym_DOLLARextnameof] = ACTIONS(1475), - [anon_sym_DOLLARnameof] = ACTIONS(1475), - [anon_sym_DOLLARoffsetof] = ACTIONS(1475), - [anon_sym_DOLLARqnameof] = ACTIONS(1475), - [anon_sym_DOLLAReval] = ACTIONS(1475), - [anon_sym_DOLLARdefined] = ACTIONS(1475), - [anon_sym_DOLLARsizeof] = ACTIONS(1475), - [anon_sym_DOLLARstringify] = ACTIONS(1475), - [anon_sym_DOLLARis_const] = ACTIONS(1475), - [anon_sym_DOLLARvaconst] = ACTIONS(1475), - [anon_sym_DOLLARvaarg] = ACTIONS(1475), - [anon_sym_DOLLARvaref] = ACTIONS(1475), - [anon_sym_DOLLARvaexpr] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_DOLLARvacount] = ACTIONS(1475), - [anon_sym_DOLLARfeature] = ACTIONS(1475), - [anon_sym_DOLLARand] = ACTIONS(1475), - [anon_sym_DOLLARor] = ACTIONS(1475), - [anon_sym_DOLLARassignable] = ACTIONS(1475), - [anon_sym_DOLLARembed] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1477), - [anon_sym_DASH_DASH] = ACTIONS(1477), - [anon_sym_typeid] = ACTIONS(1475), - [anon_sym_LBRACE_PIPE] = ACTIONS(1477), - [anon_sym_void] = ACTIONS(1475), - [anon_sym_bool] = ACTIONS(1475), - [anon_sym_char] = ACTIONS(1475), - [anon_sym_ichar] = ACTIONS(1475), - [anon_sym_short] = ACTIONS(1475), - [anon_sym_ushort] = ACTIONS(1475), - [anon_sym_uint] = ACTIONS(1475), - [anon_sym_long] = ACTIONS(1475), - [anon_sym_ulong] = ACTIONS(1475), - [anon_sym_int128] = ACTIONS(1475), - [anon_sym_uint128] = ACTIONS(1475), - [anon_sym_float] = ACTIONS(1475), - [anon_sym_double] = ACTIONS(1475), - [anon_sym_float16] = ACTIONS(1475), - [anon_sym_bfloat16] = ACTIONS(1475), - [anon_sym_float128] = ACTIONS(1475), - [anon_sym_iptr] = ACTIONS(1475), - [anon_sym_uptr] = ACTIONS(1475), - [anon_sym_isz] = ACTIONS(1475), - [anon_sym_usz] = ACTIONS(1475), - [anon_sym_anyfault] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_DOLLARtypeof] = ACTIONS(1475), - [anon_sym_DOLLARtypefrom] = ACTIONS(1475), - [anon_sym_DOLLARvatype] = ACTIONS(1475), - [anon_sym_DOLLARevaltype] = ACTIONS(1475), - [sym_real_literal] = ACTIONS(1477), + [389] = { + [sym_line_comment] = STATE(389), + [sym_doc_comment] = STATE(389), + [sym_block_comment] = STATE(389), + [sym_ident] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [anon_sym_BQUOTE] = ACTIONS(1551), + [sym_bytes_literal] = ACTIONS(1551), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1549), + [sym_at_ident] = ACTIONS(1551), + [sym_hash_ident] = ACTIONS(1551), + [sym_type_ident] = ACTIONS(1551), + [sym_ct_type_ident] = ACTIONS(1551), + [sym_const_ident] = ACTIONS(1549), + [sym_builtin] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_tlocal] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_defer] = ACTIONS(1549), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_case] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1549), + [anon_sym_nextcase] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_foreach] = ACTIONS(1549), + [anon_sym_foreach_r] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_int] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_asm] = ACTIONS(1549), + [anon_sym_DOLLARassert] = ACTIONS(1549), + [anon_sym_DOLLARerror] = ACTIONS(1549), + [anon_sym_DOLLARecho] = ACTIONS(1549), + [anon_sym_DOLLARif] = ACTIONS(1549), + [anon_sym_DOLLARswitch] = ACTIONS(1549), + [anon_sym_DOLLARfor] = ACTIONS(1549), + [anon_sym_DOLLARforeach] = ACTIONS(1549), + [anon_sym_DOLLARalignof] = ACTIONS(1549), + [anon_sym_DOLLARextnameof] = ACTIONS(1549), + [anon_sym_DOLLARnameof] = ACTIONS(1549), + [anon_sym_DOLLARoffsetof] = ACTIONS(1549), + [anon_sym_DOLLARqnameof] = ACTIONS(1549), + [anon_sym_DOLLARvaconst] = ACTIONS(1549), + [anon_sym_DOLLARvaarg] = ACTIONS(1549), + [anon_sym_DOLLARvaref] = ACTIONS(1549), + [anon_sym_DOLLARvaexpr] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_null] = ACTIONS(1549), + [anon_sym_DOLLARvacount] = ACTIONS(1549), + [anon_sym_DOLLAReval] = ACTIONS(1549), + [anon_sym_DOLLARis_const] = ACTIONS(1549), + [anon_sym_DOLLARsizeof] = ACTIONS(1549), + [anon_sym_DOLLARstringify] = ACTIONS(1549), + [anon_sym_DOLLARappend] = ACTIONS(1549), + [anon_sym_DOLLARconcat] = ACTIONS(1549), + [anon_sym_DOLLARdefined] = ACTIONS(1549), + [anon_sym_DOLLARembed] = ACTIONS(1549), + [anon_sym_DOLLARand] = ACTIONS(1549), + [anon_sym_DOLLARor] = ACTIONS(1549), + [anon_sym_DOLLARfeature] = ACTIONS(1549), + [anon_sym_DOLLARassignable] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_typeid] = ACTIONS(1549), + [anon_sym_LBRACE_PIPE] = ACTIONS(1551), + [anon_sym_PIPE_RBRACE] = ACTIONS(1551), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_ichar] = ACTIONS(1549), + [anon_sym_short] = ACTIONS(1549), + [anon_sym_ushort] = ACTIONS(1549), + [anon_sym_uint] = ACTIONS(1549), + [anon_sym_long] = ACTIONS(1549), + [anon_sym_ulong] = ACTIONS(1549), + [anon_sym_int128] = ACTIONS(1549), + [anon_sym_uint128] = ACTIONS(1549), + [anon_sym_float] = ACTIONS(1549), + [anon_sym_double] = ACTIONS(1549), + [anon_sym_float16] = ACTIONS(1549), + [anon_sym_bfloat16] = ACTIONS(1549), + [anon_sym_float128] = ACTIONS(1549), + [anon_sym_iptr] = ACTIONS(1549), + [anon_sym_uptr] = ACTIONS(1549), + [anon_sym_isz] = ACTIONS(1549), + [anon_sym_usz] = ACTIONS(1549), + [anon_sym_anyfault] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_DOLLARtypeof] = ACTIONS(1549), + [anon_sym_DOLLARtypefrom] = ACTIONS(1549), + [anon_sym_DOLLARevaltype] = ACTIONS(1549), + [anon_sym_DOLLARvatype] = ACTIONS(1549), + [sym_real_literal] = ACTIONS(1551), }, - [447] = { - [sym_line_comment] = STATE(447), - [sym_doc_comment] = STATE(447), - [sym_block_comment] = STATE(447), - [sym_ident] = ACTIONS(1471), - [sym_integer_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1473), - [anon_sym_BQUOTE] = ACTIONS(1473), - [sym_bytes_literal] = ACTIONS(1473), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1471), - [sym_at_ident] = ACTIONS(1473), - [sym_hash_ident] = ACTIONS(1473), - [sym_type_ident] = ACTIONS(1473), - [sym_ct_type_ident] = ACTIONS(1473), - [sym_const_ident] = ACTIONS(1471), - [sym_builtin] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_tlocal] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1473), - [anon_sym_fn] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_const] = ACTIONS(1471), - [anon_sym_var] = ACTIONS(1471), - [anon_sym_return] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1471), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_defer] = ACTIONS(1471), - [anon_sym_assert] = ACTIONS(1471), - [anon_sym_nextcase] = ACTIONS(1471), - [anon_sym_switch] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1471), - [anon_sym_for] = ACTIONS(1471), - [anon_sym_foreach] = ACTIONS(1471), - [anon_sym_foreach_r] = ACTIONS(1471), - [anon_sym_while] = ACTIONS(1471), - [anon_sym_do] = ACTIONS(1471), - [anon_sym_int] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_asm] = ACTIONS(1471), - [anon_sym_DOLLARassert] = ACTIONS(1471), - [anon_sym_DOLLARerror] = ACTIONS(1471), - [anon_sym_DOLLARecho] = ACTIONS(1471), - [anon_sym_DOLLARif] = ACTIONS(1471), - [anon_sym_DOLLARcase] = ACTIONS(1471), - [anon_sym_DOLLARdefault] = ACTIONS(1471), - [anon_sym_DOLLARswitch] = ACTIONS(1471), - [anon_sym_DOLLARendswitch] = ACTIONS(1471), - [anon_sym_DOLLARfor] = ACTIONS(1471), - [anon_sym_DOLLARforeach] = ACTIONS(1471), - [anon_sym_DOLLARalignof] = ACTIONS(1471), - [anon_sym_DOLLARextnameof] = ACTIONS(1471), - [anon_sym_DOLLARnameof] = ACTIONS(1471), - [anon_sym_DOLLARoffsetof] = ACTIONS(1471), - [anon_sym_DOLLARqnameof] = ACTIONS(1471), - [anon_sym_DOLLAReval] = ACTIONS(1471), - [anon_sym_DOLLARdefined] = ACTIONS(1471), - [anon_sym_DOLLARsizeof] = ACTIONS(1471), - [anon_sym_DOLLARstringify] = ACTIONS(1471), - [anon_sym_DOLLARis_const] = ACTIONS(1471), - [anon_sym_DOLLARvaconst] = ACTIONS(1471), - [anon_sym_DOLLARvaarg] = ACTIONS(1471), - [anon_sym_DOLLARvaref] = ACTIONS(1471), - [anon_sym_DOLLARvaexpr] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1471), - [anon_sym_false] = ACTIONS(1471), - [anon_sym_null] = ACTIONS(1471), - [anon_sym_DOLLARvacount] = ACTIONS(1471), - [anon_sym_DOLLARfeature] = ACTIONS(1471), - [anon_sym_DOLLARand] = ACTIONS(1471), - [anon_sym_DOLLARor] = ACTIONS(1471), - [anon_sym_DOLLARassignable] = ACTIONS(1471), - [anon_sym_DOLLARembed] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1473), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), - [anon_sym_typeid] = ACTIONS(1471), - [anon_sym_LBRACE_PIPE] = ACTIONS(1473), - [anon_sym_void] = ACTIONS(1471), - [anon_sym_bool] = ACTIONS(1471), - [anon_sym_char] = ACTIONS(1471), - [anon_sym_ichar] = ACTIONS(1471), - [anon_sym_short] = ACTIONS(1471), - [anon_sym_ushort] = ACTIONS(1471), - [anon_sym_uint] = ACTIONS(1471), - [anon_sym_long] = ACTIONS(1471), - [anon_sym_ulong] = ACTIONS(1471), - [anon_sym_int128] = ACTIONS(1471), - [anon_sym_uint128] = ACTIONS(1471), - [anon_sym_float] = ACTIONS(1471), - [anon_sym_double] = ACTIONS(1471), - [anon_sym_float16] = ACTIONS(1471), - [anon_sym_bfloat16] = ACTIONS(1471), - [anon_sym_float128] = ACTIONS(1471), - [anon_sym_iptr] = ACTIONS(1471), - [anon_sym_uptr] = ACTIONS(1471), - [anon_sym_isz] = ACTIONS(1471), - [anon_sym_usz] = ACTIONS(1471), - [anon_sym_anyfault] = ACTIONS(1471), - [anon_sym_any] = ACTIONS(1471), - [anon_sym_DOLLARtypeof] = ACTIONS(1471), - [anon_sym_DOLLARtypefrom] = ACTIONS(1471), - [anon_sym_DOLLARvatype] = ACTIONS(1471), - [anon_sym_DOLLARevaltype] = ACTIONS(1471), - [sym_real_literal] = ACTIONS(1473), + [390] = { + [sym_line_comment] = STATE(390), + [sym_doc_comment] = STATE(390), + [sym_block_comment] = STATE(390), + [sym_ident] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1555), + [anon_sym_BQUOTE] = ACTIONS(1555), + [sym_bytes_literal] = ACTIONS(1555), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1553), + [sym_at_ident] = ACTIONS(1555), + [sym_hash_ident] = ACTIONS(1555), + [sym_type_ident] = ACTIONS(1555), + [sym_ct_type_ident] = ACTIONS(1555), + [sym_const_ident] = ACTIONS(1553), + [sym_builtin] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_tlocal] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_RBRACE] = ACTIONS(1555), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_defer] = ACTIONS(1553), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_case] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_nextcase] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_foreach] = ACTIONS(1553), + [anon_sym_foreach_r] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_int] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_asm] = ACTIONS(1553), + [anon_sym_DOLLARassert] = ACTIONS(1553), + [anon_sym_DOLLARerror] = ACTIONS(1553), + [anon_sym_DOLLARecho] = ACTIONS(1553), + [anon_sym_DOLLARif] = ACTIONS(1553), + [anon_sym_DOLLARswitch] = ACTIONS(1553), + [anon_sym_DOLLARfor] = ACTIONS(1553), + [anon_sym_DOLLARforeach] = ACTIONS(1553), + [anon_sym_DOLLARalignof] = ACTIONS(1553), + [anon_sym_DOLLARextnameof] = ACTIONS(1553), + [anon_sym_DOLLARnameof] = ACTIONS(1553), + [anon_sym_DOLLARoffsetof] = ACTIONS(1553), + [anon_sym_DOLLARqnameof] = ACTIONS(1553), + [anon_sym_DOLLARvaconst] = ACTIONS(1553), + [anon_sym_DOLLARvaarg] = ACTIONS(1553), + [anon_sym_DOLLARvaref] = ACTIONS(1553), + [anon_sym_DOLLARvaexpr] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_DOLLARvacount] = ACTIONS(1553), + [anon_sym_DOLLAReval] = ACTIONS(1553), + [anon_sym_DOLLARis_const] = ACTIONS(1553), + [anon_sym_DOLLARsizeof] = ACTIONS(1553), + [anon_sym_DOLLARstringify] = ACTIONS(1553), + [anon_sym_DOLLARappend] = ACTIONS(1553), + [anon_sym_DOLLARconcat] = ACTIONS(1553), + [anon_sym_DOLLARdefined] = ACTIONS(1553), + [anon_sym_DOLLARembed] = ACTIONS(1553), + [anon_sym_DOLLARand] = ACTIONS(1553), + [anon_sym_DOLLARor] = ACTIONS(1553), + [anon_sym_DOLLARfeature] = ACTIONS(1553), + [anon_sym_DOLLARassignable] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_typeid] = ACTIONS(1553), + [anon_sym_LBRACE_PIPE] = ACTIONS(1555), + [anon_sym_PIPE_RBRACE] = ACTIONS(1555), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_ichar] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [anon_sym_ushort] = ACTIONS(1553), + [anon_sym_uint] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_ulong] = ACTIONS(1553), + [anon_sym_int128] = ACTIONS(1553), + [anon_sym_uint128] = ACTIONS(1553), + [anon_sym_float] = ACTIONS(1553), + [anon_sym_double] = ACTIONS(1553), + [anon_sym_float16] = ACTIONS(1553), + [anon_sym_bfloat16] = ACTIONS(1553), + [anon_sym_float128] = ACTIONS(1553), + [anon_sym_iptr] = ACTIONS(1553), + [anon_sym_uptr] = ACTIONS(1553), + [anon_sym_isz] = ACTIONS(1553), + [anon_sym_usz] = ACTIONS(1553), + [anon_sym_anyfault] = ACTIONS(1553), + [anon_sym_any] = ACTIONS(1553), + [anon_sym_DOLLARtypeof] = ACTIONS(1553), + [anon_sym_DOLLARtypefrom] = ACTIONS(1553), + [anon_sym_DOLLARevaltype] = ACTIONS(1553), + [anon_sym_DOLLARvatype] = ACTIONS(1553), + [sym_real_literal] = ACTIONS(1555), }, - [448] = { - [sym_line_comment] = STATE(448), - [sym_doc_comment] = STATE(448), - [sym_block_comment] = STATE(448), - [sym_ident] = ACTIONS(1583), - [sym_integer_literal] = ACTIONS(1585), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1585), - [anon_sym_BQUOTE] = ACTIONS(1585), - [sym_bytes_literal] = ACTIONS(1585), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1583), - [sym_at_ident] = ACTIONS(1585), - [sym_hash_ident] = ACTIONS(1585), - [sym_type_ident] = ACTIONS(1585), - [sym_ct_type_ident] = ACTIONS(1585), - [sym_const_ident] = ACTIONS(1583), - [sym_builtin] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_static] = ACTIONS(1583), - [anon_sym_tlocal] = ACTIONS(1583), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_fn] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_const] = ACTIONS(1583), - [anon_sym_var] = ACTIONS(1583), - [anon_sym_return] = ACTIONS(1583), - [anon_sym_continue] = ACTIONS(1583), - [anon_sym_break] = ACTIONS(1583), - [anon_sym_defer] = ACTIONS(1583), - [anon_sym_assert] = ACTIONS(1583), - [anon_sym_nextcase] = ACTIONS(1583), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1583), - [anon_sym_foreach] = ACTIONS(1583), - [anon_sym_foreach_r] = ACTIONS(1583), - [anon_sym_while] = ACTIONS(1583), - [anon_sym_do] = ACTIONS(1583), - [anon_sym_int] = ACTIONS(1583), - [anon_sym_PLUS] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_asm] = ACTIONS(1583), - [anon_sym_DOLLARassert] = ACTIONS(1583), - [anon_sym_DOLLARerror] = ACTIONS(1583), - [anon_sym_DOLLARecho] = ACTIONS(1583), - [anon_sym_DOLLARif] = ACTIONS(1583), - [anon_sym_DOLLARcase] = ACTIONS(1583), - [anon_sym_DOLLARdefault] = ACTIONS(1583), - [anon_sym_DOLLARswitch] = ACTIONS(1583), - [anon_sym_DOLLARendswitch] = ACTIONS(1583), - [anon_sym_DOLLARfor] = ACTIONS(1583), - [anon_sym_DOLLARforeach] = ACTIONS(1583), - [anon_sym_DOLLARalignof] = ACTIONS(1583), - [anon_sym_DOLLARextnameof] = ACTIONS(1583), - [anon_sym_DOLLARnameof] = ACTIONS(1583), - [anon_sym_DOLLARoffsetof] = ACTIONS(1583), - [anon_sym_DOLLARqnameof] = ACTIONS(1583), - [anon_sym_DOLLAReval] = ACTIONS(1583), - [anon_sym_DOLLARdefined] = ACTIONS(1583), - [anon_sym_DOLLARsizeof] = ACTIONS(1583), - [anon_sym_DOLLARstringify] = ACTIONS(1583), - [anon_sym_DOLLARis_const] = ACTIONS(1583), - [anon_sym_DOLLARvaconst] = ACTIONS(1583), - [anon_sym_DOLLARvaarg] = ACTIONS(1583), - [anon_sym_DOLLARvaref] = ACTIONS(1583), - [anon_sym_DOLLARvaexpr] = ACTIONS(1583), - [anon_sym_true] = ACTIONS(1583), - [anon_sym_false] = ACTIONS(1583), - [anon_sym_null] = ACTIONS(1583), - [anon_sym_DOLLARvacount] = ACTIONS(1583), - [anon_sym_DOLLARfeature] = ACTIONS(1583), - [anon_sym_DOLLARand] = ACTIONS(1583), - [anon_sym_DOLLARor] = ACTIONS(1583), - [anon_sym_DOLLARassignable] = ACTIONS(1583), - [anon_sym_DOLLARembed] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1585), - [anon_sym_TILDE] = ACTIONS(1585), - [anon_sym_PLUS_PLUS] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1585), - [anon_sym_typeid] = ACTIONS(1583), - [anon_sym_LBRACE_PIPE] = ACTIONS(1585), - [anon_sym_void] = ACTIONS(1583), - [anon_sym_bool] = ACTIONS(1583), - [anon_sym_char] = ACTIONS(1583), - [anon_sym_ichar] = ACTIONS(1583), - [anon_sym_short] = ACTIONS(1583), - [anon_sym_ushort] = ACTIONS(1583), - [anon_sym_uint] = ACTIONS(1583), - [anon_sym_long] = ACTIONS(1583), - [anon_sym_ulong] = ACTIONS(1583), - [anon_sym_int128] = ACTIONS(1583), - [anon_sym_uint128] = ACTIONS(1583), - [anon_sym_float] = ACTIONS(1583), - [anon_sym_double] = ACTIONS(1583), - [anon_sym_float16] = ACTIONS(1583), - [anon_sym_bfloat16] = ACTIONS(1583), - [anon_sym_float128] = ACTIONS(1583), - [anon_sym_iptr] = ACTIONS(1583), - [anon_sym_uptr] = ACTIONS(1583), - [anon_sym_isz] = ACTIONS(1583), - [anon_sym_usz] = ACTIONS(1583), - [anon_sym_anyfault] = ACTIONS(1583), - [anon_sym_any] = ACTIONS(1583), - [anon_sym_DOLLARtypeof] = ACTIONS(1583), - [anon_sym_DOLLARtypefrom] = ACTIONS(1583), - [anon_sym_DOLLARvatype] = ACTIONS(1583), - [anon_sym_DOLLARevaltype] = ACTIONS(1583), - [sym_real_literal] = ACTIONS(1585), + [391] = { + [sym_line_comment] = STATE(391), + [sym_doc_comment] = STATE(391), + [sym_block_comment] = STATE(391), + [sym_ident] = ACTIONS(1557), + [sym_integer_literal] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [sym_bytes_literal] = ACTIONS(1559), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1557), + [sym_at_ident] = ACTIONS(1559), + [sym_hash_ident] = ACTIONS(1559), + [sym_type_ident] = ACTIONS(1559), + [sym_ct_type_ident] = ACTIONS(1559), + [sym_const_ident] = ACTIONS(1557), + [sym_builtin] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_static] = ACTIONS(1557), + [anon_sym_tlocal] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_fn] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_RBRACE] = ACTIONS(1559), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_defer] = ACTIONS(1557), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_case] = ACTIONS(1557), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_nextcase] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_foreach] = ACTIONS(1557), + [anon_sym_foreach_r] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_int] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_asm] = ACTIONS(1557), + [anon_sym_DOLLARassert] = ACTIONS(1557), + [anon_sym_DOLLARerror] = ACTIONS(1557), + [anon_sym_DOLLARecho] = ACTIONS(1557), + [anon_sym_DOLLARif] = ACTIONS(1557), + [anon_sym_DOLLARswitch] = ACTIONS(1557), + [anon_sym_DOLLARfor] = ACTIONS(1557), + [anon_sym_DOLLARforeach] = ACTIONS(1557), + [anon_sym_DOLLARalignof] = ACTIONS(1557), + [anon_sym_DOLLARextnameof] = ACTIONS(1557), + [anon_sym_DOLLARnameof] = ACTIONS(1557), + [anon_sym_DOLLARoffsetof] = ACTIONS(1557), + [anon_sym_DOLLARqnameof] = ACTIONS(1557), + [anon_sym_DOLLARvaconst] = ACTIONS(1557), + [anon_sym_DOLLARvaarg] = ACTIONS(1557), + [anon_sym_DOLLARvaref] = ACTIONS(1557), + [anon_sym_DOLLARvaexpr] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_DOLLARvacount] = ACTIONS(1557), + [anon_sym_DOLLAReval] = ACTIONS(1557), + [anon_sym_DOLLARis_const] = ACTIONS(1557), + [anon_sym_DOLLARsizeof] = ACTIONS(1557), + [anon_sym_DOLLARstringify] = ACTIONS(1557), + [anon_sym_DOLLARappend] = ACTIONS(1557), + [anon_sym_DOLLARconcat] = ACTIONS(1557), + [anon_sym_DOLLARdefined] = ACTIONS(1557), + [anon_sym_DOLLARembed] = ACTIONS(1557), + [anon_sym_DOLLARand] = ACTIONS(1557), + [anon_sym_DOLLARor] = ACTIONS(1557), + [anon_sym_DOLLARfeature] = ACTIONS(1557), + [anon_sym_DOLLARassignable] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_typeid] = ACTIONS(1557), + [anon_sym_LBRACE_PIPE] = ACTIONS(1559), + [anon_sym_PIPE_RBRACE] = ACTIONS(1559), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_bool] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_ichar] = ACTIONS(1557), + [anon_sym_short] = ACTIONS(1557), + [anon_sym_ushort] = ACTIONS(1557), + [anon_sym_uint] = ACTIONS(1557), + [anon_sym_long] = ACTIONS(1557), + [anon_sym_ulong] = ACTIONS(1557), + [anon_sym_int128] = ACTIONS(1557), + [anon_sym_uint128] = ACTIONS(1557), + [anon_sym_float] = ACTIONS(1557), + [anon_sym_double] = ACTIONS(1557), + [anon_sym_float16] = ACTIONS(1557), + [anon_sym_bfloat16] = ACTIONS(1557), + [anon_sym_float128] = ACTIONS(1557), + [anon_sym_iptr] = ACTIONS(1557), + [anon_sym_uptr] = ACTIONS(1557), + [anon_sym_isz] = ACTIONS(1557), + [anon_sym_usz] = ACTIONS(1557), + [anon_sym_anyfault] = ACTIONS(1557), + [anon_sym_any] = ACTIONS(1557), + [anon_sym_DOLLARtypeof] = ACTIONS(1557), + [anon_sym_DOLLARtypefrom] = ACTIONS(1557), + [anon_sym_DOLLARevaltype] = ACTIONS(1557), + [anon_sym_DOLLARvatype] = ACTIONS(1557), + [sym_real_literal] = ACTIONS(1559), }, - [449] = { - [sym_line_comment] = STATE(449), - [sym_doc_comment] = STATE(449), - [sym_block_comment] = STATE(449), - [sym_ident] = ACTIONS(1591), - [sym_integer_literal] = ACTIONS(1593), - [anon_sym_SQUOTE] = ACTIONS(1593), - [anon_sym_DQUOTE] = ACTIONS(1593), - [anon_sym_BQUOTE] = ACTIONS(1593), - [sym_bytes_literal] = ACTIONS(1593), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1591), - [sym_at_ident] = ACTIONS(1593), - [sym_hash_ident] = ACTIONS(1593), - [sym_type_ident] = ACTIONS(1593), - [sym_ct_type_ident] = ACTIONS(1593), - [sym_const_ident] = ACTIONS(1591), - [sym_builtin] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_static] = ACTIONS(1591), - [anon_sym_tlocal] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1593), - [anon_sym_fn] = ACTIONS(1591), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_const] = ACTIONS(1591), - [anon_sym_var] = ACTIONS(1591), - [anon_sym_return] = ACTIONS(1591), - [anon_sym_continue] = ACTIONS(1591), - [anon_sym_break] = ACTIONS(1591), - [anon_sym_defer] = ACTIONS(1591), - [anon_sym_assert] = ACTIONS(1591), - [anon_sym_nextcase] = ACTIONS(1591), - [anon_sym_switch] = ACTIONS(1591), - [anon_sym_AMP_AMP] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1591), - [anon_sym_foreach] = ACTIONS(1591), - [anon_sym_foreach_r] = ACTIONS(1591), - [anon_sym_while] = ACTIONS(1591), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_int] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1591), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_asm] = ACTIONS(1591), - [anon_sym_DOLLARassert] = ACTIONS(1591), - [anon_sym_DOLLARerror] = ACTIONS(1591), - [anon_sym_DOLLARecho] = ACTIONS(1591), - [anon_sym_DOLLARif] = ACTIONS(1591), - [anon_sym_DOLLARcase] = ACTIONS(1591), - [anon_sym_DOLLARdefault] = ACTIONS(1591), - [anon_sym_DOLLARswitch] = ACTIONS(1591), - [anon_sym_DOLLARendswitch] = ACTIONS(1591), - [anon_sym_DOLLARfor] = ACTIONS(1591), - [anon_sym_DOLLARforeach] = ACTIONS(1591), - [anon_sym_DOLLARalignof] = ACTIONS(1591), - [anon_sym_DOLLARextnameof] = ACTIONS(1591), - [anon_sym_DOLLARnameof] = ACTIONS(1591), - [anon_sym_DOLLARoffsetof] = ACTIONS(1591), - [anon_sym_DOLLARqnameof] = ACTIONS(1591), - [anon_sym_DOLLAReval] = ACTIONS(1591), - [anon_sym_DOLLARdefined] = ACTIONS(1591), - [anon_sym_DOLLARsizeof] = ACTIONS(1591), - [anon_sym_DOLLARstringify] = ACTIONS(1591), - [anon_sym_DOLLARis_const] = ACTIONS(1591), - [anon_sym_DOLLARvaconst] = ACTIONS(1591), - [anon_sym_DOLLARvaarg] = ACTIONS(1591), - [anon_sym_DOLLARvaref] = ACTIONS(1591), - [anon_sym_DOLLARvaexpr] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [anon_sym_DOLLARvacount] = ACTIONS(1591), - [anon_sym_DOLLARfeature] = ACTIONS(1591), - [anon_sym_DOLLARand] = ACTIONS(1591), - [anon_sym_DOLLARor] = ACTIONS(1591), - [anon_sym_DOLLARassignable] = ACTIONS(1591), - [anon_sym_DOLLARembed] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1593), - [anon_sym_TILDE] = ACTIONS(1593), - [anon_sym_PLUS_PLUS] = ACTIONS(1593), - [anon_sym_DASH_DASH] = ACTIONS(1593), - [anon_sym_typeid] = ACTIONS(1591), - [anon_sym_LBRACE_PIPE] = ACTIONS(1593), - [anon_sym_void] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_ichar] = ACTIONS(1591), - [anon_sym_short] = ACTIONS(1591), - [anon_sym_ushort] = ACTIONS(1591), - [anon_sym_uint] = ACTIONS(1591), - [anon_sym_long] = ACTIONS(1591), - [anon_sym_ulong] = ACTIONS(1591), - [anon_sym_int128] = ACTIONS(1591), - [anon_sym_uint128] = ACTIONS(1591), - [anon_sym_float] = ACTIONS(1591), - [anon_sym_double] = ACTIONS(1591), - [anon_sym_float16] = ACTIONS(1591), - [anon_sym_bfloat16] = ACTIONS(1591), - [anon_sym_float128] = ACTIONS(1591), - [anon_sym_iptr] = ACTIONS(1591), - [anon_sym_uptr] = ACTIONS(1591), - [anon_sym_isz] = ACTIONS(1591), - [anon_sym_usz] = ACTIONS(1591), - [anon_sym_anyfault] = ACTIONS(1591), - [anon_sym_any] = ACTIONS(1591), - [anon_sym_DOLLARtypeof] = ACTIONS(1591), - [anon_sym_DOLLARtypefrom] = ACTIONS(1591), - [anon_sym_DOLLARvatype] = ACTIONS(1591), - [anon_sym_DOLLARevaltype] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1593), + [392] = { + [sym_line_comment] = STATE(392), + [sym_doc_comment] = STATE(392), + [sym_block_comment] = STATE(392), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_RBRACE] = ACTIONS(1563), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_case] = ACTIONS(1561), + [anon_sym_default] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_PIPE_RBRACE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), }, - [450] = { - [sym_line_comment] = STATE(450), - [sym_doc_comment] = STATE(450), - [sym_block_comment] = STATE(450), - [sym_ident] = ACTIONS(1181), - [sym_integer_literal] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [sym_bytes_literal] = ACTIONS(1183), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1181), - [sym_at_ident] = ACTIONS(1183), - [sym_hash_ident] = ACTIONS(1183), - [sym_type_ident] = ACTIONS(1183), - [sym_ct_type_ident] = ACTIONS(1183), - [sym_const_ident] = ACTIONS(1181), - [sym_builtin] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_tlocal] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_fn] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_var] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_defer] = ACTIONS(1181), - [anon_sym_assert] = ACTIONS(1181), - [anon_sym_nextcase] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_foreach] = ACTIONS(1181), - [anon_sym_foreach_r] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym_DOLLARassert] = ACTIONS(1181), - [anon_sym_DOLLARerror] = ACTIONS(1181), - [anon_sym_DOLLARecho] = ACTIONS(1181), - [anon_sym_DOLLARif] = ACTIONS(1181), - [anon_sym_DOLLARcase] = ACTIONS(1181), - [anon_sym_DOLLARdefault] = ACTIONS(1181), - [anon_sym_DOLLARswitch] = ACTIONS(1181), - [anon_sym_DOLLARendswitch] = ACTIONS(1181), - [anon_sym_DOLLARfor] = ACTIONS(1181), - [anon_sym_DOLLARforeach] = ACTIONS(1181), - [anon_sym_DOLLARalignof] = ACTIONS(1181), - [anon_sym_DOLLARextnameof] = ACTIONS(1181), - [anon_sym_DOLLARnameof] = ACTIONS(1181), - [anon_sym_DOLLARoffsetof] = ACTIONS(1181), - [anon_sym_DOLLARqnameof] = ACTIONS(1181), - [anon_sym_DOLLAReval] = ACTIONS(1181), - [anon_sym_DOLLARdefined] = ACTIONS(1181), - [anon_sym_DOLLARsizeof] = ACTIONS(1181), - [anon_sym_DOLLARstringify] = ACTIONS(1181), - [anon_sym_DOLLARis_const] = ACTIONS(1181), - [anon_sym_DOLLARvaconst] = ACTIONS(1181), - [anon_sym_DOLLARvaarg] = ACTIONS(1181), - [anon_sym_DOLLARvaref] = ACTIONS(1181), - [anon_sym_DOLLARvaexpr] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_null] = ACTIONS(1181), - [anon_sym_DOLLARvacount] = ACTIONS(1181), - [anon_sym_DOLLARfeature] = ACTIONS(1181), - [anon_sym_DOLLARand] = ACTIONS(1181), - [anon_sym_DOLLARor] = ACTIONS(1181), - [anon_sym_DOLLARassignable] = ACTIONS(1181), - [anon_sym_DOLLARembed] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_typeid] = ACTIONS(1181), - [anon_sym_LBRACE_PIPE] = ACTIONS(1183), - [anon_sym_void] = ACTIONS(1181), - [anon_sym_bool] = ACTIONS(1181), - [anon_sym_char] = ACTIONS(1181), - [anon_sym_ichar] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_ushort] = ACTIONS(1181), - [anon_sym_uint] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_ulong] = ACTIONS(1181), - [anon_sym_int128] = ACTIONS(1181), - [anon_sym_uint128] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_double] = ACTIONS(1181), - [anon_sym_float16] = ACTIONS(1181), - [anon_sym_bfloat16] = ACTIONS(1181), - [anon_sym_float128] = ACTIONS(1181), - [anon_sym_iptr] = ACTIONS(1181), - [anon_sym_uptr] = ACTIONS(1181), - [anon_sym_isz] = ACTIONS(1181), - [anon_sym_usz] = ACTIONS(1181), - [anon_sym_anyfault] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_DOLLARtypeof] = ACTIONS(1181), - [anon_sym_DOLLARtypefrom] = ACTIONS(1181), - [anon_sym_DOLLARvatype] = ACTIONS(1181), - [anon_sym_DOLLARevaltype] = ACTIONS(1181), - [sym_real_literal] = ACTIONS(1183), + [393] = { + [sym_line_comment] = STATE(393), + [sym_doc_comment] = STATE(393), + [sym_block_comment] = STATE(393), + [sym_ident] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [anon_sym_BQUOTE] = ACTIONS(1567), + [sym_bytes_literal] = ACTIONS(1567), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1565), + [sym_at_ident] = ACTIONS(1567), + [sym_hash_ident] = ACTIONS(1567), + [sym_type_ident] = ACTIONS(1567), + [sym_ct_type_ident] = ACTIONS(1567), + [sym_const_ident] = ACTIONS(1565), + [sym_builtin] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_tlocal] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_fn] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_var] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_defer] = ACTIONS(1565), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_case] = ACTIONS(1565), + [anon_sym_default] = ACTIONS(1565), + [anon_sym_nextcase] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_foreach] = ACTIONS(1565), + [anon_sym_foreach_r] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_int] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_asm] = ACTIONS(1565), + [anon_sym_DOLLARassert] = ACTIONS(1565), + [anon_sym_DOLLARerror] = ACTIONS(1565), + [anon_sym_DOLLARecho] = ACTIONS(1565), + [anon_sym_DOLLARif] = ACTIONS(1565), + [anon_sym_DOLLARswitch] = ACTIONS(1565), + [anon_sym_DOLLARfor] = ACTIONS(1565), + [anon_sym_DOLLARforeach] = ACTIONS(1565), + [anon_sym_DOLLARalignof] = ACTIONS(1565), + [anon_sym_DOLLARextnameof] = ACTIONS(1565), + [anon_sym_DOLLARnameof] = ACTIONS(1565), + [anon_sym_DOLLARoffsetof] = ACTIONS(1565), + [anon_sym_DOLLARqnameof] = ACTIONS(1565), + [anon_sym_DOLLARvaconst] = ACTIONS(1565), + [anon_sym_DOLLARvaarg] = ACTIONS(1565), + [anon_sym_DOLLARvaref] = ACTIONS(1565), + [anon_sym_DOLLARvaexpr] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_DOLLARvacount] = ACTIONS(1565), + [anon_sym_DOLLAReval] = ACTIONS(1565), + [anon_sym_DOLLARis_const] = ACTIONS(1565), + [anon_sym_DOLLARsizeof] = ACTIONS(1565), + [anon_sym_DOLLARstringify] = ACTIONS(1565), + [anon_sym_DOLLARappend] = ACTIONS(1565), + [anon_sym_DOLLARconcat] = ACTIONS(1565), + [anon_sym_DOLLARdefined] = ACTIONS(1565), + [anon_sym_DOLLARembed] = ACTIONS(1565), + [anon_sym_DOLLARand] = ACTIONS(1565), + [anon_sym_DOLLARor] = ACTIONS(1565), + [anon_sym_DOLLARfeature] = ACTIONS(1565), + [anon_sym_DOLLARassignable] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_typeid] = ACTIONS(1565), + [anon_sym_LBRACE_PIPE] = ACTIONS(1567), + [anon_sym_PIPE_RBRACE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_bool] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_ichar] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [anon_sym_ushort] = ACTIONS(1565), + [anon_sym_uint] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_ulong] = ACTIONS(1565), + [anon_sym_int128] = ACTIONS(1565), + [anon_sym_uint128] = ACTIONS(1565), + [anon_sym_float] = ACTIONS(1565), + [anon_sym_double] = ACTIONS(1565), + [anon_sym_float16] = ACTIONS(1565), + [anon_sym_bfloat16] = ACTIONS(1565), + [anon_sym_float128] = ACTIONS(1565), + [anon_sym_iptr] = ACTIONS(1565), + [anon_sym_uptr] = ACTIONS(1565), + [anon_sym_isz] = ACTIONS(1565), + [anon_sym_usz] = ACTIONS(1565), + [anon_sym_anyfault] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1565), + [anon_sym_DOLLARtypeof] = ACTIONS(1565), + [anon_sym_DOLLARtypefrom] = ACTIONS(1565), + [anon_sym_DOLLARevaltype] = ACTIONS(1565), + [anon_sym_DOLLARvatype] = ACTIONS(1565), + [sym_real_literal] = ACTIONS(1567), }, - [451] = { - [sym_line_comment] = STATE(451), - [sym_doc_comment] = STATE(451), - [sym_block_comment] = STATE(451), - [sym_ident] = ACTIONS(1499), - [sym_integer_literal] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1501), - [anon_sym_BQUOTE] = ACTIONS(1501), - [sym_bytes_literal] = ACTIONS(1501), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1499), - [sym_at_ident] = ACTIONS(1501), - [sym_hash_ident] = ACTIONS(1501), - [sym_type_ident] = ACTIONS(1501), - [sym_ct_type_ident] = ACTIONS(1501), - [sym_const_ident] = ACTIONS(1499), - [sym_builtin] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_static] = ACTIONS(1499), - [anon_sym_tlocal] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1501), - [anon_sym_fn] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_var] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_defer] = ACTIONS(1499), - [anon_sym_assert] = ACTIONS(1499), - [anon_sym_nextcase] = ACTIONS(1499), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_foreach] = ACTIONS(1499), - [anon_sym_foreach_r] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_do] = ACTIONS(1499), - [anon_sym_int] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_asm] = ACTIONS(1499), - [anon_sym_DOLLARassert] = ACTIONS(1499), - [anon_sym_DOLLARerror] = ACTIONS(1499), - [anon_sym_DOLLARecho] = ACTIONS(1499), - [anon_sym_DOLLARif] = ACTIONS(1499), - [anon_sym_DOLLARcase] = ACTIONS(1499), - [anon_sym_DOLLARdefault] = ACTIONS(1499), - [anon_sym_DOLLARswitch] = ACTIONS(1499), - [anon_sym_DOLLARendswitch] = ACTIONS(1499), - [anon_sym_DOLLARfor] = ACTIONS(1499), - [anon_sym_DOLLARforeach] = ACTIONS(1499), - [anon_sym_DOLLARalignof] = ACTIONS(1499), - [anon_sym_DOLLARextnameof] = ACTIONS(1499), - [anon_sym_DOLLARnameof] = ACTIONS(1499), - [anon_sym_DOLLARoffsetof] = ACTIONS(1499), - [anon_sym_DOLLARqnameof] = ACTIONS(1499), - [anon_sym_DOLLAReval] = ACTIONS(1499), - [anon_sym_DOLLARdefined] = ACTIONS(1499), - [anon_sym_DOLLARsizeof] = ACTIONS(1499), - [anon_sym_DOLLARstringify] = ACTIONS(1499), - [anon_sym_DOLLARis_const] = ACTIONS(1499), - [anon_sym_DOLLARvaconst] = ACTIONS(1499), - [anon_sym_DOLLARvaarg] = ACTIONS(1499), - [anon_sym_DOLLARvaref] = ACTIONS(1499), - [anon_sym_DOLLARvaexpr] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [anon_sym_DOLLARvacount] = ACTIONS(1499), - [anon_sym_DOLLARfeature] = ACTIONS(1499), - [anon_sym_DOLLARand] = ACTIONS(1499), - [anon_sym_DOLLARor] = ACTIONS(1499), - [anon_sym_DOLLARassignable] = ACTIONS(1499), - [anon_sym_DOLLARembed] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_TILDE] = ACTIONS(1501), - [anon_sym_PLUS_PLUS] = ACTIONS(1501), - [anon_sym_DASH_DASH] = ACTIONS(1501), - [anon_sym_typeid] = ACTIONS(1499), - [anon_sym_LBRACE_PIPE] = ACTIONS(1501), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_bool] = ACTIONS(1499), - [anon_sym_char] = ACTIONS(1499), - [anon_sym_ichar] = ACTIONS(1499), - [anon_sym_short] = ACTIONS(1499), - [anon_sym_ushort] = ACTIONS(1499), - [anon_sym_uint] = ACTIONS(1499), - [anon_sym_long] = ACTIONS(1499), - [anon_sym_ulong] = ACTIONS(1499), - [anon_sym_int128] = ACTIONS(1499), - [anon_sym_uint128] = ACTIONS(1499), - [anon_sym_float] = ACTIONS(1499), - [anon_sym_double] = ACTIONS(1499), - [anon_sym_float16] = ACTIONS(1499), - [anon_sym_bfloat16] = ACTIONS(1499), - [anon_sym_float128] = ACTIONS(1499), - [anon_sym_iptr] = ACTIONS(1499), - [anon_sym_uptr] = ACTIONS(1499), - [anon_sym_isz] = ACTIONS(1499), - [anon_sym_usz] = ACTIONS(1499), - [anon_sym_anyfault] = ACTIONS(1499), - [anon_sym_any] = ACTIONS(1499), - [anon_sym_DOLLARtypeof] = ACTIONS(1499), - [anon_sym_DOLLARtypefrom] = ACTIONS(1499), - [anon_sym_DOLLARvatype] = ACTIONS(1499), - [anon_sym_DOLLARevaltype] = ACTIONS(1499), - [sym_real_literal] = ACTIONS(1501), + [394] = { + [sym_line_comment] = STATE(394), + [sym_doc_comment] = STATE(394), + [sym_block_comment] = STATE(394), + [sym_ident] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [anon_sym_BQUOTE] = ACTIONS(1571), + [sym_bytes_literal] = ACTIONS(1571), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1569), + [sym_at_ident] = ACTIONS(1571), + [sym_hash_ident] = ACTIONS(1571), + [sym_type_ident] = ACTIONS(1571), + [sym_ct_type_ident] = ACTIONS(1571), + [sym_const_ident] = ACTIONS(1569), + [sym_builtin] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_tlocal] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_var] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_defer] = ACTIONS(1569), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_case] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1569), + [anon_sym_nextcase] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_foreach] = ACTIONS(1569), + [anon_sym_foreach_r] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_int] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_asm] = ACTIONS(1569), + [anon_sym_DOLLARassert] = ACTIONS(1569), + [anon_sym_DOLLARerror] = ACTIONS(1569), + [anon_sym_DOLLARecho] = ACTIONS(1569), + [anon_sym_DOLLARif] = ACTIONS(1569), + [anon_sym_DOLLARswitch] = ACTIONS(1569), + [anon_sym_DOLLARfor] = ACTIONS(1569), + [anon_sym_DOLLARforeach] = ACTIONS(1569), + [anon_sym_DOLLARalignof] = ACTIONS(1569), + [anon_sym_DOLLARextnameof] = ACTIONS(1569), + [anon_sym_DOLLARnameof] = ACTIONS(1569), + [anon_sym_DOLLARoffsetof] = ACTIONS(1569), + [anon_sym_DOLLARqnameof] = ACTIONS(1569), + [anon_sym_DOLLARvaconst] = ACTIONS(1569), + [anon_sym_DOLLARvaarg] = ACTIONS(1569), + [anon_sym_DOLLARvaref] = ACTIONS(1569), + [anon_sym_DOLLARvaexpr] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [anon_sym_DOLLARvacount] = ACTIONS(1569), + [anon_sym_DOLLAReval] = ACTIONS(1569), + [anon_sym_DOLLARis_const] = ACTIONS(1569), + [anon_sym_DOLLARsizeof] = ACTIONS(1569), + [anon_sym_DOLLARstringify] = ACTIONS(1569), + [anon_sym_DOLLARappend] = ACTIONS(1569), + [anon_sym_DOLLARconcat] = ACTIONS(1569), + [anon_sym_DOLLARdefined] = ACTIONS(1569), + [anon_sym_DOLLARembed] = ACTIONS(1569), + [anon_sym_DOLLARand] = ACTIONS(1569), + [anon_sym_DOLLARor] = ACTIONS(1569), + [anon_sym_DOLLARfeature] = ACTIONS(1569), + [anon_sym_DOLLARassignable] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_typeid] = ACTIONS(1569), + [anon_sym_LBRACE_PIPE] = ACTIONS(1571), + [anon_sym_PIPE_RBRACE] = ACTIONS(1571), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_bool] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_ichar] = ACTIONS(1569), + [anon_sym_short] = ACTIONS(1569), + [anon_sym_ushort] = ACTIONS(1569), + [anon_sym_uint] = ACTIONS(1569), + [anon_sym_long] = ACTIONS(1569), + [anon_sym_ulong] = ACTIONS(1569), + [anon_sym_int128] = ACTIONS(1569), + [anon_sym_uint128] = ACTIONS(1569), + [anon_sym_float] = ACTIONS(1569), + [anon_sym_double] = ACTIONS(1569), + [anon_sym_float16] = ACTIONS(1569), + [anon_sym_bfloat16] = ACTIONS(1569), + [anon_sym_float128] = ACTIONS(1569), + [anon_sym_iptr] = ACTIONS(1569), + [anon_sym_uptr] = ACTIONS(1569), + [anon_sym_isz] = ACTIONS(1569), + [anon_sym_usz] = ACTIONS(1569), + [anon_sym_anyfault] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1569), + [anon_sym_DOLLARtypeof] = ACTIONS(1569), + [anon_sym_DOLLARtypefrom] = ACTIONS(1569), + [anon_sym_DOLLARevaltype] = ACTIONS(1569), + [anon_sym_DOLLARvatype] = ACTIONS(1569), + [sym_real_literal] = ACTIONS(1571), }, - [452] = { - [sym_line_comment] = STATE(452), - [sym_doc_comment] = STATE(452), - [sym_block_comment] = STATE(452), - [sym_ident] = ACTIONS(1595), - [sym_integer_literal] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(1597), - [anon_sym_DQUOTE] = ACTIONS(1597), - [anon_sym_BQUOTE] = ACTIONS(1597), - [sym_bytes_literal] = ACTIONS(1597), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1595), - [sym_at_ident] = ACTIONS(1597), - [sym_hash_ident] = ACTIONS(1597), - [sym_type_ident] = ACTIONS(1597), - [sym_ct_type_ident] = ACTIONS(1597), - [sym_const_ident] = ACTIONS(1595), - [sym_builtin] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_tlocal] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_fn] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_const] = ACTIONS(1595), - [anon_sym_var] = ACTIONS(1595), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_continue] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1595), - [anon_sym_defer] = ACTIONS(1595), - [anon_sym_assert] = ACTIONS(1595), - [anon_sym_nextcase] = ACTIONS(1595), - [anon_sym_switch] = ACTIONS(1595), - [anon_sym_AMP_AMP] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1595), - [anon_sym_for] = ACTIONS(1595), - [anon_sym_foreach] = ACTIONS(1595), - [anon_sym_foreach_r] = ACTIONS(1595), - [anon_sym_while] = ACTIONS(1595), - [anon_sym_do] = ACTIONS(1595), - [anon_sym_int] = ACTIONS(1595), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1597), - [anon_sym_asm] = ACTIONS(1595), - [anon_sym_DOLLARassert] = ACTIONS(1595), - [anon_sym_DOLLARerror] = ACTIONS(1595), - [anon_sym_DOLLARecho] = ACTIONS(1595), - [anon_sym_DOLLARif] = ACTIONS(1595), - [anon_sym_DOLLARcase] = ACTIONS(1595), - [anon_sym_DOLLARdefault] = ACTIONS(1595), - [anon_sym_DOLLARswitch] = ACTIONS(1595), - [anon_sym_DOLLARendswitch] = ACTIONS(1595), - [anon_sym_DOLLARfor] = ACTIONS(1595), - [anon_sym_DOLLARforeach] = ACTIONS(1595), - [anon_sym_DOLLARalignof] = ACTIONS(1595), - [anon_sym_DOLLARextnameof] = ACTIONS(1595), - [anon_sym_DOLLARnameof] = ACTIONS(1595), - [anon_sym_DOLLARoffsetof] = ACTIONS(1595), - [anon_sym_DOLLARqnameof] = ACTIONS(1595), - [anon_sym_DOLLAReval] = ACTIONS(1595), - [anon_sym_DOLLARdefined] = ACTIONS(1595), - [anon_sym_DOLLARsizeof] = ACTIONS(1595), - [anon_sym_DOLLARstringify] = ACTIONS(1595), - [anon_sym_DOLLARis_const] = ACTIONS(1595), - [anon_sym_DOLLARvaconst] = ACTIONS(1595), - [anon_sym_DOLLARvaarg] = ACTIONS(1595), - [anon_sym_DOLLARvaref] = ACTIONS(1595), - [anon_sym_DOLLARvaexpr] = ACTIONS(1595), - [anon_sym_true] = ACTIONS(1595), - [anon_sym_false] = ACTIONS(1595), - [anon_sym_null] = ACTIONS(1595), - [anon_sym_DOLLARvacount] = ACTIONS(1595), - [anon_sym_DOLLARfeature] = ACTIONS(1595), - [anon_sym_DOLLARand] = ACTIONS(1595), - [anon_sym_DOLLARor] = ACTIONS(1595), - [anon_sym_DOLLARassignable] = ACTIONS(1595), - [anon_sym_DOLLARembed] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1597), - [anon_sym_TILDE] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_DASH_DASH] = ACTIONS(1597), - [anon_sym_typeid] = ACTIONS(1595), - [anon_sym_LBRACE_PIPE] = ACTIONS(1597), - [anon_sym_void] = ACTIONS(1595), - [anon_sym_bool] = ACTIONS(1595), - [anon_sym_char] = ACTIONS(1595), - [anon_sym_ichar] = ACTIONS(1595), - [anon_sym_short] = ACTIONS(1595), - [anon_sym_ushort] = ACTIONS(1595), - [anon_sym_uint] = ACTIONS(1595), - [anon_sym_long] = ACTIONS(1595), - [anon_sym_ulong] = ACTIONS(1595), - [anon_sym_int128] = ACTIONS(1595), - [anon_sym_uint128] = ACTIONS(1595), - [anon_sym_float] = ACTIONS(1595), - [anon_sym_double] = ACTIONS(1595), - [anon_sym_float16] = ACTIONS(1595), - [anon_sym_bfloat16] = ACTIONS(1595), - [anon_sym_float128] = ACTIONS(1595), - [anon_sym_iptr] = ACTIONS(1595), - [anon_sym_uptr] = ACTIONS(1595), - [anon_sym_isz] = ACTIONS(1595), - [anon_sym_usz] = ACTIONS(1595), - [anon_sym_anyfault] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_DOLLARtypeof] = ACTIONS(1595), - [anon_sym_DOLLARtypefrom] = ACTIONS(1595), - [anon_sym_DOLLARvatype] = ACTIONS(1595), - [anon_sym_DOLLARevaltype] = ACTIONS(1595), - [sym_real_literal] = ACTIONS(1597), + [395] = { + [sym_line_comment] = STATE(395), + [sym_doc_comment] = STATE(395), + [sym_block_comment] = STATE(395), + [sym_ident] = ACTIONS(1573), + [sym_integer_literal] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_BQUOTE] = ACTIONS(1575), + [sym_bytes_literal] = ACTIONS(1575), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1573), + [sym_at_ident] = ACTIONS(1575), + [sym_hash_ident] = ACTIONS(1575), + [sym_type_ident] = ACTIONS(1575), + [sym_ct_type_ident] = ACTIONS(1575), + [sym_const_ident] = ACTIONS(1573), + [sym_builtin] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_tlocal] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_fn] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1573), + [anon_sym_RBRACE] = ACTIONS(1575), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_var] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_defer] = ACTIONS(1573), + [anon_sym_assert] = ACTIONS(1573), + [anon_sym_case] = ACTIONS(1573), + [anon_sym_default] = ACTIONS(1573), + [anon_sym_nextcase] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_foreach] = ACTIONS(1573), + [anon_sym_foreach_r] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_int] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_asm] = ACTIONS(1573), + [anon_sym_DOLLARassert] = ACTIONS(1573), + [anon_sym_DOLLARerror] = ACTIONS(1573), + [anon_sym_DOLLARecho] = ACTIONS(1573), + [anon_sym_DOLLARif] = ACTIONS(1573), + [anon_sym_DOLLARswitch] = ACTIONS(1573), + [anon_sym_DOLLARfor] = ACTIONS(1573), + [anon_sym_DOLLARforeach] = ACTIONS(1573), + [anon_sym_DOLLARalignof] = ACTIONS(1573), + [anon_sym_DOLLARextnameof] = ACTIONS(1573), + [anon_sym_DOLLARnameof] = ACTIONS(1573), + [anon_sym_DOLLARoffsetof] = ACTIONS(1573), + [anon_sym_DOLLARqnameof] = ACTIONS(1573), + [anon_sym_DOLLARvaconst] = ACTIONS(1573), + [anon_sym_DOLLARvaarg] = ACTIONS(1573), + [anon_sym_DOLLARvaref] = ACTIONS(1573), + [anon_sym_DOLLARvaexpr] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [anon_sym_null] = ACTIONS(1573), + [anon_sym_DOLLARvacount] = ACTIONS(1573), + [anon_sym_DOLLAReval] = ACTIONS(1573), + [anon_sym_DOLLARis_const] = ACTIONS(1573), + [anon_sym_DOLLARsizeof] = ACTIONS(1573), + [anon_sym_DOLLARstringify] = ACTIONS(1573), + [anon_sym_DOLLARappend] = ACTIONS(1573), + [anon_sym_DOLLARconcat] = ACTIONS(1573), + [anon_sym_DOLLARdefined] = ACTIONS(1573), + [anon_sym_DOLLARembed] = ACTIONS(1573), + [anon_sym_DOLLARand] = ACTIONS(1573), + [anon_sym_DOLLARor] = ACTIONS(1573), + [anon_sym_DOLLARfeature] = ACTIONS(1573), + [anon_sym_DOLLARassignable] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_typeid] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [anon_sym_PIPE_RBRACE] = ACTIONS(1575), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_bool] = ACTIONS(1573), + [anon_sym_char] = ACTIONS(1573), + [anon_sym_ichar] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [anon_sym_ushort] = ACTIONS(1573), + [anon_sym_uint] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_ulong] = ACTIONS(1573), + [anon_sym_int128] = ACTIONS(1573), + [anon_sym_uint128] = ACTIONS(1573), + [anon_sym_float] = ACTIONS(1573), + [anon_sym_double] = ACTIONS(1573), + [anon_sym_float16] = ACTIONS(1573), + [anon_sym_bfloat16] = ACTIONS(1573), + [anon_sym_float128] = ACTIONS(1573), + [anon_sym_iptr] = ACTIONS(1573), + [anon_sym_uptr] = ACTIONS(1573), + [anon_sym_isz] = ACTIONS(1573), + [anon_sym_usz] = ACTIONS(1573), + [anon_sym_anyfault] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_DOLLARtypeof] = ACTIONS(1573), + [anon_sym_DOLLARtypefrom] = ACTIONS(1573), + [anon_sym_DOLLARevaltype] = ACTIONS(1573), + [anon_sym_DOLLARvatype] = ACTIONS(1573), + [sym_real_literal] = ACTIONS(1575), }, - [453] = { - [sym_line_comment] = STATE(453), - [sym_doc_comment] = STATE(453), - [sym_block_comment] = STATE(453), - [sym_ident] = ACTIONS(1523), - [sym_integer_literal] = ACTIONS(1525), - [anon_sym_SQUOTE] = ACTIONS(1525), - [anon_sym_DQUOTE] = ACTIONS(1525), - [anon_sym_BQUOTE] = ACTIONS(1525), - [sym_bytes_literal] = ACTIONS(1525), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1523), - [sym_at_ident] = ACTIONS(1525), - [sym_hash_ident] = ACTIONS(1525), - [sym_type_ident] = ACTIONS(1525), - [sym_ct_type_ident] = ACTIONS(1525), - [sym_const_ident] = ACTIONS(1523), - [sym_builtin] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_tlocal] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_fn] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_var] = ACTIONS(1523), - [anon_sym_return] = ACTIONS(1523), - [anon_sym_continue] = ACTIONS(1523), - [anon_sym_break] = ACTIONS(1523), - [anon_sym_defer] = ACTIONS(1523), - [anon_sym_assert] = ACTIONS(1523), - [anon_sym_nextcase] = ACTIONS(1523), - [anon_sym_switch] = ACTIONS(1523), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_if] = ACTIONS(1523), - [anon_sym_for] = ACTIONS(1523), - [anon_sym_foreach] = ACTIONS(1523), - [anon_sym_foreach_r] = ACTIONS(1523), - [anon_sym_while] = ACTIONS(1523), - [anon_sym_do] = ACTIONS(1523), - [anon_sym_int] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1523), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_asm] = ACTIONS(1523), - [anon_sym_DOLLARassert] = ACTIONS(1523), - [anon_sym_DOLLARerror] = ACTIONS(1523), - [anon_sym_DOLLARecho] = ACTIONS(1523), - [anon_sym_DOLLARif] = ACTIONS(1523), - [anon_sym_DOLLARcase] = ACTIONS(1523), - [anon_sym_DOLLARdefault] = ACTIONS(1523), - [anon_sym_DOLLARswitch] = ACTIONS(1523), - [anon_sym_DOLLARendswitch] = ACTIONS(1523), - [anon_sym_DOLLARfor] = ACTIONS(1523), - [anon_sym_DOLLARforeach] = ACTIONS(1523), - [anon_sym_DOLLARalignof] = ACTIONS(1523), - [anon_sym_DOLLARextnameof] = ACTIONS(1523), - [anon_sym_DOLLARnameof] = ACTIONS(1523), - [anon_sym_DOLLARoffsetof] = ACTIONS(1523), - [anon_sym_DOLLARqnameof] = ACTIONS(1523), - [anon_sym_DOLLAReval] = ACTIONS(1523), - [anon_sym_DOLLARdefined] = ACTIONS(1523), - [anon_sym_DOLLARsizeof] = ACTIONS(1523), - [anon_sym_DOLLARstringify] = ACTIONS(1523), - [anon_sym_DOLLARis_const] = ACTIONS(1523), - [anon_sym_DOLLARvaconst] = ACTIONS(1523), - [anon_sym_DOLLARvaarg] = ACTIONS(1523), - [anon_sym_DOLLARvaref] = ACTIONS(1523), - [anon_sym_DOLLARvaexpr] = ACTIONS(1523), - [anon_sym_true] = ACTIONS(1523), - [anon_sym_false] = ACTIONS(1523), - [anon_sym_null] = ACTIONS(1523), - [anon_sym_DOLLARvacount] = ACTIONS(1523), - [anon_sym_DOLLARfeature] = ACTIONS(1523), - [anon_sym_DOLLARand] = ACTIONS(1523), - [anon_sym_DOLLARor] = ACTIONS(1523), - [anon_sym_DOLLARassignable] = ACTIONS(1523), - [anon_sym_DOLLARembed] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1525), - [anon_sym_TILDE] = ACTIONS(1525), - [anon_sym_PLUS_PLUS] = ACTIONS(1525), - [anon_sym_DASH_DASH] = ACTIONS(1525), - [anon_sym_typeid] = ACTIONS(1523), - [anon_sym_LBRACE_PIPE] = ACTIONS(1525), - [anon_sym_void] = ACTIONS(1523), - [anon_sym_bool] = ACTIONS(1523), - [anon_sym_char] = ACTIONS(1523), - [anon_sym_ichar] = ACTIONS(1523), - [anon_sym_short] = ACTIONS(1523), - [anon_sym_ushort] = ACTIONS(1523), - [anon_sym_uint] = ACTIONS(1523), - [anon_sym_long] = ACTIONS(1523), - [anon_sym_ulong] = ACTIONS(1523), - [anon_sym_int128] = ACTIONS(1523), - [anon_sym_uint128] = ACTIONS(1523), - [anon_sym_float] = ACTIONS(1523), - [anon_sym_double] = ACTIONS(1523), - [anon_sym_float16] = ACTIONS(1523), - [anon_sym_bfloat16] = ACTIONS(1523), - [anon_sym_float128] = ACTIONS(1523), - [anon_sym_iptr] = ACTIONS(1523), - [anon_sym_uptr] = ACTIONS(1523), - [anon_sym_isz] = ACTIONS(1523), - [anon_sym_usz] = ACTIONS(1523), - [anon_sym_anyfault] = ACTIONS(1523), - [anon_sym_any] = ACTIONS(1523), - [anon_sym_DOLLARtypeof] = ACTIONS(1523), - [anon_sym_DOLLARtypefrom] = ACTIONS(1523), - [anon_sym_DOLLARvatype] = ACTIONS(1523), - [anon_sym_DOLLARevaltype] = ACTIONS(1523), - [sym_real_literal] = ACTIONS(1525), + [396] = { + [sym_line_comment] = STATE(396), + [sym_doc_comment] = STATE(396), + [sym_block_comment] = STATE(396), + [sym_ident] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1579), + [sym_bytes_literal] = ACTIONS(1579), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1577), + [sym_at_ident] = ACTIONS(1579), + [sym_hash_ident] = ACTIONS(1579), + [sym_type_ident] = ACTIONS(1579), + [sym_ct_type_ident] = ACTIONS(1579), + [sym_const_ident] = ACTIONS(1577), + [sym_builtin] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_tlocal] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_fn] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_RBRACE] = ACTIONS(1579), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_var] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_defer] = ACTIONS(1577), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_case] = ACTIONS(1577), + [anon_sym_default] = ACTIONS(1577), + [anon_sym_nextcase] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_foreach] = ACTIONS(1577), + [anon_sym_foreach_r] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_int] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_asm] = ACTIONS(1577), + [anon_sym_DOLLARassert] = ACTIONS(1577), + [anon_sym_DOLLARerror] = ACTIONS(1577), + [anon_sym_DOLLARecho] = ACTIONS(1577), + [anon_sym_DOLLARif] = ACTIONS(1577), + [anon_sym_DOLLARswitch] = ACTIONS(1577), + [anon_sym_DOLLARfor] = ACTIONS(1577), + [anon_sym_DOLLARforeach] = ACTIONS(1577), + [anon_sym_DOLLARalignof] = ACTIONS(1577), + [anon_sym_DOLLARextnameof] = ACTIONS(1577), + [anon_sym_DOLLARnameof] = ACTIONS(1577), + [anon_sym_DOLLARoffsetof] = ACTIONS(1577), + [anon_sym_DOLLARqnameof] = ACTIONS(1577), + [anon_sym_DOLLARvaconst] = ACTIONS(1577), + [anon_sym_DOLLARvaarg] = ACTIONS(1577), + [anon_sym_DOLLARvaref] = ACTIONS(1577), + [anon_sym_DOLLARvaexpr] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_DOLLARvacount] = ACTIONS(1577), + [anon_sym_DOLLAReval] = ACTIONS(1577), + [anon_sym_DOLLARis_const] = ACTIONS(1577), + [anon_sym_DOLLARsizeof] = ACTIONS(1577), + [anon_sym_DOLLARstringify] = ACTIONS(1577), + [anon_sym_DOLLARappend] = ACTIONS(1577), + [anon_sym_DOLLARconcat] = ACTIONS(1577), + [anon_sym_DOLLARdefined] = ACTIONS(1577), + [anon_sym_DOLLARembed] = ACTIONS(1577), + [anon_sym_DOLLARand] = ACTIONS(1577), + [anon_sym_DOLLARor] = ACTIONS(1577), + [anon_sym_DOLLARfeature] = ACTIONS(1577), + [anon_sym_DOLLARassignable] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_typeid] = ACTIONS(1577), + [anon_sym_LBRACE_PIPE] = ACTIONS(1579), + [anon_sym_PIPE_RBRACE] = ACTIONS(1579), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_bool] = ACTIONS(1577), + [anon_sym_char] = ACTIONS(1577), + [anon_sym_ichar] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [anon_sym_ushort] = ACTIONS(1577), + [anon_sym_uint] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_ulong] = ACTIONS(1577), + [anon_sym_int128] = ACTIONS(1577), + [anon_sym_uint128] = ACTIONS(1577), + [anon_sym_float] = ACTIONS(1577), + [anon_sym_double] = ACTIONS(1577), + [anon_sym_float16] = ACTIONS(1577), + [anon_sym_bfloat16] = ACTIONS(1577), + [anon_sym_float128] = ACTIONS(1577), + [anon_sym_iptr] = ACTIONS(1577), + [anon_sym_uptr] = ACTIONS(1577), + [anon_sym_isz] = ACTIONS(1577), + [anon_sym_usz] = ACTIONS(1577), + [anon_sym_anyfault] = ACTIONS(1577), + [anon_sym_any] = ACTIONS(1577), + [anon_sym_DOLLARtypeof] = ACTIONS(1577), + [anon_sym_DOLLARtypefrom] = ACTIONS(1577), + [anon_sym_DOLLARevaltype] = ACTIONS(1577), + [anon_sym_DOLLARvatype] = ACTIONS(1577), + [sym_real_literal] = ACTIONS(1579), }, - [454] = { - [sym_line_comment] = STATE(454), - [sym_doc_comment] = STATE(454), - [sym_block_comment] = STATE(454), - [sym_ident] = ACTIONS(1599), - [sym_integer_literal] = ACTIONS(1601), - [anon_sym_SQUOTE] = ACTIONS(1601), - [anon_sym_DQUOTE] = ACTIONS(1601), - [anon_sym_BQUOTE] = ACTIONS(1601), - [sym_bytes_literal] = ACTIONS(1601), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1599), - [sym_at_ident] = ACTIONS(1601), - [sym_hash_ident] = ACTIONS(1601), - [sym_type_ident] = ACTIONS(1601), - [sym_ct_type_ident] = ACTIONS(1601), - [sym_const_ident] = ACTIONS(1599), - [sym_builtin] = ACTIONS(1601), - [anon_sym_LPAREN] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_static] = ACTIONS(1599), - [anon_sym_tlocal] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_const] = ACTIONS(1599), - [anon_sym_var] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_break] = ACTIONS(1599), - [anon_sym_defer] = ACTIONS(1599), - [anon_sym_assert] = ACTIONS(1599), - [anon_sym_nextcase] = ACTIONS(1599), - [anon_sym_switch] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_foreach] = ACTIONS(1599), - [anon_sym_foreach_r] = ACTIONS(1599), - [anon_sym_while] = ACTIONS(1599), - [anon_sym_do] = ACTIONS(1599), - [anon_sym_int] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_asm] = ACTIONS(1599), - [anon_sym_DOLLARassert] = ACTIONS(1599), - [anon_sym_DOLLARerror] = ACTIONS(1599), - [anon_sym_DOLLARecho] = ACTIONS(1599), - [anon_sym_DOLLARif] = ACTIONS(1599), - [anon_sym_DOLLARcase] = ACTIONS(1599), - [anon_sym_DOLLARdefault] = ACTIONS(1599), - [anon_sym_DOLLARswitch] = ACTIONS(1599), - [anon_sym_DOLLARendswitch] = ACTIONS(1599), - [anon_sym_DOLLARfor] = ACTIONS(1599), - [anon_sym_DOLLARforeach] = ACTIONS(1599), - [anon_sym_DOLLARalignof] = ACTIONS(1599), - [anon_sym_DOLLARextnameof] = ACTIONS(1599), - [anon_sym_DOLLARnameof] = ACTIONS(1599), - [anon_sym_DOLLARoffsetof] = ACTIONS(1599), - [anon_sym_DOLLARqnameof] = ACTIONS(1599), - [anon_sym_DOLLAReval] = ACTIONS(1599), - [anon_sym_DOLLARdefined] = ACTIONS(1599), - [anon_sym_DOLLARsizeof] = ACTIONS(1599), - [anon_sym_DOLLARstringify] = ACTIONS(1599), - [anon_sym_DOLLARis_const] = ACTIONS(1599), - [anon_sym_DOLLARvaconst] = ACTIONS(1599), - [anon_sym_DOLLARvaarg] = ACTIONS(1599), - [anon_sym_DOLLARvaref] = ACTIONS(1599), - [anon_sym_DOLLARvaexpr] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1599), - [anon_sym_false] = ACTIONS(1599), - [anon_sym_null] = ACTIONS(1599), - [anon_sym_DOLLARvacount] = ACTIONS(1599), - [anon_sym_DOLLARfeature] = ACTIONS(1599), - [anon_sym_DOLLARand] = ACTIONS(1599), - [anon_sym_DOLLARor] = ACTIONS(1599), - [anon_sym_DOLLARassignable] = ACTIONS(1599), - [anon_sym_DOLLARembed] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1601), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_PLUS_PLUS] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1601), - [anon_sym_typeid] = ACTIONS(1599), - [anon_sym_LBRACE_PIPE] = ACTIONS(1601), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_bool] = ACTIONS(1599), - [anon_sym_char] = ACTIONS(1599), - [anon_sym_ichar] = ACTIONS(1599), - [anon_sym_short] = ACTIONS(1599), - [anon_sym_ushort] = ACTIONS(1599), - [anon_sym_uint] = ACTIONS(1599), - [anon_sym_long] = ACTIONS(1599), - [anon_sym_ulong] = ACTIONS(1599), - [anon_sym_int128] = ACTIONS(1599), - [anon_sym_uint128] = ACTIONS(1599), - [anon_sym_float] = ACTIONS(1599), - [anon_sym_double] = ACTIONS(1599), - [anon_sym_float16] = ACTIONS(1599), - [anon_sym_bfloat16] = ACTIONS(1599), - [anon_sym_float128] = ACTIONS(1599), - [anon_sym_iptr] = ACTIONS(1599), - [anon_sym_uptr] = ACTIONS(1599), - [anon_sym_isz] = ACTIONS(1599), - [anon_sym_usz] = ACTIONS(1599), - [anon_sym_anyfault] = ACTIONS(1599), - [anon_sym_any] = ACTIONS(1599), - [anon_sym_DOLLARtypeof] = ACTIONS(1599), - [anon_sym_DOLLARtypefrom] = ACTIONS(1599), - [anon_sym_DOLLARvatype] = ACTIONS(1599), - [anon_sym_DOLLARevaltype] = ACTIONS(1599), - [sym_real_literal] = ACTIONS(1601), + [397] = { + [sym_line_comment] = STATE(397), + [sym_doc_comment] = STATE(397), + [sym_block_comment] = STATE(397), + [sym_ident] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_bytes_literal] = ACTIONS(1583), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1581), + [sym_at_ident] = ACTIONS(1583), + [sym_hash_ident] = ACTIONS(1583), + [sym_type_ident] = ACTIONS(1583), + [sym_ct_type_ident] = ACTIONS(1583), + [sym_const_ident] = ACTIONS(1581), + [sym_builtin] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_tlocal] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_fn] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_RBRACE] = ACTIONS(1583), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_var] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_defer] = ACTIONS(1581), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_case] = ACTIONS(1581), + [anon_sym_default] = ACTIONS(1581), + [anon_sym_nextcase] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_AMP_AMP] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_foreach] = ACTIONS(1581), + [anon_sym_foreach_r] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_int] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_asm] = ACTIONS(1581), + [anon_sym_DOLLARassert] = ACTIONS(1581), + [anon_sym_DOLLARerror] = ACTIONS(1581), + [anon_sym_DOLLARecho] = ACTIONS(1581), + [anon_sym_DOLLARif] = ACTIONS(1581), + [anon_sym_DOLLARswitch] = ACTIONS(1581), + [anon_sym_DOLLARfor] = ACTIONS(1581), + [anon_sym_DOLLARforeach] = ACTIONS(1581), + [anon_sym_DOLLARalignof] = ACTIONS(1581), + [anon_sym_DOLLARextnameof] = ACTIONS(1581), + [anon_sym_DOLLARnameof] = ACTIONS(1581), + [anon_sym_DOLLARoffsetof] = ACTIONS(1581), + [anon_sym_DOLLARqnameof] = ACTIONS(1581), + [anon_sym_DOLLARvaconst] = ACTIONS(1581), + [anon_sym_DOLLARvaarg] = ACTIONS(1581), + [anon_sym_DOLLARvaref] = ACTIONS(1581), + [anon_sym_DOLLARvaexpr] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_DOLLARvacount] = ACTIONS(1581), + [anon_sym_DOLLAReval] = ACTIONS(1581), + [anon_sym_DOLLARis_const] = ACTIONS(1581), + [anon_sym_DOLLARsizeof] = ACTIONS(1581), + [anon_sym_DOLLARstringify] = ACTIONS(1581), + [anon_sym_DOLLARappend] = ACTIONS(1581), + [anon_sym_DOLLARconcat] = ACTIONS(1581), + [anon_sym_DOLLARdefined] = ACTIONS(1581), + [anon_sym_DOLLARembed] = ACTIONS(1581), + [anon_sym_DOLLARand] = ACTIONS(1581), + [anon_sym_DOLLARor] = ACTIONS(1581), + [anon_sym_DOLLARfeature] = ACTIONS(1581), + [anon_sym_DOLLARassignable] = ACTIONS(1581), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_typeid] = ACTIONS(1581), + [anon_sym_LBRACE_PIPE] = ACTIONS(1583), + [anon_sym_PIPE_RBRACE] = ACTIONS(1583), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_bool] = ACTIONS(1581), + [anon_sym_char] = ACTIONS(1581), + [anon_sym_ichar] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [anon_sym_ushort] = ACTIONS(1581), + [anon_sym_uint] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_ulong] = ACTIONS(1581), + [anon_sym_int128] = ACTIONS(1581), + [anon_sym_uint128] = ACTIONS(1581), + [anon_sym_float] = ACTIONS(1581), + [anon_sym_double] = ACTIONS(1581), + [anon_sym_float16] = ACTIONS(1581), + [anon_sym_bfloat16] = ACTIONS(1581), + [anon_sym_float128] = ACTIONS(1581), + [anon_sym_iptr] = ACTIONS(1581), + [anon_sym_uptr] = ACTIONS(1581), + [anon_sym_isz] = ACTIONS(1581), + [anon_sym_usz] = ACTIONS(1581), + [anon_sym_anyfault] = ACTIONS(1581), + [anon_sym_any] = ACTIONS(1581), + [anon_sym_DOLLARtypeof] = ACTIONS(1581), + [anon_sym_DOLLARtypefrom] = ACTIONS(1581), + [anon_sym_DOLLARevaltype] = ACTIONS(1581), + [anon_sym_DOLLARvatype] = ACTIONS(1581), + [sym_real_literal] = ACTIONS(1583), }, - [455] = { - [sym_line_comment] = STATE(455), - [sym_doc_comment] = STATE(455), - [sym_block_comment] = STATE(455), - [sym_ident] = ACTIONS(1571), - [sym_integer_literal] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_BQUOTE] = ACTIONS(1573), - [sym_bytes_literal] = ACTIONS(1573), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1571), - [sym_at_ident] = ACTIONS(1573), - [sym_hash_ident] = ACTIONS(1573), - [sym_type_ident] = ACTIONS(1573), - [sym_ct_type_ident] = ACTIONS(1573), - [sym_const_ident] = ACTIONS(1571), - [sym_builtin] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_static] = ACTIONS(1571), - [anon_sym_tlocal] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_fn] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_const] = ACTIONS(1571), - [anon_sym_var] = ACTIONS(1571), - [anon_sym_return] = ACTIONS(1571), - [anon_sym_continue] = ACTIONS(1571), - [anon_sym_break] = ACTIONS(1571), - [anon_sym_defer] = ACTIONS(1571), - [anon_sym_assert] = ACTIONS(1571), - [anon_sym_nextcase] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1571), - [anon_sym_AMP_AMP] = ACTIONS(1573), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_for] = ACTIONS(1571), - [anon_sym_foreach] = ACTIONS(1571), - [anon_sym_foreach_r] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1571), - [anon_sym_do] = ACTIONS(1571), - [anon_sym_int] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_asm] = ACTIONS(1571), - [anon_sym_DOLLARassert] = ACTIONS(1571), - [anon_sym_DOLLARerror] = ACTIONS(1571), - [anon_sym_DOLLARecho] = ACTIONS(1571), - [anon_sym_DOLLARif] = ACTIONS(1571), - [anon_sym_DOLLARcase] = ACTIONS(1571), - [anon_sym_DOLLARdefault] = ACTIONS(1571), - [anon_sym_DOLLARswitch] = ACTIONS(1571), - [anon_sym_DOLLARendswitch] = ACTIONS(1571), - [anon_sym_DOLLARfor] = ACTIONS(1571), - [anon_sym_DOLLARforeach] = ACTIONS(1571), - [anon_sym_DOLLARalignof] = ACTIONS(1571), - [anon_sym_DOLLARextnameof] = ACTIONS(1571), - [anon_sym_DOLLARnameof] = ACTIONS(1571), - [anon_sym_DOLLARoffsetof] = ACTIONS(1571), - [anon_sym_DOLLARqnameof] = ACTIONS(1571), - [anon_sym_DOLLAReval] = ACTIONS(1571), - [anon_sym_DOLLARdefined] = ACTIONS(1571), - [anon_sym_DOLLARsizeof] = ACTIONS(1571), - [anon_sym_DOLLARstringify] = ACTIONS(1571), - [anon_sym_DOLLARis_const] = ACTIONS(1571), - [anon_sym_DOLLARvaconst] = ACTIONS(1571), - [anon_sym_DOLLARvaarg] = ACTIONS(1571), - [anon_sym_DOLLARvaref] = ACTIONS(1571), - [anon_sym_DOLLARvaexpr] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [anon_sym_DOLLARvacount] = ACTIONS(1571), - [anon_sym_DOLLARfeature] = ACTIONS(1571), - [anon_sym_DOLLARand] = ACTIONS(1571), - [anon_sym_DOLLARor] = ACTIONS(1571), - [anon_sym_DOLLARassignable] = ACTIONS(1571), - [anon_sym_DOLLARembed] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_PLUS_PLUS] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1573), - [anon_sym_typeid] = ACTIONS(1571), - [anon_sym_LBRACE_PIPE] = ACTIONS(1573), - [anon_sym_void] = ACTIONS(1571), - [anon_sym_bool] = ACTIONS(1571), - [anon_sym_char] = ACTIONS(1571), - [anon_sym_ichar] = ACTIONS(1571), - [anon_sym_short] = ACTIONS(1571), - [anon_sym_ushort] = ACTIONS(1571), - [anon_sym_uint] = ACTIONS(1571), - [anon_sym_long] = ACTIONS(1571), - [anon_sym_ulong] = ACTIONS(1571), - [anon_sym_int128] = ACTIONS(1571), - [anon_sym_uint128] = ACTIONS(1571), - [anon_sym_float] = ACTIONS(1571), - [anon_sym_double] = ACTIONS(1571), - [anon_sym_float16] = ACTIONS(1571), - [anon_sym_bfloat16] = ACTIONS(1571), - [anon_sym_float128] = ACTIONS(1571), - [anon_sym_iptr] = ACTIONS(1571), - [anon_sym_uptr] = ACTIONS(1571), - [anon_sym_isz] = ACTIONS(1571), - [anon_sym_usz] = ACTIONS(1571), - [anon_sym_anyfault] = ACTIONS(1571), - [anon_sym_any] = ACTIONS(1571), - [anon_sym_DOLLARtypeof] = ACTIONS(1571), - [anon_sym_DOLLARtypefrom] = ACTIONS(1571), - [anon_sym_DOLLARvatype] = ACTIONS(1571), - [anon_sym_DOLLARevaltype] = ACTIONS(1571), - [sym_real_literal] = ACTIONS(1573), + [398] = { + [sym_line_comment] = STATE(398), + [sym_doc_comment] = STATE(398), + [sym_block_comment] = STATE(398), + [sym_ident] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [anon_sym_BQUOTE] = ACTIONS(1587), + [sym_bytes_literal] = ACTIONS(1587), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1585), + [sym_at_ident] = ACTIONS(1587), + [sym_hash_ident] = ACTIONS(1587), + [sym_type_ident] = ACTIONS(1587), + [sym_ct_type_ident] = ACTIONS(1587), + [sym_const_ident] = ACTIONS(1585), + [sym_builtin] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_tlocal] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_fn] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_var] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_defer] = ACTIONS(1585), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_case] = ACTIONS(1585), + [anon_sym_default] = ACTIONS(1585), + [anon_sym_nextcase] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_foreach] = ACTIONS(1585), + [anon_sym_foreach_r] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_int] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_asm] = ACTIONS(1585), + [anon_sym_DOLLARassert] = ACTIONS(1585), + [anon_sym_DOLLARerror] = ACTIONS(1585), + [anon_sym_DOLLARecho] = ACTIONS(1585), + [anon_sym_DOLLARif] = ACTIONS(1585), + [anon_sym_DOLLARswitch] = ACTIONS(1585), + [anon_sym_DOLLARfor] = ACTIONS(1585), + [anon_sym_DOLLARforeach] = ACTIONS(1585), + [anon_sym_DOLLARalignof] = ACTIONS(1585), + [anon_sym_DOLLARextnameof] = ACTIONS(1585), + [anon_sym_DOLLARnameof] = ACTIONS(1585), + [anon_sym_DOLLARoffsetof] = ACTIONS(1585), + [anon_sym_DOLLARqnameof] = ACTIONS(1585), + [anon_sym_DOLLARvaconst] = ACTIONS(1585), + [anon_sym_DOLLARvaarg] = ACTIONS(1585), + [anon_sym_DOLLARvaref] = ACTIONS(1585), + [anon_sym_DOLLARvaexpr] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_DOLLARvacount] = ACTIONS(1585), + [anon_sym_DOLLAReval] = ACTIONS(1585), + [anon_sym_DOLLARis_const] = ACTIONS(1585), + [anon_sym_DOLLARsizeof] = ACTIONS(1585), + [anon_sym_DOLLARstringify] = ACTIONS(1585), + [anon_sym_DOLLARappend] = ACTIONS(1585), + [anon_sym_DOLLARconcat] = ACTIONS(1585), + [anon_sym_DOLLARdefined] = ACTIONS(1585), + [anon_sym_DOLLARembed] = ACTIONS(1585), + [anon_sym_DOLLARand] = ACTIONS(1585), + [anon_sym_DOLLARor] = ACTIONS(1585), + [anon_sym_DOLLARfeature] = ACTIONS(1585), + [anon_sym_DOLLARassignable] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_typeid] = ACTIONS(1585), + [anon_sym_LBRACE_PIPE] = ACTIONS(1587), + [anon_sym_PIPE_RBRACE] = ACTIONS(1587), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_ichar] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [anon_sym_ushort] = ACTIONS(1585), + [anon_sym_uint] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_ulong] = ACTIONS(1585), + [anon_sym_int128] = ACTIONS(1585), + [anon_sym_uint128] = ACTIONS(1585), + [anon_sym_float] = ACTIONS(1585), + [anon_sym_double] = ACTIONS(1585), + [anon_sym_float16] = ACTIONS(1585), + [anon_sym_bfloat16] = ACTIONS(1585), + [anon_sym_float128] = ACTIONS(1585), + [anon_sym_iptr] = ACTIONS(1585), + [anon_sym_uptr] = ACTIONS(1585), + [anon_sym_isz] = ACTIONS(1585), + [anon_sym_usz] = ACTIONS(1585), + [anon_sym_anyfault] = ACTIONS(1585), + [anon_sym_any] = ACTIONS(1585), + [anon_sym_DOLLARtypeof] = ACTIONS(1585), + [anon_sym_DOLLARtypefrom] = ACTIONS(1585), + [anon_sym_DOLLARevaltype] = ACTIONS(1585), + [anon_sym_DOLLARvatype] = ACTIONS(1585), + [sym_real_literal] = ACTIONS(1587), }, - [456] = { - [sym_line_comment] = STATE(456), - [sym_doc_comment] = STATE(456), - [sym_block_comment] = STATE(456), - [sym_ident] = ACTIONS(1607), - [sym_integer_literal] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1609), - [anon_sym_BQUOTE] = ACTIONS(1609), - [sym_bytes_literal] = ACTIONS(1609), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1607), - [sym_at_ident] = ACTIONS(1609), - [sym_hash_ident] = ACTIONS(1609), - [sym_type_ident] = ACTIONS(1609), - [sym_ct_type_ident] = ACTIONS(1609), - [sym_const_ident] = ACTIONS(1607), - [sym_builtin] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1607), - [anon_sym_tlocal] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_fn] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [anon_sym_var] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_defer] = ACTIONS(1607), - [anon_sym_assert] = ACTIONS(1607), - [anon_sym_nextcase] = ACTIONS(1607), - [anon_sym_switch] = ACTIONS(1607), - [anon_sym_AMP_AMP] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_foreach] = ACTIONS(1607), - [anon_sym_foreach_r] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [anon_sym_do] = ACTIONS(1607), - [anon_sym_int] = ACTIONS(1607), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1609), - [anon_sym_asm] = ACTIONS(1607), - [anon_sym_DOLLARassert] = ACTIONS(1607), - [anon_sym_DOLLARerror] = ACTIONS(1607), - [anon_sym_DOLLARecho] = ACTIONS(1607), - [anon_sym_DOLLARif] = ACTIONS(1607), - [anon_sym_DOLLARcase] = ACTIONS(1607), - [anon_sym_DOLLARdefault] = ACTIONS(1607), - [anon_sym_DOLLARswitch] = ACTIONS(1607), - [anon_sym_DOLLARendswitch] = ACTIONS(1607), - [anon_sym_DOLLARfor] = ACTIONS(1607), - [anon_sym_DOLLARforeach] = ACTIONS(1607), - [anon_sym_DOLLARalignof] = ACTIONS(1607), - [anon_sym_DOLLARextnameof] = ACTIONS(1607), - [anon_sym_DOLLARnameof] = ACTIONS(1607), - [anon_sym_DOLLARoffsetof] = ACTIONS(1607), - [anon_sym_DOLLARqnameof] = ACTIONS(1607), - [anon_sym_DOLLAReval] = ACTIONS(1607), - [anon_sym_DOLLARdefined] = ACTIONS(1607), - [anon_sym_DOLLARsizeof] = ACTIONS(1607), - [anon_sym_DOLLARstringify] = ACTIONS(1607), - [anon_sym_DOLLARis_const] = ACTIONS(1607), - [anon_sym_DOLLARvaconst] = ACTIONS(1607), - [anon_sym_DOLLARvaarg] = ACTIONS(1607), - [anon_sym_DOLLARvaref] = ACTIONS(1607), - [anon_sym_DOLLARvaexpr] = ACTIONS(1607), - [anon_sym_true] = ACTIONS(1607), - [anon_sym_false] = ACTIONS(1607), - [anon_sym_null] = ACTIONS(1607), - [anon_sym_DOLLARvacount] = ACTIONS(1607), - [anon_sym_DOLLARfeature] = ACTIONS(1607), - [anon_sym_DOLLARand] = ACTIONS(1607), - [anon_sym_DOLLARor] = ACTIONS(1607), - [anon_sym_DOLLARassignable] = ACTIONS(1607), - [anon_sym_DOLLARembed] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_TILDE] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym_typeid] = ACTIONS(1607), - [anon_sym_LBRACE_PIPE] = ACTIONS(1609), - [anon_sym_void] = ACTIONS(1607), - [anon_sym_bool] = ACTIONS(1607), - [anon_sym_char] = ACTIONS(1607), - [anon_sym_ichar] = ACTIONS(1607), - [anon_sym_short] = ACTIONS(1607), - [anon_sym_ushort] = ACTIONS(1607), - [anon_sym_uint] = ACTIONS(1607), - [anon_sym_long] = ACTIONS(1607), - [anon_sym_ulong] = ACTIONS(1607), - [anon_sym_int128] = ACTIONS(1607), - [anon_sym_uint128] = ACTIONS(1607), - [anon_sym_float] = ACTIONS(1607), - [anon_sym_double] = ACTIONS(1607), - [anon_sym_float16] = ACTIONS(1607), - [anon_sym_bfloat16] = ACTIONS(1607), - [anon_sym_float128] = ACTIONS(1607), - [anon_sym_iptr] = ACTIONS(1607), - [anon_sym_uptr] = ACTIONS(1607), - [anon_sym_isz] = ACTIONS(1607), - [anon_sym_usz] = ACTIONS(1607), - [anon_sym_anyfault] = ACTIONS(1607), - [anon_sym_any] = ACTIONS(1607), - [anon_sym_DOLLARtypeof] = ACTIONS(1607), - [anon_sym_DOLLARtypefrom] = ACTIONS(1607), - [anon_sym_DOLLARvatype] = ACTIONS(1607), - [anon_sym_DOLLARevaltype] = ACTIONS(1607), - [sym_real_literal] = ACTIONS(1609), + [399] = { + [sym_line_comment] = STATE(399), + [sym_doc_comment] = STATE(399), + [sym_block_comment] = STATE(399), + [sym_ident] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [anon_sym_BQUOTE] = ACTIONS(1591), + [sym_bytes_literal] = ACTIONS(1591), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1589), + [sym_at_ident] = ACTIONS(1591), + [sym_hash_ident] = ACTIONS(1591), + [sym_type_ident] = ACTIONS(1591), + [sym_ct_type_ident] = ACTIONS(1591), + [sym_const_ident] = ACTIONS(1589), + [sym_builtin] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_tlocal] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_fn] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1591), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_var] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_defer] = ACTIONS(1589), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_case] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1589), + [anon_sym_nextcase] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_foreach] = ACTIONS(1589), + [anon_sym_foreach_r] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_int] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_asm] = ACTIONS(1589), + [anon_sym_DOLLARassert] = ACTIONS(1589), + [anon_sym_DOLLARerror] = ACTIONS(1589), + [anon_sym_DOLLARecho] = ACTIONS(1589), + [anon_sym_DOLLARif] = ACTIONS(1589), + [anon_sym_DOLLARswitch] = ACTIONS(1589), + [anon_sym_DOLLARfor] = ACTIONS(1589), + [anon_sym_DOLLARforeach] = ACTIONS(1589), + [anon_sym_DOLLARalignof] = ACTIONS(1589), + [anon_sym_DOLLARextnameof] = ACTIONS(1589), + [anon_sym_DOLLARnameof] = ACTIONS(1589), + [anon_sym_DOLLARoffsetof] = ACTIONS(1589), + [anon_sym_DOLLARqnameof] = ACTIONS(1589), + [anon_sym_DOLLARvaconst] = ACTIONS(1589), + [anon_sym_DOLLARvaarg] = ACTIONS(1589), + [anon_sym_DOLLARvaref] = ACTIONS(1589), + [anon_sym_DOLLARvaexpr] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [anon_sym_DOLLARvacount] = ACTIONS(1589), + [anon_sym_DOLLAReval] = ACTIONS(1589), + [anon_sym_DOLLARis_const] = ACTIONS(1589), + [anon_sym_DOLLARsizeof] = ACTIONS(1589), + [anon_sym_DOLLARstringify] = ACTIONS(1589), + [anon_sym_DOLLARappend] = ACTIONS(1589), + [anon_sym_DOLLARconcat] = ACTIONS(1589), + [anon_sym_DOLLARdefined] = ACTIONS(1589), + [anon_sym_DOLLARembed] = ACTIONS(1589), + [anon_sym_DOLLARand] = ACTIONS(1589), + [anon_sym_DOLLARor] = ACTIONS(1589), + [anon_sym_DOLLARfeature] = ACTIONS(1589), + [anon_sym_DOLLARassignable] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_typeid] = ACTIONS(1589), + [anon_sym_LBRACE_PIPE] = ACTIONS(1591), + [anon_sym_PIPE_RBRACE] = ACTIONS(1591), + [anon_sym_void] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_ichar] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [anon_sym_ushort] = ACTIONS(1589), + [anon_sym_uint] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_ulong] = ACTIONS(1589), + [anon_sym_int128] = ACTIONS(1589), + [anon_sym_uint128] = ACTIONS(1589), + [anon_sym_float] = ACTIONS(1589), + [anon_sym_double] = ACTIONS(1589), + [anon_sym_float16] = ACTIONS(1589), + [anon_sym_bfloat16] = ACTIONS(1589), + [anon_sym_float128] = ACTIONS(1589), + [anon_sym_iptr] = ACTIONS(1589), + [anon_sym_uptr] = ACTIONS(1589), + [anon_sym_isz] = ACTIONS(1589), + [anon_sym_usz] = ACTIONS(1589), + [anon_sym_anyfault] = ACTIONS(1589), + [anon_sym_any] = ACTIONS(1589), + [anon_sym_DOLLARtypeof] = ACTIONS(1589), + [anon_sym_DOLLARtypefrom] = ACTIONS(1589), + [anon_sym_DOLLARevaltype] = ACTIONS(1589), + [anon_sym_DOLLARvatype] = ACTIONS(1589), + [sym_real_literal] = ACTIONS(1591), }, - [457] = { - [sym_line_comment] = STATE(457), - [sym_doc_comment] = STATE(457), - [sym_block_comment] = STATE(457), - [sym_ident] = ACTIONS(1603), - [sym_integer_literal] = ACTIONS(1605), - [anon_sym_SQUOTE] = ACTIONS(1605), - [anon_sym_DQUOTE] = ACTIONS(1605), - [anon_sym_BQUOTE] = ACTIONS(1605), - [sym_bytes_literal] = ACTIONS(1605), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1603), - [sym_at_ident] = ACTIONS(1605), - [sym_hash_ident] = ACTIONS(1605), - [sym_type_ident] = ACTIONS(1605), - [sym_ct_type_ident] = ACTIONS(1605), - [sym_const_ident] = ACTIONS(1603), - [sym_builtin] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1605), - [anon_sym_AMP] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1603), - [anon_sym_tlocal] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1605), - [anon_sym_fn] = ACTIONS(1603), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_const] = ACTIONS(1603), - [anon_sym_var] = ACTIONS(1603), - [anon_sym_return] = ACTIONS(1603), - [anon_sym_continue] = ACTIONS(1603), - [anon_sym_break] = ACTIONS(1603), - [anon_sym_defer] = ACTIONS(1603), - [anon_sym_assert] = ACTIONS(1603), - [anon_sym_nextcase] = ACTIONS(1603), - [anon_sym_switch] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1603), - [anon_sym_for] = ACTIONS(1603), - [anon_sym_foreach] = ACTIONS(1603), - [anon_sym_foreach_r] = ACTIONS(1603), - [anon_sym_while] = ACTIONS(1603), - [anon_sym_do] = ACTIONS(1603), - [anon_sym_int] = ACTIONS(1603), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_asm] = ACTIONS(1603), - [anon_sym_DOLLARassert] = ACTIONS(1603), - [anon_sym_DOLLARerror] = ACTIONS(1603), - [anon_sym_DOLLARecho] = ACTIONS(1603), - [anon_sym_DOLLARif] = ACTIONS(1603), - [anon_sym_DOLLARcase] = ACTIONS(1603), - [anon_sym_DOLLARdefault] = ACTIONS(1603), - [anon_sym_DOLLARswitch] = ACTIONS(1603), - [anon_sym_DOLLARendswitch] = ACTIONS(1603), - [anon_sym_DOLLARfor] = ACTIONS(1603), - [anon_sym_DOLLARforeach] = ACTIONS(1603), - [anon_sym_DOLLARalignof] = ACTIONS(1603), - [anon_sym_DOLLARextnameof] = ACTIONS(1603), - [anon_sym_DOLLARnameof] = ACTIONS(1603), - [anon_sym_DOLLARoffsetof] = ACTIONS(1603), - [anon_sym_DOLLARqnameof] = ACTIONS(1603), - [anon_sym_DOLLAReval] = ACTIONS(1603), - [anon_sym_DOLLARdefined] = ACTIONS(1603), - [anon_sym_DOLLARsizeof] = ACTIONS(1603), - [anon_sym_DOLLARstringify] = ACTIONS(1603), - [anon_sym_DOLLARis_const] = ACTIONS(1603), - [anon_sym_DOLLARvaconst] = ACTIONS(1603), - [anon_sym_DOLLARvaarg] = ACTIONS(1603), - [anon_sym_DOLLARvaref] = ACTIONS(1603), - [anon_sym_DOLLARvaexpr] = ACTIONS(1603), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [anon_sym_null] = ACTIONS(1603), - [anon_sym_DOLLARvacount] = ACTIONS(1603), - [anon_sym_DOLLARfeature] = ACTIONS(1603), - [anon_sym_DOLLARand] = ACTIONS(1603), - [anon_sym_DOLLARor] = ACTIONS(1603), - [anon_sym_DOLLARassignable] = ACTIONS(1603), - [anon_sym_DOLLARembed] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1605), - [anon_sym_DASH_DASH] = ACTIONS(1605), - [anon_sym_typeid] = ACTIONS(1603), - [anon_sym_LBRACE_PIPE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_ichar] = ACTIONS(1603), - [anon_sym_short] = ACTIONS(1603), - [anon_sym_ushort] = ACTIONS(1603), - [anon_sym_uint] = ACTIONS(1603), - [anon_sym_long] = ACTIONS(1603), - [anon_sym_ulong] = ACTIONS(1603), - [anon_sym_int128] = ACTIONS(1603), - [anon_sym_uint128] = ACTIONS(1603), - [anon_sym_float] = ACTIONS(1603), - [anon_sym_double] = ACTIONS(1603), - [anon_sym_float16] = ACTIONS(1603), - [anon_sym_bfloat16] = ACTIONS(1603), - [anon_sym_float128] = ACTIONS(1603), - [anon_sym_iptr] = ACTIONS(1603), - [anon_sym_uptr] = ACTIONS(1603), - [anon_sym_isz] = ACTIONS(1603), - [anon_sym_usz] = ACTIONS(1603), - [anon_sym_anyfault] = ACTIONS(1603), - [anon_sym_any] = ACTIONS(1603), - [anon_sym_DOLLARtypeof] = ACTIONS(1603), - [anon_sym_DOLLARtypefrom] = ACTIONS(1603), - [anon_sym_DOLLARvatype] = ACTIONS(1603), - [anon_sym_DOLLARevaltype] = ACTIONS(1603), - [sym_real_literal] = ACTIONS(1605), + [400] = { + [sym_line_comment] = STATE(400), + [sym_doc_comment] = STATE(400), + [sym_block_comment] = STATE(400), + [sym_ident] = ACTIONS(1593), + [sym_integer_literal] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_bytes_literal] = ACTIONS(1595), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1593), + [sym_at_ident] = ACTIONS(1595), + [sym_hash_ident] = ACTIONS(1595), + [sym_type_ident] = ACTIONS(1595), + [sym_ct_type_ident] = ACTIONS(1595), + [sym_const_ident] = ACTIONS(1593), + [sym_builtin] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_tlocal] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_fn] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1593), + [anon_sym_RBRACE] = ACTIONS(1595), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_defer] = ACTIONS(1593), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_nextcase] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_foreach] = ACTIONS(1593), + [anon_sym_foreach_r] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_asm] = ACTIONS(1593), + [anon_sym_DOLLARassert] = ACTIONS(1593), + [anon_sym_DOLLARerror] = ACTIONS(1593), + [anon_sym_DOLLARecho] = ACTIONS(1593), + [anon_sym_DOLLARif] = ACTIONS(1593), + [anon_sym_DOLLARswitch] = ACTIONS(1593), + [anon_sym_DOLLARfor] = ACTIONS(1593), + [anon_sym_DOLLARforeach] = ACTIONS(1593), + [anon_sym_DOLLARalignof] = ACTIONS(1593), + [anon_sym_DOLLARextnameof] = ACTIONS(1593), + [anon_sym_DOLLARnameof] = ACTIONS(1593), + [anon_sym_DOLLARoffsetof] = ACTIONS(1593), + [anon_sym_DOLLARqnameof] = ACTIONS(1593), + [anon_sym_DOLLARvaconst] = ACTIONS(1593), + [anon_sym_DOLLARvaarg] = ACTIONS(1593), + [anon_sym_DOLLARvaref] = ACTIONS(1593), + [anon_sym_DOLLARvaexpr] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_DOLLARvacount] = ACTIONS(1593), + [anon_sym_DOLLAReval] = ACTIONS(1593), + [anon_sym_DOLLARis_const] = ACTIONS(1593), + [anon_sym_DOLLARsizeof] = ACTIONS(1593), + [anon_sym_DOLLARstringify] = ACTIONS(1593), + [anon_sym_DOLLARappend] = ACTIONS(1593), + [anon_sym_DOLLARconcat] = ACTIONS(1593), + [anon_sym_DOLLARdefined] = ACTIONS(1593), + [anon_sym_DOLLARembed] = ACTIONS(1593), + [anon_sym_DOLLARand] = ACTIONS(1593), + [anon_sym_DOLLARor] = ACTIONS(1593), + [anon_sym_DOLLARfeature] = ACTIONS(1593), + [anon_sym_DOLLARassignable] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_DASH_DASH] = ACTIONS(1595), + [anon_sym_typeid] = ACTIONS(1593), + [anon_sym_LBRACE_PIPE] = ACTIONS(1595), + [anon_sym_PIPE_RBRACE] = ACTIONS(1595), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_ichar] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [anon_sym_ushort] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_ulong] = ACTIONS(1593), + [anon_sym_int128] = ACTIONS(1593), + [anon_sym_uint128] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_double] = ACTIONS(1593), + [anon_sym_float16] = ACTIONS(1593), + [anon_sym_bfloat16] = ACTIONS(1593), + [anon_sym_float128] = ACTIONS(1593), + [anon_sym_iptr] = ACTIONS(1593), + [anon_sym_uptr] = ACTIONS(1593), + [anon_sym_isz] = ACTIONS(1593), + [anon_sym_usz] = ACTIONS(1593), + [anon_sym_anyfault] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_DOLLARtypeof] = ACTIONS(1593), + [anon_sym_DOLLARtypefrom] = ACTIONS(1593), + [anon_sym_DOLLARevaltype] = ACTIONS(1593), + [anon_sym_DOLLARvatype] = ACTIONS(1593), + [sym_real_literal] = ACTIONS(1595), }, - [458] = { - [sym_line_comment] = STATE(458), - [sym_doc_comment] = STATE(458), - [sym_block_comment] = STATE(458), - [sym_ident] = ACTIONS(1615), - [sym_integer_literal] = ACTIONS(1617), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_DQUOTE] = ACTIONS(1617), - [anon_sym_BQUOTE] = ACTIONS(1617), - [sym_bytes_literal] = ACTIONS(1617), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1615), - [sym_at_ident] = ACTIONS(1617), - [sym_hash_ident] = ACTIONS(1617), - [sym_type_ident] = ACTIONS(1617), - [sym_ct_type_ident] = ACTIONS(1617), - [sym_const_ident] = ACTIONS(1615), - [sym_builtin] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1615), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_tlocal] = ACTIONS(1615), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_fn] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1615), - [anon_sym_const] = ACTIONS(1615), - [anon_sym_var] = ACTIONS(1615), - [anon_sym_return] = ACTIONS(1615), - [anon_sym_continue] = ACTIONS(1615), - [anon_sym_break] = ACTIONS(1615), - [anon_sym_defer] = ACTIONS(1615), - [anon_sym_assert] = ACTIONS(1615), - [anon_sym_nextcase] = ACTIONS(1615), - [anon_sym_switch] = ACTIONS(1615), - [anon_sym_AMP_AMP] = ACTIONS(1617), - [anon_sym_if] = ACTIONS(1615), - [anon_sym_for] = ACTIONS(1615), - [anon_sym_foreach] = ACTIONS(1615), - [anon_sym_foreach_r] = ACTIONS(1615), - [anon_sym_while] = ACTIONS(1615), - [anon_sym_do] = ACTIONS(1615), - [anon_sym_int] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1617), - [anon_sym_asm] = ACTIONS(1615), - [anon_sym_DOLLARassert] = ACTIONS(1615), - [anon_sym_DOLLARerror] = ACTIONS(1615), - [anon_sym_DOLLARecho] = ACTIONS(1615), - [anon_sym_DOLLARif] = ACTIONS(1615), - [anon_sym_DOLLARcase] = ACTIONS(1615), - [anon_sym_DOLLARdefault] = ACTIONS(1615), - [anon_sym_DOLLARswitch] = ACTIONS(1615), - [anon_sym_DOLLARendswitch] = ACTIONS(1615), - [anon_sym_DOLLARfor] = ACTIONS(1615), - [anon_sym_DOLLARforeach] = ACTIONS(1615), - [anon_sym_DOLLARalignof] = ACTIONS(1615), - [anon_sym_DOLLARextnameof] = ACTIONS(1615), - [anon_sym_DOLLARnameof] = ACTIONS(1615), - [anon_sym_DOLLARoffsetof] = ACTIONS(1615), - [anon_sym_DOLLARqnameof] = ACTIONS(1615), - [anon_sym_DOLLAReval] = ACTIONS(1615), - [anon_sym_DOLLARdefined] = ACTIONS(1615), - [anon_sym_DOLLARsizeof] = ACTIONS(1615), - [anon_sym_DOLLARstringify] = ACTIONS(1615), - [anon_sym_DOLLARis_const] = ACTIONS(1615), - [anon_sym_DOLLARvaconst] = ACTIONS(1615), - [anon_sym_DOLLARvaarg] = ACTIONS(1615), - [anon_sym_DOLLARvaref] = ACTIONS(1615), - [anon_sym_DOLLARvaexpr] = ACTIONS(1615), - [anon_sym_true] = ACTIONS(1615), - [anon_sym_false] = ACTIONS(1615), - [anon_sym_null] = ACTIONS(1615), - [anon_sym_DOLLARvacount] = ACTIONS(1615), - [anon_sym_DOLLARfeature] = ACTIONS(1615), - [anon_sym_DOLLARand] = ACTIONS(1615), - [anon_sym_DOLLARor] = ACTIONS(1615), - [anon_sym_DOLLARassignable] = ACTIONS(1615), - [anon_sym_DOLLARembed] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_typeid] = ACTIONS(1615), - [anon_sym_LBRACE_PIPE] = ACTIONS(1617), - [anon_sym_void] = ACTIONS(1615), - [anon_sym_bool] = ACTIONS(1615), - [anon_sym_char] = ACTIONS(1615), - [anon_sym_ichar] = ACTIONS(1615), - [anon_sym_short] = ACTIONS(1615), - [anon_sym_ushort] = ACTIONS(1615), - [anon_sym_uint] = ACTIONS(1615), - [anon_sym_long] = ACTIONS(1615), - [anon_sym_ulong] = ACTIONS(1615), - [anon_sym_int128] = ACTIONS(1615), - [anon_sym_uint128] = ACTIONS(1615), - [anon_sym_float] = ACTIONS(1615), - [anon_sym_double] = ACTIONS(1615), - [anon_sym_float16] = ACTIONS(1615), - [anon_sym_bfloat16] = ACTIONS(1615), - [anon_sym_float128] = ACTIONS(1615), - [anon_sym_iptr] = ACTIONS(1615), - [anon_sym_uptr] = ACTIONS(1615), - [anon_sym_isz] = ACTIONS(1615), - [anon_sym_usz] = ACTIONS(1615), - [anon_sym_anyfault] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_DOLLARtypeof] = ACTIONS(1615), - [anon_sym_DOLLARtypefrom] = ACTIONS(1615), - [anon_sym_DOLLARvatype] = ACTIONS(1615), - [anon_sym_DOLLARevaltype] = ACTIONS(1615), - [sym_real_literal] = ACTIONS(1617), + [401] = { + [sym_line_comment] = STATE(401), + [sym_doc_comment] = STATE(401), + [sym_block_comment] = STATE(401), + [sym_ident] = ACTIONS(1597), + [sym_integer_literal] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_bytes_literal] = ACTIONS(1599), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1597), + [sym_at_ident] = ACTIONS(1599), + [sym_hash_ident] = ACTIONS(1599), + [sym_type_ident] = ACTIONS(1599), + [sym_ct_type_ident] = ACTIONS(1599), + [sym_const_ident] = ACTIONS(1597), + [sym_builtin] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_tlocal] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_fn] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_var] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_defer] = ACTIONS(1597), + [anon_sym_assert] = ACTIONS(1597), + [anon_sym_case] = ACTIONS(1597), + [anon_sym_default] = ACTIONS(1597), + [anon_sym_nextcase] = ACTIONS(1597), + [anon_sym_switch] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_foreach] = ACTIONS(1597), + [anon_sym_foreach_r] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_int] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_asm] = ACTIONS(1597), + [anon_sym_DOLLARassert] = ACTIONS(1597), + [anon_sym_DOLLARerror] = ACTIONS(1597), + [anon_sym_DOLLARecho] = ACTIONS(1597), + [anon_sym_DOLLARif] = ACTIONS(1597), + [anon_sym_DOLLARswitch] = ACTIONS(1597), + [anon_sym_DOLLARfor] = ACTIONS(1597), + [anon_sym_DOLLARforeach] = ACTIONS(1597), + [anon_sym_DOLLARalignof] = ACTIONS(1597), + [anon_sym_DOLLARextnameof] = ACTIONS(1597), + [anon_sym_DOLLARnameof] = ACTIONS(1597), + [anon_sym_DOLLARoffsetof] = ACTIONS(1597), + [anon_sym_DOLLARqnameof] = ACTIONS(1597), + [anon_sym_DOLLARvaconst] = ACTIONS(1597), + [anon_sym_DOLLARvaarg] = ACTIONS(1597), + [anon_sym_DOLLARvaref] = ACTIONS(1597), + [anon_sym_DOLLARvaexpr] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_DOLLARvacount] = ACTIONS(1597), + [anon_sym_DOLLAReval] = ACTIONS(1597), + [anon_sym_DOLLARis_const] = ACTIONS(1597), + [anon_sym_DOLLARsizeof] = ACTIONS(1597), + [anon_sym_DOLLARstringify] = ACTIONS(1597), + [anon_sym_DOLLARappend] = ACTIONS(1597), + [anon_sym_DOLLARconcat] = ACTIONS(1597), + [anon_sym_DOLLARdefined] = ACTIONS(1597), + [anon_sym_DOLLARembed] = ACTIONS(1597), + [anon_sym_DOLLARand] = ACTIONS(1597), + [anon_sym_DOLLARor] = ACTIONS(1597), + [anon_sym_DOLLARfeature] = ACTIONS(1597), + [anon_sym_DOLLARassignable] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_typeid] = ACTIONS(1597), + [anon_sym_LBRACE_PIPE] = ACTIONS(1599), + [anon_sym_PIPE_RBRACE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1597), + [anon_sym_bool] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_ichar] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [anon_sym_ushort] = ACTIONS(1597), + [anon_sym_uint] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_ulong] = ACTIONS(1597), + [anon_sym_int128] = ACTIONS(1597), + [anon_sym_uint128] = ACTIONS(1597), + [anon_sym_float] = ACTIONS(1597), + [anon_sym_double] = ACTIONS(1597), + [anon_sym_float16] = ACTIONS(1597), + [anon_sym_bfloat16] = ACTIONS(1597), + [anon_sym_float128] = ACTIONS(1597), + [anon_sym_iptr] = ACTIONS(1597), + [anon_sym_uptr] = ACTIONS(1597), + [anon_sym_isz] = ACTIONS(1597), + [anon_sym_usz] = ACTIONS(1597), + [anon_sym_anyfault] = ACTIONS(1597), + [anon_sym_any] = ACTIONS(1597), + [anon_sym_DOLLARtypeof] = ACTIONS(1597), + [anon_sym_DOLLARtypefrom] = ACTIONS(1597), + [anon_sym_DOLLARevaltype] = ACTIONS(1597), + [anon_sym_DOLLARvatype] = ACTIONS(1597), + [sym_real_literal] = ACTIONS(1599), }, - [459] = { - [sym_line_comment] = STATE(459), - [sym_doc_comment] = STATE(459), - [sym_block_comment] = STATE(459), - [sym_ident] = ACTIONS(1611), - [sym_integer_literal] = ACTIONS(1613), - [anon_sym_SQUOTE] = ACTIONS(1613), - [anon_sym_DQUOTE] = ACTIONS(1613), - [anon_sym_BQUOTE] = ACTIONS(1613), - [sym_bytes_literal] = ACTIONS(1613), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1611), - [sym_at_ident] = ACTIONS(1613), - [sym_hash_ident] = ACTIONS(1613), - [sym_type_ident] = ACTIONS(1613), - [sym_ct_type_ident] = ACTIONS(1613), - [sym_const_ident] = ACTIONS(1611), - [sym_builtin] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(1611), - [anon_sym_tlocal] = ACTIONS(1611), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_const] = ACTIONS(1611), - [anon_sym_var] = ACTIONS(1611), - [anon_sym_return] = ACTIONS(1611), - [anon_sym_continue] = ACTIONS(1611), - [anon_sym_break] = ACTIONS(1611), - [anon_sym_defer] = ACTIONS(1611), - [anon_sym_assert] = ACTIONS(1611), - [anon_sym_nextcase] = ACTIONS(1611), - [anon_sym_switch] = ACTIONS(1611), - [anon_sym_AMP_AMP] = ACTIONS(1613), - [anon_sym_if] = ACTIONS(1611), - [anon_sym_for] = ACTIONS(1611), - [anon_sym_foreach] = ACTIONS(1611), - [anon_sym_foreach_r] = ACTIONS(1611), - [anon_sym_while] = ACTIONS(1611), - [anon_sym_do] = ACTIONS(1611), - [anon_sym_int] = ACTIONS(1611), - [anon_sym_PLUS] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1611), - [anon_sym_STAR] = ACTIONS(1613), - [anon_sym_asm] = ACTIONS(1611), - [anon_sym_DOLLARassert] = ACTIONS(1611), - [anon_sym_DOLLARerror] = ACTIONS(1611), - [anon_sym_DOLLARecho] = ACTIONS(1611), - [anon_sym_DOLLARif] = ACTIONS(1611), - [anon_sym_DOLLARcase] = ACTIONS(1611), - [anon_sym_DOLLARdefault] = ACTIONS(1611), - [anon_sym_DOLLARswitch] = ACTIONS(1611), - [anon_sym_DOLLARendswitch] = ACTIONS(1611), - [anon_sym_DOLLARfor] = ACTIONS(1611), - [anon_sym_DOLLARforeach] = ACTIONS(1611), - [anon_sym_DOLLARalignof] = ACTIONS(1611), - [anon_sym_DOLLARextnameof] = ACTIONS(1611), - [anon_sym_DOLLARnameof] = ACTIONS(1611), - [anon_sym_DOLLARoffsetof] = ACTIONS(1611), - [anon_sym_DOLLARqnameof] = ACTIONS(1611), - [anon_sym_DOLLAReval] = ACTIONS(1611), - [anon_sym_DOLLARdefined] = ACTIONS(1611), - [anon_sym_DOLLARsizeof] = ACTIONS(1611), - [anon_sym_DOLLARstringify] = ACTIONS(1611), - [anon_sym_DOLLARis_const] = ACTIONS(1611), - [anon_sym_DOLLARvaconst] = ACTIONS(1611), - [anon_sym_DOLLARvaarg] = ACTIONS(1611), - [anon_sym_DOLLARvaref] = ACTIONS(1611), - [anon_sym_DOLLARvaexpr] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1611), - [anon_sym_false] = ACTIONS(1611), - [anon_sym_null] = ACTIONS(1611), - [anon_sym_DOLLARvacount] = ACTIONS(1611), - [anon_sym_DOLLARfeature] = ACTIONS(1611), - [anon_sym_DOLLARand] = ACTIONS(1611), - [anon_sym_DOLLARor] = ACTIONS(1611), - [anon_sym_DOLLARassignable] = ACTIONS(1611), - [anon_sym_DOLLARembed] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1613), - [anon_sym_TILDE] = ACTIONS(1613), - [anon_sym_PLUS_PLUS] = ACTIONS(1613), - [anon_sym_DASH_DASH] = ACTIONS(1613), - [anon_sym_typeid] = ACTIONS(1611), - [anon_sym_LBRACE_PIPE] = ACTIONS(1613), - [anon_sym_void] = ACTIONS(1611), - [anon_sym_bool] = ACTIONS(1611), - [anon_sym_char] = ACTIONS(1611), - [anon_sym_ichar] = ACTIONS(1611), - [anon_sym_short] = ACTIONS(1611), - [anon_sym_ushort] = ACTIONS(1611), - [anon_sym_uint] = ACTIONS(1611), - [anon_sym_long] = ACTIONS(1611), - [anon_sym_ulong] = ACTIONS(1611), - [anon_sym_int128] = ACTIONS(1611), - [anon_sym_uint128] = ACTIONS(1611), - [anon_sym_float] = ACTIONS(1611), - [anon_sym_double] = ACTIONS(1611), - [anon_sym_float16] = ACTIONS(1611), - [anon_sym_bfloat16] = ACTIONS(1611), - [anon_sym_float128] = ACTIONS(1611), - [anon_sym_iptr] = ACTIONS(1611), - [anon_sym_uptr] = ACTIONS(1611), - [anon_sym_isz] = ACTIONS(1611), - [anon_sym_usz] = ACTIONS(1611), - [anon_sym_anyfault] = ACTIONS(1611), - [anon_sym_any] = ACTIONS(1611), - [anon_sym_DOLLARtypeof] = ACTIONS(1611), - [anon_sym_DOLLARtypefrom] = ACTIONS(1611), - [anon_sym_DOLLARvatype] = ACTIONS(1611), - [anon_sym_DOLLARevaltype] = ACTIONS(1611), - [sym_real_literal] = ACTIONS(1613), + [402] = { + [sym_line_comment] = STATE(402), + [sym_doc_comment] = STATE(402), + [sym_block_comment] = STATE(402), + [sym_ident] = ACTIONS(1601), + [sym_integer_literal] = ACTIONS(1603), + [anon_sym_SQUOTE] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [anon_sym_BQUOTE] = ACTIONS(1603), + [sym_bytes_literal] = ACTIONS(1603), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1601), + [sym_at_ident] = ACTIONS(1603), + [sym_hash_ident] = ACTIONS(1603), + [sym_type_ident] = ACTIONS(1603), + [sym_ct_type_ident] = ACTIONS(1603), + [sym_const_ident] = ACTIONS(1601), + [sym_builtin] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_static] = ACTIONS(1601), + [anon_sym_tlocal] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_fn] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_RBRACE] = ACTIONS(1603), + [anon_sym_const] = ACTIONS(1601), + [anon_sym_var] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_continue] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1601), + [anon_sym_defer] = ACTIONS(1601), + [anon_sym_assert] = ACTIONS(1601), + [anon_sym_case] = ACTIONS(1601), + [anon_sym_default] = ACTIONS(1601), + [anon_sym_nextcase] = ACTIONS(1601), + [anon_sym_switch] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_for] = ACTIONS(1601), + [anon_sym_foreach] = ACTIONS(1601), + [anon_sym_foreach_r] = ACTIONS(1601), + [anon_sym_while] = ACTIONS(1601), + [anon_sym_do] = ACTIONS(1601), + [anon_sym_int] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_asm] = ACTIONS(1601), + [anon_sym_DOLLARassert] = ACTIONS(1601), + [anon_sym_DOLLARerror] = ACTIONS(1601), + [anon_sym_DOLLARecho] = ACTIONS(1601), + [anon_sym_DOLLARif] = ACTIONS(1601), + [anon_sym_DOLLARswitch] = ACTIONS(1601), + [anon_sym_DOLLARfor] = ACTIONS(1601), + [anon_sym_DOLLARforeach] = ACTIONS(1601), + [anon_sym_DOLLARalignof] = ACTIONS(1601), + [anon_sym_DOLLARextnameof] = ACTIONS(1601), + [anon_sym_DOLLARnameof] = ACTIONS(1601), + [anon_sym_DOLLARoffsetof] = ACTIONS(1601), + [anon_sym_DOLLARqnameof] = ACTIONS(1601), + [anon_sym_DOLLARvaconst] = ACTIONS(1601), + [anon_sym_DOLLARvaarg] = ACTIONS(1601), + [anon_sym_DOLLARvaref] = ACTIONS(1601), + [anon_sym_DOLLARvaexpr] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_DOLLARvacount] = ACTIONS(1601), + [anon_sym_DOLLAReval] = ACTIONS(1601), + [anon_sym_DOLLARis_const] = ACTIONS(1601), + [anon_sym_DOLLARsizeof] = ACTIONS(1601), + [anon_sym_DOLLARstringify] = ACTIONS(1601), + [anon_sym_DOLLARappend] = ACTIONS(1601), + [anon_sym_DOLLARconcat] = ACTIONS(1601), + [anon_sym_DOLLARdefined] = ACTIONS(1601), + [anon_sym_DOLLARembed] = ACTIONS(1601), + [anon_sym_DOLLARand] = ACTIONS(1601), + [anon_sym_DOLLARor] = ACTIONS(1601), + [anon_sym_DOLLARfeature] = ACTIONS(1601), + [anon_sym_DOLLARassignable] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_typeid] = ACTIONS(1601), + [anon_sym_LBRACE_PIPE] = ACTIONS(1603), + [anon_sym_PIPE_RBRACE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_bool] = ACTIONS(1601), + [anon_sym_char] = ACTIONS(1601), + [anon_sym_ichar] = ACTIONS(1601), + [anon_sym_short] = ACTIONS(1601), + [anon_sym_ushort] = ACTIONS(1601), + [anon_sym_uint] = ACTIONS(1601), + [anon_sym_long] = ACTIONS(1601), + [anon_sym_ulong] = ACTIONS(1601), + [anon_sym_int128] = ACTIONS(1601), + [anon_sym_uint128] = ACTIONS(1601), + [anon_sym_float] = ACTIONS(1601), + [anon_sym_double] = ACTIONS(1601), + [anon_sym_float16] = ACTIONS(1601), + [anon_sym_bfloat16] = ACTIONS(1601), + [anon_sym_float128] = ACTIONS(1601), + [anon_sym_iptr] = ACTIONS(1601), + [anon_sym_uptr] = ACTIONS(1601), + [anon_sym_isz] = ACTIONS(1601), + [anon_sym_usz] = ACTIONS(1601), + [anon_sym_anyfault] = ACTIONS(1601), + [anon_sym_any] = ACTIONS(1601), + [anon_sym_DOLLARtypeof] = ACTIONS(1601), + [anon_sym_DOLLARtypefrom] = ACTIONS(1601), + [anon_sym_DOLLARevaltype] = ACTIONS(1601), + [anon_sym_DOLLARvatype] = ACTIONS(1601), + [sym_real_literal] = ACTIONS(1603), }, - [460] = { - [sym_line_comment] = STATE(460), - [sym_doc_comment] = STATE(460), - [sym_block_comment] = STATE(460), - [sym_ident] = ACTIONS(1623), - [sym_integer_literal] = ACTIONS(1625), - [anon_sym_SQUOTE] = ACTIONS(1625), - [anon_sym_DQUOTE] = ACTIONS(1625), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_bytes_literal] = ACTIONS(1625), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1623), - [sym_at_ident] = ACTIONS(1625), - [sym_hash_ident] = ACTIONS(1625), - [sym_type_ident] = ACTIONS(1625), - [sym_ct_type_ident] = ACTIONS(1625), - [sym_const_ident] = ACTIONS(1623), - [sym_builtin] = ACTIONS(1625), - [anon_sym_LPAREN] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_static] = ACTIONS(1623), - [anon_sym_tlocal] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1625), - [anon_sym_fn] = ACTIONS(1623), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_const] = ACTIONS(1623), - [anon_sym_var] = ACTIONS(1623), - [anon_sym_return] = ACTIONS(1623), - [anon_sym_continue] = ACTIONS(1623), - [anon_sym_break] = ACTIONS(1623), - [anon_sym_defer] = ACTIONS(1623), - [anon_sym_assert] = ACTIONS(1623), - [anon_sym_nextcase] = ACTIONS(1623), - [anon_sym_switch] = ACTIONS(1623), - [anon_sym_AMP_AMP] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1623), - [anon_sym_for] = ACTIONS(1623), - [anon_sym_foreach] = ACTIONS(1623), - [anon_sym_foreach_r] = ACTIONS(1623), - [anon_sym_while] = ACTIONS(1623), - [anon_sym_do] = ACTIONS(1623), - [anon_sym_int] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_asm] = ACTIONS(1623), - [anon_sym_DOLLARassert] = ACTIONS(1623), - [anon_sym_DOLLARerror] = ACTIONS(1623), - [anon_sym_DOLLARecho] = ACTIONS(1623), - [anon_sym_DOLLARif] = ACTIONS(1623), - [anon_sym_DOLLARcase] = ACTIONS(1623), - [anon_sym_DOLLARdefault] = ACTIONS(1623), - [anon_sym_DOLLARswitch] = ACTIONS(1623), - [anon_sym_DOLLARendswitch] = ACTIONS(1623), - [anon_sym_DOLLARfor] = ACTIONS(1623), - [anon_sym_DOLLARforeach] = ACTIONS(1623), - [anon_sym_DOLLARalignof] = ACTIONS(1623), - [anon_sym_DOLLARextnameof] = ACTIONS(1623), - [anon_sym_DOLLARnameof] = ACTIONS(1623), - [anon_sym_DOLLARoffsetof] = ACTIONS(1623), - [anon_sym_DOLLARqnameof] = ACTIONS(1623), - [anon_sym_DOLLAReval] = ACTIONS(1623), - [anon_sym_DOLLARdefined] = ACTIONS(1623), - [anon_sym_DOLLARsizeof] = ACTIONS(1623), - [anon_sym_DOLLARstringify] = ACTIONS(1623), - [anon_sym_DOLLARis_const] = ACTIONS(1623), - [anon_sym_DOLLARvaconst] = ACTIONS(1623), - [anon_sym_DOLLARvaarg] = ACTIONS(1623), - [anon_sym_DOLLARvaref] = ACTIONS(1623), - [anon_sym_DOLLARvaexpr] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_null] = ACTIONS(1623), - [anon_sym_DOLLARvacount] = ACTIONS(1623), - [anon_sym_DOLLARfeature] = ACTIONS(1623), - [anon_sym_DOLLARand] = ACTIONS(1623), - [anon_sym_DOLLARor] = ACTIONS(1623), - [anon_sym_DOLLARassignable] = ACTIONS(1623), - [anon_sym_DOLLARembed] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1625), - [anon_sym_TILDE] = ACTIONS(1625), - [anon_sym_PLUS_PLUS] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1625), - [anon_sym_typeid] = ACTIONS(1623), - [anon_sym_LBRACE_PIPE] = ACTIONS(1625), - [anon_sym_void] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_ichar] = ACTIONS(1623), - [anon_sym_short] = ACTIONS(1623), - [anon_sym_ushort] = ACTIONS(1623), - [anon_sym_uint] = ACTIONS(1623), - [anon_sym_long] = ACTIONS(1623), - [anon_sym_ulong] = ACTIONS(1623), - [anon_sym_int128] = ACTIONS(1623), - [anon_sym_uint128] = ACTIONS(1623), - [anon_sym_float] = ACTIONS(1623), - [anon_sym_double] = ACTIONS(1623), - [anon_sym_float16] = ACTIONS(1623), - [anon_sym_bfloat16] = ACTIONS(1623), - [anon_sym_float128] = ACTIONS(1623), - [anon_sym_iptr] = ACTIONS(1623), - [anon_sym_uptr] = ACTIONS(1623), - [anon_sym_isz] = ACTIONS(1623), - [anon_sym_usz] = ACTIONS(1623), - [anon_sym_anyfault] = ACTIONS(1623), - [anon_sym_any] = ACTIONS(1623), - [anon_sym_DOLLARtypeof] = ACTIONS(1623), - [anon_sym_DOLLARtypefrom] = ACTIONS(1623), - [anon_sym_DOLLARvatype] = ACTIONS(1623), - [anon_sym_DOLLARevaltype] = ACTIONS(1623), - [sym_real_literal] = ACTIONS(1625), + [403] = { + [sym_line_comment] = STATE(403), + [sym_doc_comment] = STATE(403), + [sym_block_comment] = STATE(403), + [sym_ident] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1607), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [anon_sym_BQUOTE] = ACTIONS(1607), + [sym_bytes_literal] = ACTIONS(1607), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1605), + [sym_at_ident] = ACTIONS(1607), + [sym_hash_ident] = ACTIONS(1607), + [sym_type_ident] = ACTIONS(1607), + [sym_ct_type_ident] = ACTIONS(1607), + [sym_const_ident] = ACTIONS(1605), + [sym_builtin] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_tlocal] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_var] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_defer] = ACTIONS(1605), + [anon_sym_assert] = ACTIONS(1605), + [anon_sym_case] = ACTIONS(1605), + [anon_sym_default] = ACTIONS(1605), + [anon_sym_nextcase] = ACTIONS(1605), + [anon_sym_switch] = ACTIONS(1605), + [anon_sym_AMP_AMP] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_foreach] = ACTIONS(1605), + [anon_sym_foreach_r] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_int] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_asm] = ACTIONS(1605), + [anon_sym_DOLLARassert] = ACTIONS(1605), + [anon_sym_DOLLARerror] = ACTIONS(1605), + [anon_sym_DOLLARecho] = ACTIONS(1605), + [anon_sym_DOLLARif] = ACTIONS(1605), + [anon_sym_DOLLARswitch] = ACTIONS(1605), + [anon_sym_DOLLARfor] = ACTIONS(1605), + [anon_sym_DOLLARforeach] = ACTIONS(1605), + [anon_sym_DOLLARalignof] = ACTIONS(1605), + [anon_sym_DOLLARextnameof] = ACTIONS(1605), + [anon_sym_DOLLARnameof] = ACTIONS(1605), + [anon_sym_DOLLARoffsetof] = ACTIONS(1605), + [anon_sym_DOLLARqnameof] = ACTIONS(1605), + [anon_sym_DOLLARvaconst] = ACTIONS(1605), + [anon_sym_DOLLARvaarg] = ACTIONS(1605), + [anon_sym_DOLLARvaref] = ACTIONS(1605), + [anon_sym_DOLLARvaexpr] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1605), + [anon_sym_false] = ACTIONS(1605), + [anon_sym_null] = ACTIONS(1605), + [anon_sym_DOLLARvacount] = ACTIONS(1605), + [anon_sym_DOLLAReval] = ACTIONS(1605), + [anon_sym_DOLLARis_const] = ACTIONS(1605), + [anon_sym_DOLLARsizeof] = ACTIONS(1605), + [anon_sym_DOLLARstringify] = ACTIONS(1605), + [anon_sym_DOLLARappend] = ACTIONS(1605), + [anon_sym_DOLLARconcat] = ACTIONS(1605), + [anon_sym_DOLLARdefined] = ACTIONS(1605), + [anon_sym_DOLLARembed] = ACTIONS(1605), + [anon_sym_DOLLARand] = ACTIONS(1605), + [anon_sym_DOLLARor] = ACTIONS(1605), + [anon_sym_DOLLARfeature] = ACTIONS(1605), + [anon_sym_DOLLARassignable] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_typeid] = ACTIONS(1605), + [anon_sym_LBRACE_PIPE] = ACTIONS(1607), + [anon_sym_PIPE_RBRACE] = ACTIONS(1607), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_bool] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_ichar] = ACTIONS(1605), + [anon_sym_short] = ACTIONS(1605), + [anon_sym_ushort] = ACTIONS(1605), + [anon_sym_uint] = ACTIONS(1605), + [anon_sym_long] = ACTIONS(1605), + [anon_sym_ulong] = ACTIONS(1605), + [anon_sym_int128] = ACTIONS(1605), + [anon_sym_uint128] = ACTIONS(1605), + [anon_sym_float] = ACTIONS(1605), + [anon_sym_double] = ACTIONS(1605), + [anon_sym_float16] = ACTIONS(1605), + [anon_sym_bfloat16] = ACTIONS(1605), + [anon_sym_float128] = ACTIONS(1605), + [anon_sym_iptr] = ACTIONS(1605), + [anon_sym_uptr] = ACTIONS(1605), + [anon_sym_isz] = ACTIONS(1605), + [anon_sym_usz] = ACTIONS(1605), + [anon_sym_anyfault] = ACTIONS(1605), + [anon_sym_any] = ACTIONS(1605), + [anon_sym_DOLLARtypeof] = ACTIONS(1605), + [anon_sym_DOLLARtypefrom] = ACTIONS(1605), + [anon_sym_DOLLARevaltype] = ACTIONS(1605), + [anon_sym_DOLLARvatype] = ACTIONS(1605), + [sym_real_literal] = ACTIONS(1607), }, - [461] = { - [sym_line_comment] = STATE(461), - [sym_doc_comment] = STATE(461), - [sym_block_comment] = STATE(461), - [sym_ident] = ACTIONS(1381), - [sym_integer_literal] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1383), - [anon_sym_BQUOTE] = ACTIONS(1383), - [sym_bytes_literal] = ACTIONS(1383), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1381), - [sym_at_ident] = ACTIONS(1383), - [sym_hash_ident] = ACTIONS(1383), - [sym_type_ident] = ACTIONS(1383), - [sym_ct_type_ident] = ACTIONS(1383), - [sym_const_ident] = ACTIONS(1381), - [sym_builtin] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_tlocal] = ACTIONS(1381), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_fn] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_const] = ACTIONS(1381), - [anon_sym_var] = ACTIONS(1381), - [anon_sym_return] = ACTIONS(1381), - [anon_sym_continue] = ACTIONS(1381), - [anon_sym_break] = ACTIONS(1381), - [anon_sym_defer] = ACTIONS(1381), - [anon_sym_assert] = ACTIONS(1381), - [anon_sym_nextcase] = ACTIONS(1381), - [anon_sym_switch] = ACTIONS(1381), - [anon_sym_AMP_AMP] = ACTIONS(1383), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_for] = ACTIONS(1381), - [anon_sym_foreach] = ACTIONS(1381), - [anon_sym_foreach_r] = ACTIONS(1381), - [anon_sym_while] = ACTIONS(1381), - [anon_sym_do] = ACTIONS(1381), - [anon_sym_int] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1381), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_asm] = ACTIONS(1381), - [anon_sym_DOLLARassert] = ACTIONS(1381), - [anon_sym_DOLLARerror] = ACTIONS(1381), - [anon_sym_DOLLARecho] = ACTIONS(1381), - [anon_sym_DOLLARif] = ACTIONS(1381), - [anon_sym_DOLLARcase] = ACTIONS(1381), - [anon_sym_DOLLARdefault] = ACTIONS(1381), - [anon_sym_DOLLARswitch] = ACTIONS(1381), - [anon_sym_DOLLARendswitch] = ACTIONS(1381), - [anon_sym_DOLLARfor] = ACTIONS(1381), - [anon_sym_DOLLARforeach] = ACTIONS(1381), - [anon_sym_DOLLARalignof] = ACTIONS(1381), - [anon_sym_DOLLARextnameof] = ACTIONS(1381), - [anon_sym_DOLLARnameof] = ACTIONS(1381), - [anon_sym_DOLLARoffsetof] = ACTIONS(1381), - [anon_sym_DOLLARqnameof] = ACTIONS(1381), - [anon_sym_DOLLAReval] = ACTIONS(1381), - [anon_sym_DOLLARdefined] = ACTIONS(1381), - [anon_sym_DOLLARsizeof] = ACTIONS(1381), - [anon_sym_DOLLARstringify] = ACTIONS(1381), - [anon_sym_DOLLARis_const] = ACTIONS(1381), - [anon_sym_DOLLARvaconst] = ACTIONS(1381), - [anon_sym_DOLLARvaarg] = ACTIONS(1381), - [anon_sym_DOLLARvaref] = ACTIONS(1381), - [anon_sym_DOLLARvaexpr] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1381), - [anon_sym_false] = ACTIONS(1381), - [anon_sym_null] = ACTIONS(1381), - [anon_sym_DOLLARvacount] = ACTIONS(1381), - [anon_sym_DOLLARfeature] = ACTIONS(1381), - [anon_sym_DOLLARand] = ACTIONS(1381), - [anon_sym_DOLLARor] = ACTIONS(1381), - [anon_sym_DOLLARassignable] = ACTIONS(1381), - [anon_sym_DOLLARembed] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_TILDE] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1383), - [anon_sym_DASH_DASH] = ACTIONS(1383), - [anon_sym_typeid] = ACTIONS(1381), - [anon_sym_LBRACE_PIPE] = ACTIONS(1383), - [anon_sym_void] = ACTIONS(1381), - [anon_sym_bool] = ACTIONS(1381), - [anon_sym_char] = ACTIONS(1381), - [anon_sym_ichar] = ACTIONS(1381), - [anon_sym_short] = ACTIONS(1381), - [anon_sym_ushort] = ACTIONS(1381), - [anon_sym_uint] = ACTIONS(1381), - [anon_sym_long] = ACTIONS(1381), - [anon_sym_ulong] = ACTIONS(1381), - [anon_sym_int128] = ACTIONS(1381), - [anon_sym_uint128] = ACTIONS(1381), - [anon_sym_float] = ACTIONS(1381), - [anon_sym_double] = ACTIONS(1381), - [anon_sym_float16] = ACTIONS(1381), - [anon_sym_bfloat16] = ACTIONS(1381), - [anon_sym_float128] = ACTIONS(1381), - [anon_sym_iptr] = ACTIONS(1381), - [anon_sym_uptr] = ACTIONS(1381), - [anon_sym_isz] = ACTIONS(1381), - [anon_sym_usz] = ACTIONS(1381), - [anon_sym_anyfault] = ACTIONS(1381), - [anon_sym_any] = ACTIONS(1381), - [anon_sym_DOLLARtypeof] = ACTIONS(1381), - [anon_sym_DOLLARtypefrom] = ACTIONS(1381), - [anon_sym_DOLLARvatype] = ACTIONS(1381), - [anon_sym_DOLLARevaltype] = ACTIONS(1381), - [sym_real_literal] = ACTIONS(1383), + [404] = { + [sym_line_comment] = STATE(404), + [sym_doc_comment] = STATE(404), + [sym_block_comment] = STATE(404), + [sym_ident] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [sym_bytes_literal] = ACTIONS(1611), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1609), + [sym_at_ident] = ACTIONS(1611), + [sym_hash_ident] = ACTIONS(1611), + [sym_type_ident] = ACTIONS(1611), + [sym_ct_type_ident] = ACTIONS(1611), + [sym_const_ident] = ACTIONS(1609), + [sym_builtin] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_static] = ACTIONS(1609), + [anon_sym_tlocal] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_fn] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_RBRACE] = ACTIONS(1611), + [anon_sym_const] = ACTIONS(1609), + [anon_sym_var] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1609), + [anon_sym_defer] = ACTIONS(1609), + [anon_sym_assert] = ACTIONS(1609), + [anon_sym_case] = ACTIONS(1609), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_nextcase] = ACTIONS(1609), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_for] = ACTIONS(1609), + [anon_sym_foreach] = ACTIONS(1609), + [anon_sym_foreach_r] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_do] = ACTIONS(1609), + [anon_sym_int] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1609), + [anon_sym_DOLLARassert] = ACTIONS(1609), + [anon_sym_DOLLARerror] = ACTIONS(1609), + [anon_sym_DOLLARecho] = ACTIONS(1609), + [anon_sym_DOLLARif] = ACTIONS(1609), + [anon_sym_DOLLARswitch] = ACTIONS(1609), + [anon_sym_DOLLARfor] = ACTIONS(1609), + [anon_sym_DOLLARforeach] = ACTIONS(1609), + [anon_sym_DOLLARalignof] = ACTIONS(1609), + [anon_sym_DOLLARextnameof] = ACTIONS(1609), + [anon_sym_DOLLARnameof] = ACTIONS(1609), + [anon_sym_DOLLARoffsetof] = ACTIONS(1609), + [anon_sym_DOLLARqnameof] = ACTIONS(1609), + [anon_sym_DOLLARvaconst] = ACTIONS(1609), + [anon_sym_DOLLARvaarg] = ACTIONS(1609), + [anon_sym_DOLLARvaref] = ACTIONS(1609), + [anon_sym_DOLLARvaexpr] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_DOLLARvacount] = ACTIONS(1609), + [anon_sym_DOLLAReval] = ACTIONS(1609), + [anon_sym_DOLLARis_const] = ACTIONS(1609), + [anon_sym_DOLLARsizeof] = ACTIONS(1609), + [anon_sym_DOLLARstringify] = ACTIONS(1609), + [anon_sym_DOLLARappend] = ACTIONS(1609), + [anon_sym_DOLLARconcat] = ACTIONS(1609), + [anon_sym_DOLLARdefined] = ACTIONS(1609), + [anon_sym_DOLLARembed] = ACTIONS(1609), + [anon_sym_DOLLARand] = ACTIONS(1609), + [anon_sym_DOLLARor] = ACTIONS(1609), + [anon_sym_DOLLARfeature] = ACTIONS(1609), + [anon_sym_DOLLARassignable] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_TILDE] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_typeid] = ACTIONS(1609), + [anon_sym_LBRACE_PIPE] = ACTIONS(1611), + [anon_sym_PIPE_RBRACE] = ACTIONS(1611), + [anon_sym_void] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_ichar] = ACTIONS(1609), + [anon_sym_short] = ACTIONS(1609), + [anon_sym_ushort] = ACTIONS(1609), + [anon_sym_uint] = ACTIONS(1609), + [anon_sym_long] = ACTIONS(1609), + [anon_sym_ulong] = ACTIONS(1609), + [anon_sym_int128] = ACTIONS(1609), + [anon_sym_uint128] = ACTIONS(1609), + [anon_sym_float] = ACTIONS(1609), + [anon_sym_double] = ACTIONS(1609), + [anon_sym_float16] = ACTIONS(1609), + [anon_sym_bfloat16] = ACTIONS(1609), + [anon_sym_float128] = ACTIONS(1609), + [anon_sym_iptr] = ACTIONS(1609), + [anon_sym_uptr] = ACTIONS(1609), + [anon_sym_isz] = ACTIONS(1609), + [anon_sym_usz] = ACTIONS(1609), + [anon_sym_anyfault] = ACTIONS(1609), + [anon_sym_any] = ACTIONS(1609), + [anon_sym_DOLLARtypeof] = ACTIONS(1609), + [anon_sym_DOLLARtypefrom] = ACTIONS(1609), + [anon_sym_DOLLARevaltype] = ACTIONS(1609), + [anon_sym_DOLLARvatype] = ACTIONS(1609), + [sym_real_literal] = ACTIONS(1611), }, - [462] = { - [sym_line_comment] = STATE(462), - [sym_doc_comment] = STATE(462), - [sym_block_comment] = STATE(462), - [sym_ident] = ACTIONS(1619), - [sym_integer_literal] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_BQUOTE] = ACTIONS(1621), - [sym_bytes_literal] = ACTIONS(1621), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1619), - [sym_at_ident] = ACTIONS(1621), - [sym_hash_ident] = ACTIONS(1621), - [sym_type_ident] = ACTIONS(1621), - [sym_ct_type_ident] = ACTIONS(1621), - [sym_const_ident] = ACTIONS(1619), - [sym_builtin] = ACTIONS(1621), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_static] = ACTIONS(1619), - [anon_sym_tlocal] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_fn] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1619), - [anon_sym_const] = ACTIONS(1619), - [anon_sym_var] = ACTIONS(1619), - [anon_sym_return] = ACTIONS(1619), - [anon_sym_continue] = ACTIONS(1619), - [anon_sym_break] = ACTIONS(1619), - [anon_sym_defer] = ACTIONS(1619), - [anon_sym_assert] = ACTIONS(1619), - [anon_sym_nextcase] = ACTIONS(1619), - [anon_sym_switch] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1619), - [anon_sym_for] = ACTIONS(1619), - [anon_sym_foreach] = ACTIONS(1619), - [anon_sym_foreach_r] = ACTIONS(1619), - [anon_sym_while] = ACTIONS(1619), - [anon_sym_do] = ACTIONS(1619), - [anon_sym_int] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_asm] = ACTIONS(1619), - [anon_sym_DOLLARassert] = ACTIONS(1619), - [anon_sym_DOLLARerror] = ACTIONS(1619), - [anon_sym_DOLLARecho] = ACTIONS(1619), - [anon_sym_DOLLARif] = ACTIONS(1619), - [anon_sym_DOLLARcase] = ACTIONS(1619), - [anon_sym_DOLLARdefault] = ACTIONS(1619), - [anon_sym_DOLLARswitch] = ACTIONS(1619), - [anon_sym_DOLLARendswitch] = ACTIONS(1619), - [anon_sym_DOLLARfor] = ACTIONS(1619), - [anon_sym_DOLLARforeach] = ACTIONS(1619), - [anon_sym_DOLLARalignof] = ACTIONS(1619), - [anon_sym_DOLLARextnameof] = ACTIONS(1619), - [anon_sym_DOLLARnameof] = ACTIONS(1619), - [anon_sym_DOLLARoffsetof] = ACTIONS(1619), - [anon_sym_DOLLARqnameof] = ACTIONS(1619), - [anon_sym_DOLLAReval] = ACTIONS(1619), - [anon_sym_DOLLARdefined] = ACTIONS(1619), - [anon_sym_DOLLARsizeof] = ACTIONS(1619), - [anon_sym_DOLLARstringify] = ACTIONS(1619), - [anon_sym_DOLLARis_const] = ACTIONS(1619), - [anon_sym_DOLLARvaconst] = ACTIONS(1619), - [anon_sym_DOLLARvaarg] = ACTIONS(1619), - [anon_sym_DOLLARvaref] = ACTIONS(1619), - [anon_sym_DOLLARvaexpr] = ACTIONS(1619), - [anon_sym_true] = ACTIONS(1619), - [anon_sym_false] = ACTIONS(1619), - [anon_sym_null] = ACTIONS(1619), - [anon_sym_DOLLARvacount] = ACTIONS(1619), - [anon_sym_DOLLARfeature] = ACTIONS(1619), - [anon_sym_DOLLARand] = ACTIONS(1619), - [anon_sym_DOLLARor] = ACTIONS(1619), - [anon_sym_DOLLARassignable] = ACTIONS(1619), - [anon_sym_DOLLARembed] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_typeid] = ACTIONS(1619), - [anon_sym_LBRACE_PIPE] = ACTIONS(1621), - [anon_sym_void] = ACTIONS(1619), - [anon_sym_bool] = ACTIONS(1619), - [anon_sym_char] = ACTIONS(1619), - [anon_sym_ichar] = ACTIONS(1619), - [anon_sym_short] = ACTIONS(1619), - [anon_sym_ushort] = ACTIONS(1619), - [anon_sym_uint] = ACTIONS(1619), - [anon_sym_long] = ACTIONS(1619), - [anon_sym_ulong] = ACTIONS(1619), - [anon_sym_int128] = ACTIONS(1619), - [anon_sym_uint128] = ACTIONS(1619), - [anon_sym_float] = ACTIONS(1619), - [anon_sym_double] = ACTIONS(1619), - [anon_sym_float16] = ACTIONS(1619), - [anon_sym_bfloat16] = ACTIONS(1619), - [anon_sym_float128] = ACTIONS(1619), - [anon_sym_iptr] = ACTIONS(1619), - [anon_sym_uptr] = ACTIONS(1619), - [anon_sym_isz] = ACTIONS(1619), - [anon_sym_usz] = ACTIONS(1619), - [anon_sym_anyfault] = ACTIONS(1619), - [anon_sym_any] = ACTIONS(1619), - [anon_sym_DOLLARtypeof] = ACTIONS(1619), - [anon_sym_DOLLARtypefrom] = ACTIONS(1619), - [anon_sym_DOLLARvatype] = ACTIONS(1619), - [anon_sym_DOLLARevaltype] = ACTIONS(1619), - [sym_real_literal] = ACTIONS(1621), + [405] = { + [sym_line_comment] = STATE(405), + [sym_doc_comment] = STATE(405), + [sym_block_comment] = STATE(405), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_RBRACE] = ACTIONS(1615), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_case] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_PIPE_RBRACE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, - [463] = { - [sym_line_comment] = STATE(463), - [sym_doc_comment] = STATE(463), - [sym_block_comment] = STATE(463), - [sym_ident] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [anon_sym_BQUOTE] = ACTIONS(1629), - [sym_bytes_literal] = ACTIONS(1629), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1627), - [sym_at_ident] = ACTIONS(1629), - [sym_hash_ident] = ACTIONS(1629), - [sym_type_ident] = ACTIONS(1629), - [sym_ct_type_ident] = ACTIONS(1629), - [sym_const_ident] = ACTIONS(1627), - [sym_builtin] = ACTIONS(1629), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_AMP] = ACTIONS(1627), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_tlocal] = ACTIONS(1627), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_fn] = ACTIONS(1627), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_const] = ACTIONS(1627), - [anon_sym_var] = ACTIONS(1627), - [anon_sym_return] = ACTIONS(1627), - [anon_sym_continue] = ACTIONS(1627), - [anon_sym_break] = ACTIONS(1627), - [anon_sym_defer] = ACTIONS(1627), - [anon_sym_assert] = ACTIONS(1627), - [anon_sym_nextcase] = ACTIONS(1627), - [anon_sym_switch] = ACTIONS(1627), - [anon_sym_AMP_AMP] = ACTIONS(1629), - [anon_sym_if] = ACTIONS(1627), - [anon_sym_for] = ACTIONS(1627), - [anon_sym_foreach] = ACTIONS(1627), - [anon_sym_foreach_r] = ACTIONS(1627), - [anon_sym_while] = ACTIONS(1627), - [anon_sym_do] = ACTIONS(1627), - [anon_sym_int] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_STAR] = ACTIONS(1629), - [anon_sym_asm] = ACTIONS(1627), - [anon_sym_DOLLARassert] = ACTIONS(1627), - [anon_sym_DOLLARerror] = ACTIONS(1627), - [anon_sym_DOLLARecho] = ACTIONS(1627), - [anon_sym_DOLLARif] = ACTIONS(1627), - [anon_sym_DOLLARcase] = ACTIONS(1627), - [anon_sym_DOLLARdefault] = ACTIONS(1627), - [anon_sym_DOLLARswitch] = ACTIONS(1627), - [anon_sym_DOLLARendswitch] = ACTIONS(1627), - [anon_sym_DOLLARfor] = ACTIONS(1627), - [anon_sym_DOLLARforeach] = ACTIONS(1627), - [anon_sym_DOLLARalignof] = ACTIONS(1627), - [anon_sym_DOLLARextnameof] = ACTIONS(1627), - [anon_sym_DOLLARnameof] = ACTIONS(1627), - [anon_sym_DOLLARoffsetof] = ACTIONS(1627), - [anon_sym_DOLLARqnameof] = ACTIONS(1627), - [anon_sym_DOLLAReval] = ACTIONS(1627), - [anon_sym_DOLLARdefined] = ACTIONS(1627), - [anon_sym_DOLLARsizeof] = ACTIONS(1627), - [anon_sym_DOLLARstringify] = ACTIONS(1627), - [anon_sym_DOLLARis_const] = ACTIONS(1627), - [anon_sym_DOLLARvaconst] = ACTIONS(1627), - [anon_sym_DOLLARvaarg] = ACTIONS(1627), - [anon_sym_DOLLARvaref] = ACTIONS(1627), - [anon_sym_DOLLARvaexpr] = ACTIONS(1627), - [anon_sym_true] = ACTIONS(1627), - [anon_sym_false] = ACTIONS(1627), - [anon_sym_null] = ACTIONS(1627), - [anon_sym_DOLLARvacount] = ACTIONS(1627), - [anon_sym_DOLLARfeature] = ACTIONS(1627), - [anon_sym_DOLLARand] = ACTIONS(1627), - [anon_sym_DOLLARor] = ACTIONS(1627), - [anon_sym_DOLLARassignable] = ACTIONS(1627), - [anon_sym_DOLLARembed] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1629), - [anon_sym_TILDE] = ACTIONS(1629), - [anon_sym_PLUS_PLUS] = ACTIONS(1629), - [anon_sym_DASH_DASH] = ACTIONS(1629), - [anon_sym_typeid] = ACTIONS(1627), - [anon_sym_LBRACE_PIPE] = ACTIONS(1629), - [anon_sym_void] = ACTIONS(1627), - [anon_sym_bool] = ACTIONS(1627), - [anon_sym_char] = ACTIONS(1627), - [anon_sym_ichar] = ACTIONS(1627), - [anon_sym_short] = ACTIONS(1627), - [anon_sym_ushort] = ACTIONS(1627), - [anon_sym_uint] = ACTIONS(1627), - [anon_sym_long] = ACTIONS(1627), - [anon_sym_ulong] = ACTIONS(1627), - [anon_sym_int128] = ACTIONS(1627), - [anon_sym_uint128] = ACTIONS(1627), - [anon_sym_float] = ACTIONS(1627), - [anon_sym_double] = ACTIONS(1627), - [anon_sym_float16] = ACTIONS(1627), - [anon_sym_bfloat16] = ACTIONS(1627), - [anon_sym_float128] = ACTIONS(1627), - [anon_sym_iptr] = ACTIONS(1627), - [anon_sym_uptr] = ACTIONS(1627), - [anon_sym_isz] = ACTIONS(1627), - [anon_sym_usz] = ACTIONS(1627), - [anon_sym_anyfault] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_DOLLARtypeof] = ACTIONS(1627), - [anon_sym_DOLLARtypefrom] = ACTIONS(1627), - [anon_sym_DOLLARvatype] = ACTIONS(1627), - [anon_sym_DOLLARevaltype] = ACTIONS(1627), - [sym_real_literal] = ACTIONS(1629), + [406] = { + [sym_line_comment] = STATE(406), + [sym_doc_comment] = STATE(406), + [sym_block_comment] = STATE(406), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_RBRACE] = ACTIONS(1615), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_case] = ACTIONS(1613), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_PIPE_RBRACE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, - [464] = { - [sym_line_comment] = STATE(464), - [sym_doc_comment] = STATE(464), - [sym_block_comment] = STATE(464), - [sym_ident] = ACTIONS(1587), - [sym_integer_literal] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [anon_sym_BQUOTE] = ACTIONS(1589), - [sym_bytes_literal] = ACTIONS(1589), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1587), - [sym_at_ident] = ACTIONS(1589), - [sym_hash_ident] = ACTIONS(1589), - [sym_type_ident] = ACTIONS(1589), - [sym_ct_type_ident] = ACTIONS(1589), - [sym_const_ident] = ACTIONS(1587), - [sym_builtin] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_static] = ACTIONS(1587), - [anon_sym_tlocal] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_fn] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [anon_sym_var] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_defer] = ACTIONS(1587), - [anon_sym_assert] = ACTIONS(1587), - [anon_sym_nextcase] = ACTIONS(1587), - [anon_sym_switch] = ACTIONS(1587), - [anon_sym_AMP_AMP] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_foreach] = ACTIONS(1587), - [anon_sym_foreach_r] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_int] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_asm] = ACTIONS(1587), - [anon_sym_DOLLARassert] = ACTIONS(1587), - [anon_sym_DOLLARerror] = ACTIONS(1587), - [anon_sym_DOLLARecho] = ACTIONS(1587), - [anon_sym_DOLLARif] = ACTIONS(1587), - [anon_sym_DOLLARcase] = ACTIONS(1587), - [anon_sym_DOLLARdefault] = ACTIONS(1587), - [anon_sym_DOLLARswitch] = ACTIONS(1587), - [anon_sym_DOLLARendswitch] = ACTIONS(1587), - [anon_sym_DOLLARfor] = ACTIONS(1587), - [anon_sym_DOLLARforeach] = ACTIONS(1587), - [anon_sym_DOLLARalignof] = ACTIONS(1587), - [anon_sym_DOLLARextnameof] = ACTIONS(1587), - [anon_sym_DOLLARnameof] = ACTIONS(1587), - [anon_sym_DOLLARoffsetof] = ACTIONS(1587), - [anon_sym_DOLLARqnameof] = ACTIONS(1587), - [anon_sym_DOLLAReval] = ACTIONS(1587), - [anon_sym_DOLLARdefined] = ACTIONS(1587), - [anon_sym_DOLLARsizeof] = ACTIONS(1587), - [anon_sym_DOLLARstringify] = ACTIONS(1587), - [anon_sym_DOLLARis_const] = ACTIONS(1587), - [anon_sym_DOLLARvaconst] = ACTIONS(1587), - [anon_sym_DOLLARvaarg] = ACTIONS(1587), - [anon_sym_DOLLARvaref] = ACTIONS(1587), - [anon_sym_DOLLARvaexpr] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [anon_sym_DOLLARvacount] = ACTIONS(1587), - [anon_sym_DOLLARfeature] = ACTIONS(1587), - [anon_sym_DOLLARand] = ACTIONS(1587), - [anon_sym_DOLLARor] = ACTIONS(1587), - [anon_sym_DOLLARassignable] = ACTIONS(1587), - [anon_sym_DOLLARembed] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_typeid] = ACTIONS(1587), - [anon_sym_LBRACE_PIPE] = ACTIONS(1589), - [anon_sym_void] = ACTIONS(1587), - [anon_sym_bool] = ACTIONS(1587), - [anon_sym_char] = ACTIONS(1587), - [anon_sym_ichar] = ACTIONS(1587), - [anon_sym_short] = ACTIONS(1587), - [anon_sym_ushort] = ACTIONS(1587), - [anon_sym_uint] = ACTIONS(1587), - [anon_sym_long] = ACTIONS(1587), - [anon_sym_ulong] = ACTIONS(1587), - [anon_sym_int128] = ACTIONS(1587), - [anon_sym_uint128] = ACTIONS(1587), - [anon_sym_float] = ACTIONS(1587), - [anon_sym_double] = ACTIONS(1587), - [anon_sym_float16] = ACTIONS(1587), - [anon_sym_bfloat16] = ACTIONS(1587), - [anon_sym_float128] = ACTIONS(1587), - [anon_sym_iptr] = ACTIONS(1587), - [anon_sym_uptr] = ACTIONS(1587), - [anon_sym_isz] = ACTIONS(1587), - [anon_sym_usz] = ACTIONS(1587), - [anon_sym_anyfault] = ACTIONS(1587), - [anon_sym_any] = ACTIONS(1587), - [anon_sym_DOLLARtypeof] = ACTIONS(1587), - [anon_sym_DOLLARtypefrom] = ACTIONS(1587), - [anon_sym_DOLLARvatype] = ACTIONS(1587), - [anon_sym_DOLLARevaltype] = ACTIONS(1587), - [sym_real_literal] = ACTIONS(1589), + [407] = { + [sym_line_comment] = STATE(407), + [sym_doc_comment] = STATE(407), + [sym_block_comment] = STATE(407), + [sym_ident] = ACTIONS(1617), + [sym_integer_literal] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [anon_sym_BQUOTE] = ACTIONS(1619), + [sym_bytes_literal] = ACTIONS(1619), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1617), + [sym_at_ident] = ACTIONS(1619), + [sym_hash_ident] = ACTIONS(1619), + [sym_type_ident] = ACTIONS(1619), + [sym_ct_type_ident] = ACTIONS(1619), + [sym_const_ident] = ACTIONS(1617), + [sym_builtin] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_tlocal] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_RBRACE] = ACTIONS(1619), + [anon_sym_const] = ACTIONS(1617), + [anon_sym_var] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_defer] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_case] = ACTIONS(1617), + [anon_sym_default] = ACTIONS(1617), + [anon_sym_nextcase] = ACTIONS(1617), + [anon_sym_switch] = ACTIONS(1617), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_foreach] = ACTIONS(1617), + [anon_sym_foreach_r] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_int] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym_DOLLARassert] = ACTIONS(1617), + [anon_sym_DOLLARerror] = ACTIONS(1617), + [anon_sym_DOLLARecho] = ACTIONS(1617), + [anon_sym_DOLLARif] = ACTIONS(1617), + [anon_sym_DOLLARswitch] = ACTIONS(1617), + [anon_sym_DOLLARfor] = ACTIONS(1617), + [anon_sym_DOLLARforeach] = ACTIONS(1617), + [anon_sym_DOLLARalignof] = ACTIONS(1617), + [anon_sym_DOLLARextnameof] = ACTIONS(1617), + [anon_sym_DOLLARnameof] = ACTIONS(1617), + [anon_sym_DOLLARoffsetof] = ACTIONS(1617), + [anon_sym_DOLLARqnameof] = ACTIONS(1617), + [anon_sym_DOLLARvaconst] = ACTIONS(1617), + [anon_sym_DOLLARvaarg] = ACTIONS(1617), + [anon_sym_DOLLARvaref] = ACTIONS(1617), + [anon_sym_DOLLARvaexpr] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [anon_sym_DOLLARvacount] = ACTIONS(1617), + [anon_sym_DOLLAReval] = ACTIONS(1617), + [anon_sym_DOLLARis_const] = ACTIONS(1617), + [anon_sym_DOLLARsizeof] = ACTIONS(1617), + [anon_sym_DOLLARstringify] = ACTIONS(1617), + [anon_sym_DOLLARappend] = ACTIONS(1617), + [anon_sym_DOLLARconcat] = ACTIONS(1617), + [anon_sym_DOLLARdefined] = ACTIONS(1617), + [anon_sym_DOLLARembed] = ACTIONS(1617), + [anon_sym_DOLLARand] = ACTIONS(1617), + [anon_sym_DOLLARor] = ACTIONS(1617), + [anon_sym_DOLLARfeature] = ACTIONS(1617), + [anon_sym_DOLLARassignable] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_typeid] = ACTIONS(1617), + [anon_sym_LBRACE_PIPE] = ACTIONS(1619), + [anon_sym_PIPE_RBRACE] = ACTIONS(1619), + [anon_sym_void] = ACTIONS(1617), + [anon_sym_bool] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_ichar] = ACTIONS(1617), + [anon_sym_short] = ACTIONS(1617), + [anon_sym_ushort] = ACTIONS(1617), + [anon_sym_uint] = ACTIONS(1617), + [anon_sym_long] = ACTIONS(1617), + [anon_sym_ulong] = ACTIONS(1617), + [anon_sym_int128] = ACTIONS(1617), + [anon_sym_uint128] = ACTIONS(1617), + [anon_sym_float] = ACTIONS(1617), + [anon_sym_double] = ACTIONS(1617), + [anon_sym_float16] = ACTIONS(1617), + [anon_sym_bfloat16] = ACTIONS(1617), + [anon_sym_float128] = ACTIONS(1617), + [anon_sym_iptr] = ACTIONS(1617), + [anon_sym_uptr] = ACTIONS(1617), + [anon_sym_isz] = ACTIONS(1617), + [anon_sym_usz] = ACTIONS(1617), + [anon_sym_anyfault] = ACTIONS(1617), + [anon_sym_any] = ACTIONS(1617), + [anon_sym_DOLLARtypeof] = ACTIONS(1617), + [anon_sym_DOLLARtypefrom] = ACTIONS(1617), + [anon_sym_DOLLARevaltype] = ACTIONS(1617), + [anon_sym_DOLLARvatype] = ACTIONS(1617), + [sym_real_literal] = ACTIONS(1619), }, - [465] = { - [sym_line_comment] = STATE(465), - [sym_doc_comment] = STATE(465), - [sym_block_comment] = STATE(465), - [sym_ident] = ACTIONS(1389), - [sym_integer_literal] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1391), - [anon_sym_DQUOTE] = ACTIONS(1391), - [anon_sym_BQUOTE] = ACTIONS(1391), - [sym_bytes_literal] = ACTIONS(1391), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1389), - [sym_at_ident] = ACTIONS(1391), - [sym_hash_ident] = ACTIONS(1391), - [sym_type_ident] = ACTIONS(1391), - [sym_ct_type_ident] = ACTIONS(1391), - [sym_const_ident] = ACTIONS(1389), - [sym_builtin] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_tlocal] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym_fn] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_var] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_defer] = ACTIONS(1389), - [anon_sym_assert] = ACTIONS(1389), - [anon_sym_nextcase] = ACTIONS(1389), - [anon_sym_switch] = ACTIONS(1389), - [anon_sym_AMP_AMP] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_foreach] = ACTIONS(1389), - [anon_sym_foreach_r] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_int] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1391), - [anon_sym_asm] = ACTIONS(1389), - [anon_sym_DOLLARassert] = ACTIONS(1389), - [anon_sym_DOLLARerror] = ACTIONS(1389), - [anon_sym_DOLLARecho] = ACTIONS(1389), - [anon_sym_DOLLARif] = ACTIONS(1389), - [anon_sym_DOLLARcase] = ACTIONS(1389), - [anon_sym_DOLLARdefault] = ACTIONS(1389), - [anon_sym_DOLLARswitch] = ACTIONS(1389), - [anon_sym_DOLLARendswitch] = ACTIONS(1389), - [anon_sym_DOLLARfor] = ACTIONS(1389), - [anon_sym_DOLLARforeach] = ACTIONS(1389), - [anon_sym_DOLLARalignof] = ACTIONS(1389), - [anon_sym_DOLLARextnameof] = ACTIONS(1389), - [anon_sym_DOLLARnameof] = ACTIONS(1389), - [anon_sym_DOLLARoffsetof] = ACTIONS(1389), - [anon_sym_DOLLARqnameof] = ACTIONS(1389), - [anon_sym_DOLLAReval] = ACTIONS(1389), - [anon_sym_DOLLARdefined] = ACTIONS(1389), - [anon_sym_DOLLARsizeof] = ACTIONS(1389), - [anon_sym_DOLLARstringify] = ACTIONS(1389), - [anon_sym_DOLLARis_const] = ACTIONS(1389), - [anon_sym_DOLLARvaconst] = ACTIONS(1389), - [anon_sym_DOLLARvaarg] = ACTIONS(1389), - [anon_sym_DOLLARvaref] = ACTIONS(1389), - [anon_sym_DOLLARvaexpr] = ACTIONS(1389), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), - [anon_sym_null] = ACTIONS(1389), - [anon_sym_DOLLARvacount] = ACTIONS(1389), - [anon_sym_DOLLARfeature] = ACTIONS(1389), - [anon_sym_DOLLARand] = ACTIONS(1389), - [anon_sym_DOLLARor] = ACTIONS(1389), - [anon_sym_DOLLARassignable] = ACTIONS(1389), - [anon_sym_DOLLARembed] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_TILDE] = ACTIONS(1391), - [anon_sym_PLUS_PLUS] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1391), - [anon_sym_typeid] = ACTIONS(1389), - [anon_sym_LBRACE_PIPE] = ACTIONS(1391), - [anon_sym_void] = ACTIONS(1389), - [anon_sym_bool] = ACTIONS(1389), - [anon_sym_char] = ACTIONS(1389), - [anon_sym_ichar] = ACTIONS(1389), - [anon_sym_short] = ACTIONS(1389), - [anon_sym_ushort] = ACTIONS(1389), - [anon_sym_uint] = ACTIONS(1389), - [anon_sym_long] = ACTIONS(1389), - [anon_sym_ulong] = ACTIONS(1389), - [anon_sym_int128] = ACTIONS(1389), - [anon_sym_uint128] = ACTIONS(1389), - [anon_sym_float] = ACTIONS(1389), - [anon_sym_double] = ACTIONS(1389), - [anon_sym_float16] = ACTIONS(1389), - [anon_sym_bfloat16] = ACTIONS(1389), - [anon_sym_float128] = ACTIONS(1389), - [anon_sym_iptr] = ACTIONS(1389), - [anon_sym_uptr] = ACTIONS(1389), - [anon_sym_isz] = ACTIONS(1389), - [anon_sym_usz] = ACTIONS(1389), - [anon_sym_anyfault] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_DOLLARtypeof] = ACTIONS(1389), - [anon_sym_DOLLARtypefrom] = ACTIONS(1389), - [anon_sym_DOLLARvatype] = ACTIONS(1389), - [anon_sym_DOLLARevaltype] = ACTIONS(1389), - [sym_real_literal] = ACTIONS(1391), + [408] = { + [sym_line_comment] = STATE(408), + [sym_doc_comment] = STATE(408), + [sym_block_comment] = STATE(408), + [sym_ident] = ACTIONS(1621), + [sym_integer_literal] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_bytes_literal] = ACTIONS(1623), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1621), + [sym_at_ident] = ACTIONS(1623), + [sym_hash_ident] = ACTIONS(1623), + [sym_type_ident] = ACTIONS(1623), + [sym_ct_type_ident] = ACTIONS(1623), + [sym_const_ident] = ACTIONS(1621), + [sym_builtin] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_tlocal] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_var] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_defer] = ACTIONS(1621), + [anon_sym_assert] = ACTIONS(1621), + [anon_sym_case] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1621), + [anon_sym_nextcase] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_foreach] = ACTIONS(1621), + [anon_sym_foreach_r] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_int] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_asm] = ACTIONS(1621), + [anon_sym_DOLLARassert] = ACTIONS(1621), + [anon_sym_DOLLARerror] = ACTIONS(1621), + [anon_sym_DOLLARecho] = ACTIONS(1621), + [anon_sym_DOLLARif] = ACTIONS(1621), + [anon_sym_DOLLARswitch] = ACTIONS(1621), + [anon_sym_DOLLARfor] = ACTIONS(1621), + [anon_sym_DOLLARforeach] = ACTIONS(1621), + [anon_sym_DOLLARalignof] = ACTIONS(1621), + [anon_sym_DOLLARextnameof] = ACTIONS(1621), + [anon_sym_DOLLARnameof] = ACTIONS(1621), + [anon_sym_DOLLARoffsetof] = ACTIONS(1621), + [anon_sym_DOLLARqnameof] = ACTIONS(1621), + [anon_sym_DOLLARvaconst] = ACTIONS(1621), + [anon_sym_DOLLARvaarg] = ACTIONS(1621), + [anon_sym_DOLLARvaref] = ACTIONS(1621), + [anon_sym_DOLLARvaexpr] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_null] = ACTIONS(1621), + [anon_sym_DOLLARvacount] = ACTIONS(1621), + [anon_sym_DOLLAReval] = ACTIONS(1621), + [anon_sym_DOLLARis_const] = ACTIONS(1621), + [anon_sym_DOLLARsizeof] = ACTIONS(1621), + [anon_sym_DOLLARstringify] = ACTIONS(1621), + [anon_sym_DOLLARappend] = ACTIONS(1621), + [anon_sym_DOLLARconcat] = ACTIONS(1621), + [anon_sym_DOLLARdefined] = ACTIONS(1621), + [anon_sym_DOLLARembed] = ACTIONS(1621), + [anon_sym_DOLLARand] = ACTIONS(1621), + [anon_sym_DOLLARor] = ACTIONS(1621), + [anon_sym_DOLLARfeature] = ACTIONS(1621), + [anon_sym_DOLLARassignable] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_typeid] = ACTIONS(1621), + [anon_sym_LBRACE_PIPE] = ACTIONS(1623), + [anon_sym_PIPE_RBRACE] = ACTIONS(1623), + [anon_sym_void] = ACTIONS(1621), + [anon_sym_bool] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_ichar] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_ushort] = ACTIONS(1621), + [anon_sym_uint] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_ulong] = ACTIONS(1621), + [anon_sym_int128] = ACTIONS(1621), + [anon_sym_uint128] = ACTIONS(1621), + [anon_sym_float] = ACTIONS(1621), + [anon_sym_double] = ACTIONS(1621), + [anon_sym_float16] = ACTIONS(1621), + [anon_sym_bfloat16] = ACTIONS(1621), + [anon_sym_float128] = ACTIONS(1621), + [anon_sym_iptr] = ACTIONS(1621), + [anon_sym_uptr] = ACTIONS(1621), + [anon_sym_isz] = ACTIONS(1621), + [anon_sym_usz] = ACTIONS(1621), + [anon_sym_anyfault] = ACTIONS(1621), + [anon_sym_any] = ACTIONS(1621), + [anon_sym_DOLLARtypeof] = ACTIONS(1621), + [anon_sym_DOLLARtypefrom] = ACTIONS(1621), + [anon_sym_DOLLARevaltype] = ACTIONS(1621), + [anon_sym_DOLLARvatype] = ACTIONS(1621), + [sym_real_literal] = ACTIONS(1623), }, - [466] = { - [sym_line_comment] = STATE(466), - [sym_doc_comment] = STATE(466), - [sym_block_comment] = STATE(466), - [sym_ident] = ACTIONS(1579), - [sym_integer_literal] = ACTIONS(1581), - [anon_sym_SQUOTE] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1581), - [anon_sym_BQUOTE] = ACTIONS(1581), - [sym_bytes_literal] = ACTIONS(1581), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1579), - [sym_at_ident] = ACTIONS(1581), - [sym_hash_ident] = ACTIONS(1581), - [sym_type_ident] = ACTIONS(1581), - [sym_ct_type_ident] = ACTIONS(1581), - [sym_const_ident] = ACTIONS(1579), - [sym_builtin] = ACTIONS(1581), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_tlocal] = ACTIONS(1579), - [anon_sym_SEMI] = ACTIONS(1581), - [anon_sym_fn] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_var] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_defer] = ACTIONS(1579), - [anon_sym_assert] = ACTIONS(1579), - [anon_sym_nextcase] = ACTIONS(1579), - [anon_sym_switch] = ACTIONS(1579), - [anon_sym_AMP_AMP] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_foreach] = ACTIONS(1579), - [anon_sym_foreach_r] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_int] = ACTIONS(1579), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_STAR] = ACTIONS(1581), - [anon_sym_asm] = ACTIONS(1579), - [anon_sym_DOLLARassert] = ACTIONS(1579), - [anon_sym_DOLLARerror] = ACTIONS(1579), - [anon_sym_DOLLARecho] = ACTIONS(1579), - [anon_sym_DOLLARif] = ACTIONS(1579), - [anon_sym_DOLLARcase] = ACTIONS(1579), - [anon_sym_DOLLARdefault] = ACTIONS(1579), - [anon_sym_DOLLARswitch] = ACTIONS(1579), - [anon_sym_DOLLARendswitch] = ACTIONS(1579), - [anon_sym_DOLLARfor] = ACTIONS(1579), - [anon_sym_DOLLARforeach] = ACTIONS(1579), - [anon_sym_DOLLARalignof] = ACTIONS(1579), - [anon_sym_DOLLARextnameof] = ACTIONS(1579), - [anon_sym_DOLLARnameof] = ACTIONS(1579), - [anon_sym_DOLLARoffsetof] = ACTIONS(1579), - [anon_sym_DOLLARqnameof] = ACTIONS(1579), - [anon_sym_DOLLAReval] = ACTIONS(1579), - [anon_sym_DOLLARdefined] = ACTIONS(1579), - [anon_sym_DOLLARsizeof] = ACTIONS(1579), - [anon_sym_DOLLARstringify] = ACTIONS(1579), - [anon_sym_DOLLARis_const] = ACTIONS(1579), - [anon_sym_DOLLARvaconst] = ACTIONS(1579), - [anon_sym_DOLLARvaarg] = ACTIONS(1579), - [anon_sym_DOLLARvaref] = ACTIONS(1579), - [anon_sym_DOLLARvaexpr] = ACTIONS(1579), - [anon_sym_true] = ACTIONS(1579), - [anon_sym_false] = ACTIONS(1579), - [anon_sym_null] = ACTIONS(1579), - [anon_sym_DOLLARvacount] = ACTIONS(1579), - [anon_sym_DOLLARfeature] = ACTIONS(1579), - [anon_sym_DOLLARand] = ACTIONS(1579), - [anon_sym_DOLLARor] = ACTIONS(1579), - [anon_sym_DOLLARassignable] = ACTIONS(1579), - [anon_sym_DOLLARembed] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1581), - [anon_sym_TILDE] = ACTIONS(1581), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [anon_sym_typeid] = ACTIONS(1579), - [anon_sym_LBRACE_PIPE] = ACTIONS(1581), - [anon_sym_void] = ACTIONS(1579), - [anon_sym_bool] = ACTIONS(1579), - [anon_sym_char] = ACTIONS(1579), - [anon_sym_ichar] = ACTIONS(1579), - [anon_sym_short] = ACTIONS(1579), - [anon_sym_ushort] = ACTIONS(1579), - [anon_sym_uint] = ACTIONS(1579), - [anon_sym_long] = ACTIONS(1579), - [anon_sym_ulong] = ACTIONS(1579), - [anon_sym_int128] = ACTIONS(1579), - [anon_sym_uint128] = ACTIONS(1579), - [anon_sym_float] = ACTIONS(1579), - [anon_sym_double] = ACTIONS(1579), - [anon_sym_float16] = ACTIONS(1579), - [anon_sym_bfloat16] = ACTIONS(1579), - [anon_sym_float128] = ACTIONS(1579), - [anon_sym_iptr] = ACTIONS(1579), - [anon_sym_uptr] = ACTIONS(1579), - [anon_sym_isz] = ACTIONS(1579), - [anon_sym_usz] = ACTIONS(1579), - [anon_sym_anyfault] = ACTIONS(1579), - [anon_sym_any] = ACTIONS(1579), - [anon_sym_DOLLARtypeof] = ACTIONS(1579), - [anon_sym_DOLLARtypefrom] = ACTIONS(1579), - [anon_sym_DOLLARvatype] = ACTIONS(1579), - [anon_sym_DOLLARevaltype] = ACTIONS(1579), - [sym_real_literal] = ACTIONS(1581), + [409] = { + [sym_line_comment] = STATE(409), + [sym_doc_comment] = STATE(409), + [sym_block_comment] = STATE(409), + [sym_ident] = ACTIONS(1625), + [sym_integer_literal] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [sym_bytes_literal] = ACTIONS(1627), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1625), + [sym_at_ident] = ACTIONS(1627), + [sym_hash_ident] = ACTIONS(1627), + [sym_type_ident] = ACTIONS(1627), + [sym_ct_type_ident] = ACTIONS(1627), + [sym_const_ident] = ACTIONS(1625), + [sym_builtin] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_tlocal] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_RBRACE] = ACTIONS(1627), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_defer] = ACTIONS(1625), + [anon_sym_assert] = ACTIONS(1625), + [anon_sym_case] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(1625), + [anon_sym_nextcase] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_foreach] = ACTIONS(1625), + [anon_sym_foreach_r] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_int] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_asm] = ACTIONS(1625), + [anon_sym_DOLLARassert] = ACTIONS(1625), + [anon_sym_DOLLARerror] = ACTIONS(1625), + [anon_sym_DOLLARecho] = ACTIONS(1625), + [anon_sym_DOLLARif] = ACTIONS(1625), + [anon_sym_DOLLARswitch] = ACTIONS(1625), + [anon_sym_DOLLARfor] = ACTIONS(1625), + [anon_sym_DOLLARforeach] = ACTIONS(1625), + [anon_sym_DOLLARalignof] = ACTIONS(1625), + [anon_sym_DOLLARextnameof] = ACTIONS(1625), + [anon_sym_DOLLARnameof] = ACTIONS(1625), + [anon_sym_DOLLARoffsetof] = ACTIONS(1625), + [anon_sym_DOLLARqnameof] = ACTIONS(1625), + [anon_sym_DOLLARvaconst] = ACTIONS(1625), + [anon_sym_DOLLARvaarg] = ACTIONS(1625), + [anon_sym_DOLLARvaref] = ACTIONS(1625), + [anon_sym_DOLLARvaexpr] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_DOLLARvacount] = ACTIONS(1625), + [anon_sym_DOLLAReval] = ACTIONS(1625), + [anon_sym_DOLLARis_const] = ACTIONS(1625), + [anon_sym_DOLLARsizeof] = ACTIONS(1625), + [anon_sym_DOLLARstringify] = ACTIONS(1625), + [anon_sym_DOLLARappend] = ACTIONS(1625), + [anon_sym_DOLLARconcat] = ACTIONS(1625), + [anon_sym_DOLLARdefined] = ACTIONS(1625), + [anon_sym_DOLLARembed] = ACTIONS(1625), + [anon_sym_DOLLARand] = ACTIONS(1625), + [anon_sym_DOLLARor] = ACTIONS(1625), + [anon_sym_DOLLARfeature] = ACTIONS(1625), + [anon_sym_DOLLARassignable] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_typeid] = ACTIONS(1625), + [anon_sym_LBRACE_PIPE] = ACTIONS(1627), + [anon_sym_PIPE_RBRACE] = ACTIONS(1627), + [anon_sym_void] = ACTIONS(1625), + [anon_sym_bool] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_ichar] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_ushort] = ACTIONS(1625), + [anon_sym_uint] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_ulong] = ACTIONS(1625), + [anon_sym_int128] = ACTIONS(1625), + [anon_sym_uint128] = ACTIONS(1625), + [anon_sym_float] = ACTIONS(1625), + [anon_sym_double] = ACTIONS(1625), + [anon_sym_float16] = ACTIONS(1625), + [anon_sym_bfloat16] = ACTIONS(1625), + [anon_sym_float128] = ACTIONS(1625), + [anon_sym_iptr] = ACTIONS(1625), + [anon_sym_uptr] = ACTIONS(1625), + [anon_sym_isz] = ACTIONS(1625), + [anon_sym_usz] = ACTIONS(1625), + [anon_sym_anyfault] = ACTIONS(1625), + [anon_sym_any] = ACTIONS(1625), + [anon_sym_DOLLARtypeof] = ACTIONS(1625), + [anon_sym_DOLLARtypefrom] = ACTIONS(1625), + [anon_sym_DOLLARevaltype] = ACTIONS(1625), + [anon_sym_DOLLARvatype] = ACTIONS(1625), + [sym_real_literal] = ACTIONS(1627), }, - [467] = { - [sym_line_comment] = STATE(467), - [sym_doc_comment] = STATE(467), - [sym_block_comment] = STATE(467), - [sym_ident] = ACTIONS(1575), - [sym_integer_literal] = ACTIONS(1577), - [anon_sym_SQUOTE] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1577), - [anon_sym_BQUOTE] = ACTIONS(1577), - [sym_bytes_literal] = ACTIONS(1577), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1575), - [sym_at_ident] = ACTIONS(1577), - [sym_hash_ident] = ACTIONS(1577), - [sym_type_ident] = ACTIONS(1577), - [sym_ct_type_ident] = ACTIONS(1577), - [sym_const_ident] = ACTIONS(1575), - [sym_builtin] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1575), - [anon_sym_static] = ACTIONS(1575), - [anon_sym_tlocal] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_fn] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [anon_sym_var] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_defer] = ACTIONS(1575), - [anon_sym_assert] = ACTIONS(1575), - [anon_sym_nextcase] = ACTIONS(1575), - [anon_sym_switch] = ACTIONS(1575), - [anon_sym_AMP_AMP] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_foreach] = ACTIONS(1575), - [anon_sym_foreach_r] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_do] = ACTIONS(1575), - [anon_sym_int] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_asm] = ACTIONS(1575), - [anon_sym_DOLLARassert] = ACTIONS(1575), - [anon_sym_DOLLARerror] = ACTIONS(1575), - [anon_sym_DOLLARecho] = ACTIONS(1575), - [anon_sym_DOLLARif] = ACTIONS(1575), - [anon_sym_DOLLARcase] = ACTIONS(1575), - [anon_sym_DOLLARdefault] = ACTIONS(1575), - [anon_sym_DOLLARswitch] = ACTIONS(1575), - [anon_sym_DOLLARendswitch] = ACTIONS(1575), - [anon_sym_DOLLARfor] = ACTIONS(1575), - [anon_sym_DOLLARforeach] = ACTIONS(1575), - [anon_sym_DOLLARalignof] = ACTIONS(1575), - [anon_sym_DOLLARextnameof] = ACTIONS(1575), - [anon_sym_DOLLARnameof] = ACTIONS(1575), - [anon_sym_DOLLARoffsetof] = ACTIONS(1575), - [anon_sym_DOLLARqnameof] = ACTIONS(1575), - [anon_sym_DOLLAReval] = ACTIONS(1575), - [anon_sym_DOLLARdefined] = ACTIONS(1575), - [anon_sym_DOLLARsizeof] = ACTIONS(1575), - [anon_sym_DOLLARstringify] = ACTIONS(1575), - [anon_sym_DOLLARis_const] = ACTIONS(1575), - [anon_sym_DOLLARvaconst] = ACTIONS(1575), - [anon_sym_DOLLARvaarg] = ACTIONS(1575), - [anon_sym_DOLLARvaref] = ACTIONS(1575), - [anon_sym_DOLLARvaexpr] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_DOLLARvacount] = ACTIONS(1575), - [anon_sym_DOLLARfeature] = ACTIONS(1575), - [anon_sym_DOLLARand] = ACTIONS(1575), - [anon_sym_DOLLARor] = ACTIONS(1575), - [anon_sym_DOLLARassignable] = ACTIONS(1575), - [anon_sym_DOLLARembed] = ACTIONS(1575), - [anon_sym_BANG] = ACTIONS(1577), - [anon_sym_TILDE] = ACTIONS(1577), - [anon_sym_PLUS_PLUS] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1577), - [anon_sym_typeid] = ACTIONS(1575), - [anon_sym_LBRACE_PIPE] = ACTIONS(1577), - [anon_sym_void] = ACTIONS(1575), - [anon_sym_bool] = ACTIONS(1575), - [anon_sym_char] = ACTIONS(1575), - [anon_sym_ichar] = ACTIONS(1575), - [anon_sym_short] = ACTIONS(1575), - [anon_sym_ushort] = ACTIONS(1575), - [anon_sym_uint] = ACTIONS(1575), - [anon_sym_long] = ACTIONS(1575), - [anon_sym_ulong] = ACTIONS(1575), - [anon_sym_int128] = ACTIONS(1575), - [anon_sym_uint128] = ACTIONS(1575), - [anon_sym_float] = ACTIONS(1575), - [anon_sym_double] = ACTIONS(1575), - [anon_sym_float16] = ACTIONS(1575), - [anon_sym_bfloat16] = ACTIONS(1575), - [anon_sym_float128] = ACTIONS(1575), - [anon_sym_iptr] = ACTIONS(1575), - [anon_sym_uptr] = ACTIONS(1575), - [anon_sym_isz] = ACTIONS(1575), - [anon_sym_usz] = ACTIONS(1575), - [anon_sym_anyfault] = ACTIONS(1575), - [anon_sym_any] = ACTIONS(1575), - [anon_sym_DOLLARtypeof] = ACTIONS(1575), - [anon_sym_DOLLARtypefrom] = ACTIONS(1575), - [anon_sym_DOLLARvatype] = ACTIONS(1575), - [anon_sym_DOLLARevaltype] = ACTIONS(1575), - [sym_real_literal] = ACTIONS(1577), + [410] = { + [sym_line_comment] = STATE(410), + [sym_doc_comment] = STATE(410), + [sym_block_comment] = STATE(410), + [sym_ident] = ACTIONS(1629), + [sym_integer_literal] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1631), + [sym_bytes_literal] = ACTIONS(1631), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1629), + [sym_at_ident] = ACTIONS(1631), + [sym_hash_ident] = ACTIONS(1631), + [sym_type_ident] = ACTIONS(1631), + [sym_ct_type_ident] = ACTIONS(1631), + [sym_const_ident] = ACTIONS(1629), + [sym_builtin] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_tlocal] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_fn] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_RBRACE] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_var] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_defer] = ACTIONS(1629), + [anon_sym_assert] = ACTIONS(1629), + [anon_sym_case] = ACTIONS(1629), + [anon_sym_default] = ACTIONS(1629), + [anon_sym_nextcase] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_foreach] = ACTIONS(1629), + [anon_sym_foreach_r] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_int] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_asm] = ACTIONS(1629), + [anon_sym_DOLLARassert] = ACTIONS(1629), + [anon_sym_DOLLARerror] = ACTIONS(1629), + [anon_sym_DOLLARecho] = ACTIONS(1629), + [anon_sym_DOLLARif] = ACTIONS(1629), + [anon_sym_DOLLARswitch] = ACTIONS(1629), + [anon_sym_DOLLARfor] = ACTIONS(1629), + [anon_sym_DOLLARforeach] = ACTIONS(1629), + [anon_sym_DOLLARalignof] = ACTIONS(1629), + [anon_sym_DOLLARextnameof] = ACTIONS(1629), + [anon_sym_DOLLARnameof] = ACTIONS(1629), + [anon_sym_DOLLARoffsetof] = ACTIONS(1629), + [anon_sym_DOLLARqnameof] = ACTIONS(1629), + [anon_sym_DOLLARvaconst] = ACTIONS(1629), + [anon_sym_DOLLARvaarg] = ACTIONS(1629), + [anon_sym_DOLLARvaref] = ACTIONS(1629), + [anon_sym_DOLLARvaexpr] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_DOLLARvacount] = ACTIONS(1629), + [anon_sym_DOLLAReval] = ACTIONS(1629), + [anon_sym_DOLLARis_const] = ACTIONS(1629), + [anon_sym_DOLLARsizeof] = ACTIONS(1629), + [anon_sym_DOLLARstringify] = ACTIONS(1629), + [anon_sym_DOLLARappend] = ACTIONS(1629), + [anon_sym_DOLLARconcat] = ACTIONS(1629), + [anon_sym_DOLLARdefined] = ACTIONS(1629), + [anon_sym_DOLLARembed] = ACTIONS(1629), + [anon_sym_DOLLARand] = ACTIONS(1629), + [anon_sym_DOLLARor] = ACTIONS(1629), + [anon_sym_DOLLARfeature] = ACTIONS(1629), + [anon_sym_DOLLARassignable] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_typeid] = ACTIONS(1629), + [anon_sym_LBRACE_PIPE] = ACTIONS(1631), + [anon_sym_PIPE_RBRACE] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_ichar] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_ushort] = ACTIONS(1629), + [anon_sym_uint] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_ulong] = ACTIONS(1629), + [anon_sym_int128] = ACTIONS(1629), + [anon_sym_uint128] = ACTIONS(1629), + [anon_sym_float] = ACTIONS(1629), + [anon_sym_double] = ACTIONS(1629), + [anon_sym_float16] = ACTIONS(1629), + [anon_sym_bfloat16] = ACTIONS(1629), + [anon_sym_float128] = ACTIONS(1629), + [anon_sym_iptr] = ACTIONS(1629), + [anon_sym_uptr] = ACTIONS(1629), + [anon_sym_isz] = ACTIONS(1629), + [anon_sym_usz] = ACTIONS(1629), + [anon_sym_anyfault] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_DOLLARtypeof] = ACTIONS(1629), + [anon_sym_DOLLARtypefrom] = ACTIONS(1629), + [anon_sym_DOLLARevaltype] = ACTIONS(1629), + [anon_sym_DOLLARvatype] = ACTIONS(1629), + [sym_real_literal] = ACTIONS(1631), }, - [468] = { - [sym_line_comment] = STATE(468), - [sym_doc_comment] = STATE(468), - [sym_block_comment] = STATE(468), - [sym_ident] = ACTIONS(1531), - [sym_integer_literal] = ACTIONS(1533), - [anon_sym_SQUOTE] = ACTIONS(1533), - [anon_sym_DQUOTE] = ACTIONS(1533), - [anon_sym_BQUOTE] = ACTIONS(1533), - [sym_bytes_literal] = ACTIONS(1533), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1531), - [sym_at_ident] = ACTIONS(1533), - [sym_hash_ident] = ACTIONS(1533), - [sym_type_ident] = ACTIONS(1533), - [sym_ct_type_ident] = ACTIONS(1533), - [sym_const_ident] = ACTIONS(1531), - [sym_builtin] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1531), - [anon_sym_static] = ACTIONS(1531), - [anon_sym_tlocal] = ACTIONS(1531), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_fn] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_const] = ACTIONS(1531), - [anon_sym_var] = ACTIONS(1531), - [anon_sym_return] = ACTIONS(1531), - [anon_sym_continue] = ACTIONS(1531), - [anon_sym_break] = ACTIONS(1531), - [anon_sym_defer] = ACTIONS(1531), - [anon_sym_assert] = ACTIONS(1531), - [anon_sym_nextcase] = ACTIONS(1531), - [anon_sym_switch] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1531), - [anon_sym_for] = ACTIONS(1531), - [anon_sym_foreach] = ACTIONS(1531), - [anon_sym_foreach_r] = ACTIONS(1531), - [anon_sym_while] = ACTIONS(1531), - [anon_sym_do] = ACTIONS(1531), - [anon_sym_int] = ACTIONS(1531), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_asm] = ACTIONS(1531), - [anon_sym_DOLLARassert] = ACTIONS(1531), - [anon_sym_DOLLARerror] = ACTIONS(1531), - [anon_sym_DOLLARecho] = ACTIONS(1531), - [anon_sym_DOLLARif] = ACTIONS(1531), - [anon_sym_DOLLARcase] = ACTIONS(1531), - [anon_sym_DOLLARdefault] = ACTIONS(1531), - [anon_sym_DOLLARswitch] = ACTIONS(1531), - [anon_sym_DOLLARendswitch] = ACTIONS(1531), - [anon_sym_DOLLARfor] = ACTIONS(1531), - [anon_sym_DOLLARforeach] = ACTIONS(1531), - [anon_sym_DOLLARalignof] = ACTIONS(1531), - [anon_sym_DOLLARextnameof] = ACTIONS(1531), - [anon_sym_DOLLARnameof] = ACTIONS(1531), - [anon_sym_DOLLARoffsetof] = ACTIONS(1531), - [anon_sym_DOLLARqnameof] = ACTIONS(1531), - [anon_sym_DOLLAReval] = ACTIONS(1531), - [anon_sym_DOLLARdefined] = ACTIONS(1531), - [anon_sym_DOLLARsizeof] = ACTIONS(1531), - [anon_sym_DOLLARstringify] = ACTIONS(1531), - [anon_sym_DOLLARis_const] = ACTIONS(1531), - [anon_sym_DOLLARvaconst] = ACTIONS(1531), - [anon_sym_DOLLARvaarg] = ACTIONS(1531), - [anon_sym_DOLLARvaref] = ACTIONS(1531), - [anon_sym_DOLLARvaexpr] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1531), - [anon_sym_false] = ACTIONS(1531), - [anon_sym_null] = ACTIONS(1531), - [anon_sym_DOLLARvacount] = ACTIONS(1531), - [anon_sym_DOLLARfeature] = ACTIONS(1531), - [anon_sym_DOLLARand] = ACTIONS(1531), - [anon_sym_DOLLARor] = ACTIONS(1531), - [anon_sym_DOLLARassignable] = ACTIONS(1531), - [anon_sym_DOLLARembed] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_typeid] = ACTIONS(1531), - [anon_sym_LBRACE_PIPE] = ACTIONS(1533), - [anon_sym_void] = ACTIONS(1531), - [anon_sym_bool] = ACTIONS(1531), - [anon_sym_char] = ACTIONS(1531), - [anon_sym_ichar] = ACTIONS(1531), - [anon_sym_short] = ACTIONS(1531), - [anon_sym_ushort] = ACTIONS(1531), - [anon_sym_uint] = ACTIONS(1531), - [anon_sym_long] = ACTIONS(1531), - [anon_sym_ulong] = ACTIONS(1531), - [anon_sym_int128] = ACTIONS(1531), - [anon_sym_uint128] = ACTIONS(1531), - [anon_sym_float] = ACTIONS(1531), - [anon_sym_double] = ACTIONS(1531), - [anon_sym_float16] = ACTIONS(1531), - [anon_sym_bfloat16] = ACTIONS(1531), - [anon_sym_float128] = ACTIONS(1531), - [anon_sym_iptr] = ACTIONS(1531), - [anon_sym_uptr] = ACTIONS(1531), - [anon_sym_isz] = ACTIONS(1531), - [anon_sym_usz] = ACTIONS(1531), - [anon_sym_anyfault] = ACTIONS(1531), - [anon_sym_any] = ACTIONS(1531), - [anon_sym_DOLLARtypeof] = ACTIONS(1531), - [anon_sym_DOLLARtypefrom] = ACTIONS(1531), - [anon_sym_DOLLARvatype] = ACTIONS(1531), - [anon_sym_DOLLARevaltype] = ACTIONS(1531), - [sym_real_literal] = ACTIONS(1533), + [411] = { + [sym_line_comment] = STATE(411), + [sym_doc_comment] = STATE(411), + [sym_block_comment] = STATE(411), + [sym_ident] = ACTIONS(1633), + [sym_integer_literal] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_bytes_literal] = ACTIONS(1635), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1633), + [sym_at_ident] = ACTIONS(1635), + [sym_hash_ident] = ACTIONS(1635), + [sym_type_ident] = ACTIONS(1635), + [sym_ct_type_ident] = ACTIONS(1635), + [sym_const_ident] = ACTIONS(1633), + [sym_builtin] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_tlocal] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_fn] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_RBRACE] = ACTIONS(1635), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_var] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_defer] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1633), + [anon_sym_case] = ACTIONS(1633), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_nextcase] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_foreach] = ACTIONS(1633), + [anon_sym_foreach_r] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1633), + [anon_sym_DOLLARassert] = ACTIONS(1633), + [anon_sym_DOLLARerror] = ACTIONS(1633), + [anon_sym_DOLLARecho] = ACTIONS(1633), + [anon_sym_DOLLARif] = ACTIONS(1633), + [anon_sym_DOLLARswitch] = ACTIONS(1633), + [anon_sym_DOLLARfor] = ACTIONS(1633), + [anon_sym_DOLLARforeach] = ACTIONS(1633), + [anon_sym_DOLLARalignof] = ACTIONS(1633), + [anon_sym_DOLLARextnameof] = ACTIONS(1633), + [anon_sym_DOLLARnameof] = ACTIONS(1633), + [anon_sym_DOLLARoffsetof] = ACTIONS(1633), + [anon_sym_DOLLARqnameof] = ACTIONS(1633), + [anon_sym_DOLLARvaconst] = ACTIONS(1633), + [anon_sym_DOLLARvaarg] = ACTIONS(1633), + [anon_sym_DOLLARvaref] = ACTIONS(1633), + [anon_sym_DOLLARvaexpr] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_DOLLARvacount] = ACTIONS(1633), + [anon_sym_DOLLAReval] = ACTIONS(1633), + [anon_sym_DOLLARis_const] = ACTIONS(1633), + [anon_sym_DOLLARsizeof] = ACTIONS(1633), + [anon_sym_DOLLARstringify] = ACTIONS(1633), + [anon_sym_DOLLARappend] = ACTIONS(1633), + [anon_sym_DOLLARconcat] = ACTIONS(1633), + [anon_sym_DOLLARdefined] = ACTIONS(1633), + [anon_sym_DOLLARembed] = ACTIONS(1633), + [anon_sym_DOLLARand] = ACTIONS(1633), + [anon_sym_DOLLARor] = ACTIONS(1633), + [anon_sym_DOLLARfeature] = ACTIONS(1633), + [anon_sym_DOLLARassignable] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_typeid] = ACTIONS(1633), + [anon_sym_LBRACE_PIPE] = ACTIONS(1635), + [anon_sym_PIPE_RBRACE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_ichar] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_ushort] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_ulong] = ACTIONS(1633), + [anon_sym_int128] = ACTIONS(1633), + [anon_sym_uint128] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_double] = ACTIONS(1633), + [anon_sym_float16] = ACTIONS(1633), + [anon_sym_bfloat16] = ACTIONS(1633), + [anon_sym_float128] = ACTIONS(1633), + [anon_sym_iptr] = ACTIONS(1633), + [anon_sym_uptr] = ACTIONS(1633), + [anon_sym_isz] = ACTIONS(1633), + [anon_sym_usz] = ACTIONS(1633), + [anon_sym_anyfault] = ACTIONS(1633), + [anon_sym_any] = ACTIONS(1633), + [anon_sym_DOLLARtypeof] = ACTIONS(1633), + [anon_sym_DOLLARtypefrom] = ACTIONS(1633), + [anon_sym_DOLLARevaltype] = ACTIONS(1633), + [anon_sym_DOLLARvatype] = ACTIONS(1633), + [sym_real_literal] = ACTIONS(1635), }, - [469] = { - [sym_line_comment] = STATE(469), - [sym_doc_comment] = STATE(469), - [sym_block_comment] = STATE(469), - [sym_ident] = ACTIONS(1563), - [sym_integer_literal] = ACTIONS(1565), - [anon_sym_SQUOTE] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1565), - [anon_sym_BQUOTE] = ACTIONS(1565), - [sym_bytes_literal] = ACTIONS(1565), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1563), - [sym_at_ident] = ACTIONS(1565), - [sym_hash_ident] = ACTIONS(1565), - [sym_type_ident] = ACTIONS(1565), - [sym_ct_type_ident] = ACTIONS(1565), - [sym_const_ident] = ACTIONS(1563), - [sym_builtin] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_static] = ACTIONS(1563), - [anon_sym_tlocal] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_fn] = ACTIONS(1563), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_const] = ACTIONS(1563), - [anon_sym_var] = ACTIONS(1563), - [anon_sym_return] = ACTIONS(1563), - [anon_sym_continue] = ACTIONS(1563), - [anon_sym_break] = ACTIONS(1563), - [anon_sym_defer] = ACTIONS(1563), - [anon_sym_assert] = ACTIONS(1563), - [anon_sym_nextcase] = ACTIONS(1563), - [anon_sym_switch] = ACTIONS(1563), - [anon_sym_AMP_AMP] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1563), - [anon_sym_for] = ACTIONS(1563), - [anon_sym_foreach] = ACTIONS(1563), - [anon_sym_foreach_r] = ACTIONS(1563), - [anon_sym_while] = ACTIONS(1563), - [anon_sym_do] = ACTIONS(1563), - [anon_sym_int] = ACTIONS(1563), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_asm] = ACTIONS(1563), - [anon_sym_DOLLARassert] = ACTIONS(1563), - [anon_sym_DOLLARerror] = ACTIONS(1563), - [anon_sym_DOLLARecho] = ACTIONS(1563), - [anon_sym_DOLLARif] = ACTIONS(1563), - [anon_sym_DOLLARcase] = ACTIONS(1563), - [anon_sym_DOLLARdefault] = ACTIONS(1563), - [anon_sym_DOLLARswitch] = ACTIONS(1563), - [anon_sym_DOLLARendswitch] = ACTIONS(1563), - [anon_sym_DOLLARfor] = ACTIONS(1563), - [anon_sym_DOLLARforeach] = ACTIONS(1563), - [anon_sym_DOLLARalignof] = ACTIONS(1563), - [anon_sym_DOLLARextnameof] = ACTIONS(1563), - [anon_sym_DOLLARnameof] = ACTIONS(1563), - [anon_sym_DOLLARoffsetof] = ACTIONS(1563), - [anon_sym_DOLLARqnameof] = ACTIONS(1563), - [anon_sym_DOLLAReval] = ACTIONS(1563), - [anon_sym_DOLLARdefined] = ACTIONS(1563), - [anon_sym_DOLLARsizeof] = ACTIONS(1563), - [anon_sym_DOLLARstringify] = ACTIONS(1563), - [anon_sym_DOLLARis_const] = ACTIONS(1563), - [anon_sym_DOLLARvaconst] = ACTIONS(1563), - [anon_sym_DOLLARvaarg] = ACTIONS(1563), - [anon_sym_DOLLARvaref] = ACTIONS(1563), - [anon_sym_DOLLARvaexpr] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1563), - [anon_sym_false] = ACTIONS(1563), - [anon_sym_null] = ACTIONS(1563), - [anon_sym_DOLLARvacount] = ACTIONS(1563), - [anon_sym_DOLLARfeature] = ACTIONS(1563), - [anon_sym_DOLLARand] = ACTIONS(1563), - [anon_sym_DOLLARor] = ACTIONS(1563), - [anon_sym_DOLLARassignable] = ACTIONS(1563), - [anon_sym_DOLLARembed] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_typeid] = ACTIONS(1563), - [anon_sym_LBRACE_PIPE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1563), - [anon_sym_bool] = ACTIONS(1563), - [anon_sym_char] = ACTIONS(1563), - [anon_sym_ichar] = ACTIONS(1563), - [anon_sym_short] = ACTIONS(1563), - [anon_sym_ushort] = ACTIONS(1563), - [anon_sym_uint] = ACTIONS(1563), - [anon_sym_long] = ACTIONS(1563), - [anon_sym_ulong] = ACTIONS(1563), - [anon_sym_int128] = ACTIONS(1563), - [anon_sym_uint128] = ACTIONS(1563), - [anon_sym_float] = ACTIONS(1563), - [anon_sym_double] = ACTIONS(1563), - [anon_sym_float16] = ACTIONS(1563), - [anon_sym_bfloat16] = ACTIONS(1563), - [anon_sym_float128] = ACTIONS(1563), - [anon_sym_iptr] = ACTIONS(1563), - [anon_sym_uptr] = ACTIONS(1563), - [anon_sym_isz] = ACTIONS(1563), - [anon_sym_usz] = ACTIONS(1563), - [anon_sym_anyfault] = ACTIONS(1563), - [anon_sym_any] = ACTIONS(1563), - [anon_sym_DOLLARtypeof] = ACTIONS(1563), - [anon_sym_DOLLARtypefrom] = ACTIONS(1563), - [anon_sym_DOLLARvatype] = ACTIONS(1563), - [anon_sym_DOLLARevaltype] = ACTIONS(1563), - [sym_real_literal] = ACTIONS(1565), + [412] = { + [sym_line_comment] = STATE(412), + [sym_doc_comment] = STATE(412), + [sym_block_comment] = STATE(412), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_case] = ACTIONS(1189), + [anon_sym_default] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_PIPE_RBRACE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), }, - [470] = { - [sym_line_comment] = STATE(470), - [sym_doc_comment] = STATE(470), - [sym_block_comment] = STATE(470), - [sym_ident] = ACTIONS(1551), - [sym_integer_literal] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1553), - [anon_sym_BQUOTE] = ACTIONS(1553), - [sym_bytes_literal] = ACTIONS(1553), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1551), - [sym_at_ident] = ACTIONS(1553), - [sym_hash_ident] = ACTIONS(1553), - [sym_type_ident] = ACTIONS(1553), - [sym_ct_type_ident] = ACTIONS(1553), - [sym_const_ident] = ACTIONS(1551), - [sym_builtin] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1551), - [anon_sym_tlocal] = ACTIONS(1551), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_fn] = ACTIONS(1551), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_const] = ACTIONS(1551), - [anon_sym_var] = ACTIONS(1551), - [anon_sym_return] = ACTIONS(1551), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_break] = ACTIONS(1551), - [anon_sym_defer] = ACTIONS(1551), - [anon_sym_assert] = ACTIONS(1551), - [anon_sym_nextcase] = ACTIONS(1551), - [anon_sym_switch] = ACTIONS(1551), - [anon_sym_AMP_AMP] = ACTIONS(1553), - [anon_sym_if] = ACTIONS(1551), - [anon_sym_for] = ACTIONS(1551), - [anon_sym_foreach] = ACTIONS(1551), - [anon_sym_foreach_r] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1551), - [anon_sym_do] = ACTIONS(1551), - [anon_sym_int] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(1553), - [anon_sym_asm] = ACTIONS(1551), - [anon_sym_DOLLARassert] = ACTIONS(1551), - [anon_sym_DOLLARerror] = ACTIONS(1551), - [anon_sym_DOLLARecho] = ACTIONS(1551), - [anon_sym_DOLLARif] = ACTIONS(1551), - [anon_sym_DOLLARcase] = ACTIONS(1551), - [anon_sym_DOLLARdefault] = ACTIONS(1551), - [anon_sym_DOLLARswitch] = ACTIONS(1551), - [anon_sym_DOLLARendswitch] = ACTIONS(1551), - [anon_sym_DOLLARfor] = ACTIONS(1551), - [anon_sym_DOLLARforeach] = ACTIONS(1551), - [anon_sym_DOLLARalignof] = ACTIONS(1551), - [anon_sym_DOLLARextnameof] = ACTIONS(1551), - [anon_sym_DOLLARnameof] = ACTIONS(1551), - [anon_sym_DOLLARoffsetof] = ACTIONS(1551), - [anon_sym_DOLLARqnameof] = ACTIONS(1551), - [anon_sym_DOLLAReval] = ACTIONS(1551), - [anon_sym_DOLLARdefined] = ACTIONS(1551), - [anon_sym_DOLLARsizeof] = ACTIONS(1551), - [anon_sym_DOLLARstringify] = ACTIONS(1551), - [anon_sym_DOLLARis_const] = ACTIONS(1551), - [anon_sym_DOLLARvaconst] = ACTIONS(1551), - [anon_sym_DOLLARvaarg] = ACTIONS(1551), - [anon_sym_DOLLARvaref] = ACTIONS(1551), - [anon_sym_DOLLARvaexpr] = ACTIONS(1551), - [anon_sym_true] = ACTIONS(1551), - [anon_sym_false] = ACTIONS(1551), - [anon_sym_null] = ACTIONS(1551), - [anon_sym_DOLLARvacount] = ACTIONS(1551), - [anon_sym_DOLLARfeature] = ACTIONS(1551), - [anon_sym_DOLLARand] = ACTIONS(1551), - [anon_sym_DOLLARor] = ACTIONS(1551), - [anon_sym_DOLLARassignable] = ACTIONS(1551), - [anon_sym_DOLLARembed] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1553), - [anon_sym_TILDE] = ACTIONS(1553), - [anon_sym_PLUS_PLUS] = ACTIONS(1553), - [anon_sym_DASH_DASH] = ACTIONS(1553), - [anon_sym_typeid] = ACTIONS(1551), - [anon_sym_LBRACE_PIPE] = ACTIONS(1553), - [anon_sym_void] = ACTIONS(1551), - [anon_sym_bool] = ACTIONS(1551), - [anon_sym_char] = ACTIONS(1551), - [anon_sym_ichar] = ACTIONS(1551), - [anon_sym_short] = ACTIONS(1551), - [anon_sym_ushort] = ACTIONS(1551), - [anon_sym_uint] = ACTIONS(1551), - [anon_sym_long] = ACTIONS(1551), - [anon_sym_ulong] = ACTIONS(1551), - [anon_sym_int128] = ACTIONS(1551), - [anon_sym_uint128] = ACTIONS(1551), - [anon_sym_float] = ACTIONS(1551), - [anon_sym_double] = ACTIONS(1551), - [anon_sym_float16] = ACTIONS(1551), - [anon_sym_bfloat16] = ACTIONS(1551), - [anon_sym_float128] = ACTIONS(1551), - [anon_sym_iptr] = ACTIONS(1551), - [anon_sym_uptr] = ACTIONS(1551), - [anon_sym_isz] = ACTIONS(1551), - [anon_sym_usz] = ACTIONS(1551), - [anon_sym_anyfault] = ACTIONS(1551), - [anon_sym_any] = ACTIONS(1551), - [anon_sym_DOLLARtypeof] = ACTIONS(1551), - [anon_sym_DOLLARtypefrom] = ACTIONS(1551), - [anon_sym_DOLLARvatype] = ACTIONS(1551), - [anon_sym_DOLLARevaltype] = ACTIONS(1551), - [sym_real_literal] = ACTIONS(1553), + [413] = { + [sym_line_comment] = STATE(413), + [sym_doc_comment] = STATE(413), + [sym_block_comment] = STATE(413), + [sym_ident] = ACTIONS(1637), + [sym_integer_literal] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_BQUOTE] = ACTIONS(1639), + [sym_bytes_literal] = ACTIONS(1639), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1637), + [sym_at_ident] = ACTIONS(1639), + [sym_hash_ident] = ACTIONS(1639), + [sym_type_ident] = ACTIONS(1639), + [sym_ct_type_ident] = ACTIONS(1639), + [sym_const_ident] = ACTIONS(1637), + [sym_builtin] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_tlocal] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_fn] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_RBRACE] = ACTIONS(1639), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_var] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_defer] = ACTIONS(1637), + [anon_sym_assert] = ACTIONS(1637), + [anon_sym_case] = ACTIONS(1637), + [anon_sym_default] = ACTIONS(1637), + [anon_sym_nextcase] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_foreach] = ACTIONS(1637), + [anon_sym_foreach_r] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_int] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_asm] = ACTIONS(1637), + [anon_sym_DOLLARassert] = ACTIONS(1637), + [anon_sym_DOLLARerror] = ACTIONS(1637), + [anon_sym_DOLLARecho] = ACTIONS(1637), + [anon_sym_DOLLARif] = ACTIONS(1637), + [anon_sym_DOLLARswitch] = ACTIONS(1637), + [anon_sym_DOLLARfor] = ACTIONS(1637), + [anon_sym_DOLLARforeach] = ACTIONS(1637), + [anon_sym_DOLLARalignof] = ACTIONS(1637), + [anon_sym_DOLLARextnameof] = ACTIONS(1637), + [anon_sym_DOLLARnameof] = ACTIONS(1637), + [anon_sym_DOLLARoffsetof] = ACTIONS(1637), + [anon_sym_DOLLARqnameof] = ACTIONS(1637), + [anon_sym_DOLLARvaconst] = ACTIONS(1637), + [anon_sym_DOLLARvaarg] = ACTIONS(1637), + [anon_sym_DOLLARvaref] = ACTIONS(1637), + [anon_sym_DOLLARvaexpr] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_DOLLARvacount] = ACTIONS(1637), + [anon_sym_DOLLAReval] = ACTIONS(1637), + [anon_sym_DOLLARis_const] = ACTIONS(1637), + [anon_sym_DOLLARsizeof] = ACTIONS(1637), + [anon_sym_DOLLARstringify] = ACTIONS(1637), + [anon_sym_DOLLARappend] = ACTIONS(1637), + [anon_sym_DOLLARconcat] = ACTIONS(1637), + [anon_sym_DOLLARdefined] = ACTIONS(1637), + [anon_sym_DOLLARembed] = ACTIONS(1637), + [anon_sym_DOLLARand] = ACTIONS(1637), + [anon_sym_DOLLARor] = ACTIONS(1637), + [anon_sym_DOLLARfeature] = ACTIONS(1637), + [anon_sym_DOLLARassignable] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_typeid] = ACTIONS(1637), + [anon_sym_LBRACE_PIPE] = ACTIONS(1639), + [anon_sym_PIPE_RBRACE] = ACTIONS(1639), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_bool] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_ichar] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_ushort] = ACTIONS(1637), + [anon_sym_uint] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_ulong] = ACTIONS(1637), + [anon_sym_int128] = ACTIONS(1637), + [anon_sym_uint128] = ACTIONS(1637), + [anon_sym_float] = ACTIONS(1637), + [anon_sym_double] = ACTIONS(1637), + [anon_sym_float16] = ACTIONS(1637), + [anon_sym_bfloat16] = ACTIONS(1637), + [anon_sym_float128] = ACTIONS(1637), + [anon_sym_iptr] = ACTIONS(1637), + [anon_sym_uptr] = ACTIONS(1637), + [anon_sym_isz] = ACTIONS(1637), + [anon_sym_usz] = ACTIONS(1637), + [anon_sym_anyfault] = ACTIONS(1637), + [anon_sym_any] = ACTIONS(1637), + [anon_sym_DOLLARtypeof] = ACTIONS(1637), + [anon_sym_DOLLARtypefrom] = ACTIONS(1637), + [anon_sym_DOLLARevaltype] = ACTIONS(1637), + [anon_sym_DOLLARvatype] = ACTIONS(1637), + [sym_real_literal] = ACTIONS(1639), }, - [471] = { - [sym_line_comment] = STATE(471), - [sym_doc_comment] = STATE(471), - [sym_block_comment] = STATE(471), - [sym_ident] = ACTIONS(1547), - [sym_integer_literal] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1549), - [anon_sym_BQUOTE] = ACTIONS(1549), - [sym_bytes_literal] = ACTIONS(1549), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1547), - [sym_at_ident] = ACTIONS(1549), - [sym_hash_ident] = ACTIONS(1549), - [sym_type_ident] = ACTIONS(1549), - [sym_ct_type_ident] = ACTIONS(1549), - [sym_const_ident] = ACTIONS(1547), - [sym_builtin] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1547), - [anon_sym_static] = ACTIONS(1547), - [anon_sym_tlocal] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_fn] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_const] = ACTIONS(1547), - [anon_sym_var] = ACTIONS(1547), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_continue] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1547), - [anon_sym_defer] = ACTIONS(1547), - [anon_sym_assert] = ACTIONS(1547), - [anon_sym_nextcase] = ACTIONS(1547), - [anon_sym_switch] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1547), - [anon_sym_for] = ACTIONS(1547), - [anon_sym_foreach] = ACTIONS(1547), - [anon_sym_foreach_r] = ACTIONS(1547), - [anon_sym_while] = ACTIONS(1547), - [anon_sym_do] = ACTIONS(1547), - [anon_sym_int] = ACTIONS(1547), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1549), - [anon_sym_asm] = ACTIONS(1547), - [anon_sym_DOLLARassert] = ACTIONS(1547), - [anon_sym_DOLLARerror] = ACTIONS(1547), - [anon_sym_DOLLARecho] = ACTIONS(1547), - [anon_sym_DOLLARif] = ACTIONS(1547), - [anon_sym_DOLLARcase] = ACTIONS(1547), - [anon_sym_DOLLARdefault] = ACTIONS(1547), - [anon_sym_DOLLARswitch] = ACTIONS(1547), - [anon_sym_DOLLARendswitch] = ACTIONS(1547), - [anon_sym_DOLLARfor] = ACTIONS(1547), - [anon_sym_DOLLARforeach] = ACTIONS(1547), - [anon_sym_DOLLARalignof] = ACTIONS(1547), - [anon_sym_DOLLARextnameof] = ACTIONS(1547), - [anon_sym_DOLLARnameof] = ACTIONS(1547), - [anon_sym_DOLLARoffsetof] = ACTIONS(1547), - [anon_sym_DOLLARqnameof] = ACTIONS(1547), - [anon_sym_DOLLAReval] = ACTIONS(1547), - [anon_sym_DOLLARdefined] = ACTIONS(1547), - [anon_sym_DOLLARsizeof] = ACTIONS(1547), - [anon_sym_DOLLARstringify] = ACTIONS(1547), - [anon_sym_DOLLARis_const] = ACTIONS(1547), - [anon_sym_DOLLARvaconst] = ACTIONS(1547), - [anon_sym_DOLLARvaarg] = ACTIONS(1547), - [anon_sym_DOLLARvaref] = ACTIONS(1547), - [anon_sym_DOLLARvaexpr] = ACTIONS(1547), - [anon_sym_true] = ACTIONS(1547), - [anon_sym_false] = ACTIONS(1547), - [anon_sym_null] = ACTIONS(1547), - [anon_sym_DOLLARvacount] = ACTIONS(1547), - [anon_sym_DOLLARfeature] = ACTIONS(1547), - [anon_sym_DOLLARand] = ACTIONS(1547), - [anon_sym_DOLLARor] = ACTIONS(1547), - [anon_sym_DOLLARassignable] = ACTIONS(1547), - [anon_sym_DOLLARembed] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_typeid] = ACTIONS(1547), - [anon_sym_LBRACE_PIPE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1547), - [anon_sym_bool] = ACTIONS(1547), - [anon_sym_char] = ACTIONS(1547), - [anon_sym_ichar] = ACTIONS(1547), - [anon_sym_short] = ACTIONS(1547), - [anon_sym_ushort] = ACTIONS(1547), - [anon_sym_uint] = ACTIONS(1547), - [anon_sym_long] = ACTIONS(1547), - [anon_sym_ulong] = ACTIONS(1547), - [anon_sym_int128] = ACTIONS(1547), - [anon_sym_uint128] = ACTIONS(1547), - [anon_sym_float] = ACTIONS(1547), - [anon_sym_double] = ACTIONS(1547), - [anon_sym_float16] = ACTIONS(1547), - [anon_sym_bfloat16] = ACTIONS(1547), - [anon_sym_float128] = ACTIONS(1547), - [anon_sym_iptr] = ACTIONS(1547), - [anon_sym_uptr] = ACTIONS(1547), - [anon_sym_isz] = ACTIONS(1547), - [anon_sym_usz] = ACTIONS(1547), - [anon_sym_anyfault] = ACTIONS(1547), - [anon_sym_any] = ACTIONS(1547), - [anon_sym_DOLLARtypeof] = ACTIONS(1547), - [anon_sym_DOLLARtypefrom] = ACTIONS(1547), - [anon_sym_DOLLARvatype] = ACTIONS(1547), - [anon_sym_DOLLARevaltype] = ACTIONS(1547), - [sym_real_literal] = ACTIONS(1549), + [414] = { + [sym_line_comment] = STATE(414), + [sym_doc_comment] = STATE(414), + [sym_block_comment] = STATE(414), + [sym_ident] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_bytes_literal] = ACTIONS(1643), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1641), + [sym_at_ident] = ACTIONS(1643), + [sym_hash_ident] = ACTIONS(1643), + [sym_type_ident] = ACTIONS(1643), + [sym_ct_type_ident] = ACTIONS(1643), + [sym_const_ident] = ACTIONS(1641), + [sym_builtin] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_tlocal] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_fn] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1643), + [anon_sym_const] = ACTIONS(1641), + [anon_sym_var] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_defer] = ACTIONS(1641), + [anon_sym_assert] = ACTIONS(1641), + [anon_sym_case] = ACTIONS(1641), + [anon_sym_default] = ACTIONS(1641), + [anon_sym_nextcase] = ACTIONS(1641), + [anon_sym_switch] = ACTIONS(1641), + [anon_sym_AMP_AMP] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_foreach] = ACTIONS(1641), + [anon_sym_foreach_r] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_int] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_asm] = ACTIONS(1641), + [anon_sym_DOLLARassert] = ACTIONS(1641), + [anon_sym_DOLLARerror] = ACTIONS(1641), + [anon_sym_DOLLARecho] = ACTIONS(1641), + [anon_sym_DOLLARif] = ACTIONS(1641), + [anon_sym_DOLLARswitch] = ACTIONS(1641), + [anon_sym_DOLLARfor] = ACTIONS(1641), + [anon_sym_DOLLARforeach] = ACTIONS(1641), + [anon_sym_DOLLARalignof] = ACTIONS(1641), + [anon_sym_DOLLARextnameof] = ACTIONS(1641), + [anon_sym_DOLLARnameof] = ACTIONS(1641), + [anon_sym_DOLLARoffsetof] = ACTIONS(1641), + [anon_sym_DOLLARqnameof] = ACTIONS(1641), + [anon_sym_DOLLARvaconst] = ACTIONS(1641), + [anon_sym_DOLLARvaarg] = ACTIONS(1641), + [anon_sym_DOLLARvaref] = ACTIONS(1641), + [anon_sym_DOLLARvaexpr] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [anon_sym_DOLLARvacount] = ACTIONS(1641), + [anon_sym_DOLLAReval] = ACTIONS(1641), + [anon_sym_DOLLARis_const] = ACTIONS(1641), + [anon_sym_DOLLARsizeof] = ACTIONS(1641), + [anon_sym_DOLLARstringify] = ACTIONS(1641), + [anon_sym_DOLLARappend] = ACTIONS(1641), + [anon_sym_DOLLARconcat] = ACTIONS(1641), + [anon_sym_DOLLARdefined] = ACTIONS(1641), + [anon_sym_DOLLARembed] = ACTIONS(1641), + [anon_sym_DOLLARand] = ACTIONS(1641), + [anon_sym_DOLLARor] = ACTIONS(1641), + [anon_sym_DOLLARfeature] = ACTIONS(1641), + [anon_sym_DOLLARassignable] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1643), + [anon_sym_TILDE] = ACTIONS(1643), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_typeid] = ACTIONS(1641), + [anon_sym_LBRACE_PIPE] = ACTIONS(1643), + [anon_sym_PIPE_RBRACE] = ACTIONS(1643), + [anon_sym_void] = ACTIONS(1641), + [anon_sym_bool] = ACTIONS(1641), + [anon_sym_char] = ACTIONS(1641), + [anon_sym_ichar] = ACTIONS(1641), + [anon_sym_short] = ACTIONS(1641), + [anon_sym_ushort] = ACTIONS(1641), + [anon_sym_uint] = ACTIONS(1641), + [anon_sym_long] = ACTIONS(1641), + [anon_sym_ulong] = ACTIONS(1641), + [anon_sym_int128] = ACTIONS(1641), + [anon_sym_uint128] = ACTIONS(1641), + [anon_sym_float] = ACTIONS(1641), + [anon_sym_double] = ACTIONS(1641), + [anon_sym_float16] = ACTIONS(1641), + [anon_sym_bfloat16] = ACTIONS(1641), + [anon_sym_float128] = ACTIONS(1641), + [anon_sym_iptr] = ACTIONS(1641), + [anon_sym_uptr] = ACTIONS(1641), + [anon_sym_isz] = ACTIONS(1641), + [anon_sym_usz] = ACTIONS(1641), + [anon_sym_anyfault] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_DOLLARtypeof] = ACTIONS(1641), + [anon_sym_DOLLARtypefrom] = ACTIONS(1641), + [anon_sym_DOLLARevaltype] = ACTIONS(1641), + [anon_sym_DOLLARvatype] = ACTIONS(1641), + [sym_real_literal] = ACTIONS(1643), }, - [472] = { - [sym_line_comment] = STATE(472), - [sym_doc_comment] = STATE(472), - [sym_block_comment] = STATE(472), - [sym_ident] = ACTIONS(1543), - [sym_integer_literal] = ACTIONS(1545), - [anon_sym_SQUOTE] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1545), - [anon_sym_BQUOTE] = ACTIONS(1545), - [sym_bytes_literal] = ACTIONS(1545), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1543), - [sym_at_ident] = ACTIONS(1545), - [sym_hash_ident] = ACTIONS(1545), - [sym_type_ident] = ACTIONS(1545), - [sym_ct_type_ident] = ACTIONS(1545), - [sym_const_ident] = ACTIONS(1543), - [sym_builtin] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_tlocal] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_fn] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1543), - [anon_sym_var] = ACTIONS(1543), - [anon_sym_return] = ACTIONS(1543), - [anon_sym_continue] = ACTIONS(1543), - [anon_sym_break] = ACTIONS(1543), - [anon_sym_defer] = ACTIONS(1543), - [anon_sym_assert] = ACTIONS(1543), - [anon_sym_nextcase] = ACTIONS(1543), - [anon_sym_switch] = ACTIONS(1543), - [anon_sym_AMP_AMP] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1543), - [anon_sym_foreach] = ACTIONS(1543), - [anon_sym_foreach_r] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1543), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_int] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1543), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_asm] = ACTIONS(1543), - [anon_sym_DOLLARassert] = ACTIONS(1543), - [anon_sym_DOLLARerror] = ACTIONS(1543), - [anon_sym_DOLLARecho] = ACTIONS(1543), - [anon_sym_DOLLARif] = ACTIONS(1543), - [anon_sym_DOLLARcase] = ACTIONS(1543), - [anon_sym_DOLLARdefault] = ACTIONS(1543), - [anon_sym_DOLLARswitch] = ACTIONS(1543), - [anon_sym_DOLLARendswitch] = ACTIONS(1543), - [anon_sym_DOLLARfor] = ACTIONS(1543), - [anon_sym_DOLLARforeach] = ACTIONS(1543), - [anon_sym_DOLLARalignof] = ACTIONS(1543), - [anon_sym_DOLLARextnameof] = ACTIONS(1543), - [anon_sym_DOLLARnameof] = ACTIONS(1543), - [anon_sym_DOLLARoffsetof] = ACTIONS(1543), - [anon_sym_DOLLARqnameof] = ACTIONS(1543), - [anon_sym_DOLLAReval] = ACTIONS(1543), - [anon_sym_DOLLARdefined] = ACTIONS(1543), - [anon_sym_DOLLARsizeof] = ACTIONS(1543), - [anon_sym_DOLLARstringify] = ACTIONS(1543), - [anon_sym_DOLLARis_const] = ACTIONS(1543), - [anon_sym_DOLLARvaconst] = ACTIONS(1543), - [anon_sym_DOLLARvaarg] = ACTIONS(1543), - [anon_sym_DOLLARvaref] = ACTIONS(1543), - [anon_sym_DOLLARvaexpr] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(1543), - [anon_sym_false] = ACTIONS(1543), - [anon_sym_null] = ACTIONS(1543), - [anon_sym_DOLLARvacount] = ACTIONS(1543), - [anon_sym_DOLLARfeature] = ACTIONS(1543), - [anon_sym_DOLLARand] = ACTIONS(1543), - [anon_sym_DOLLARor] = ACTIONS(1543), - [anon_sym_DOLLARassignable] = ACTIONS(1543), - [anon_sym_DOLLARembed] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1545), - [anon_sym_TILDE] = ACTIONS(1545), - [anon_sym_PLUS_PLUS] = ACTIONS(1545), - [anon_sym_DASH_DASH] = ACTIONS(1545), - [anon_sym_typeid] = ACTIONS(1543), - [anon_sym_LBRACE_PIPE] = ACTIONS(1545), - [anon_sym_void] = ACTIONS(1543), - [anon_sym_bool] = ACTIONS(1543), - [anon_sym_char] = ACTIONS(1543), - [anon_sym_ichar] = ACTIONS(1543), - [anon_sym_short] = ACTIONS(1543), - [anon_sym_ushort] = ACTIONS(1543), - [anon_sym_uint] = ACTIONS(1543), - [anon_sym_long] = ACTIONS(1543), - [anon_sym_ulong] = ACTIONS(1543), - [anon_sym_int128] = ACTIONS(1543), - [anon_sym_uint128] = ACTIONS(1543), - [anon_sym_float] = ACTIONS(1543), - [anon_sym_double] = ACTIONS(1543), - [anon_sym_float16] = ACTIONS(1543), - [anon_sym_bfloat16] = ACTIONS(1543), - [anon_sym_float128] = ACTIONS(1543), - [anon_sym_iptr] = ACTIONS(1543), - [anon_sym_uptr] = ACTIONS(1543), - [anon_sym_isz] = ACTIONS(1543), - [anon_sym_usz] = ACTIONS(1543), - [anon_sym_anyfault] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_DOLLARtypeof] = ACTIONS(1543), - [anon_sym_DOLLARtypefrom] = ACTIONS(1543), - [anon_sym_DOLLARvatype] = ACTIONS(1543), - [anon_sym_DOLLARevaltype] = ACTIONS(1543), - [sym_real_literal] = ACTIONS(1545), + [415] = { + [sym_line_comment] = STATE(415), + [sym_doc_comment] = STATE(415), + [sym_block_comment] = STATE(415), + [sym_ident] = ACTIONS(1645), + [sym_integer_literal] = ACTIONS(1647), + [anon_sym_SQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), + [sym_bytes_literal] = ACTIONS(1647), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1645), + [sym_at_ident] = ACTIONS(1647), + [sym_hash_ident] = ACTIONS(1647), + [sym_type_ident] = ACTIONS(1647), + [sym_ct_type_ident] = ACTIONS(1647), + [sym_const_ident] = ACTIONS(1645), + [sym_builtin] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_static] = ACTIONS(1645), + [anon_sym_tlocal] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_fn] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1647), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_var] = ACTIONS(1645), + [anon_sym_return] = ACTIONS(1645), + [anon_sym_continue] = ACTIONS(1645), + [anon_sym_break] = ACTIONS(1645), + [anon_sym_defer] = ACTIONS(1645), + [anon_sym_assert] = ACTIONS(1645), + [anon_sym_case] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1645), + [anon_sym_nextcase] = ACTIONS(1645), + [anon_sym_switch] = ACTIONS(1645), + [anon_sym_AMP_AMP] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1645), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_foreach] = ACTIONS(1645), + [anon_sym_foreach_r] = ACTIONS(1645), + [anon_sym_while] = ACTIONS(1645), + [anon_sym_do] = ACTIONS(1645), + [anon_sym_int] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_asm] = ACTIONS(1645), + [anon_sym_DOLLARassert] = ACTIONS(1645), + [anon_sym_DOLLARerror] = ACTIONS(1645), + [anon_sym_DOLLARecho] = ACTIONS(1645), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_DOLLARswitch] = ACTIONS(1645), + [anon_sym_DOLLARfor] = ACTIONS(1645), + [anon_sym_DOLLARforeach] = ACTIONS(1645), + [anon_sym_DOLLARalignof] = ACTIONS(1645), + [anon_sym_DOLLARextnameof] = ACTIONS(1645), + [anon_sym_DOLLARnameof] = ACTIONS(1645), + [anon_sym_DOLLARoffsetof] = ACTIONS(1645), + [anon_sym_DOLLARqnameof] = ACTIONS(1645), + [anon_sym_DOLLARvaconst] = ACTIONS(1645), + [anon_sym_DOLLARvaarg] = ACTIONS(1645), + [anon_sym_DOLLARvaref] = ACTIONS(1645), + [anon_sym_DOLLARvaexpr] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [anon_sym_DOLLARvacount] = ACTIONS(1645), + [anon_sym_DOLLAReval] = ACTIONS(1645), + [anon_sym_DOLLARis_const] = ACTIONS(1645), + [anon_sym_DOLLARsizeof] = ACTIONS(1645), + [anon_sym_DOLLARstringify] = ACTIONS(1645), + [anon_sym_DOLLARappend] = ACTIONS(1645), + [anon_sym_DOLLARconcat] = ACTIONS(1645), + [anon_sym_DOLLARdefined] = ACTIONS(1645), + [anon_sym_DOLLARembed] = ACTIONS(1645), + [anon_sym_DOLLARand] = ACTIONS(1645), + [anon_sym_DOLLARor] = ACTIONS(1645), + [anon_sym_DOLLARfeature] = ACTIONS(1645), + [anon_sym_DOLLARassignable] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1647), + [anon_sym_DASH_DASH] = ACTIONS(1647), + [anon_sym_typeid] = ACTIONS(1645), + [anon_sym_LBRACE_PIPE] = ACTIONS(1647), + [anon_sym_PIPE_RBRACE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_ichar] = ACTIONS(1645), + [anon_sym_short] = ACTIONS(1645), + [anon_sym_ushort] = ACTIONS(1645), + [anon_sym_uint] = ACTIONS(1645), + [anon_sym_long] = ACTIONS(1645), + [anon_sym_ulong] = ACTIONS(1645), + [anon_sym_int128] = ACTIONS(1645), + [anon_sym_uint128] = ACTIONS(1645), + [anon_sym_float] = ACTIONS(1645), + [anon_sym_double] = ACTIONS(1645), + [anon_sym_float16] = ACTIONS(1645), + [anon_sym_bfloat16] = ACTIONS(1645), + [anon_sym_float128] = ACTIONS(1645), + [anon_sym_iptr] = ACTIONS(1645), + [anon_sym_uptr] = ACTIONS(1645), + [anon_sym_isz] = ACTIONS(1645), + [anon_sym_usz] = ACTIONS(1645), + [anon_sym_anyfault] = ACTIONS(1645), + [anon_sym_any] = ACTIONS(1645), + [anon_sym_DOLLARtypeof] = ACTIONS(1645), + [anon_sym_DOLLARtypefrom] = ACTIONS(1645), + [anon_sym_DOLLARevaltype] = ACTIONS(1645), + [anon_sym_DOLLARvatype] = ACTIONS(1645), + [sym_real_literal] = ACTIONS(1647), }, - [473] = { - [sym_line_comment] = STATE(473), - [sym_doc_comment] = STATE(473), - [sym_block_comment] = STATE(473), - [sym_ident] = ACTIONS(1429), - [sym_integer_literal] = ACTIONS(1431), - [anon_sym_SQUOTE] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(1431), - [anon_sym_BQUOTE] = ACTIONS(1431), - [sym_bytes_literal] = ACTIONS(1431), + [416] = { + [sym_line_comment] = STATE(416), + [sym_doc_comment] = STATE(416), + [sym_block_comment] = STATE(416), + [sym_else_part] = STATE(571), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1429), - [sym_at_ident] = ACTIONS(1431), - [sym_hash_ident] = ACTIONS(1431), - [sym_type_ident] = ACTIONS(1431), - [sym_ct_type_ident] = ACTIONS(1431), - [sym_const_ident] = ACTIONS(1429), - [sym_builtin] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1429), - [anon_sym_tlocal] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_var] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_defer] = ACTIONS(1429), - [anon_sym_assert] = ACTIONS(1429), - [anon_sym_nextcase] = ACTIONS(1429), - [anon_sym_switch] = ACTIONS(1429), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_foreach] = ACTIONS(1429), - [anon_sym_foreach_r] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_do] = ACTIONS(1429), - [anon_sym_int] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_asm] = ACTIONS(1429), - [anon_sym_DOLLARassert] = ACTIONS(1429), - [anon_sym_DOLLARerror] = ACTIONS(1429), - [anon_sym_DOLLARecho] = ACTIONS(1429), - [anon_sym_DOLLARif] = ACTIONS(1429), - [anon_sym_DOLLARcase] = ACTIONS(1429), - [anon_sym_DOLLARdefault] = ACTIONS(1429), - [anon_sym_DOLLARswitch] = ACTIONS(1429), - [anon_sym_DOLLARendswitch] = ACTIONS(1429), - [anon_sym_DOLLARfor] = ACTIONS(1429), - [anon_sym_DOLLARforeach] = ACTIONS(1429), - [anon_sym_DOLLARalignof] = ACTIONS(1429), - [anon_sym_DOLLARextnameof] = ACTIONS(1429), - [anon_sym_DOLLARnameof] = ACTIONS(1429), - [anon_sym_DOLLARoffsetof] = ACTIONS(1429), - [anon_sym_DOLLARqnameof] = ACTIONS(1429), - [anon_sym_DOLLAReval] = ACTIONS(1429), - [anon_sym_DOLLARdefined] = ACTIONS(1429), - [anon_sym_DOLLARsizeof] = ACTIONS(1429), - [anon_sym_DOLLARstringify] = ACTIONS(1429), - [anon_sym_DOLLARis_const] = ACTIONS(1429), - [anon_sym_DOLLARvaconst] = ACTIONS(1429), - [anon_sym_DOLLARvaarg] = ACTIONS(1429), - [anon_sym_DOLLARvaref] = ACTIONS(1429), - [anon_sym_DOLLARvaexpr] = ACTIONS(1429), - [anon_sym_true] = ACTIONS(1429), - [anon_sym_false] = ACTIONS(1429), - [anon_sym_null] = ACTIONS(1429), - [anon_sym_DOLLARvacount] = ACTIONS(1429), - [anon_sym_DOLLARfeature] = ACTIONS(1429), - [anon_sym_DOLLARand] = ACTIONS(1429), - [anon_sym_DOLLARor] = ACTIONS(1429), - [anon_sym_DOLLARassignable] = ACTIONS(1429), - [anon_sym_DOLLARembed] = ACTIONS(1429), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_TILDE] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_typeid] = ACTIONS(1429), - [anon_sym_LBRACE_PIPE] = ACTIONS(1431), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_bool] = ACTIONS(1429), - [anon_sym_char] = ACTIONS(1429), - [anon_sym_ichar] = ACTIONS(1429), - [anon_sym_short] = ACTIONS(1429), - [anon_sym_ushort] = ACTIONS(1429), - [anon_sym_uint] = ACTIONS(1429), - [anon_sym_long] = ACTIONS(1429), - [anon_sym_ulong] = ACTIONS(1429), - [anon_sym_int128] = ACTIONS(1429), - [anon_sym_uint128] = ACTIONS(1429), - [anon_sym_float] = ACTIONS(1429), - [anon_sym_double] = ACTIONS(1429), - [anon_sym_float16] = ACTIONS(1429), - [anon_sym_bfloat16] = ACTIONS(1429), - [anon_sym_float128] = ACTIONS(1429), - [anon_sym_iptr] = ACTIONS(1429), - [anon_sym_uptr] = ACTIONS(1429), - [anon_sym_isz] = ACTIONS(1429), - [anon_sym_usz] = ACTIONS(1429), - [anon_sym_anyfault] = ACTIONS(1429), - [anon_sym_any] = ACTIONS(1429), - [anon_sym_DOLLARtypeof] = ACTIONS(1429), - [anon_sym_DOLLARtypefrom] = ACTIONS(1429), - [anon_sym_DOLLARvatype] = ACTIONS(1429), - [anon_sym_DOLLARevaltype] = ACTIONS(1429), - [sym_real_literal] = ACTIONS(1431), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(1649), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARendif] = ACTIONS(1357), + [anon_sym_DOLLARelse] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), }, - [474] = { - [sym_line_comment] = STATE(474), - [sym_doc_comment] = STATE(474), - [sym_block_comment] = STATE(474), - [sym_ident] = ACTIONS(1393), - [sym_integer_literal] = ACTIONS(1395), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [anon_sym_BQUOTE] = ACTIONS(1395), - [sym_bytes_literal] = ACTIONS(1395), + [417] = { + [sym_line_comment] = STATE(417), + [sym_doc_comment] = STATE(417), + [sym_block_comment] = STATE(417), + [sym_ident] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_bytes_literal] = ACTIONS(1653), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1651), + [sym_at_ident] = ACTIONS(1653), + [sym_hash_ident] = ACTIONS(1653), + [sym_type_ident] = ACTIONS(1653), + [sym_ct_type_ident] = ACTIONS(1653), + [sym_const_ident] = ACTIONS(1651), + [sym_builtin] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_static] = ACTIONS(1651), + [anon_sym_tlocal] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1653), + [anon_sym_const] = ACTIONS(1651), + [anon_sym_var] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_defer] = ACTIONS(1651), + [anon_sym_assert] = ACTIONS(1651), + [anon_sym_case] = ACTIONS(1651), + [anon_sym_default] = ACTIONS(1651), + [anon_sym_nextcase] = ACTIONS(1651), + [anon_sym_switch] = ACTIONS(1651), + [anon_sym_AMP_AMP] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_foreach] = ACTIONS(1651), + [anon_sym_foreach_r] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_int] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1653), + [anon_sym_asm] = ACTIONS(1651), + [anon_sym_DOLLARassert] = ACTIONS(1651), + [anon_sym_DOLLARerror] = ACTIONS(1651), + [anon_sym_DOLLARecho] = ACTIONS(1651), + [anon_sym_DOLLARif] = ACTIONS(1651), + [anon_sym_DOLLARswitch] = ACTIONS(1651), + [anon_sym_DOLLARfor] = ACTIONS(1651), + [anon_sym_DOLLARforeach] = ACTIONS(1651), + [anon_sym_DOLLARalignof] = ACTIONS(1651), + [anon_sym_DOLLARextnameof] = ACTIONS(1651), + [anon_sym_DOLLARnameof] = ACTIONS(1651), + [anon_sym_DOLLARoffsetof] = ACTIONS(1651), + [anon_sym_DOLLARqnameof] = ACTIONS(1651), + [anon_sym_DOLLARvaconst] = ACTIONS(1651), + [anon_sym_DOLLARvaarg] = ACTIONS(1651), + [anon_sym_DOLLARvaref] = ACTIONS(1651), + [anon_sym_DOLLARvaexpr] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_DOLLARvacount] = ACTIONS(1651), + [anon_sym_DOLLAReval] = ACTIONS(1651), + [anon_sym_DOLLARis_const] = ACTIONS(1651), + [anon_sym_DOLLARsizeof] = ACTIONS(1651), + [anon_sym_DOLLARstringify] = ACTIONS(1651), + [anon_sym_DOLLARappend] = ACTIONS(1651), + [anon_sym_DOLLARconcat] = ACTIONS(1651), + [anon_sym_DOLLARdefined] = ACTIONS(1651), + [anon_sym_DOLLARembed] = ACTIONS(1651), + [anon_sym_DOLLARand] = ACTIONS(1651), + [anon_sym_DOLLARor] = ACTIONS(1651), + [anon_sym_DOLLARfeature] = ACTIONS(1651), + [anon_sym_DOLLARassignable] = ACTIONS(1651), + [anon_sym_BANG] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_typeid] = ACTIONS(1651), + [anon_sym_LBRACE_PIPE] = ACTIONS(1653), + [anon_sym_PIPE_RBRACE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1651), + [anon_sym_bool] = ACTIONS(1651), + [anon_sym_char] = ACTIONS(1651), + [anon_sym_ichar] = ACTIONS(1651), + [anon_sym_short] = ACTIONS(1651), + [anon_sym_ushort] = ACTIONS(1651), + [anon_sym_uint] = ACTIONS(1651), + [anon_sym_long] = ACTIONS(1651), + [anon_sym_ulong] = ACTIONS(1651), + [anon_sym_int128] = ACTIONS(1651), + [anon_sym_uint128] = ACTIONS(1651), + [anon_sym_float] = ACTIONS(1651), + [anon_sym_double] = ACTIONS(1651), + [anon_sym_float16] = ACTIONS(1651), + [anon_sym_bfloat16] = ACTIONS(1651), + [anon_sym_float128] = ACTIONS(1651), + [anon_sym_iptr] = ACTIONS(1651), + [anon_sym_uptr] = ACTIONS(1651), + [anon_sym_isz] = ACTIONS(1651), + [anon_sym_usz] = ACTIONS(1651), + [anon_sym_anyfault] = ACTIONS(1651), + [anon_sym_any] = ACTIONS(1651), + [anon_sym_DOLLARtypeof] = ACTIONS(1651), + [anon_sym_DOLLARtypefrom] = ACTIONS(1651), + [anon_sym_DOLLARevaltype] = ACTIONS(1651), + [anon_sym_DOLLARvatype] = ACTIONS(1651), + [sym_real_literal] = ACTIONS(1653), + }, + [418] = { + [sym_line_comment] = STATE(418), + [sym_doc_comment] = STATE(418), + [sym_block_comment] = STATE(418), + [sym_ident] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_BQUOTE] = ACTIONS(1455), + [sym_bytes_literal] = ACTIONS(1455), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1393), - [sym_at_ident] = ACTIONS(1395), - [sym_hash_ident] = ACTIONS(1395), - [sym_type_ident] = ACTIONS(1395), - [sym_ct_type_ident] = ACTIONS(1395), - [sym_const_ident] = ACTIONS(1393), - [sym_builtin] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1393), - [anon_sym_tlocal] = ACTIONS(1393), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_fn] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_const] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(1393), - [anon_sym_return] = ACTIONS(1393), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_break] = ACTIONS(1393), - [anon_sym_defer] = ACTIONS(1393), - [anon_sym_assert] = ACTIONS(1393), - [anon_sym_nextcase] = ACTIONS(1393), - [anon_sym_switch] = ACTIONS(1393), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_foreach] = ACTIONS(1393), - [anon_sym_foreach_r] = ACTIONS(1393), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_do] = ACTIONS(1393), - [anon_sym_int] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_asm] = ACTIONS(1393), - [anon_sym_DOLLARassert] = ACTIONS(1393), - [anon_sym_DOLLARerror] = ACTIONS(1393), - [anon_sym_DOLLARecho] = ACTIONS(1393), - [anon_sym_DOLLARif] = ACTIONS(1393), - [anon_sym_DOLLARcase] = ACTIONS(1393), - [anon_sym_DOLLARdefault] = ACTIONS(1393), - [anon_sym_DOLLARswitch] = ACTIONS(1393), - [anon_sym_DOLLARendswitch] = ACTIONS(1393), - [anon_sym_DOLLARfor] = ACTIONS(1393), - [anon_sym_DOLLARforeach] = ACTIONS(1393), - [anon_sym_DOLLARalignof] = ACTIONS(1393), - [anon_sym_DOLLARextnameof] = ACTIONS(1393), - [anon_sym_DOLLARnameof] = ACTIONS(1393), - [anon_sym_DOLLARoffsetof] = ACTIONS(1393), - [anon_sym_DOLLARqnameof] = ACTIONS(1393), - [anon_sym_DOLLAReval] = ACTIONS(1393), - [anon_sym_DOLLARdefined] = ACTIONS(1393), - [anon_sym_DOLLARsizeof] = ACTIONS(1393), - [anon_sym_DOLLARstringify] = ACTIONS(1393), - [anon_sym_DOLLARis_const] = ACTIONS(1393), - [anon_sym_DOLLARvaconst] = ACTIONS(1393), - [anon_sym_DOLLARvaarg] = ACTIONS(1393), - [anon_sym_DOLLARvaref] = ACTIONS(1393), - [anon_sym_DOLLARvaexpr] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(1393), - [anon_sym_false] = ACTIONS(1393), - [anon_sym_null] = ACTIONS(1393), - [anon_sym_DOLLARvacount] = ACTIONS(1393), - [anon_sym_DOLLARfeature] = ACTIONS(1393), - [anon_sym_DOLLARand] = ACTIONS(1393), - [anon_sym_DOLLARor] = ACTIONS(1393), - [anon_sym_DOLLARassignable] = ACTIONS(1393), - [anon_sym_DOLLARembed] = ACTIONS(1393), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_DASH_DASH] = ACTIONS(1395), - [anon_sym_typeid] = ACTIONS(1393), - [anon_sym_LBRACE_PIPE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1393), - [anon_sym_bool] = ACTIONS(1393), - [anon_sym_char] = ACTIONS(1393), - [anon_sym_ichar] = ACTIONS(1393), - [anon_sym_short] = ACTIONS(1393), - [anon_sym_ushort] = ACTIONS(1393), - [anon_sym_uint] = ACTIONS(1393), - [anon_sym_long] = ACTIONS(1393), - [anon_sym_ulong] = ACTIONS(1393), - [anon_sym_int128] = ACTIONS(1393), - [anon_sym_uint128] = ACTIONS(1393), - [anon_sym_float] = ACTIONS(1393), - [anon_sym_double] = ACTIONS(1393), - [anon_sym_float16] = ACTIONS(1393), - [anon_sym_bfloat16] = ACTIONS(1393), - [anon_sym_float128] = ACTIONS(1393), - [anon_sym_iptr] = ACTIONS(1393), - [anon_sym_uptr] = ACTIONS(1393), - [anon_sym_isz] = ACTIONS(1393), - [anon_sym_usz] = ACTIONS(1393), - [anon_sym_anyfault] = ACTIONS(1393), - [anon_sym_any] = ACTIONS(1393), - [anon_sym_DOLLARtypeof] = ACTIONS(1393), - [anon_sym_DOLLARtypefrom] = ACTIONS(1393), - [anon_sym_DOLLARvatype] = ACTIONS(1393), - [anon_sym_DOLLARevaltype] = ACTIONS(1393), - [sym_real_literal] = ACTIONS(1395), + [sym_ct_ident] = ACTIONS(1453), + [sym_at_ident] = ACTIONS(1455), + [sym_hash_ident] = ACTIONS(1455), + [sym_type_ident] = ACTIONS(1455), + [sym_ct_type_ident] = ACTIONS(1455), + [sym_const_ident] = ACTIONS(1453), + [sym_builtin] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_tlocal] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_defer] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_nextcase] = ACTIONS(1453), + [anon_sym_switch] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_foreach] = ACTIONS(1453), + [anon_sym_foreach_r] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_asm] = ACTIONS(1453), + [anon_sym_DOLLARassert] = ACTIONS(1453), + [anon_sym_DOLLARerror] = ACTIONS(1453), + [anon_sym_DOLLARecho] = ACTIONS(1453), + [anon_sym_DOLLARif] = ACTIONS(1453), + [anon_sym_DOLLARcase] = ACTIONS(1453), + [anon_sym_DOLLARdefault] = ACTIONS(1453), + [anon_sym_DOLLARswitch] = ACTIONS(1453), + [anon_sym_DOLLARendswitch] = ACTIONS(1453), + [anon_sym_DOLLARfor] = ACTIONS(1453), + [anon_sym_DOLLARforeach] = ACTIONS(1453), + [anon_sym_DOLLARalignof] = ACTIONS(1453), + [anon_sym_DOLLARextnameof] = ACTIONS(1453), + [anon_sym_DOLLARnameof] = ACTIONS(1453), + [anon_sym_DOLLARoffsetof] = ACTIONS(1453), + [anon_sym_DOLLARqnameof] = ACTIONS(1453), + [anon_sym_DOLLARvaconst] = ACTIONS(1453), + [anon_sym_DOLLARvaarg] = ACTIONS(1453), + [anon_sym_DOLLARvaref] = ACTIONS(1453), + [anon_sym_DOLLARvaexpr] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_DOLLARvacount] = ACTIONS(1453), + [anon_sym_DOLLAReval] = ACTIONS(1453), + [anon_sym_DOLLARis_const] = ACTIONS(1453), + [anon_sym_DOLLARsizeof] = ACTIONS(1453), + [anon_sym_DOLLARstringify] = ACTIONS(1453), + [anon_sym_DOLLARappend] = ACTIONS(1453), + [anon_sym_DOLLARconcat] = ACTIONS(1453), + [anon_sym_DOLLARdefined] = ACTIONS(1453), + [anon_sym_DOLLARembed] = ACTIONS(1453), + [anon_sym_DOLLARand] = ACTIONS(1453), + [anon_sym_DOLLARor] = ACTIONS(1453), + [anon_sym_DOLLARfeature] = ACTIONS(1453), + [anon_sym_DOLLARassignable] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_typeid] = ACTIONS(1453), + [anon_sym_LBRACE_PIPE] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1453), + [anon_sym_bool] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_ichar] = ACTIONS(1453), + [anon_sym_short] = ACTIONS(1453), + [anon_sym_ushort] = ACTIONS(1453), + [anon_sym_uint] = ACTIONS(1453), + [anon_sym_long] = ACTIONS(1453), + [anon_sym_ulong] = ACTIONS(1453), + [anon_sym_int128] = ACTIONS(1453), + [anon_sym_uint128] = ACTIONS(1453), + [anon_sym_float] = ACTIONS(1453), + [anon_sym_double] = ACTIONS(1453), + [anon_sym_float16] = ACTIONS(1453), + [anon_sym_bfloat16] = ACTIONS(1453), + [anon_sym_float128] = ACTIONS(1453), + [anon_sym_iptr] = ACTIONS(1453), + [anon_sym_uptr] = ACTIONS(1453), + [anon_sym_isz] = ACTIONS(1453), + [anon_sym_usz] = ACTIONS(1453), + [anon_sym_anyfault] = ACTIONS(1453), + [anon_sym_any] = ACTIONS(1453), + [anon_sym_DOLLARtypeof] = ACTIONS(1453), + [anon_sym_DOLLARtypefrom] = ACTIONS(1453), + [anon_sym_DOLLARevaltype] = ACTIONS(1453), + [anon_sym_DOLLARvatype] = ACTIONS(1453), + [sym_real_literal] = ACTIONS(1455), }, - [475] = { - [sym_line_comment] = STATE(475), - [sym_doc_comment] = STATE(475), - [sym_block_comment] = STATE(475), + [419] = { + [sym_line_comment] = STATE(419), + [sym_doc_comment] = STATE(419), + [sym_block_comment] = STATE(419), + [sym_ident] = ACTIONS(1421), + [sym_integer_literal] = ACTIONS(1423), + [anon_sym_SQUOTE] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(1423), + [anon_sym_BQUOTE] = ACTIONS(1423), + [sym_bytes_literal] = ACTIONS(1423), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1421), + [sym_at_ident] = ACTIONS(1423), + [sym_hash_ident] = ACTIONS(1423), + [sym_type_ident] = ACTIONS(1423), + [sym_ct_type_ident] = ACTIONS(1423), + [sym_const_ident] = ACTIONS(1421), + [sym_builtin] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_tlocal] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1423), + [anon_sym_fn] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_defer] = ACTIONS(1421), + [anon_sym_assert] = ACTIONS(1421), + [anon_sym_nextcase] = ACTIONS(1421), + [anon_sym_switch] = ACTIONS(1421), + [anon_sym_AMP_AMP] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_foreach] = ACTIONS(1421), + [anon_sym_foreach_r] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_int] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_asm] = ACTIONS(1421), + [anon_sym_DOLLARassert] = ACTIONS(1421), + [anon_sym_DOLLARerror] = ACTIONS(1421), + [anon_sym_DOLLARecho] = ACTIONS(1421), + [anon_sym_DOLLARif] = ACTIONS(1421), + [anon_sym_DOLLARcase] = ACTIONS(1421), + [anon_sym_DOLLARdefault] = ACTIONS(1421), + [anon_sym_DOLLARswitch] = ACTIONS(1421), + [anon_sym_DOLLARendswitch] = ACTIONS(1421), + [anon_sym_DOLLARfor] = ACTIONS(1421), + [anon_sym_DOLLARforeach] = ACTIONS(1421), + [anon_sym_DOLLARalignof] = ACTIONS(1421), + [anon_sym_DOLLARextnameof] = ACTIONS(1421), + [anon_sym_DOLLARnameof] = ACTIONS(1421), + [anon_sym_DOLLARoffsetof] = ACTIONS(1421), + [anon_sym_DOLLARqnameof] = ACTIONS(1421), + [anon_sym_DOLLARvaconst] = ACTIONS(1421), + [anon_sym_DOLLARvaarg] = ACTIONS(1421), + [anon_sym_DOLLARvaref] = ACTIONS(1421), + [anon_sym_DOLLARvaexpr] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [anon_sym_null] = ACTIONS(1421), + [anon_sym_DOLLARvacount] = ACTIONS(1421), + [anon_sym_DOLLAReval] = ACTIONS(1421), + [anon_sym_DOLLARis_const] = ACTIONS(1421), + [anon_sym_DOLLARsizeof] = ACTIONS(1421), + [anon_sym_DOLLARstringify] = ACTIONS(1421), + [anon_sym_DOLLARappend] = ACTIONS(1421), + [anon_sym_DOLLARconcat] = ACTIONS(1421), + [anon_sym_DOLLARdefined] = ACTIONS(1421), + [anon_sym_DOLLARembed] = ACTIONS(1421), + [anon_sym_DOLLARand] = ACTIONS(1421), + [anon_sym_DOLLARor] = ACTIONS(1421), + [anon_sym_DOLLARfeature] = ACTIONS(1421), + [anon_sym_DOLLARassignable] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(1423), + [anon_sym_PLUS_PLUS] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1423), + [anon_sym_typeid] = ACTIONS(1421), + [anon_sym_LBRACE_PIPE] = ACTIONS(1423), + [anon_sym_void] = ACTIONS(1421), + [anon_sym_bool] = ACTIONS(1421), + [anon_sym_char] = ACTIONS(1421), + [anon_sym_ichar] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_ushort] = ACTIONS(1421), + [anon_sym_uint] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_ulong] = ACTIONS(1421), + [anon_sym_int128] = ACTIONS(1421), + [anon_sym_uint128] = ACTIONS(1421), + [anon_sym_float] = ACTIONS(1421), + [anon_sym_double] = ACTIONS(1421), + [anon_sym_float16] = ACTIONS(1421), + [anon_sym_bfloat16] = ACTIONS(1421), + [anon_sym_float128] = ACTIONS(1421), + [anon_sym_iptr] = ACTIONS(1421), + [anon_sym_uptr] = ACTIONS(1421), + [anon_sym_isz] = ACTIONS(1421), + [anon_sym_usz] = ACTIONS(1421), + [anon_sym_anyfault] = ACTIONS(1421), + [anon_sym_any] = ACTIONS(1421), + [anon_sym_DOLLARtypeof] = ACTIONS(1421), + [anon_sym_DOLLARtypefrom] = ACTIONS(1421), + [anon_sym_DOLLARevaltype] = ACTIONS(1421), + [anon_sym_DOLLARvatype] = ACTIONS(1421), + [sym_real_literal] = ACTIONS(1423), + }, + [420] = { + [sym_line_comment] = STATE(420), + [sym_doc_comment] = STATE(420), + [sym_block_comment] = STATE(420), [sym_ident] = ACTIONS(1425), [sym_integer_literal] = ACTIONS(1427), [anon_sym_SQUOTE] = ACTIONS(1427), @@ -80220,7 +73643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1427), [sym_bytes_literal] = ACTIONS(1427), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1425), [sym_at_ident] = ACTIONS(1427), @@ -80272,11 +73695,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1425), [anon_sym_DOLLARoffsetof] = ACTIONS(1425), [anon_sym_DOLLARqnameof] = ACTIONS(1425), - [anon_sym_DOLLAReval] = ACTIONS(1425), - [anon_sym_DOLLARdefined] = ACTIONS(1425), - [anon_sym_DOLLARsizeof] = ACTIONS(1425), - [anon_sym_DOLLARstringify] = ACTIONS(1425), - [anon_sym_DOLLARis_const] = ACTIONS(1425), [anon_sym_DOLLARvaconst] = ACTIONS(1425), [anon_sym_DOLLARvaarg] = ACTIONS(1425), [anon_sym_DOLLARvaref] = ACTIONS(1425), @@ -80285,11 +73703,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1425), [anon_sym_null] = ACTIONS(1425), [anon_sym_DOLLARvacount] = ACTIONS(1425), - [anon_sym_DOLLARfeature] = ACTIONS(1425), + [anon_sym_DOLLAReval] = ACTIONS(1425), + [anon_sym_DOLLARis_const] = ACTIONS(1425), + [anon_sym_DOLLARsizeof] = ACTIONS(1425), + [anon_sym_DOLLARstringify] = ACTIONS(1425), + [anon_sym_DOLLARappend] = ACTIONS(1425), + [anon_sym_DOLLARconcat] = ACTIONS(1425), + [anon_sym_DOLLARdefined] = ACTIONS(1425), + [anon_sym_DOLLARembed] = ACTIONS(1425), [anon_sym_DOLLARand] = ACTIONS(1425), [anon_sym_DOLLARor] = ACTIONS(1425), + [anon_sym_DOLLARfeature] = ACTIONS(1425), [anon_sym_DOLLARassignable] = ACTIONS(1425), - [anon_sym_DOLLARembed] = ACTIONS(1425), [anon_sym_BANG] = ACTIONS(1427), [anon_sym_TILDE] = ACTIONS(1427), [anon_sym_PLUS_PLUS] = ACTIONS(1427), @@ -80320,474 +73745,482 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1425), [anon_sym_DOLLARtypeof] = ACTIONS(1425), [anon_sym_DOLLARtypefrom] = ACTIONS(1425), - [anon_sym_DOLLARvatype] = ACTIONS(1425), [anon_sym_DOLLARevaltype] = ACTIONS(1425), + [anon_sym_DOLLARvatype] = ACTIONS(1425), [sym_real_literal] = ACTIONS(1427), }, - [476] = { - [sym_line_comment] = STATE(476), - [sym_doc_comment] = STATE(476), - [sym_block_comment] = STATE(476), - [sym_ident] = ACTIONS(1397), - [sym_integer_literal] = ACTIONS(1399), - [anon_sym_SQUOTE] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [anon_sym_BQUOTE] = ACTIONS(1399), - [sym_bytes_literal] = ACTIONS(1399), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1397), - [sym_at_ident] = ACTIONS(1399), - [sym_hash_ident] = ACTIONS(1399), - [sym_type_ident] = ACTIONS(1399), - [sym_ct_type_ident] = ACTIONS(1399), - [sym_const_ident] = ACTIONS(1397), - [sym_builtin] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_tlocal] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_fn] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_var] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_defer] = ACTIONS(1397), - [anon_sym_assert] = ACTIONS(1397), - [anon_sym_nextcase] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1397), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_foreach] = ACTIONS(1397), - [anon_sym_foreach_r] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_int] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_asm] = ACTIONS(1397), - [anon_sym_DOLLARassert] = ACTIONS(1397), - [anon_sym_DOLLARerror] = ACTIONS(1397), - [anon_sym_DOLLARecho] = ACTIONS(1397), - [anon_sym_DOLLARif] = ACTIONS(1397), - [anon_sym_DOLLARcase] = ACTIONS(1397), - [anon_sym_DOLLARdefault] = ACTIONS(1397), - [anon_sym_DOLLARswitch] = ACTIONS(1397), - [anon_sym_DOLLARendswitch] = ACTIONS(1397), - [anon_sym_DOLLARfor] = ACTIONS(1397), - [anon_sym_DOLLARforeach] = ACTIONS(1397), - [anon_sym_DOLLARalignof] = ACTIONS(1397), - [anon_sym_DOLLARextnameof] = ACTIONS(1397), - [anon_sym_DOLLARnameof] = ACTIONS(1397), - [anon_sym_DOLLARoffsetof] = ACTIONS(1397), - [anon_sym_DOLLARqnameof] = ACTIONS(1397), - [anon_sym_DOLLAReval] = ACTIONS(1397), - [anon_sym_DOLLARdefined] = ACTIONS(1397), - [anon_sym_DOLLARsizeof] = ACTIONS(1397), - [anon_sym_DOLLARstringify] = ACTIONS(1397), - [anon_sym_DOLLARis_const] = ACTIONS(1397), - [anon_sym_DOLLARvaconst] = ACTIONS(1397), - [anon_sym_DOLLARvaarg] = ACTIONS(1397), - [anon_sym_DOLLARvaref] = ACTIONS(1397), - [anon_sym_DOLLARvaexpr] = ACTIONS(1397), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [anon_sym_null] = ACTIONS(1397), - [anon_sym_DOLLARvacount] = ACTIONS(1397), - [anon_sym_DOLLARfeature] = ACTIONS(1397), - [anon_sym_DOLLARand] = ACTIONS(1397), - [anon_sym_DOLLARor] = ACTIONS(1397), - [anon_sym_DOLLARassignable] = ACTIONS(1397), - [anon_sym_DOLLARembed] = ACTIONS(1397), - [anon_sym_BANG] = ACTIONS(1399), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(1399), - [anon_sym_typeid] = ACTIONS(1397), - [anon_sym_LBRACE_PIPE] = ACTIONS(1399), - [anon_sym_void] = ACTIONS(1397), - [anon_sym_bool] = ACTIONS(1397), - [anon_sym_char] = ACTIONS(1397), - [anon_sym_ichar] = ACTIONS(1397), - [anon_sym_short] = ACTIONS(1397), - [anon_sym_ushort] = ACTIONS(1397), - [anon_sym_uint] = ACTIONS(1397), - [anon_sym_long] = ACTIONS(1397), - [anon_sym_ulong] = ACTIONS(1397), - [anon_sym_int128] = ACTIONS(1397), - [anon_sym_uint128] = ACTIONS(1397), - [anon_sym_float] = ACTIONS(1397), - [anon_sym_double] = ACTIONS(1397), - [anon_sym_float16] = ACTIONS(1397), - [anon_sym_bfloat16] = ACTIONS(1397), - [anon_sym_float128] = ACTIONS(1397), - [anon_sym_iptr] = ACTIONS(1397), - [anon_sym_uptr] = ACTIONS(1397), - [anon_sym_isz] = ACTIONS(1397), - [anon_sym_usz] = ACTIONS(1397), - [anon_sym_anyfault] = ACTIONS(1397), - [anon_sym_any] = ACTIONS(1397), - [anon_sym_DOLLARtypeof] = ACTIONS(1397), - [anon_sym_DOLLARtypefrom] = ACTIONS(1397), - [anon_sym_DOLLARvatype] = ACTIONS(1397), - [anon_sym_DOLLARevaltype] = ACTIONS(1397), - [sym_real_literal] = ACTIONS(1399), - }, - [477] = { - [sym_line_comment] = STATE(477), - [sym_doc_comment] = STATE(477), - [sym_block_comment] = STATE(477), - [sym_ident] = ACTIONS(1503), - [sym_integer_literal] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_BQUOTE] = ACTIONS(1505), - [sym_bytes_literal] = ACTIONS(1505), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1503), - [sym_at_ident] = ACTIONS(1505), - [sym_hash_ident] = ACTIONS(1505), - [sym_type_ident] = ACTIONS(1505), - [sym_ct_type_ident] = ACTIONS(1505), - [sym_const_ident] = ACTIONS(1503), - [sym_builtin] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1503), - [anon_sym_tlocal] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym_fn] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_var] = ACTIONS(1503), - [anon_sym_return] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1503), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_defer] = ACTIONS(1503), - [anon_sym_assert] = ACTIONS(1503), - [anon_sym_nextcase] = ACTIONS(1503), - [anon_sym_switch] = ACTIONS(1503), - [anon_sym_AMP_AMP] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1503), - [anon_sym_for] = ACTIONS(1503), - [anon_sym_foreach] = ACTIONS(1503), - [anon_sym_foreach_r] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_do] = ACTIONS(1503), - [anon_sym_int] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_asm] = ACTIONS(1503), - [anon_sym_DOLLARassert] = ACTIONS(1503), - [anon_sym_DOLLARerror] = ACTIONS(1503), - [anon_sym_DOLLARecho] = ACTIONS(1503), - [anon_sym_DOLLARif] = ACTIONS(1503), - [anon_sym_DOLLARcase] = ACTIONS(1503), - [anon_sym_DOLLARdefault] = ACTIONS(1503), - [anon_sym_DOLLARswitch] = ACTIONS(1503), - [anon_sym_DOLLARendswitch] = ACTIONS(1503), - [anon_sym_DOLLARfor] = ACTIONS(1503), - [anon_sym_DOLLARforeach] = ACTIONS(1503), - [anon_sym_DOLLARalignof] = ACTIONS(1503), - [anon_sym_DOLLARextnameof] = ACTIONS(1503), - [anon_sym_DOLLARnameof] = ACTIONS(1503), - [anon_sym_DOLLARoffsetof] = ACTIONS(1503), - [anon_sym_DOLLARqnameof] = ACTIONS(1503), - [anon_sym_DOLLAReval] = ACTIONS(1503), - [anon_sym_DOLLARdefined] = ACTIONS(1503), - [anon_sym_DOLLARsizeof] = ACTIONS(1503), - [anon_sym_DOLLARstringify] = ACTIONS(1503), - [anon_sym_DOLLARis_const] = ACTIONS(1503), - [anon_sym_DOLLARvaconst] = ACTIONS(1503), - [anon_sym_DOLLARvaarg] = ACTIONS(1503), - [anon_sym_DOLLARvaref] = ACTIONS(1503), - [anon_sym_DOLLARvaexpr] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1503), - [anon_sym_false] = ACTIONS(1503), - [anon_sym_null] = ACTIONS(1503), - [anon_sym_DOLLARvacount] = ACTIONS(1503), - [anon_sym_DOLLARfeature] = ACTIONS(1503), - [anon_sym_DOLLARand] = ACTIONS(1503), - [anon_sym_DOLLARor] = ACTIONS(1503), - [anon_sym_DOLLARassignable] = ACTIONS(1503), - [anon_sym_DOLLARembed] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1505), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [anon_sym_typeid] = ACTIONS(1503), - [anon_sym_LBRACE_PIPE] = ACTIONS(1505), - [anon_sym_void] = ACTIONS(1503), - [anon_sym_bool] = ACTIONS(1503), - [anon_sym_char] = ACTIONS(1503), - [anon_sym_ichar] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [anon_sym_ushort] = ACTIONS(1503), - [anon_sym_uint] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_ulong] = ACTIONS(1503), - [anon_sym_int128] = ACTIONS(1503), - [anon_sym_uint128] = ACTIONS(1503), - [anon_sym_float] = ACTIONS(1503), - [anon_sym_double] = ACTIONS(1503), - [anon_sym_float16] = ACTIONS(1503), - [anon_sym_bfloat16] = ACTIONS(1503), - [anon_sym_float128] = ACTIONS(1503), - [anon_sym_iptr] = ACTIONS(1503), - [anon_sym_uptr] = ACTIONS(1503), - [anon_sym_isz] = ACTIONS(1503), - [anon_sym_usz] = ACTIONS(1503), - [anon_sym_anyfault] = ACTIONS(1503), - [anon_sym_any] = ACTIONS(1503), - [anon_sym_DOLLARtypeof] = ACTIONS(1503), - [anon_sym_DOLLARtypefrom] = ACTIONS(1503), - [anon_sym_DOLLARvatype] = ACTIONS(1503), - [anon_sym_DOLLARevaltype] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1505), - }, - [478] = { - [sym_line_comment] = STATE(478), - [sym_doc_comment] = STATE(478), - [sym_block_comment] = STATE(478), - [sym_ident] = ACTIONS(1401), - [sym_integer_literal] = ACTIONS(1403), - [anon_sym_SQUOTE] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [anon_sym_BQUOTE] = ACTIONS(1403), - [sym_bytes_literal] = ACTIONS(1403), + [421] = { + [sym_line_comment] = STATE(421), + [sym_doc_comment] = STATE(421), + [sym_block_comment] = STATE(421), + [sym_ident] = ACTIONS(1429), + [sym_integer_literal] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [anon_sym_BQUOTE] = ACTIONS(1431), + [sym_bytes_literal] = ACTIONS(1431), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1401), - [sym_at_ident] = ACTIONS(1403), - [sym_hash_ident] = ACTIONS(1403), - [sym_type_ident] = ACTIONS(1403), - [sym_ct_type_ident] = ACTIONS(1403), - [sym_const_ident] = ACTIONS(1401), - [sym_builtin] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_tlocal] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1403), - [anon_sym_fn] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1401), - [anon_sym_var] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_assert] = ACTIONS(1401), - [anon_sym_nextcase] = ACTIONS(1401), - [anon_sym_switch] = ACTIONS(1401), - [anon_sym_AMP_AMP] = ACTIONS(1403), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_foreach] = ACTIONS(1401), - [anon_sym_foreach_r] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_do] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_asm] = ACTIONS(1401), - [anon_sym_DOLLARassert] = ACTIONS(1401), - [anon_sym_DOLLARerror] = ACTIONS(1401), - [anon_sym_DOLLARecho] = ACTIONS(1401), - [anon_sym_DOLLARif] = ACTIONS(1401), - [anon_sym_DOLLARcase] = ACTIONS(1401), - [anon_sym_DOLLARdefault] = ACTIONS(1401), - [anon_sym_DOLLARswitch] = ACTIONS(1401), - [anon_sym_DOLLARendswitch] = ACTIONS(1401), - [anon_sym_DOLLARfor] = ACTIONS(1401), - [anon_sym_DOLLARforeach] = ACTIONS(1401), - [anon_sym_DOLLARalignof] = ACTIONS(1401), - [anon_sym_DOLLARextnameof] = ACTIONS(1401), - [anon_sym_DOLLARnameof] = ACTIONS(1401), - [anon_sym_DOLLARoffsetof] = ACTIONS(1401), - [anon_sym_DOLLARqnameof] = ACTIONS(1401), - [anon_sym_DOLLAReval] = ACTIONS(1401), - [anon_sym_DOLLARdefined] = ACTIONS(1401), - [anon_sym_DOLLARsizeof] = ACTIONS(1401), - [anon_sym_DOLLARstringify] = ACTIONS(1401), - [anon_sym_DOLLARis_const] = ACTIONS(1401), - [anon_sym_DOLLARvaconst] = ACTIONS(1401), - [anon_sym_DOLLARvaarg] = ACTIONS(1401), - [anon_sym_DOLLARvaref] = ACTIONS(1401), - [anon_sym_DOLLARvaexpr] = ACTIONS(1401), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_DOLLARvacount] = ACTIONS(1401), - [anon_sym_DOLLARfeature] = ACTIONS(1401), - [anon_sym_DOLLARand] = ACTIONS(1401), - [anon_sym_DOLLARor] = ACTIONS(1401), - [anon_sym_DOLLARassignable] = ACTIONS(1401), - [anon_sym_DOLLARembed] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_typeid] = ACTIONS(1401), - [anon_sym_LBRACE_PIPE] = ACTIONS(1403), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_char] = ACTIONS(1401), - [anon_sym_ichar] = ACTIONS(1401), - [anon_sym_short] = ACTIONS(1401), - [anon_sym_ushort] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_long] = ACTIONS(1401), - [anon_sym_ulong] = ACTIONS(1401), - [anon_sym_int128] = ACTIONS(1401), - [anon_sym_uint128] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_double] = ACTIONS(1401), - [anon_sym_float16] = ACTIONS(1401), - [anon_sym_bfloat16] = ACTIONS(1401), - [anon_sym_float128] = ACTIONS(1401), - [anon_sym_iptr] = ACTIONS(1401), - [anon_sym_uptr] = ACTIONS(1401), - [anon_sym_isz] = ACTIONS(1401), - [anon_sym_usz] = ACTIONS(1401), - [anon_sym_anyfault] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_DOLLARtypeof] = ACTIONS(1401), - [anon_sym_DOLLARtypefrom] = ACTIONS(1401), - [anon_sym_DOLLARvatype] = ACTIONS(1401), - [anon_sym_DOLLARevaltype] = ACTIONS(1401), - [sym_real_literal] = ACTIONS(1403), + [sym_ct_ident] = ACTIONS(1429), + [sym_at_ident] = ACTIONS(1431), + [sym_hash_ident] = ACTIONS(1431), + [sym_type_ident] = ACTIONS(1431), + [sym_ct_type_ident] = ACTIONS(1431), + [sym_const_ident] = ACTIONS(1429), + [sym_builtin] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1429), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_tlocal] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_fn] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_var] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_defer] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1429), + [anon_sym_nextcase] = ACTIONS(1429), + [anon_sym_switch] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_foreach] = ACTIONS(1429), + [anon_sym_foreach_r] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_int] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_asm] = ACTIONS(1429), + [anon_sym_DOLLARassert] = ACTIONS(1429), + [anon_sym_DOLLARerror] = ACTIONS(1429), + [anon_sym_DOLLARecho] = ACTIONS(1429), + [anon_sym_DOLLARif] = ACTIONS(1429), + [anon_sym_DOLLARcase] = ACTIONS(1429), + [anon_sym_DOLLARdefault] = ACTIONS(1429), + [anon_sym_DOLLARswitch] = ACTIONS(1429), + [anon_sym_DOLLARendswitch] = ACTIONS(1429), + [anon_sym_DOLLARfor] = ACTIONS(1429), + [anon_sym_DOLLARforeach] = ACTIONS(1429), + [anon_sym_DOLLARalignof] = ACTIONS(1429), + [anon_sym_DOLLARextnameof] = ACTIONS(1429), + [anon_sym_DOLLARnameof] = ACTIONS(1429), + [anon_sym_DOLLARoffsetof] = ACTIONS(1429), + [anon_sym_DOLLARqnameof] = ACTIONS(1429), + [anon_sym_DOLLARvaconst] = ACTIONS(1429), + [anon_sym_DOLLARvaarg] = ACTIONS(1429), + [anon_sym_DOLLARvaref] = ACTIONS(1429), + [anon_sym_DOLLARvaexpr] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1429), + [anon_sym_DOLLARvacount] = ACTIONS(1429), + [anon_sym_DOLLAReval] = ACTIONS(1429), + [anon_sym_DOLLARis_const] = ACTIONS(1429), + [anon_sym_DOLLARsizeof] = ACTIONS(1429), + [anon_sym_DOLLARstringify] = ACTIONS(1429), + [anon_sym_DOLLARappend] = ACTIONS(1429), + [anon_sym_DOLLARconcat] = ACTIONS(1429), + [anon_sym_DOLLARdefined] = ACTIONS(1429), + [anon_sym_DOLLARembed] = ACTIONS(1429), + [anon_sym_DOLLARand] = ACTIONS(1429), + [anon_sym_DOLLARor] = ACTIONS(1429), + [anon_sym_DOLLARfeature] = ACTIONS(1429), + [anon_sym_DOLLARassignable] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_typeid] = ACTIONS(1429), + [anon_sym_LBRACE_PIPE] = ACTIONS(1431), + [anon_sym_void] = ACTIONS(1429), + [anon_sym_bool] = ACTIONS(1429), + [anon_sym_char] = ACTIONS(1429), + [anon_sym_ichar] = ACTIONS(1429), + [anon_sym_short] = ACTIONS(1429), + [anon_sym_ushort] = ACTIONS(1429), + [anon_sym_uint] = ACTIONS(1429), + [anon_sym_long] = ACTIONS(1429), + [anon_sym_ulong] = ACTIONS(1429), + [anon_sym_int128] = ACTIONS(1429), + [anon_sym_uint128] = ACTIONS(1429), + [anon_sym_float] = ACTIONS(1429), + [anon_sym_double] = ACTIONS(1429), + [anon_sym_float16] = ACTIONS(1429), + [anon_sym_bfloat16] = ACTIONS(1429), + [anon_sym_float128] = ACTIONS(1429), + [anon_sym_iptr] = ACTIONS(1429), + [anon_sym_uptr] = ACTIONS(1429), + [anon_sym_isz] = ACTIONS(1429), + [anon_sym_usz] = ACTIONS(1429), + [anon_sym_anyfault] = ACTIONS(1429), + [anon_sym_any] = ACTIONS(1429), + [anon_sym_DOLLARtypeof] = ACTIONS(1429), + [anon_sym_DOLLARtypefrom] = ACTIONS(1429), + [anon_sym_DOLLARevaltype] = ACTIONS(1429), + [anon_sym_DOLLARvatype] = ACTIONS(1429), + [sym_real_literal] = ACTIONS(1431), }, - [479] = { - [sym_line_comment] = STATE(479), - [sym_doc_comment] = STATE(479), - [sym_block_comment] = STATE(479), - [sym_ident] = ACTIONS(1535), - [sym_integer_literal] = ACTIONS(1537), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [anon_sym_BQUOTE] = ACTIONS(1537), - [sym_bytes_literal] = ACTIONS(1537), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1535), - [sym_at_ident] = ACTIONS(1537), - [sym_hash_ident] = ACTIONS(1537), - [sym_type_ident] = ACTIONS(1537), - [sym_ct_type_ident] = ACTIONS(1537), - [sym_const_ident] = ACTIONS(1535), - [sym_builtin] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_tlocal] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_fn] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [anon_sym_var] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_defer] = ACTIONS(1535), - [anon_sym_assert] = ACTIONS(1535), - [anon_sym_nextcase] = ACTIONS(1535), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_foreach] = ACTIONS(1535), - [anon_sym_foreach_r] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_int] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_asm] = ACTIONS(1535), - [anon_sym_DOLLARassert] = ACTIONS(1535), - [anon_sym_DOLLARerror] = ACTIONS(1535), - [anon_sym_DOLLARecho] = ACTIONS(1535), - [anon_sym_DOLLARif] = ACTIONS(1535), - [anon_sym_DOLLARcase] = ACTIONS(1535), - [anon_sym_DOLLARdefault] = ACTIONS(1535), - [anon_sym_DOLLARswitch] = ACTIONS(1535), - [anon_sym_DOLLARendswitch] = ACTIONS(1535), - [anon_sym_DOLLARfor] = ACTIONS(1535), - [anon_sym_DOLLARforeach] = ACTIONS(1535), - [anon_sym_DOLLARalignof] = ACTIONS(1535), - [anon_sym_DOLLARextnameof] = ACTIONS(1535), - [anon_sym_DOLLARnameof] = ACTIONS(1535), - [anon_sym_DOLLARoffsetof] = ACTIONS(1535), - [anon_sym_DOLLARqnameof] = ACTIONS(1535), - [anon_sym_DOLLAReval] = ACTIONS(1535), - [anon_sym_DOLLARdefined] = ACTIONS(1535), - [anon_sym_DOLLARsizeof] = ACTIONS(1535), - [anon_sym_DOLLARstringify] = ACTIONS(1535), - [anon_sym_DOLLARis_const] = ACTIONS(1535), - [anon_sym_DOLLARvaconst] = ACTIONS(1535), - [anon_sym_DOLLARvaarg] = ACTIONS(1535), - [anon_sym_DOLLARvaref] = ACTIONS(1535), - [anon_sym_DOLLARvaexpr] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1535), - [anon_sym_false] = ACTIONS(1535), - [anon_sym_null] = ACTIONS(1535), - [anon_sym_DOLLARvacount] = ACTIONS(1535), - [anon_sym_DOLLARfeature] = ACTIONS(1535), - [anon_sym_DOLLARand] = ACTIONS(1535), - [anon_sym_DOLLARor] = ACTIONS(1535), - [anon_sym_DOLLARassignable] = ACTIONS(1535), - [anon_sym_DOLLARembed] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_typeid] = ACTIONS(1535), - [anon_sym_LBRACE_PIPE] = ACTIONS(1537), - [anon_sym_void] = ACTIONS(1535), - [anon_sym_bool] = ACTIONS(1535), - [anon_sym_char] = ACTIONS(1535), - [anon_sym_ichar] = ACTIONS(1535), - [anon_sym_short] = ACTIONS(1535), - [anon_sym_ushort] = ACTIONS(1535), - [anon_sym_uint] = ACTIONS(1535), - [anon_sym_long] = ACTIONS(1535), - [anon_sym_ulong] = ACTIONS(1535), - [anon_sym_int128] = ACTIONS(1535), - [anon_sym_uint128] = ACTIONS(1535), - [anon_sym_float] = ACTIONS(1535), - [anon_sym_double] = ACTIONS(1535), - [anon_sym_float16] = ACTIONS(1535), - [anon_sym_bfloat16] = ACTIONS(1535), - [anon_sym_float128] = ACTIONS(1535), - [anon_sym_iptr] = ACTIONS(1535), - [anon_sym_uptr] = ACTIONS(1535), - [anon_sym_isz] = ACTIONS(1535), - [anon_sym_usz] = ACTIONS(1535), - [anon_sym_anyfault] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_DOLLARtypeof] = ACTIONS(1535), - [anon_sym_DOLLARtypefrom] = ACTIONS(1535), - [anon_sym_DOLLARvatype] = ACTIONS(1535), - [anon_sym_DOLLARevaltype] = ACTIONS(1535), - [sym_real_literal] = ACTIONS(1537), + [422] = { + [sym_line_comment] = STATE(422), + [sym_doc_comment] = STATE(422), + [sym_block_comment] = STATE(422), + [sym_ident] = ACTIONS(1363), + [sym_integer_literal] = ACTIONS(1365), + [anon_sym_SQUOTE] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(1365), + [anon_sym_BQUOTE] = ACTIONS(1365), + [sym_bytes_literal] = ACTIONS(1365), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1363), + [sym_at_ident] = ACTIONS(1365), + [sym_hash_ident] = ACTIONS(1365), + [sym_type_ident] = ACTIONS(1365), + [sym_ct_type_ident] = ACTIONS(1365), + [sym_const_ident] = ACTIONS(1363), + [sym_builtin] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_tlocal] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_var] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_defer] = ACTIONS(1363), + [anon_sym_assert] = ACTIONS(1363), + [anon_sym_nextcase] = ACTIONS(1363), + [anon_sym_switch] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_else] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_foreach] = ACTIONS(1363), + [anon_sym_foreach_r] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_int] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1363), + [anon_sym_DOLLARassert] = ACTIONS(1363), + [anon_sym_DOLLARerror] = ACTIONS(1363), + [anon_sym_DOLLARecho] = ACTIONS(1363), + [anon_sym_DOLLARif] = ACTIONS(1363), + [anon_sym_DOLLARendif] = ACTIONS(1363), + [anon_sym_DOLLARelse] = ACTIONS(1363), + [anon_sym_DOLLARswitch] = ACTIONS(1363), + [anon_sym_DOLLARfor] = ACTIONS(1363), + [anon_sym_DOLLARforeach] = ACTIONS(1363), + [anon_sym_DOLLARalignof] = ACTIONS(1363), + [anon_sym_DOLLARextnameof] = ACTIONS(1363), + [anon_sym_DOLLARnameof] = ACTIONS(1363), + [anon_sym_DOLLARoffsetof] = ACTIONS(1363), + [anon_sym_DOLLARqnameof] = ACTIONS(1363), + [anon_sym_DOLLARvaconst] = ACTIONS(1363), + [anon_sym_DOLLARvaarg] = ACTIONS(1363), + [anon_sym_DOLLARvaref] = ACTIONS(1363), + [anon_sym_DOLLARvaexpr] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_null] = ACTIONS(1363), + [anon_sym_DOLLARvacount] = ACTIONS(1363), + [anon_sym_DOLLAReval] = ACTIONS(1363), + [anon_sym_DOLLARis_const] = ACTIONS(1363), + [anon_sym_DOLLARsizeof] = ACTIONS(1363), + [anon_sym_DOLLARstringify] = ACTIONS(1363), + [anon_sym_DOLLARappend] = ACTIONS(1363), + [anon_sym_DOLLARconcat] = ACTIONS(1363), + [anon_sym_DOLLARdefined] = ACTIONS(1363), + [anon_sym_DOLLARembed] = ACTIONS(1363), + [anon_sym_DOLLARand] = ACTIONS(1363), + [anon_sym_DOLLARor] = ACTIONS(1363), + [anon_sym_DOLLARfeature] = ACTIONS(1363), + [anon_sym_DOLLARassignable] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_typeid] = ACTIONS(1363), + [anon_sym_LBRACE_PIPE] = ACTIONS(1365), + [anon_sym_void] = ACTIONS(1363), + [anon_sym_bool] = ACTIONS(1363), + [anon_sym_char] = ACTIONS(1363), + [anon_sym_ichar] = ACTIONS(1363), + [anon_sym_short] = ACTIONS(1363), + [anon_sym_ushort] = ACTIONS(1363), + [anon_sym_uint] = ACTIONS(1363), + [anon_sym_long] = ACTIONS(1363), + [anon_sym_ulong] = ACTIONS(1363), + [anon_sym_int128] = ACTIONS(1363), + [anon_sym_uint128] = ACTIONS(1363), + [anon_sym_float] = ACTIONS(1363), + [anon_sym_double] = ACTIONS(1363), + [anon_sym_float16] = ACTIONS(1363), + [anon_sym_bfloat16] = ACTIONS(1363), + [anon_sym_float128] = ACTIONS(1363), + [anon_sym_iptr] = ACTIONS(1363), + [anon_sym_uptr] = ACTIONS(1363), + [anon_sym_isz] = ACTIONS(1363), + [anon_sym_usz] = ACTIONS(1363), + [anon_sym_anyfault] = ACTIONS(1363), + [anon_sym_any] = ACTIONS(1363), + [anon_sym_DOLLARtypeof] = ACTIONS(1363), + [anon_sym_DOLLARtypefrom] = ACTIONS(1363), + [anon_sym_DOLLARevaltype] = ACTIONS(1363), + [anon_sym_DOLLARvatype] = ACTIONS(1363), + [sym_real_literal] = ACTIONS(1365), }, - [480] = { - [sym_line_comment] = STATE(480), - [sym_doc_comment] = STATE(480), - [sym_block_comment] = STATE(480), + [423] = { + [sym_line_comment] = STATE(423), + [sym_doc_comment] = STATE(423), + [sym_block_comment] = STATE(423), + [sym_ident] = ACTIONS(1593), + [sym_integer_literal] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_bytes_literal] = ACTIONS(1595), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1593), + [sym_at_ident] = ACTIONS(1595), + [sym_hash_ident] = ACTIONS(1595), + [sym_type_ident] = ACTIONS(1595), + [sym_ct_type_ident] = ACTIONS(1595), + [sym_const_ident] = ACTIONS(1593), + [sym_builtin] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_tlocal] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_fn] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_defer] = ACTIONS(1593), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_nextcase] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_foreach] = ACTIONS(1593), + [anon_sym_foreach_r] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_asm] = ACTIONS(1593), + [anon_sym_DOLLARassert] = ACTIONS(1593), + [anon_sym_DOLLARerror] = ACTIONS(1593), + [anon_sym_DOLLARecho] = ACTIONS(1593), + [anon_sym_DOLLARif] = ACTIONS(1593), + [anon_sym_DOLLARcase] = ACTIONS(1593), + [anon_sym_DOLLARdefault] = ACTIONS(1593), + [anon_sym_DOLLARswitch] = ACTIONS(1593), + [anon_sym_DOLLARendswitch] = ACTIONS(1593), + [anon_sym_DOLLARfor] = ACTIONS(1593), + [anon_sym_DOLLARforeach] = ACTIONS(1593), + [anon_sym_DOLLARalignof] = ACTIONS(1593), + [anon_sym_DOLLARextnameof] = ACTIONS(1593), + [anon_sym_DOLLARnameof] = ACTIONS(1593), + [anon_sym_DOLLARoffsetof] = ACTIONS(1593), + [anon_sym_DOLLARqnameof] = ACTIONS(1593), + [anon_sym_DOLLARvaconst] = ACTIONS(1593), + [anon_sym_DOLLARvaarg] = ACTIONS(1593), + [anon_sym_DOLLARvaref] = ACTIONS(1593), + [anon_sym_DOLLARvaexpr] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_DOLLARvacount] = ACTIONS(1593), + [anon_sym_DOLLAReval] = ACTIONS(1593), + [anon_sym_DOLLARis_const] = ACTIONS(1593), + [anon_sym_DOLLARsizeof] = ACTIONS(1593), + [anon_sym_DOLLARstringify] = ACTIONS(1593), + [anon_sym_DOLLARappend] = ACTIONS(1593), + [anon_sym_DOLLARconcat] = ACTIONS(1593), + [anon_sym_DOLLARdefined] = ACTIONS(1593), + [anon_sym_DOLLARembed] = ACTIONS(1593), + [anon_sym_DOLLARand] = ACTIONS(1593), + [anon_sym_DOLLARor] = ACTIONS(1593), + [anon_sym_DOLLARfeature] = ACTIONS(1593), + [anon_sym_DOLLARassignable] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_DASH_DASH] = ACTIONS(1595), + [anon_sym_typeid] = ACTIONS(1593), + [anon_sym_LBRACE_PIPE] = ACTIONS(1595), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_ichar] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [anon_sym_ushort] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_ulong] = ACTIONS(1593), + [anon_sym_int128] = ACTIONS(1593), + [anon_sym_uint128] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_double] = ACTIONS(1593), + [anon_sym_float16] = ACTIONS(1593), + [anon_sym_bfloat16] = ACTIONS(1593), + [anon_sym_float128] = ACTIONS(1593), + [anon_sym_iptr] = ACTIONS(1593), + [anon_sym_uptr] = ACTIONS(1593), + [anon_sym_isz] = ACTIONS(1593), + [anon_sym_usz] = ACTIONS(1593), + [anon_sym_anyfault] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_DOLLARtypeof] = ACTIONS(1593), + [anon_sym_DOLLARtypefrom] = ACTIONS(1593), + [anon_sym_DOLLARevaltype] = ACTIONS(1593), + [anon_sym_DOLLARvatype] = ACTIONS(1593), + [sym_real_literal] = ACTIONS(1595), + }, + [424] = { + [sym_line_comment] = STATE(424), + [sym_doc_comment] = STATE(424), + [sym_block_comment] = STATE(424), + [sym_ident] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_bytes_literal] = ACTIONS(1443), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1441), + [sym_at_ident] = ACTIONS(1443), + [sym_hash_ident] = ACTIONS(1443), + [sym_type_ident] = ACTIONS(1443), + [sym_ct_type_ident] = ACTIONS(1443), + [sym_const_ident] = ACTIONS(1441), + [sym_builtin] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_tlocal] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_defer] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_nextcase] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_foreach] = ACTIONS(1441), + [anon_sym_foreach_r] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_int] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_asm] = ACTIONS(1441), + [anon_sym_DOLLARassert] = ACTIONS(1441), + [anon_sym_DOLLARerror] = ACTIONS(1441), + [anon_sym_DOLLARecho] = ACTIONS(1441), + [anon_sym_DOLLARif] = ACTIONS(1441), + [anon_sym_DOLLARcase] = ACTIONS(1441), + [anon_sym_DOLLARdefault] = ACTIONS(1441), + [anon_sym_DOLLARswitch] = ACTIONS(1441), + [anon_sym_DOLLARendswitch] = ACTIONS(1441), + [anon_sym_DOLLARfor] = ACTIONS(1441), + [anon_sym_DOLLARforeach] = ACTIONS(1441), + [anon_sym_DOLLARalignof] = ACTIONS(1441), + [anon_sym_DOLLARextnameof] = ACTIONS(1441), + [anon_sym_DOLLARnameof] = ACTIONS(1441), + [anon_sym_DOLLARoffsetof] = ACTIONS(1441), + [anon_sym_DOLLARqnameof] = ACTIONS(1441), + [anon_sym_DOLLARvaconst] = ACTIONS(1441), + [anon_sym_DOLLARvaarg] = ACTIONS(1441), + [anon_sym_DOLLARvaref] = ACTIONS(1441), + [anon_sym_DOLLARvaexpr] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_DOLLARvacount] = ACTIONS(1441), + [anon_sym_DOLLAReval] = ACTIONS(1441), + [anon_sym_DOLLARis_const] = ACTIONS(1441), + [anon_sym_DOLLARsizeof] = ACTIONS(1441), + [anon_sym_DOLLARstringify] = ACTIONS(1441), + [anon_sym_DOLLARappend] = ACTIONS(1441), + [anon_sym_DOLLARconcat] = ACTIONS(1441), + [anon_sym_DOLLARdefined] = ACTIONS(1441), + [anon_sym_DOLLARembed] = ACTIONS(1441), + [anon_sym_DOLLARand] = ACTIONS(1441), + [anon_sym_DOLLARor] = ACTIONS(1441), + [anon_sym_DOLLARfeature] = ACTIONS(1441), + [anon_sym_DOLLARassignable] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_typeid] = ACTIONS(1441), + [anon_sym_LBRACE_PIPE] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_ichar] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_ushort] = ACTIONS(1441), + [anon_sym_uint] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_ulong] = ACTIONS(1441), + [anon_sym_int128] = ACTIONS(1441), + [anon_sym_uint128] = ACTIONS(1441), + [anon_sym_float] = ACTIONS(1441), + [anon_sym_double] = ACTIONS(1441), + [anon_sym_float16] = ACTIONS(1441), + [anon_sym_bfloat16] = ACTIONS(1441), + [anon_sym_float128] = ACTIONS(1441), + [anon_sym_iptr] = ACTIONS(1441), + [anon_sym_uptr] = ACTIONS(1441), + [anon_sym_isz] = ACTIONS(1441), + [anon_sym_usz] = ACTIONS(1441), + [anon_sym_anyfault] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_DOLLARtypeof] = ACTIONS(1441), + [anon_sym_DOLLARtypefrom] = ACTIONS(1441), + [anon_sym_DOLLARevaltype] = ACTIONS(1441), + [anon_sym_DOLLARvatype] = ACTIONS(1441), + [sym_real_literal] = ACTIONS(1443), + }, + [425] = { + [sym_line_comment] = STATE(425), + [sym_doc_comment] = STATE(425), + [sym_block_comment] = STATE(425), [sym_ident] = ACTIONS(1445), [sym_integer_literal] = ACTIONS(1447), [anon_sym_SQUOTE] = ACTIONS(1447), @@ -80795,7 +74228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1447), [sym_bytes_literal] = ACTIONS(1447), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1445), [sym_at_ident] = ACTIONS(1447), @@ -80847,11 +74280,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1445), [anon_sym_DOLLARoffsetof] = ACTIONS(1445), [anon_sym_DOLLARqnameof] = ACTIONS(1445), - [anon_sym_DOLLAReval] = ACTIONS(1445), - [anon_sym_DOLLARdefined] = ACTIONS(1445), - [anon_sym_DOLLARsizeof] = ACTIONS(1445), - [anon_sym_DOLLARstringify] = ACTIONS(1445), - [anon_sym_DOLLARis_const] = ACTIONS(1445), [anon_sym_DOLLARvaconst] = ACTIONS(1445), [anon_sym_DOLLARvaarg] = ACTIONS(1445), [anon_sym_DOLLARvaref] = ACTIONS(1445), @@ -80860,11 +74288,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1445), [anon_sym_null] = ACTIONS(1445), [anon_sym_DOLLARvacount] = ACTIONS(1445), - [anon_sym_DOLLARfeature] = ACTIONS(1445), + [anon_sym_DOLLAReval] = ACTIONS(1445), + [anon_sym_DOLLARis_const] = ACTIONS(1445), + [anon_sym_DOLLARsizeof] = ACTIONS(1445), + [anon_sym_DOLLARstringify] = ACTIONS(1445), + [anon_sym_DOLLARappend] = ACTIONS(1445), + [anon_sym_DOLLARconcat] = ACTIONS(1445), + [anon_sym_DOLLARdefined] = ACTIONS(1445), + [anon_sym_DOLLARembed] = ACTIONS(1445), [anon_sym_DOLLARand] = ACTIONS(1445), [anon_sym_DOLLARor] = ACTIONS(1445), + [anon_sym_DOLLARfeature] = ACTIONS(1445), [anon_sym_DOLLARassignable] = ACTIONS(1445), - [anon_sym_DOLLARembed] = ACTIONS(1445), [anon_sym_BANG] = ACTIONS(1447), [anon_sym_TILDE] = ACTIONS(1447), [anon_sym_PLUS_PLUS] = ACTIONS(1447), @@ -80895,1279 +74330,4811 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1445), [anon_sym_DOLLARtypeof] = ACTIONS(1445), [anon_sym_DOLLARtypefrom] = ACTIONS(1445), - [anon_sym_DOLLARvatype] = ACTIONS(1445), [anon_sym_DOLLARevaltype] = ACTIONS(1445), + [anon_sym_DOLLARvatype] = ACTIONS(1445), [sym_real_literal] = ACTIONS(1447), }, - [481] = { - [sym_line_comment] = STATE(481), - [sym_doc_comment] = STATE(481), - [sym_block_comment] = STATE(481), - [sym_ident] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_DQUOTE] = ACTIONS(1529), - [anon_sym_BQUOTE] = ACTIONS(1529), - [sym_bytes_literal] = ACTIONS(1529), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1527), - [sym_at_ident] = ACTIONS(1529), - [sym_hash_ident] = ACTIONS(1529), - [sym_type_ident] = ACTIONS(1529), - [sym_ct_type_ident] = ACTIONS(1529), - [sym_const_ident] = ACTIONS(1527), - [sym_builtin] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(1527), - [anon_sym_tlocal] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1529), - [anon_sym_fn] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_const] = ACTIONS(1527), - [anon_sym_var] = ACTIONS(1527), - [anon_sym_return] = ACTIONS(1527), - [anon_sym_continue] = ACTIONS(1527), - [anon_sym_break] = ACTIONS(1527), - [anon_sym_defer] = ACTIONS(1527), - [anon_sym_assert] = ACTIONS(1527), - [anon_sym_nextcase] = ACTIONS(1527), - [anon_sym_switch] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1527), - [anon_sym_for] = ACTIONS(1527), - [anon_sym_foreach] = ACTIONS(1527), - [anon_sym_foreach_r] = ACTIONS(1527), - [anon_sym_while] = ACTIONS(1527), - [anon_sym_do] = ACTIONS(1527), - [anon_sym_int] = ACTIONS(1527), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1529), - [anon_sym_asm] = ACTIONS(1527), - [anon_sym_DOLLARassert] = ACTIONS(1527), - [anon_sym_DOLLARerror] = ACTIONS(1527), - [anon_sym_DOLLARecho] = ACTIONS(1527), - [anon_sym_DOLLARif] = ACTIONS(1527), - [anon_sym_DOLLARcase] = ACTIONS(1527), - [anon_sym_DOLLARdefault] = ACTIONS(1527), - [anon_sym_DOLLARswitch] = ACTIONS(1527), - [anon_sym_DOLLARendswitch] = ACTIONS(1527), - [anon_sym_DOLLARfor] = ACTIONS(1527), - [anon_sym_DOLLARforeach] = ACTIONS(1527), - [anon_sym_DOLLARalignof] = ACTIONS(1527), - [anon_sym_DOLLARextnameof] = ACTIONS(1527), - [anon_sym_DOLLARnameof] = ACTIONS(1527), - [anon_sym_DOLLARoffsetof] = ACTIONS(1527), - [anon_sym_DOLLARqnameof] = ACTIONS(1527), - [anon_sym_DOLLAReval] = ACTIONS(1527), - [anon_sym_DOLLARdefined] = ACTIONS(1527), - [anon_sym_DOLLARsizeof] = ACTIONS(1527), - [anon_sym_DOLLARstringify] = ACTIONS(1527), - [anon_sym_DOLLARis_const] = ACTIONS(1527), - [anon_sym_DOLLARvaconst] = ACTIONS(1527), - [anon_sym_DOLLARvaarg] = ACTIONS(1527), - [anon_sym_DOLLARvaref] = ACTIONS(1527), - [anon_sym_DOLLARvaexpr] = ACTIONS(1527), - [anon_sym_true] = ACTIONS(1527), - [anon_sym_false] = ACTIONS(1527), - [anon_sym_null] = ACTIONS(1527), - [anon_sym_DOLLARvacount] = ACTIONS(1527), - [anon_sym_DOLLARfeature] = ACTIONS(1527), - [anon_sym_DOLLARand] = ACTIONS(1527), - [anon_sym_DOLLARor] = ACTIONS(1527), - [anon_sym_DOLLARassignable] = ACTIONS(1527), - [anon_sym_DOLLARembed] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), - [anon_sym_typeid] = ACTIONS(1527), - [anon_sym_LBRACE_PIPE] = ACTIONS(1529), - [anon_sym_void] = ACTIONS(1527), - [anon_sym_bool] = ACTIONS(1527), - [anon_sym_char] = ACTIONS(1527), - [anon_sym_ichar] = ACTIONS(1527), - [anon_sym_short] = ACTIONS(1527), - [anon_sym_ushort] = ACTIONS(1527), - [anon_sym_uint] = ACTIONS(1527), - [anon_sym_long] = ACTIONS(1527), - [anon_sym_ulong] = ACTIONS(1527), - [anon_sym_int128] = ACTIONS(1527), - [anon_sym_uint128] = ACTIONS(1527), - [anon_sym_float] = ACTIONS(1527), - [anon_sym_double] = ACTIONS(1527), - [anon_sym_float16] = ACTIONS(1527), - [anon_sym_bfloat16] = ACTIONS(1527), - [anon_sym_float128] = ACTIONS(1527), - [anon_sym_iptr] = ACTIONS(1527), - [anon_sym_uptr] = ACTIONS(1527), - [anon_sym_isz] = ACTIONS(1527), - [anon_sym_usz] = ACTIONS(1527), - [anon_sym_anyfault] = ACTIONS(1527), - [anon_sym_any] = ACTIONS(1527), - [anon_sym_DOLLARtypeof] = ACTIONS(1527), - [anon_sym_DOLLARtypefrom] = ACTIONS(1527), - [anon_sym_DOLLARvatype] = ACTIONS(1527), - [anon_sym_DOLLARevaltype] = ACTIONS(1527), - [sym_real_literal] = ACTIONS(1529), + [426] = { + [sym_line_comment] = STATE(426), + [sym_doc_comment] = STATE(426), + [sym_block_comment] = STATE(426), + [sym_ident] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_BQUOTE] = ACTIONS(1451), + [sym_bytes_literal] = ACTIONS(1451), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1449), + [sym_at_ident] = ACTIONS(1451), + [sym_hash_ident] = ACTIONS(1451), + [sym_type_ident] = ACTIONS(1451), + [sym_ct_type_ident] = ACTIONS(1451), + [sym_const_ident] = ACTIONS(1449), + [sym_builtin] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_tlocal] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_defer] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1449), + [anon_sym_nextcase] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_foreach] = ACTIONS(1449), + [anon_sym_foreach_r] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_int] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_asm] = ACTIONS(1449), + [anon_sym_DOLLARassert] = ACTIONS(1449), + [anon_sym_DOLLARerror] = ACTIONS(1449), + [anon_sym_DOLLARecho] = ACTIONS(1449), + [anon_sym_DOLLARif] = ACTIONS(1449), + [anon_sym_DOLLARcase] = ACTIONS(1449), + [anon_sym_DOLLARdefault] = ACTIONS(1449), + [anon_sym_DOLLARswitch] = ACTIONS(1449), + [anon_sym_DOLLARendswitch] = ACTIONS(1449), + [anon_sym_DOLLARfor] = ACTIONS(1449), + [anon_sym_DOLLARforeach] = ACTIONS(1449), + [anon_sym_DOLLARalignof] = ACTIONS(1449), + [anon_sym_DOLLARextnameof] = ACTIONS(1449), + [anon_sym_DOLLARnameof] = ACTIONS(1449), + [anon_sym_DOLLARoffsetof] = ACTIONS(1449), + [anon_sym_DOLLARqnameof] = ACTIONS(1449), + [anon_sym_DOLLARvaconst] = ACTIONS(1449), + [anon_sym_DOLLARvaarg] = ACTIONS(1449), + [anon_sym_DOLLARvaref] = ACTIONS(1449), + [anon_sym_DOLLARvaexpr] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_null] = ACTIONS(1449), + [anon_sym_DOLLARvacount] = ACTIONS(1449), + [anon_sym_DOLLAReval] = ACTIONS(1449), + [anon_sym_DOLLARis_const] = ACTIONS(1449), + [anon_sym_DOLLARsizeof] = ACTIONS(1449), + [anon_sym_DOLLARstringify] = ACTIONS(1449), + [anon_sym_DOLLARappend] = ACTIONS(1449), + [anon_sym_DOLLARconcat] = ACTIONS(1449), + [anon_sym_DOLLARdefined] = ACTIONS(1449), + [anon_sym_DOLLARembed] = ACTIONS(1449), + [anon_sym_DOLLARand] = ACTIONS(1449), + [anon_sym_DOLLARor] = ACTIONS(1449), + [anon_sym_DOLLARfeature] = ACTIONS(1449), + [anon_sym_DOLLARassignable] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_typeid] = ACTIONS(1449), + [anon_sym_LBRACE_PIPE] = ACTIONS(1451), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_ichar] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_ushort] = ACTIONS(1449), + [anon_sym_uint] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_ulong] = ACTIONS(1449), + [anon_sym_int128] = ACTIONS(1449), + [anon_sym_uint128] = ACTIONS(1449), + [anon_sym_float] = ACTIONS(1449), + [anon_sym_double] = ACTIONS(1449), + [anon_sym_float16] = ACTIONS(1449), + [anon_sym_bfloat16] = ACTIONS(1449), + [anon_sym_float128] = ACTIONS(1449), + [anon_sym_iptr] = ACTIONS(1449), + [anon_sym_uptr] = ACTIONS(1449), + [anon_sym_isz] = ACTIONS(1449), + [anon_sym_usz] = ACTIONS(1449), + [anon_sym_anyfault] = ACTIONS(1449), + [anon_sym_any] = ACTIONS(1449), + [anon_sym_DOLLARtypeof] = ACTIONS(1449), + [anon_sym_DOLLARtypefrom] = ACTIONS(1449), + [anon_sym_DOLLARevaltype] = ACTIONS(1449), + [anon_sym_DOLLARvatype] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1451), + }, + [427] = { + [sym_line_comment] = STATE(427), + [sym_doc_comment] = STATE(427), + [sym_block_comment] = STATE(427), + [sym_ident] = ACTIONS(1633), + [sym_integer_literal] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_bytes_literal] = ACTIONS(1635), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1633), + [sym_at_ident] = ACTIONS(1635), + [sym_hash_ident] = ACTIONS(1635), + [sym_type_ident] = ACTIONS(1635), + [sym_ct_type_ident] = ACTIONS(1635), + [sym_const_ident] = ACTIONS(1633), + [sym_builtin] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_tlocal] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_fn] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_var] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_defer] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1633), + [anon_sym_nextcase] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_foreach] = ACTIONS(1633), + [anon_sym_foreach_r] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1633), + [anon_sym_DOLLARassert] = ACTIONS(1633), + [anon_sym_DOLLARerror] = ACTIONS(1633), + [anon_sym_DOLLARecho] = ACTIONS(1633), + [anon_sym_DOLLARif] = ACTIONS(1633), + [anon_sym_DOLLARcase] = ACTIONS(1633), + [anon_sym_DOLLARdefault] = ACTIONS(1633), + [anon_sym_DOLLARswitch] = ACTIONS(1633), + [anon_sym_DOLLARendswitch] = ACTIONS(1633), + [anon_sym_DOLLARfor] = ACTIONS(1633), + [anon_sym_DOLLARforeach] = ACTIONS(1633), + [anon_sym_DOLLARalignof] = ACTIONS(1633), + [anon_sym_DOLLARextnameof] = ACTIONS(1633), + [anon_sym_DOLLARnameof] = ACTIONS(1633), + [anon_sym_DOLLARoffsetof] = ACTIONS(1633), + [anon_sym_DOLLARqnameof] = ACTIONS(1633), + [anon_sym_DOLLARvaconst] = ACTIONS(1633), + [anon_sym_DOLLARvaarg] = ACTIONS(1633), + [anon_sym_DOLLARvaref] = ACTIONS(1633), + [anon_sym_DOLLARvaexpr] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_DOLLARvacount] = ACTIONS(1633), + [anon_sym_DOLLAReval] = ACTIONS(1633), + [anon_sym_DOLLARis_const] = ACTIONS(1633), + [anon_sym_DOLLARsizeof] = ACTIONS(1633), + [anon_sym_DOLLARstringify] = ACTIONS(1633), + [anon_sym_DOLLARappend] = ACTIONS(1633), + [anon_sym_DOLLARconcat] = ACTIONS(1633), + [anon_sym_DOLLARdefined] = ACTIONS(1633), + [anon_sym_DOLLARembed] = ACTIONS(1633), + [anon_sym_DOLLARand] = ACTIONS(1633), + [anon_sym_DOLLARor] = ACTIONS(1633), + [anon_sym_DOLLARfeature] = ACTIONS(1633), + [anon_sym_DOLLARassignable] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_typeid] = ACTIONS(1633), + [anon_sym_LBRACE_PIPE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_ichar] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_ushort] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_ulong] = ACTIONS(1633), + [anon_sym_int128] = ACTIONS(1633), + [anon_sym_uint128] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_double] = ACTIONS(1633), + [anon_sym_float16] = ACTIONS(1633), + [anon_sym_bfloat16] = ACTIONS(1633), + [anon_sym_float128] = ACTIONS(1633), + [anon_sym_iptr] = ACTIONS(1633), + [anon_sym_uptr] = ACTIONS(1633), + [anon_sym_isz] = ACTIONS(1633), + [anon_sym_usz] = ACTIONS(1633), + [anon_sym_anyfault] = ACTIONS(1633), + [anon_sym_any] = ACTIONS(1633), + [anon_sym_DOLLARtypeof] = ACTIONS(1633), + [anon_sym_DOLLARtypefrom] = ACTIONS(1633), + [anon_sym_DOLLARevaltype] = ACTIONS(1633), + [anon_sym_DOLLARvatype] = ACTIONS(1633), + [sym_real_literal] = ACTIONS(1635), + }, + [428] = { + [sym_line_comment] = STATE(428), + [sym_doc_comment] = STATE(428), + [sym_block_comment] = STATE(428), + [sym_ident] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [anon_sym_BQUOTE] = ACTIONS(1459), + [sym_bytes_literal] = ACTIONS(1459), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1457), + [sym_at_ident] = ACTIONS(1459), + [sym_hash_ident] = ACTIONS(1459), + [sym_type_ident] = ACTIONS(1459), + [sym_ct_type_ident] = ACTIONS(1459), + [sym_const_ident] = ACTIONS(1457), + [sym_builtin] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_tlocal] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_fn] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_defer] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1457), + [anon_sym_nextcase] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_foreach] = ACTIONS(1457), + [anon_sym_foreach_r] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_int] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_asm] = ACTIONS(1457), + [anon_sym_DOLLARassert] = ACTIONS(1457), + [anon_sym_DOLLARerror] = ACTIONS(1457), + [anon_sym_DOLLARecho] = ACTIONS(1457), + [anon_sym_DOLLARif] = ACTIONS(1457), + [anon_sym_DOLLARcase] = ACTIONS(1457), + [anon_sym_DOLLARdefault] = ACTIONS(1457), + [anon_sym_DOLLARswitch] = ACTIONS(1457), + [anon_sym_DOLLARendswitch] = ACTIONS(1457), + [anon_sym_DOLLARfor] = ACTIONS(1457), + [anon_sym_DOLLARforeach] = ACTIONS(1457), + [anon_sym_DOLLARalignof] = ACTIONS(1457), + [anon_sym_DOLLARextnameof] = ACTIONS(1457), + [anon_sym_DOLLARnameof] = ACTIONS(1457), + [anon_sym_DOLLARoffsetof] = ACTIONS(1457), + [anon_sym_DOLLARqnameof] = ACTIONS(1457), + [anon_sym_DOLLARvaconst] = ACTIONS(1457), + [anon_sym_DOLLARvaarg] = ACTIONS(1457), + [anon_sym_DOLLARvaref] = ACTIONS(1457), + [anon_sym_DOLLARvaexpr] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_null] = ACTIONS(1457), + [anon_sym_DOLLARvacount] = ACTIONS(1457), + [anon_sym_DOLLAReval] = ACTIONS(1457), + [anon_sym_DOLLARis_const] = ACTIONS(1457), + [anon_sym_DOLLARsizeof] = ACTIONS(1457), + [anon_sym_DOLLARstringify] = ACTIONS(1457), + [anon_sym_DOLLARappend] = ACTIONS(1457), + [anon_sym_DOLLARconcat] = ACTIONS(1457), + [anon_sym_DOLLARdefined] = ACTIONS(1457), + [anon_sym_DOLLARembed] = ACTIONS(1457), + [anon_sym_DOLLARand] = ACTIONS(1457), + [anon_sym_DOLLARor] = ACTIONS(1457), + [anon_sym_DOLLARfeature] = ACTIONS(1457), + [anon_sym_DOLLARassignable] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_typeid] = ACTIONS(1457), + [anon_sym_LBRACE_PIPE] = ACTIONS(1459), + [anon_sym_void] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_ichar] = ACTIONS(1457), + [anon_sym_short] = ACTIONS(1457), + [anon_sym_ushort] = ACTIONS(1457), + [anon_sym_uint] = ACTIONS(1457), + [anon_sym_long] = ACTIONS(1457), + [anon_sym_ulong] = ACTIONS(1457), + [anon_sym_int128] = ACTIONS(1457), + [anon_sym_uint128] = ACTIONS(1457), + [anon_sym_float] = ACTIONS(1457), + [anon_sym_double] = ACTIONS(1457), + [anon_sym_float16] = ACTIONS(1457), + [anon_sym_bfloat16] = ACTIONS(1457), + [anon_sym_float128] = ACTIONS(1457), + [anon_sym_iptr] = ACTIONS(1457), + [anon_sym_uptr] = ACTIONS(1457), + [anon_sym_isz] = ACTIONS(1457), + [anon_sym_usz] = ACTIONS(1457), + [anon_sym_anyfault] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_DOLLARtypeof] = ACTIONS(1457), + [anon_sym_DOLLARtypefrom] = ACTIONS(1457), + [anon_sym_DOLLARevaltype] = ACTIONS(1457), + [anon_sym_DOLLARvatype] = ACTIONS(1457), + [sym_real_literal] = ACTIONS(1459), + }, + [429] = { + [sym_line_comment] = STATE(429), + [sym_doc_comment] = STATE(429), + [sym_block_comment] = STATE(429), + [sym_ident] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_bytes_literal] = ACTIONS(1463), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1461), + [sym_at_ident] = ACTIONS(1463), + [sym_hash_ident] = ACTIONS(1463), + [sym_type_ident] = ACTIONS(1463), + [sym_ct_type_ident] = ACTIONS(1463), + [sym_const_ident] = ACTIONS(1461), + [sym_builtin] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_tlocal] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_defer] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1461), + [anon_sym_nextcase] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_foreach] = ACTIONS(1461), + [anon_sym_foreach_r] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_int] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_asm] = ACTIONS(1461), + [anon_sym_DOLLARassert] = ACTIONS(1461), + [anon_sym_DOLLARerror] = ACTIONS(1461), + [anon_sym_DOLLARecho] = ACTIONS(1461), + [anon_sym_DOLLARif] = ACTIONS(1461), + [anon_sym_DOLLARcase] = ACTIONS(1461), + [anon_sym_DOLLARdefault] = ACTIONS(1461), + [anon_sym_DOLLARswitch] = ACTIONS(1461), + [anon_sym_DOLLARendswitch] = ACTIONS(1461), + [anon_sym_DOLLARfor] = ACTIONS(1461), + [anon_sym_DOLLARforeach] = ACTIONS(1461), + [anon_sym_DOLLARalignof] = ACTIONS(1461), + [anon_sym_DOLLARextnameof] = ACTIONS(1461), + [anon_sym_DOLLARnameof] = ACTIONS(1461), + [anon_sym_DOLLARoffsetof] = ACTIONS(1461), + [anon_sym_DOLLARqnameof] = ACTIONS(1461), + [anon_sym_DOLLARvaconst] = ACTIONS(1461), + [anon_sym_DOLLARvaarg] = ACTIONS(1461), + [anon_sym_DOLLARvaref] = ACTIONS(1461), + [anon_sym_DOLLARvaexpr] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_DOLLARvacount] = ACTIONS(1461), + [anon_sym_DOLLAReval] = ACTIONS(1461), + [anon_sym_DOLLARis_const] = ACTIONS(1461), + [anon_sym_DOLLARsizeof] = ACTIONS(1461), + [anon_sym_DOLLARstringify] = ACTIONS(1461), + [anon_sym_DOLLARappend] = ACTIONS(1461), + [anon_sym_DOLLARconcat] = ACTIONS(1461), + [anon_sym_DOLLARdefined] = ACTIONS(1461), + [anon_sym_DOLLARembed] = ACTIONS(1461), + [anon_sym_DOLLARand] = ACTIONS(1461), + [anon_sym_DOLLARor] = ACTIONS(1461), + [anon_sym_DOLLARfeature] = ACTIONS(1461), + [anon_sym_DOLLARassignable] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_typeid] = ACTIONS(1461), + [anon_sym_LBRACE_PIPE] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_ichar] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [anon_sym_ushort] = ACTIONS(1461), + [anon_sym_uint] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_ulong] = ACTIONS(1461), + [anon_sym_int128] = ACTIONS(1461), + [anon_sym_uint128] = ACTIONS(1461), + [anon_sym_float] = ACTIONS(1461), + [anon_sym_double] = ACTIONS(1461), + [anon_sym_float16] = ACTIONS(1461), + [anon_sym_bfloat16] = ACTIONS(1461), + [anon_sym_float128] = ACTIONS(1461), + [anon_sym_iptr] = ACTIONS(1461), + [anon_sym_uptr] = ACTIONS(1461), + [anon_sym_isz] = ACTIONS(1461), + [anon_sym_usz] = ACTIONS(1461), + [anon_sym_anyfault] = ACTIONS(1461), + [anon_sym_any] = ACTIONS(1461), + [anon_sym_DOLLARtypeof] = ACTIONS(1461), + [anon_sym_DOLLARtypefrom] = ACTIONS(1461), + [anon_sym_DOLLARevaltype] = ACTIONS(1461), + [anon_sym_DOLLARvatype] = ACTIONS(1461), + [sym_real_literal] = ACTIONS(1463), + }, + [430] = { + [sym_line_comment] = STATE(430), + [sym_doc_comment] = STATE(430), + [sym_block_comment] = STATE(430), + [sym_ident] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_BQUOTE] = ACTIONS(1475), + [sym_bytes_literal] = ACTIONS(1475), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1473), + [sym_at_ident] = ACTIONS(1475), + [sym_hash_ident] = ACTIONS(1475), + [sym_type_ident] = ACTIONS(1475), + [sym_ct_type_ident] = ACTIONS(1475), + [sym_const_ident] = ACTIONS(1473), + [sym_builtin] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_tlocal] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_defer] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_nextcase] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_foreach] = ACTIONS(1473), + [anon_sym_foreach_r] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_asm] = ACTIONS(1473), + [anon_sym_DOLLARassert] = ACTIONS(1473), + [anon_sym_DOLLARerror] = ACTIONS(1473), + [anon_sym_DOLLARecho] = ACTIONS(1473), + [anon_sym_DOLLARif] = ACTIONS(1473), + [anon_sym_DOLLARcase] = ACTIONS(1473), + [anon_sym_DOLLARdefault] = ACTIONS(1473), + [anon_sym_DOLLARswitch] = ACTIONS(1473), + [anon_sym_DOLLARendswitch] = ACTIONS(1473), + [anon_sym_DOLLARfor] = ACTIONS(1473), + [anon_sym_DOLLARforeach] = ACTIONS(1473), + [anon_sym_DOLLARalignof] = ACTIONS(1473), + [anon_sym_DOLLARextnameof] = ACTIONS(1473), + [anon_sym_DOLLARnameof] = ACTIONS(1473), + [anon_sym_DOLLARoffsetof] = ACTIONS(1473), + [anon_sym_DOLLARqnameof] = ACTIONS(1473), + [anon_sym_DOLLARvaconst] = ACTIONS(1473), + [anon_sym_DOLLARvaarg] = ACTIONS(1473), + [anon_sym_DOLLARvaref] = ACTIONS(1473), + [anon_sym_DOLLARvaexpr] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_DOLLARvacount] = ACTIONS(1473), + [anon_sym_DOLLAReval] = ACTIONS(1473), + [anon_sym_DOLLARis_const] = ACTIONS(1473), + [anon_sym_DOLLARsizeof] = ACTIONS(1473), + [anon_sym_DOLLARstringify] = ACTIONS(1473), + [anon_sym_DOLLARappend] = ACTIONS(1473), + [anon_sym_DOLLARconcat] = ACTIONS(1473), + [anon_sym_DOLLARdefined] = ACTIONS(1473), + [anon_sym_DOLLARembed] = ACTIONS(1473), + [anon_sym_DOLLARand] = ACTIONS(1473), + [anon_sym_DOLLARor] = ACTIONS(1473), + [anon_sym_DOLLARfeature] = ACTIONS(1473), + [anon_sym_DOLLARassignable] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_typeid] = ACTIONS(1473), + [anon_sym_LBRACE_PIPE] = ACTIONS(1475), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_ichar] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_ushort] = ACTIONS(1473), + [anon_sym_uint] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_ulong] = ACTIONS(1473), + [anon_sym_int128] = ACTIONS(1473), + [anon_sym_uint128] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_float16] = ACTIONS(1473), + [anon_sym_bfloat16] = ACTIONS(1473), + [anon_sym_float128] = ACTIONS(1473), + [anon_sym_iptr] = ACTIONS(1473), + [anon_sym_uptr] = ACTIONS(1473), + [anon_sym_isz] = ACTIONS(1473), + [anon_sym_usz] = ACTIONS(1473), + [anon_sym_anyfault] = ACTIONS(1473), + [anon_sym_any] = ACTIONS(1473), + [anon_sym_DOLLARtypeof] = ACTIONS(1473), + [anon_sym_DOLLARtypefrom] = ACTIONS(1473), + [anon_sym_DOLLARevaltype] = ACTIONS(1473), + [anon_sym_DOLLARvatype] = ACTIONS(1473), + [sym_real_literal] = ACTIONS(1475), + }, + [431] = { + [sym_line_comment] = STATE(431), + [sym_doc_comment] = STATE(431), + [sym_block_comment] = STATE(431), + [sym_else_part] = STATE(621), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(1655), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARendfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), + }, + [432] = { + [sym_line_comment] = STATE(432), + [sym_doc_comment] = STATE(432), + [sym_block_comment] = STATE(432), + [sym_ident] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [sym_bytes_literal] = ACTIONS(1479), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1477), + [sym_at_ident] = ACTIONS(1479), + [sym_hash_ident] = ACTIONS(1479), + [sym_type_ident] = ACTIONS(1479), + [sym_ct_type_ident] = ACTIONS(1479), + [sym_const_ident] = ACTIONS(1477), + [sym_builtin] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_tlocal] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_var] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_defer] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1477), + [anon_sym_nextcase] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_foreach] = ACTIONS(1477), + [anon_sym_foreach_r] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_do] = ACTIONS(1477), + [anon_sym_int] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym_DOLLARassert] = ACTIONS(1477), + [anon_sym_DOLLARerror] = ACTIONS(1477), + [anon_sym_DOLLARecho] = ACTIONS(1477), + [anon_sym_DOLLARif] = ACTIONS(1477), + [anon_sym_DOLLARcase] = ACTIONS(1477), + [anon_sym_DOLLARdefault] = ACTIONS(1477), + [anon_sym_DOLLARswitch] = ACTIONS(1477), + [anon_sym_DOLLARendswitch] = ACTIONS(1477), + [anon_sym_DOLLARfor] = ACTIONS(1477), + [anon_sym_DOLLARforeach] = ACTIONS(1477), + [anon_sym_DOLLARalignof] = ACTIONS(1477), + [anon_sym_DOLLARextnameof] = ACTIONS(1477), + [anon_sym_DOLLARnameof] = ACTIONS(1477), + [anon_sym_DOLLARoffsetof] = ACTIONS(1477), + [anon_sym_DOLLARqnameof] = ACTIONS(1477), + [anon_sym_DOLLARvaconst] = ACTIONS(1477), + [anon_sym_DOLLARvaarg] = ACTIONS(1477), + [anon_sym_DOLLARvaref] = ACTIONS(1477), + [anon_sym_DOLLARvaexpr] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_DOLLARvacount] = ACTIONS(1477), + [anon_sym_DOLLAReval] = ACTIONS(1477), + [anon_sym_DOLLARis_const] = ACTIONS(1477), + [anon_sym_DOLLARsizeof] = ACTIONS(1477), + [anon_sym_DOLLARstringify] = ACTIONS(1477), + [anon_sym_DOLLARappend] = ACTIONS(1477), + [anon_sym_DOLLARconcat] = ACTIONS(1477), + [anon_sym_DOLLARdefined] = ACTIONS(1477), + [anon_sym_DOLLARembed] = ACTIONS(1477), + [anon_sym_DOLLARand] = ACTIONS(1477), + [anon_sym_DOLLARor] = ACTIONS(1477), + [anon_sym_DOLLARfeature] = ACTIONS(1477), + [anon_sym_DOLLARassignable] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_PLUS_PLUS] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_typeid] = ACTIONS(1477), + [anon_sym_LBRACE_PIPE] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_ichar] = ACTIONS(1477), + [anon_sym_short] = ACTIONS(1477), + [anon_sym_ushort] = ACTIONS(1477), + [anon_sym_uint] = ACTIONS(1477), + [anon_sym_long] = ACTIONS(1477), + [anon_sym_ulong] = ACTIONS(1477), + [anon_sym_int128] = ACTIONS(1477), + [anon_sym_uint128] = ACTIONS(1477), + [anon_sym_float] = ACTIONS(1477), + [anon_sym_double] = ACTIONS(1477), + [anon_sym_float16] = ACTIONS(1477), + [anon_sym_bfloat16] = ACTIONS(1477), + [anon_sym_float128] = ACTIONS(1477), + [anon_sym_iptr] = ACTIONS(1477), + [anon_sym_uptr] = ACTIONS(1477), + [anon_sym_isz] = ACTIONS(1477), + [anon_sym_usz] = ACTIONS(1477), + [anon_sym_anyfault] = ACTIONS(1477), + [anon_sym_any] = ACTIONS(1477), + [anon_sym_DOLLARtypeof] = ACTIONS(1477), + [anon_sym_DOLLARtypefrom] = ACTIONS(1477), + [anon_sym_DOLLARevaltype] = ACTIONS(1477), + [anon_sym_DOLLARvatype] = ACTIONS(1477), + [sym_real_literal] = ACTIONS(1479), + }, + [433] = { + [sym_line_comment] = STATE(433), + [sym_doc_comment] = STATE(433), + [sym_block_comment] = STATE(433), + [sym_ident] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_BQUOTE] = ACTIONS(1483), + [sym_bytes_literal] = ACTIONS(1483), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1481), + [sym_at_ident] = ACTIONS(1483), + [sym_hash_ident] = ACTIONS(1483), + [sym_type_ident] = ACTIONS(1483), + [sym_ct_type_ident] = ACTIONS(1483), + [sym_const_ident] = ACTIONS(1481), + [sym_builtin] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_tlocal] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_defer] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1481), + [anon_sym_nextcase] = ACTIONS(1481), + [anon_sym_switch] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_foreach] = ACTIONS(1481), + [anon_sym_foreach_r] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_int] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_asm] = ACTIONS(1481), + [anon_sym_DOLLARassert] = ACTIONS(1481), + [anon_sym_DOLLARerror] = ACTIONS(1481), + [anon_sym_DOLLARecho] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1481), + [anon_sym_DOLLARcase] = ACTIONS(1481), + [anon_sym_DOLLARdefault] = ACTIONS(1481), + [anon_sym_DOLLARswitch] = ACTIONS(1481), + [anon_sym_DOLLARendswitch] = ACTIONS(1481), + [anon_sym_DOLLARfor] = ACTIONS(1481), + [anon_sym_DOLLARforeach] = ACTIONS(1481), + [anon_sym_DOLLARalignof] = ACTIONS(1481), + [anon_sym_DOLLARextnameof] = ACTIONS(1481), + [anon_sym_DOLLARnameof] = ACTIONS(1481), + [anon_sym_DOLLARoffsetof] = ACTIONS(1481), + [anon_sym_DOLLARqnameof] = ACTIONS(1481), + [anon_sym_DOLLARvaconst] = ACTIONS(1481), + [anon_sym_DOLLARvaarg] = ACTIONS(1481), + [anon_sym_DOLLARvaref] = ACTIONS(1481), + [anon_sym_DOLLARvaexpr] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_DOLLARvacount] = ACTIONS(1481), + [anon_sym_DOLLAReval] = ACTIONS(1481), + [anon_sym_DOLLARis_const] = ACTIONS(1481), + [anon_sym_DOLLARsizeof] = ACTIONS(1481), + [anon_sym_DOLLARstringify] = ACTIONS(1481), + [anon_sym_DOLLARappend] = ACTIONS(1481), + [anon_sym_DOLLARconcat] = ACTIONS(1481), + [anon_sym_DOLLARdefined] = ACTIONS(1481), + [anon_sym_DOLLARembed] = ACTIONS(1481), + [anon_sym_DOLLARand] = ACTIONS(1481), + [anon_sym_DOLLARor] = ACTIONS(1481), + [anon_sym_DOLLARfeature] = ACTIONS(1481), + [anon_sym_DOLLARassignable] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_typeid] = ACTIONS(1481), + [anon_sym_LBRACE_PIPE] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_ichar] = ACTIONS(1481), + [anon_sym_short] = ACTIONS(1481), + [anon_sym_ushort] = ACTIONS(1481), + [anon_sym_uint] = ACTIONS(1481), + [anon_sym_long] = ACTIONS(1481), + [anon_sym_ulong] = ACTIONS(1481), + [anon_sym_int128] = ACTIONS(1481), + [anon_sym_uint128] = ACTIONS(1481), + [anon_sym_float] = ACTIONS(1481), + [anon_sym_double] = ACTIONS(1481), + [anon_sym_float16] = ACTIONS(1481), + [anon_sym_bfloat16] = ACTIONS(1481), + [anon_sym_float128] = ACTIONS(1481), + [anon_sym_iptr] = ACTIONS(1481), + [anon_sym_uptr] = ACTIONS(1481), + [anon_sym_isz] = ACTIONS(1481), + [anon_sym_usz] = ACTIONS(1481), + [anon_sym_anyfault] = ACTIONS(1481), + [anon_sym_any] = ACTIONS(1481), + [anon_sym_DOLLARtypeof] = ACTIONS(1481), + [anon_sym_DOLLARtypefrom] = ACTIONS(1481), + [anon_sym_DOLLARevaltype] = ACTIONS(1481), + [anon_sym_DOLLARvatype] = ACTIONS(1481), + [sym_real_literal] = ACTIONS(1483), + }, + [434] = { + [sym_line_comment] = STATE(434), + [sym_doc_comment] = STATE(434), + [sym_block_comment] = STATE(434), + [sym_ident] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_BQUOTE] = ACTIONS(1487), + [sym_bytes_literal] = ACTIONS(1487), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1485), + [sym_at_ident] = ACTIONS(1487), + [sym_hash_ident] = ACTIONS(1487), + [sym_type_ident] = ACTIONS(1487), + [sym_ct_type_ident] = ACTIONS(1487), + [sym_const_ident] = ACTIONS(1485), + [sym_builtin] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_tlocal] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_var] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_defer] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1485), + [anon_sym_nextcase] = ACTIONS(1485), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_foreach] = ACTIONS(1485), + [anon_sym_foreach_r] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_int] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_asm] = ACTIONS(1485), + [anon_sym_DOLLARassert] = ACTIONS(1485), + [anon_sym_DOLLARerror] = ACTIONS(1485), + [anon_sym_DOLLARecho] = ACTIONS(1485), + [anon_sym_DOLLARif] = ACTIONS(1485), + [anon_sym_DOLLARcase] = ACTIONS(1485), + [anon_sym_DOLLARdefault] = ACTIONS(1485), + [anon_sym_DOLLARswitch] = ACTIONS(1485), + [anon_sym_DOLLARendswitch] = ACTIONS(1485), + [anon_sym_DOLLARfor] = ACTIONS(1485), + [anon_sym_DOLLARforeach] = ACTIONS(1485), + [anon_sym_DOLLARalignof] = ACTIONS(1485), + [anon_sym_DOLLARextnameof] = ACTIONS(1485), + [anon_sym_DOLLARnameof] = ACTIONS(1485), + [anon_sym_DOLLARoffsetof] = ACTIONS(1485), + [anon_sym_DOLLARqnameof] = ACTIONS(1485), + [anon_sym_DOLLARvaconst] = ACTIONS(1485), + [anon_sym_DOLLARvaarg] = ACTIONS(1485), + [anon_sym_DOLLARvaref] = ACTIONS(1485), + [anon_sym_DOLLARvaexpr] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_DOLLARvacount] = ACTIONS(1485), + [anon_sym_DOLLAReval] = ACTIONS(1485), + [anon_sym_DOLLARis_const] = ACTIONS(1485), + [anon_sym_DOLLARsizeof] = ACTIONS(1485), + [anon_sym_DOLLARstringify] = ACTIONS(1485), + [anon_sym_DOLLARappend] = ACTIONS(1485), + [anon_sym_DOLLARconcat] = ACTIONS(1485), + [anon_sym_DOLLARdefined] = ACTIONS(1485), + [anon_sym_DOLLARembed] = ACTIONS(1485), + [anon_sym_DOLLARand] = ACTIONS(1485), + [anon_sym_DOLLARor] = ACTIONS(1485), + [anon_sym_DOLLARfeature] = ACTIONS(1485), + [anon_sym_DOLLARassignable] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_typeid] = ACTIONS(1485), + [anon_sym_LBRACE_PIPE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_ichar] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_ushort] = ACTIONS(1485), + [anon_sym_uint] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_ulong] = ACTIONS(1485), + [anon_sym_int128] = ACTIONS(1485), + [anon_sym_uint128] = ACTIONS(1485), + [anon_sym_float] = ACTIONS(1485), + [anon_sym_double] = ACTIONS(1485), + [anon_sym_float16] = ACTIONS(1485), + [anon_sym_bfloat16] = ACTIONS(1485), + [anon_sym_float128] = ACTIONS(1485), + [anon_sym_iptr] = ACTIONS(1485), + [anon_sym_uptr] = ACTIONS(1485), + [anon_sym_isz] = ACTIONS(1485), + [anon_sym_usz] = ACTIONS(1485), + [anon_sym_anyfault] = ACTIONS(1485), + [anon_sym_any] = ACTIONS(1485), + [anon_sym_DOLLARtypeof] = ACTIONS(1485), + [anon_sym_DOLLARtypefrom] = ACTIONS(1485), + [anon_sym_DOLLARevaltype] = ACTIONS(1485), + [anon_sym_DOLLARvatype] = ACTIONS(1485), + [sym_real_literal] = ACTIONS(1487), }, - [482] = { - [sym_line_comment] = STATE(482), - [sym_doc_comment] = STATE(482), - [sym_block_comment] = STATE(482), - [sym_ident] = ACTIONS(1449), - [sym_integer_literal] = ACTIONS(1451), - [anon_sym_SQUOTE] = ACTIONS(1451), - [anon_sym_DQUOTE] = ACTIONS(1451), - [anon_sym_BQUOTE] = ACTIONS(1451), - [sym_bytes_literal] = ACTIONS(1451), + [435] = { + [sym_line_comment] = STATE(435), + [sym_doc_comment] = STATE(435), + [sym_block_comment] = STATE(435), + [sym_ident] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_BQUOTE] = ACTIONS(1491), + [sym_bytes_literal] = ACTIONS(1491), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1489), + [sym_at_ident] = ACTIONS(1491), + [sym_hash_ident] = ACTIONS(1491), + [sym_type_ident] = ACTIONS(1491), + [sym_ct_type_ident] = ACTIONS(1491), + [sym_const_ident] = ACTIONS(1489), + [sym_builtin] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_tlocal] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_var] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_defer] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1489), + [anon_sym_nextcase] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_foreach] = ACTIONS(1489), + [anon_sym_foreach_r] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_int] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_asm] = ACTIONS(1489), + [anon_sym_DOLLARassert] = ACTIONS(1489), + [anon_sym_DOLLARerror] = ACTIONS(1489), + [anon_sym_DOLLARecho] = ACTIONS(1489), + [anon_sym_DOLLARif] = ACTIONS(1489), + [anon_sym_DOLLARcase] = ACTIONS(1489), + [anon_sym_DOLLARdefault] = ACTIONS(1489), + [anon_sym_DOLLARswitch] = ACTIONS(1489), + [anon_sym_DOLLARendswitch] = ACTIONS(1489), + [anon_sym_DOLLARfor] = ACTIONS(1489), + [anon_sym_DOLLARforeach] = ACTIONS(1489), + [anon_sym_DOLLARalignof] = ACTIONS(1489), + [anon_sym_DOLLARextnameof] = ACTIONS(1489), + [anon_sym_DOLLARnameof] = ACTIONS(1489), + [anon_sym_DOLLARoffsetof] = ACTIONS(1489), + [anon_sym_DOLLARqnameof] = ACTIONS(1489), + [anon_sym_DOLLARvaconst] = ACTIONS(1489), + [anon_sym_DOLLARvaarg] = ACTIONS(1489), + [anon_sym_DOLLARvaref] = ACTIONS(1489), + [anon_sym_DOLLARvaexpr] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_DOLLARvacount] = ACTIONS(1489), + [anon_sym_DOLLAReval] = ACTIONS(1489), + [anon_sym_DOLLARis_const] = ACTIONS(1489), + [anon_sym_DOLLARsizeof] = ACTIONS(1489), + [anon_sym_DOLLARstringify] = ACTIONS(1489), + [anon_sym_DOLLARappend] = ACTIONS(1489), + [anon_sym_DOLLARconcat] = ACTIONS(1489), + [anon_sym_DOLLARdefined] = ACTIONS(1489), + [anon_sym_DOLLARembed] = ACTIONS(1489), + [anon_sym_DOLLARand] = ACTIONS(1489), + [anon_sym_DOLLARor] = ACTIONS(1489), + [anon_sym_DOLLARfeature] = ACTIONS(1489), + [anon_sym_DOLLARassignable] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_typeid] = ACTIONS(1489), + [anon_sym_LBRACE_PIPE] = ACTIONS(1491), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_ichar] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_ushort] = ACTIONS(1489), + [anon_sym_uint] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_ulong] = ACTIONS(1489), + [anon_sym_int128] = ACTIONS(1489), + [anon_sym_uint128] = ACTIONS(1489), + [anon_sym_float] = ACTIONS(1489), + [anon_sym_double] = ACTIONS(1489), + [anon_sym_float16] = ACTIONS(1489), + [anon_sym_bfloat16] = ACTIONS(1489), + [anon_sym_float128] = ACTIONS(1489), + [anon_sym_iptr] = ACTIONS(1489), + [anon_sym_uptr] = ACTIONS(1489), + [anon_sym_isz] = ACTIONS(1489), + [anon_sym_usz] = ACTIONS(1489), + [anon_sym_anyfault] = ACTIONS(1489), + [anon_sym_any] = ACTIONS(1489), + [anon_sym_DOLLARtypeof] = ACTIONS(1489), + [anon_sym_DOLLARtypefrom] = ACTIONS(1489), + [anon_sym_DOLLARevaltype] = ACTIONS(1489), + [anon_sym_DOLLARvatype] = ACTIONS(1489), + [sym_real_literal] = ACTIONS(1491), + }, + [436] = { + [sym_line_comment] = STATE(436), + [sym_doc_comment] = STATE(436), + [sym_block_comment] = STATE(436), + [sym_ident] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_BQUOTE] = ACTIONS(1495), + [sym_bytes_literal] = ACTIONS(1495), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1493), + [sym_at_ident] = ACTIONS(1495), + [sym_hash_ident] = ACTIONS(1495), + [sym_type_ident] = ACTIONS(1495), + [sym_ct_type_ident] = ACTIONS(1495), + [sym_const_ident] = ACTIONS(1493), + [sym_builtin] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_tlocal] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_var] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_defer] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_nextcase] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_foreach] = ACTIONS(1493), + [anon_sym_foreach_r] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_asm] = ACTIONS(1493), + [anon_sym_DOLLARassert] = ACTIONS(1493), + [anon_sym_DOLLARerror] = ACTIONS(1493), + [anon_sym_DOLLARecho] = ACTIONS(1493), + [anon_sym_DOLLARif] = ACTIONS(1493), + [anon_sym_DOLLARcase] = ACTIONS(1493), + [anon_sym_DOLLARdefault] = ACTIONS(1493), + [anon_sym_DOLLARswitch] = ACTIONS(1493), + [anon_sym_DOLLARendswitch] = ACTIONS(1493), + [anon_sym_DOLLARfor] = ACTIONS(1493), + [anon_sym_DOLLARforeach] = ACTIONS(1493), + [anon_sym_DOLLARalignof] = ACTIONS(1493), + [anon_sym_DOLLARextnameof] = ACTIONS(1493), + [anon_sym_DOLLARnameof] = ACTIONS(1493), + [anon_sym_DOLLARoffsetof] = ACTIONS(1493), + [anon_sym_DOLLARqnameof] = ACTIONS(1493), + [anon_sym_DOLLARvaconst] = ACTIONS(1493), + [anon_sym_DOLLARvaarg] = ACTIONS(1493), + [anon_sym_DOLLARvaref] = ACTIONS(1493), + [anon_sym_DOLLARvaexpr] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_DOLLARvacount] = ACTIONS(1493), + [anon_sym_DOLLAReval] = ACTIONS(1493), + [anon_sym_DOLLARis_const] = ACTIONS(1493), + [anon_sym_DOLLARsizeof] = ACTIONS(1493), + [anon_sym_DOLLARstringify] = ACTIONS(1493), + [anon_sym_DOLLARappend] = ACTIONS(1493), + [anon_sym_DOLLARconcat] = ACTIONS(1493), + [anon_sym_DOLLARdefined] = ACTIONS(1493), + [anon_sym_DOLLARembed] = ACTIONS(1493), + [anon_sym_DOLLARand] = ACTIONS(1493), + [anon_sym_DOLLARor] = ACTIONS(1493), + [anon_sym_DOLLARfeature] = ACTIONS(1493), + [anon_sym_DOLLARassignable] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_typeid] = ACTIONS(1493), + [anon_sym_LBRACE_PIPE] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_ichar] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_ushort] = ACTIONS(1493), + [anon_sym_uint] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_ulong] = ACTIONS(1493), + [anon_sym_int128] = ACTIONS(1493), + [anon_sym_uint128] = ACTIONS(1493), + [anon_sym_float] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_float16] = ACTIONS(1493), + [anon_sym_bfloat16] = ACTIONS(1493), + [anon_sym_float128] = ACTIONS(1493), + [anon_sym_iptr] = ACTIONS(1493), + [anon_sym_uptr] = ACTIONS(1493), + [anon_sym_isz] = ACTIONS(1493), + [anon_sym_usz] = ACTIONS(1493), + [anon_sym_anyfault] = ACTIONS(1493), + [anon_sym_any] = ACTIONS(1493), + [anon_sym_DOLLARtypeof] = ACTIONS(1493), + [anon_sym_DOLLARtypefrom] = ACTIONS(1493), + [anon_sym_DOLLARevaltype] = ACTIONS(1493), + [anon_sym_DOLLARvatype] = ACTIONS(1493), + [sym_real_literal] = ACTIONS(1495), + }, + [437] = { + [sym_line_comment] = STATE(437), + [sym_doc_comment] = STATE(437), + [sym_block_comment] = STATE(437), + [sym_ident] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1499), + [sym_bytes_literal] = ACTIONS(1499), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1497), + [sym_at_ident] = ACTIONS(1499), + [sym_hash_ident] = ACTIONS(1499), + [sym_type_ident] = ACTIONS(1499), + [sym_ct_type_ident] = ACTIONS(1499), + [sym_const_ident] = ACTIONS(1497), + [sym_builtin] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_tlocal] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_var] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_defer] = ACTIONS(1497), + [anon_sym_assert] = ACTIONS(1497), + [anon_sym_nextcase] = ACTIONS(1497), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_foreach] = ACTIONS(1497), + [anon_sym_foreach_r] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_int] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_asm] = ACTIONS(1497), + [anon_sym_DOLLARassert] = ACTIONS(1497), + [anon_sym_DOLLARerror] = ACTIONS(1497), + [anon_sym_DOLLARecho] = ACTIONS(1497), + [anon_sym_DOLLARif] = ACTIONS(1497), + [anon_sym_DOLLARcase] = ACTIONS(1497), + [anon_sym_DOLLARdefault] = ACTIONS(1497), + [anon_sym_DOLLARswitch] = ACTIONS(1497), + [anon_sym_DOLLARendswitch] = ACTIONS(1497), + [anon_sym_DOLLARfor] = ACTIONS(1497), + [anon_sym_DOLLARforeach] = ACTIONS(1497), + [anon_sym_DOLLARalignof] = ACTIONS(1497), + [anon_sym_DOLLARextnameof] = ACTIONS(1497), + [anon_sym_DOLLARnameof] = ACTIONS(1497), + [anon_sym_DOLLARoffsetof] = ACTIONS(1497), + [anon_sym_DOLLARqnameof] = ACTIONS(1497), + [anon_sym_DOLLARvaconst] = ACTIONS(1497), + [anon_sym_DOLLARvaarg] = ACTIONS(1497), + [anon_sym_DOLLARvaref] = ACTIONS(1497), + [anon_sym_DOLLARvaexpr] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_DOLLARvacount] = ACTIONS(1497), + [anon_sym_DOLLAReval] = ACTIONS(1497), + [anon_sym_DOLLARis_const] = ACTIONS(1497), + [anon_sym_DOLLARsizeof] = ACTIONS(1497), + [anon_sym_DOLLARstringify] = ACTIONS(1497), + [anon_sym_DOLLARappend] = ACTIONS(1497), + [anon_sym_DOLLARconcat] = ACTIONS(1497), + [anon_sym_DOLLARdefined] = ACTIONS(1497), + [anon_sym_DOLLARembed] = ACTIONS(1497), + [anon_sym_DOLLARand] = ACTIONS(1497), + [anon_sym_DOLLARor] = ACTIONS(1497), + [anon_sym_DOLLARfeature] = ACTIONS(1497), + [anon_sym_DOLLARassignable] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_typeid] = ACTIONS(1497), + [anon_sym_LBRACE_PIPE] = ACTIONS(1499), + [anon_sym_void] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_ichar] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [anon_sym_ushort] = ACTIONS(1497), + [anon_sym_uint] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_ulong] = ACTIONS(1497), + [anon_sym_int128] = ACTIONS(1497), + [anon_sym_uint128] = ACTIONS(1497), + [anon_sym_float] = ACTIONS(1497), + [anon_sym_double] = ACTIONS(1497), + [anon_sym_float16] = ACTIONS(1497), + [anon_sym_bfloat16] = ACTIONS(1497), + [anon_sym_float128] = ACTIONS(1497), + [anon_sym_iptr] = ACTIONS(1497), + [anon_sym_uptr] = ACTIONS(1497), + [anon_sym_isz] = ACTIONS(1497), + [anon_sym_usz] = ACTIONS(1497), + [anon_sym_anyfault] = ACTIONS(1497), + [anon_sym_any] = ACTIONS(1497), + [anon_sym_DOLLARtypeof] = ACTIONS(1497), + [anon_sym_DOLLARtypefrom] = ACTIONS(1497), + [anon_sym_DOLLARevaltype] = ACTIONS(1497), + [anon_sym_DOLLARvatype] = ACTIONS(1497), + [sym_real_literal] = ACTIONS(1499), + }, + [438] = { + [sym_line_comment] = STATE(438), + [sym_doc_comment] = STATE(438), + [sym_block_comment] = STATE(438), + [sym_ident] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1503), + [anon_sym_BQUOTE] = ACTIONS(1503), + [sym_bytes_literal] = ACTIONS(1503), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1501), + [sym_at_ident] = ACTIONS(1503), + [sym_hash_ident] = ACTIONS(1503), + [sym_type_ident] = ACTIONS(1503), + [sym_ct_type_ident] = ACTIONS(1503), + [sym_const_ident] = ACTIONS(1501), + [sym_builtin] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_tlocal] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_var] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_defer] = ACTIONS(1501), + [anon_sym_assert] = ACTIONS(1501), + [anon_sym_nextcase] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_foreach] = ACTIONS(1501), + [anon_sym_foreach_r] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_int] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym_DOLLARassert] = ACTIONS(1501), + [anon_sym_DOLLARerror] = ACTIONS(1501), + [anon_sym_DOLLARecho] = ACTIONS(1501), + [anon_sym_DOLLARif] = ACTIONS(1501), + [anon_sym_DOLLARcase] = ACTIONS(1501), + [anon_sym_DOLLARdefault] = ACTIONS(1501), + [anon_sym_DOLLARswitch] = ACTIONS(1501), + [anon_sym_DOLLARendswitch] = ACTIONS(1501), + [anon_sym_DOLLARfor] = ACTIONS(1501), + [anon_sym_DOLLARforeach] = ACTIONS(1501), + [anon_sym_DOLLARalignof] = ACTIONS(1501), + [anon_sym_DOLLARextnameof] = ACTIONS(1501), + [anon_sym_DOLLARnameof] = ACTIONS(1501), + [anon_sym_DOLLARoffsetof] = ACTIONS(1501), + [anon_sym_DOLLARqnameof] = ACTIONS(1501), + [anon_sym_DOLLARvaconst] = ACTIONS(1501), + [anon_sym_DOLLARvaarg] = ACTIONS(1501), + [anon_sym_DOLLARvaref] = ACTIONS(1501), + [anon_sym_DOLLARvaexpr] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_DOLLARvacount] = ACTIONS(1501), + [anon_sym_DOLLAReval] = ACTIONS(1501), + [anon_sym_DOLLARis_const] = ACTIONS(1501), + [anon_sym_DOLLARsizeof] = ACTIONS(1501), + [anon_sym_DOLLARstringify] = ACTIONS(1501), + [anon_sym_DOLLARappend] = ACTIONS(1501), + [anon_sym_DOLLARconcat] = ACTIONS(1501), + [anon_sym_DOLLARdefined] = ACTIONS(1501), + [anon_sym_DOLLARembed] = ACTIONS(1501), + [anon_sym_DOLLARand] = ACTIONS(1501), + [anon_sym_DOLLARor] = ACTIONS(1501), + [anon_sym_DOLLARfeature] = ACTIONS(1501), + [anon_sym_DOLLARassignable] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_typeid] = ACTIONS(1501), + [anon_sym_LBRACE_PIPE] = ACTIONS(1503), + [anon_sym_void] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_ichar] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_ushort] = ACTIONS(1501), + [anon_sym_uint] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_ulong] = ACTIONS(1501), + [anon_sym_int128] = ACTIONS(1501), + [anon_sym_uint128] = ACTIONS(1501), + [anon_sym_float] = ACTIONS(1501), + [anon_sym_double] = ACTIONS(1501), + [anon_sym_float16] = ACTIONS(1501), + [anon_sym_bfloat16] = ACTIONS(1501), + [anon_sym_float128] = ACTIONS(1501), + [anon_sym_iptr] = ACTIONS(1501), + [anon_sym_uptr] = ACTIONS(1501), + [anon_sym_isz] = ACTIONS(1501), + [anon_sym_usz] = ACTIONS(1501), + [anon_sym_anyfault] = ACTIONS(1501), + [anon_sym_any] = ACTIONS(1501), + [anon_sym_DOLLARtypeof] = ACTIONS(1501), + [anon_sym_DOLLARtypefrom] = ACTIONS(1501), + [anon_sym_DOLLARevaltype] = ACTIONS(1501), + [anon_sym_DOLLARvatype] = ACTIONS(1501), + [sym_real_literal] = ACTIONS(1503), + }, + [439] = { + [sym_line_comment] = STATE(439), + [sym_doc_comment] = STATE(439), + [sym_block_comment] = STATE(439), + [sym_ident] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_bytes_literal] = ACTIONS(1507), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1505), + [sym_at_ident] = ACTIONS(1507), + [sym_hash_ident] = ACTIONS(1507), + [sym_type_ident] = ACTIONS(1507), + [sym_ct_type_ident] = ACTIONS(1507), + [sym_const_ident] = ACTIONS(1505), + [sym_builtin] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_tlocal] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_defer] = ACTIONS(1505), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_nextcase] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(1505), + [anon_sym_foreach_r] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_int] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_asm] = ACTIONS(1505), + [anon_sym_DOLLARassert] = ACTIONS(1505), + [anon_sym_DOLLARerror] = ACTIONS(1505), + [anon_sym_DOLLARecho] = ACTIONS(1505), + [anon_sym_DOLLARif] = ACTIONS(1505), + [anon_sym_DOLLARcase] = ACTIONS(1505), + [anon_sym_DOLLARdefault] = ACTIONS(1505), + [anon_sym_DOLLARswitch] = ACTIONS(1505), + [anon_sym_DOLLARendswitch] = ACTIONS(1505), + [anon_sym_DOLLARfor] = ACTIONS(1505), + [anon_sym_DOLLARforeach] = ACTIONS(1505), + [anon_sym_DOLLARalignof] = ACTIONS(1505), + [anon_sym_DOLLARextnameof] = ACTIONS(1505), + [anon_sym_DOLLARnameof] = ACTIONS(1505), + [anon_sym_DOLLARoffsetof] = ACTIONS(1505), + [anon_sym_DOLLARqnameof] = ACTIONS(1505), + [anon_sym_DOLLARvaconst] = ACTIONS(1505), + [anon_sym_DOLLARvaarg] = ACTIONS(1505), + [anon_sym_DOLLARvaref] = ACTIONS(1505), + [anon_sym_DOLLARvaexpr] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_DOLLARvacount] = ACTIONS(1505), + [anon_sym_DOLLAReval] = ACTIONS(1505), + [anon_sym_DOLLARis_const] = ACTIONS(1505), + [anon_sym_DOLLARsizeof] = ACTIONS(1505), + [anon_sym_DOLLARstringify] = ACTIONS(1505), + [anon_sym_DOLLARappend] = ACTIONS(1505), + [anon_sym_DOLLARconcat] = ACTIONS(1505), + [anon_sym_DOLLARdefined] = ACTIONS(1505), + [anon_sym_DOLLARembed] = ACTIONS(1505), + [anon_sym_DOLLARand] = ACTIONS(1505), + [anon_sym_DOLLARor] = ACTIONS(1505), + [anon_sym_DOLLARfeature] = ACTIONS(1505), + [anon_sym_DOLLARassignable] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_typeid] = ACTIONS(1505), + [anon_sym_LBRACE_PIPE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_ichar] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [anon_sym_ushort] = ACTIONS(1505), + [anon_sym_uint] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_ulong] = ACTIONS(1505), + [anon_sym_int128] = ACTIONS(1505), + [anon_sym_uint128] = ACTIONS(1505), + [anon_sym_float] = ACTIONS(1505), + [anon_sym_double] = ACTIONS(1505), + [anon_sym_float16] = ACTIONS(1505), + [anon_sym_bfloat16] = ACTIONS(1505), + [anon_sym_float128] = ACTIONS(1505), + [anon_sym_iptr] = ACTIONS(1505), + [anon_sym_uptr] = ACTIONS(1505), + [anon_sym_isz] = ACTIONS(1505), + [anon_sym_usz] = ACTIONS(1505), + [anon_sym_anyfault] = ACTIONS(1505), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_DOLLARtypeof] = ACTIONS(1505), + [anon_sym_DOLLARtypefrom] = ACTIONS(1505), + [anon_sym_DOLLARevaltype] = ACTIONS(1505), + [anon_sym_DOLLARvatype] = ACTIONS(1505), + [sym_real_literal] = ACTIONS(1507), + }, + [440] = { + [sym_line_comment] = STATE(440), + [sym_doc_comment] = STATE(440), + [sym_block_comment] = STATE(440), + [sym_ident] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_BQUOTE] = ACTIONS(1519), + [sym_bytes_literal] = ACTIONS(1519), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1517), + [sym_at_ident] = ACTIONS(1519), + [sym_hash_ident] = ACTIONS(1519), + [sym_type_ident] = ACTIONS(1519), + [sym_ct_type_ident] = ACTIONS(1519), + [sym_const_ident] = ACTIONS(1517), + [sym_builtin] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_tlocal] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_defer] = ACTIONS(1517), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_nextcase] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_foreach] = ACTIONS(1517), + [anon_sym_foreach_r] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_int] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_asm] = ACTIONS(1517), + [anon_sym_DOLLARassert] = ACTIONS(1517), + [anon_sym_DOLLARerror] = ACTIONS(1517), + [anon_sym_DOLLARecho] = ACTIONS(1517), + [anon_sym_DOLLARif] = ACTIONS(1517), + [anon_sym_DOLLARcase] = ACTIONS(1517), + [anon_sym_DOLLARdefault] = ACTIONS(1517), + [anon_sym_DOLLARswitch] = ACTIONS(1517), + [anon_sym_DOLLARendswitch] = ACTIONS(1517), + [anon_sym_DOLLARfor] = ACTIONS(1517), + [anon_sym_DOLLARforeach] = ACTIONS(1517), + [anon_sym_DOLLARalignof] = ACTIONS(1517), + [anon_sym_DOLLARextnameof] = ACTIONS(1517), + [anon_sym_DOLLARnameof] = ACTIONS(1517), + [anon_sym_DOLLARoffsetof] = ACTIONS(1517), + [anon_sym_DOLLARqnameof] = ACTIONS(1517), + [anon_sym_DOLLARvaconst] = ACTIONS(1517), + [anon_sym_DOLLARvaarg] = ACTIONS(1517), + [anon_sym_DOLLARvaref] = ACTIONS(1517), + [anon_sym_DOLLARvaexpr] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_DOLLARvacount] = ACTIONS(1517), + [anon_sym_DOLLAReval] = ACTIONS(1517), + [anon_sym_DOLLARis_const] = ACTIONS(1517), + [anon_sym_DOLLARsizeof] = ACTIONS(1517), + [anon_sym_DOLLARstringify] = ACTIONS(1517), + [anon_sym_DOLLARappend] = ACTIONS(1517), + [anon_sym_DOLLARconcat] = ACTIONS(1517), + [anon_sym_DOLLARdefined] = ACTIONS(1517), + [anon_sym_DOLLARembed] = ACTIONS(1517), + [anon_sym_DOLLARand] = ACTIONS(1517), + [anon_sym_DOLLARor] = ACTIONS(1517), + [anon_sym_DOLLARfeature] = ACTIONS(1517), + [anon_sym_DOLLARassignable] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_typeid] = ACTIONS(1517), + [anon_sym_LBRACE_PIPE] = ACTIONS(1519), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_ichar] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [anon_sym_ushort] = ACTIONS(1517), + [anon_sym_uint] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_ulong] = ACTIONS(1517), + [anon_sym_int128] = ACTIONS(1517), + [anon_sym_uint128] = ACTIONS(1517), + [anon_sym_float] = ACTIONS(1517), + [anon_sym_double] = ACTIONS(1517), + [anon_sym_float16] = ACTIONS(1517), + [anon_sym_bfloat16] = ACTIONS(1517), + [anon_sym_float128] = ACTIONS(1517), + [anon_sym_iptr] = ACTIONS(1517), + [anon_sym_uptr] = ACTIONS(1517), + [anon_sym_isz] = ACTIONS(1517), + [anon_sym_usz] = ACTIONS(1517), + [anon_sym_anyfault] = ACTIONS(1517), + [anon_sym_any] = ACTIONS(1517), + [anon_sym_DOLLARtypeof] = ACTIONS(1517), + [anon_sym_DOLLARtypefrom] = ACTIONS(1517), + [anon_sym_DOLLARevaltype] = ACTIONS(1517), + [anon_sym_DOLLARvatype] = ACTIONS(1517), + [sym_real_literal] = ACTIONS(1519), + }, + [441] = { + [sym_line_comment] = STATE(441), + [sym_doc_comment] = STATE(441), + [sym_block_comment] = STATE(441), + [sym_ident] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_bytes_literal] = ACTIONS(1653), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1651), + [sym_at_ident] = ACTIONS(1653), + [sym_hash_ident] = ACTIONS(1653), + [sym_type_ident] = ACTIONS(1653), + [sym_ct_type_ident] = ACTIONS(1653), + [sym_const_ident] = ACTIONS(1651), + [sym_builtin] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_static] = ACTIONS(1651), + [anon_sym_tlocal] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [anon_sym_var] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_defer] = ACTIONS(1651), + [anon_sym_assert] = ACTIONS(1651), + [anon_sym_nextcase] = ACTIONS(1651), + [anon_sym_switch] = ACTIONS(1651), + [anon_sym_AMP_AMP] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_foreach] = ACTIONS(1651), + [anon_sym_foreach_r] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_int] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1653), + [anon_sym_asm] = ACTIONS(1651), + [anon_sym_DOLLARassert] = ACTIONS(1651), + [anon_sym_DOLLARerror] = ACTIONS(1651), + [anon_sym_DOLLARecho] = ACTIONS(1651), + [anon_sym_DOLLARif] = ACTIONS(1651), + [anon_sym_DOLLARcase] = ACTIONS(1651), + [anon_sym_DOLLARdefault] = ACTIONS(1651), + [anon_sym_DOLLARswitch] = ACTIONS(1651), + [anon_sym_DOLLARendswitch] = ACTIONS(1651), + [anon_sym_DOLLARfor] = ACTIONS(1651), + [anon_sym_DOLLARforeach] = ACTIONS(1651), + [anon_sym_DOLLARalignof] = ACTIONS(1651), + [anon_sym_DOLLARextnameof] = ACTIONS(1651), + [anon_sym_DOLLARnameof] = ACTIONS(1651), + [anon_sym_DOLLARoffsetof] = ACTIONS(1651), + [anon_sym_DOLLARqnameof] = ACTIONS(1651), + [anon_sym_DOLLARvaconst] = ACTIONS(1651), + [anon_sym_DOLLARvaarg] = ACTIONS(1651), + [anon_sym_DOLLARvaref] = ACTIONS(1651), + [anon_sym_DOLLARvaexpr] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_DOLLARvacount] = ACTIONS(1651), + [anon_sym_DOLLAReval] = ACTIONS(1651), + [anon_sym_DOLLARis_const] = ACTIONS(1651), + [anon_sym_DOLLARsizeof] = ACTIONS(1651), + [anon_sym_DOLLARstringify] = ACTIONS(1651), + [anon_sym_DOLLARappend] = ACTIONS(1651), + [anon_sym_DOLLARconcat] = ACTIONS(1651), + [anon_sym_DOLLARdefined] = ACTIONS(1651), + [anon_sym_DOLLARembed] = ACTIONS(1651), + [anon_sym_DOLLARand] = ACTIONS(1651), + [anon_sym_DOLLARor] = ACTIONS(1651), + [anon_sym_DOLLARfeature] = ACTIONS(1651), + [anon_sym_DOLLARassignable] = ACTIONS(1651), + [anon_sym_BANG] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_typeid] = ACTIONS(1651), + [anon_sym_LBRACE_PIPE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1651), + [anon_sym_bool] = ACTIONS(1651), + [anon_sym_char] = ACTIONS(1651), + [anon_sym_ichar] = ACTIONS(1651), + [anon_sym_short] = ACTIONS(1651), + [anon_sym_ushort] = ACTIONS(1651), + [anon_sym_uint] = ACTIONS(1651), + [anon_sym_long] = ACTIONS(1651), + [anon_sym_ulong] = ACTIONS(1651), + [anon_sym_int128] = ACTIONS(1651), + [anon_sym_uint128] = ACTIONS(1651), + [anon_sym_float] = ACTIONS(1651), + [anon_sym_double] = ACTIONS(1651), + [anon_sym_float16] = ACTIONS(1651), + [anon_sym_bfloat16] = ACTIONS(1651), + [anon_sym_float128] = ACTIONS(1651), + [anon_sym_iptr] = ACTIONS(1651), + [anon_sym_uptr] = ACTIONS(1651), + [anon_sym_isz] = ACTIONS(1651), + [anon_sym_usz] = ACTIONS(1651), + [anon_sym_anyfault] = ACTIONS(1651), + [anon_sym_any] = ACTIONS(1651), + [anon_sym_DOLLARtypeof] = ACTIONS(1651), + [anon_sym_DOLLARtypefrom] = ACTIONS(1651), + [anon_sym_DOLLARevaltype] = ACTIONS(1651), + [anon_sym_DOLLARvatype] = ACTIONS(1651), + [sym_real_literal] = ACTIONS(1653), + }, + [442] = { + [sym_line_comment] = STATE(442), + [sym_doc_comment] = STATE(442), + [sym_block_comment] = STATE(442), + [sym_ident] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), + [anon_sym_BQUOTE] = ACTIONS(1527), + [sym_bytes_literal] = ACTIONS(1527), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1525), + [sym_at_ident] = ACTIONS(1527), + [sym_hash_ident] = ACTIONS(1527), + [sym_type_ident] = ACTIONS(1527), + [sym_ct_type_ident] = ACTIONS(1527), + [sym_const_ident] = ACTIONS(1525), + [sym_builtin] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_tlocal] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_fn] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_var] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_defer] = ACTIONS(1525), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_nextcase] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_foreach] = ACTIONS(1525), + [anon_sym_foreach_r] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_int] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym_DOLLARassert] = ACTIONS(1525), + [anon_sym_DOLLARerror] = ACTIONS(1525), + [anon_sym_DOLLARecho] = ACTIONS(1525), + [anon_sym_DOLLARif] = ACTIONS(1525), + [anon_sym_DOLLARcase] = ACTIONS(1525), + [anon_sym_DOLLARdefault] = ACTIONS(1525), + [anon_sym_DOLLARswitch] = ACTIONS(1525), + [anon_sym_DOLLARendswitch] = ACTIONS(1525), + [anon_sym_DOLLARfor] = ACTIONS(1525), + [anon_sym_DOLLARforeach] = ACTIONS(1525), + [anon_sym_DOLLARalignof] = ACTIONS(1525), + [anon_sym_DOLLARextnameof] = ACTIONS(1525), + [anon_sym_DOLLARnameof] = ACTIONS(1525), + [anon_sym_DOLLARoffsetof] = ACTIONS(1525), + [anon_sym_DOLLARqnameof] = ACTIONS(1525), + [anon_sym_DOLLARvaconst] = ACTIONS(1525), + [anon_sym_DOLLARvaarg] = ACTIONS(1525), + [anon_sym_DOLLARvaref] = ACTIONS(1525), + [anon_sym_DOLLARvaexpr] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_DOLLARvacount] = ACTIONS(1525), + [anon_sym_DOLLAReval] = ACTIONS(1525), + [anon_sym_DOLLARis_const] = ACTIONS(1525), + [anon_sym_DOLLARsizeof] = ACTIONS(1525), + [anon_sym_DOLLARstringify] = ACTIONS(1525), + [anon_sym_DOLLARappend] = ACTIONS(1525), + [anon_sym_DOLLARconcat] = ACTIONS(1525), + [anon_sym_DOLLARdefined] = ACTIONS(1525), + [anon_sym_DOLLARembed] = ACTIONS(1525), + [anon_sym_DOLLARand] = ACTIONS(1525), + [anon_sym_DOLLARor] = ACTIONS(1525), + [anon_sym_DOLLARfeature] = ACTIONS(1525), + [anon_sym_DOLLARassignable] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_typeid] = ACTIONS(1525), + [anon_sym_LBRACE_PIPE] = ACTIONS(1527), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_bool] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_ichar] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [anon_sym_ushort] = ACTIONS(1525), + [anon_sym_uint] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_ulong] = ACTIONS(1525), + [anon_sym_int128] = ACTIONS(1525), + [anon_sym_uint128] = ACTIONS(1525), + [anon_sym_float] = ACTIONS(1525), + [anon_sym_double] = ACTIONS(1525), + [anon_sym_float16] = ACTIONS(1525), + [anon_sym_bfloat16] = ACTIONS(1525), + [anon_sym_float128] = ACTIONS(1525), + [anon_sym_iptr] = ACTIONS(1525), + [anon_sym_uptr] = ACTIONS(1525), + [anon_sym_isz] = ACTIONS(1525), + [anon_sym_usz] = ACTIONS(1525), + [anon_sym_anyfault] = ACTIONS(1525), + [anon_sym_any] = ACTIONS(1525), + [anon_sym_DOLLARtypeof] = ACTIONS(1525), + [anon_sym_DOLLARtypefrom] = ACTIONS(1525), + [anon_sym_DOLLARevaltype] = ACTIONS(1525), + [anon_sym_DOLLARvatype] = ACTIONS(1525), + [sym_real_literal] = ACTIONS(1527), + }, + [443] = { + [sym_line_comment] = STATE(443), + [sym_doc_comment] = STATE(443), + [sym_block_comment] = STATE(443), + [sym_ident] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_BQUOTE] = ACTIONS(1543), + [sym_bytes_literal] = ACTIONS(1543), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1541), + [sym_at_ident] = ACTIONS(1543), + [sym_hash_ident] = ACTIONS(1543), + [sym_type_ident] = ACTIONS(1543), + [sym_ct_type_ident] = ACTIONS(1543), + [sym_const_ident] = ACTIONS(1541), + [sym_builtin] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_tlocal] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_defer] = ACTIONS(1541), + [anon_sym_assert] = ACTIONS(1541), + [anon_sym_nextcase] = ACTIONS(1541), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_foreach] = ACTIONS(1541), + [anon_sym_foreach_r] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_int] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym_DOLLARassert] = ACTIONS(1541), + [anon_sym_DOLLARerror] = ACTIONS(1541), + [anon_sym_DOLLARecho] = ACTIONS(1541), + [anon_sym_DOLLARif] = ACTIONS(1541), + [anon_sym_DOLLARcase] = ACTIONS(1541), + [anon_sym_DOLLARdefault] = ACTIONS(1541), + [anon_sym_DOLLARswitch] = ACTIONS(1541), + [anon_sym_DOLLARendswitch] = ACTIONS(1541), + [anon_sym_DOLLARfor] = ACTIONS(1541), + [anon_sym_DOLLARforeach] = ACTIONS(1541), + [anon_sym_DOLLARalignof] = ACTIONS(1541), + [anon_sym_DOLLARextnameof] = ACTIONS(1541), + [anon_sym_DOLLARnameof] = ACTIONS(1541), + [anon_sym_DOLLARoffsetof] = ACTIONS(1541), + [anon_sym_DOLLARqnameof] = ACTIONS(1541), + [anon_sym_DOLLARvaconst] = ACTIONS(1541), + [anon_sym_DOLLARvaarg] = ACTIONS(1541), + [anon_sym_DOLLARvaref] = ACTIONS(1541), + [anon_sym_DOLLARvaexpr] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_null] = ACTIONS(1541), + [anon_sym_DOLLARvacount] = ACTIONS(1541), + [anon_sym_DOLLAReval] = ACTIONS(1541), + [anon_sym_DOLLARis_const] = ACTIONS(1541), + [anon_sym_DOLLARsizeof] = ACTIONS(1541), + [anon_sym_DOLLARstringify] = ACTIONS(1541), + [anon_sym_DOLLARappend] = ACTIONS(1541), + [anon_sym_DOLLARconcat] = ACTIONS(1541), + [anon_sym_DOLLARdefined] = ACTIONS(1541), + [anon_sym_DOLLARembed] = ACTIONS(1541), + [anon_sym_DOLLARand] = ACTIONS(1541), + [anon_sym_DOLLARor] = ACTIONS(1541), + [anon_sym_DOLLARfeature] = ACTIONS(1541), + [anon_sym_DOLLARassignable] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_typeid] = ACTIONS(1541), + [anon_sym_LBRACE_PIPE] = ACTIONS(1543), + [anon_sym_void] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_ichar] = ACTIONS(1541), + [anon_sym_short] = ACTIONS(1541), + [anon_sym_ushort] = ACTIONS(1541), + [anon_sym_uint] = ACTIONS(1541), + [anon_sym_long] = ACTIONS(1541), + [anon_sym_ulong] = ACTIONS(1541), + [anon_sym_int128] = ACTIONS(1541), + [anon_sym_uint128] = ACTIONS(1541), + [anon_sym_float] = ACTIONS(1541), + [anon_sym_double] = ACTIONS(1541), + [anon_sym_float16] = ACTIONS(1541), + [anon_sym_bfloat16] = ACTIONS(1541), + [anon_sym_float128] = ACTIONS(1541), + [anon_sym_iptr] = ACTIONS(1541), + [anon_sym_uptr] = ACTIONS(1541), + [anon_sym_isz] = ACTIONS(1541), + [anon_sym_usz] = ACTIONS(1541), + [anon_sym_anyfault] = ACTIONS(1541), + [anon_sym_any] = ACTIONS(1541), + [anon_sym_DOLLARtypeof] = ACTIONS(1541), + [anon_sym_DOLLARtypefrom] = ACTIONS(1541), + [anon_sym_DOLLARevaltype] = ACTIONS(1541), + [anon_sym_DOLLARvatype] = ACTIONS(1541), + [sym_real_literal] = ACTIONS(1543), + }, + [444] = { + [sym_line_comment] = STATE(444), + [sym_doc_comment] = STATE(444), + [sym_block_comment] = STATE(444), + [sym_ident] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_bytes_literal] = ACTIONS(1547), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1545), + [sym_at_ident] = ACTIONS(1547), + [sym_hash_ident] = ACTIONS(1547), + [sym_type_ident] = ACTIONS(1547), + [sym_ct_type_ident] = ACTIONS(1547), + [sym_const_ident] = ACTIONS(1545), + [sym_builtin] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_tlocal] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_fn] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_defer] = ACTIONS(1545), + [anon_sym_assert] = ACTIONS(1545), + [anon_sym_nextcase] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_foreach] = ACTIONS(1545), + [anon_sym_foreach_r] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_int] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_asm] = ACTIONS(1545), + [anon_sym_DOLLARassert] = ACTIONS(1545), + [anon_sym_DOLLARerror] = ACTIONS(1545), + [anon_sym_DOLLARecho] = ACTIONS(1545), + [anon_sym_DOLLARif] = ACTIONS(1545), + [anon_sym_DOLLARcase] = ACTIONS(1545), + [anon_sym_DOLLARdefault] = ACTIONS(1545), + [anon_sym_DOLLARswitch] = ACTIONS(1545), + [anon_sym_DOLLARendswitch] = ACTIONS(1545), + [anon_sym_DOLLARfor] = ACTIONS(1545), + [anon_sym_DOLLARforeach] = ACTIONS(1545), + [anon_sym_DOLLARalignof] = ACTIONS(1545), + [anon_sym_DOLLARextnameof] = ACTIONS(1545), + [anon_sym_DOLLARnameof] = ACTIONS(1545), + [anon_sym_DOLLARoffsetof] = ACTIONS(1545), + [anon_sym_DOLLARqnameof] = ACTIONS(1545), + [anon_sym_DOLLARvaconst] = ACTIONS(1545), + [anon_sym_DOLLARvaarg] = ACTIONS(1545), + [anon_sym_DOLLARvaref] = ACTIONS(1545), + [anon_sym_DOLLARvaexpr] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_DOLLARvacount] = ACTIONS(1545), + [anon_sym_DOLLAReval] = ACTIONS(1545), + [anon_sym_DOLLARis_const] = ACTIONS(1545), + [anon_sym_DOLLARsizeof] = ACTIONS(1545), + [anon_sym_DOLLARstringify] = ACTIONS(1545), + [anon_sym_DOLLARappend] = ACTIONS(1545), + [anon_sym_DOLLARconcat] = ACTIONS(1545), + [anon_sym_DOLLARdefined] = ACTIONS(1545), + [anon_sym_DOLLARembed] = ACTIONS(1545), + [anon_sym_DOLLARand] = ACTIONS(1545), + [anon_sym_DOLLARor] = ACTIONS(1545), + [anon_sym_DOLLARfeature] = ACTIONS(1545), + [anon_sym_DOLLARassignable] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1547), + [anon_sym_typeid] = ACTIONS(1545), + [anon_sym_LBRACE_PIPE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_ichar] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [anon_sym_ushort] = ACTIONS(1545), + [anon_sym_uint] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_ulong] = ACTIONS(1545), + [anon_sym_int128] = ACTIONS(1545), + [anon_sym_uint128] = ACTIONS(1545), + [anon_sym_float] = ACTIONS(1545), + [anon_sym_double] = ACTIONS(1545), + [anon_sym_float16] = ACTIONS(1545), + [anon_sym_bfloat16] = ACTIONS(1545), + [anon_sym_float128] = ACTIONS(1545), + [anon_sym_iptr] = ACTIONS(1545), + [anon_sym_uptr] = ACTIONS(1545), + [anon_sym_isz] = ACTIONS(1545), + [anon_sym_usz] = ACTIONS(1545), + [anon_sym_anyfault] = ACTIONS(1545), + [anon_sym_any] = ACTIONS(1545), + [anon_sym_DOLLARtypeof] = ACTIONS(1545), + [anon_sym_DOLLARtypefrom] = ACTIONS(1545), + [anon_sym_DOLLARevaltype] = ACTIONS(1545), + [anon_sym_DOLLARvatype] = ACTIONS(1545), + [sym_real_literal] = ACTIONS(1547), + }, + [445] = { + [sym_line_comment] = STATE(445), + [sym_doc_comment] = STATE(445), + [sym_block_comment] = STATE(445), + [sym_ident] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [anon_sym_BQUOTE] = ACTIONS(1551), + [sym_bytes_literal] = ACTIONS(1551), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1549), + [sym_at_ident] = ACTIONS(1551), + [sym_hash_ident] = ACTIONS(1551), + [sym_type_ident] = ACTIONS(1551), + [sym_ct_type_ident] = ACTIONS(1551), + [sym_const_ident] = ACTIONS(1549), + [sym_builtin] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_tlocal] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_defer] = ACTIONS(1549), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_nextcase] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_foreach] = ACTIONS(1549), + [anon_sym_foreach_r] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_int] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_asm] = ACTIONS(1549), + [anon_sym_DOLLARassert] = ACTIONS(1549), + [anon_sym_DOLLARerror] = ACTIONS(1549), + [anon_sym_DOLLARecho] = ACTIONS(1549), + [anon_sym_DOLLARif] = ACTIONS(1549), + [anon_sym_DOLLARcase] = ACTIONS(1549), + [anon_sym_DOLLARdefault] = ACTIONS(1549), + [anon_sym_DOLLARswitch] = ACTIONS(1549), + [anon_sym_DOLLARendswitch] = ACTIONS(1549), + [anon_sym_DOLLARfor] = ACTIONS(1549), + [anon_sym_DOLLARforeach] = ACTIONS(1549), + [anon_sym_DOLLARalignof] = ACTIONS(1549), + [anon_sym_DOLLARextnameof] = ACTIONS(1549), + [anon_sym_DOLLARnameof] = ACTIONS(1549), + [anon_sym_DOLLARoffsetof] = ACTIONS(1549), + [anon_sym_DOLLARqnameof] = ACTIONS(1549), + [anon_sym_DOLLARvaconst] = ACTIONS(1549), + [anon_sym_DOLLARvaarg] = ACTIONS(1549), + [anon_sym_DOLLARvaref] = ACTIONS(1549), + [anon_sym_DOLLARvaexpr] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_null] = ACTIONS(1549), + [anon_sym_DOLLARvacount] = ACTIONS(1549), + [anon_sym_DOLLAReval] = ACTIONS(1549), + [anon_sym_DOLLARis_const] = ACTIONS(1549), + [anon_sym_DOLLARsizeof] = ACTIONS(1549), + [anon_sym_DOLLARstringify] = ACTIONS(1549), + [anon_sym_DOLLARappend] = ACTIONS(1549), + [anon_sym_DOLLARconcat] = ACTIONS(1549), + [anon_sym_DOLLARdefined] = ACTIONS(1549), + [anon_sym_DOLLARembed] = ACTIONS(1549), + [anon_sym_DOLLARand] = ACTIONS(1549), + [anon_sym_DOLLARor] = ACTIONS(1549), + [anon_sym_DOLLARfeature] = ACTIONS(1549), + [anon_sym_DOLLARassignable] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_typeid] = ACTIONS(1549), + [anon_sym_LBRACE_PIPE] = ACTIONS(1551), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_ichar] = ACTIONS(1549), + [anon_sym_short] = ACTIONS(1549), + [anon_sym_ushort] = ACTIONS(1549), + [anon_sym_uint] = ACTIONS(1549), + [anon_sym_long] = ACTIONS(1549), + [anon_sym_ulong] = ACTIONS(1549), + [anon_sym_int128] = ACTIONS(1549), + [anon_sym_uint128] = ACTIONS(1549), + [anon_sym_float] = ACTIONS(1549), + [anon_sym_double] = ACTIONS(1549), + [anon_sym_float16] = ACTIONS(1549), + [anon_sym_bfloat16] = ACTIONS(1549), + [anon_sym_float128] = ACTIONS(1549), + [anon_sym_iptr] = ACTIONS(1549), + [anon_sym_uptr] = ACTIONS(1549), + [anon_sym_isz] = ACTIONS(1549), + [anon_sym_usz] = ACTIONS(1549), + [anon_sym_anyfault] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_DOLLARtypeof] = ACTIONS(1549), + [anon_sym_DOLLARtypefrom] = ACTIONS(1549), + [anon_sym_DOLLARevaltype] = ACTIONS(1549), + [anon_sym_DOLLARvatype] = ACTIONS(1549), + [sym_real_literal] = ACTIONS(1551), + }, + [446] = { + [sym_line_comment] = STATE(446), + [sym_doc_comment] = STATE(446), + [sym_block_comment] = STATE(446), + [sym_ident] = ACTIONS(1557), + [sym_integer_literal] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [sym_bytes_literal] = ACTIONS(1559), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1557), + [sym_at_ident] = ACTIONS(1559), + [sym_hash_ident] = ACTIONS(1559), + [sym_type_ident] = ACTIONS(1559), + [sym_ct_type_ident] = ACTIONS(1559), + [sym_const_ident] = ACTIONS(1557), + [sym_builtin] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_static] = ACTIONS(1557), + [anon_sym_tlocal] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_fn] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_defer] = ACTIONS(1557), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_nextcase] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_foreach] = ACTIONS(1557), + [anon_sym_foreach_r] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_int] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_asm] = ACTIONS(1557), + [anon_sym_DOLLARassert] = ACTIONS(1557), + [anon_sym_DOLLARerror] = ACTIONS(1557), + [anon_sym_DOLLARecho] = ACTIONS(1557), + [anon_sym_DOLLARif] = ACTIONS(1557), + [anon_sym_DOLLARcase] = ACTIONS(1557), + [anon_sym_DOLLARdefault] = ACTIONS(1557), + [anon_sym_DOLLARswitch] = ACTIONS(1557), + [anon_sym_DOLLARendswitch] = ACTIONS(1557), + [anon_sym_DOLLARfor] = ACTIONS(1557), + [anon_sym_DOLLARforeach] = ACTIONS(1557), + [anon_sym_DOLLARalignof] = ACTIONS(1557), + [anon_sym_DOLLARextnameof] = ACTIONS(1557), + [anon_sym_DOLLARnameof] = ACTIONS(1557), + [anon_sym_DOLLARoffsetof] = ACTIONS(1557), + [anon_sym_DOLLARqnameof] = ACTIONS(1557), + [anon_sym_DOLLARvaconst] = ACTIONS(1557), + [anon_sym_DOLLARvaarg] = ACTIONS(1557), + [anon_sym_DOLLARvaref] = ACTIONS(1557), + [anon_sym_DOLLARvaexpr] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_DOLLARvacount] = ACTIONS(1557), + [anon_sym_DOLLAReval] = ACTIONS(1557), + [anon_sym_DOLLARis_const] = ACTIONS(1557), + [anon_sym_DOLLARsizeof] = ACTIONS(1557), + [anon_sym_DOLLARstringify] = ACTIONS(1557), + [anon_sym_DOLLARappend] = ACTIONS(1557), + [anon_sym_DOLLARconcat] = ACTIONS(1557), + [anon_sym_DOLLARdefined] = ACTIONS(1557), + [anon_sym_DOLLARembed] = ACTIONS(1557), + [anon_sym_DOLLARand] = ACTIONS(1557), + [anon_sym_DOLLARor] = ACTIONS(1557), + [anon_sym_DOLLARfeature] = ACTIONS(1557), + [anon_sym_DOLLARassignable] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_typeid] = ACTIONS(1557), + [anon_sym_LBRACE_PIPE] = ACTIONS(1559), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_bool] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_ichar] = ACTIONS(1557), + [anon_sym_short] = ACTIONS(1557), + [anon_sym_ushort] = ACTIONS(1557), + [anon_sym_uint] = ACTIONS(1557), + [anon_sym_long] = ACTIONS(1557), + [anon_sym_ulong] = ACTIONS(1557), + [anon_sym_int128] = ACTIONS(1557), + [anon_sym_uint128] = ACTIONS(1557), + [anon_sym_float] = ACTIONS(1557), + [anon_sym_double] = ACTIONS(1557), + [anon_sym_float16] = ACTIONS(1557), + [anon_sym_bfloat16] = ACTIONS(1557), + [anon_sym_float128] = ACTIONS(1557), + [anon_sym_iptr] = ACTIONS(1557), + [anon_sym_uptr] = ACTIONS(1557), + [anon_sym_isz] = ACTIONS(1557), + [anon_sym_usz] = ACTIONS(1557), + [anon_sym_anyfault] = ACTIONS(1557), + [anon_sym_any] = ACTIONS(1557), + [anon_sym_DOLLARtypeof] = ACTIONS(1557), + [anon_sym_DOLLARtypefrom] = ACTIONS(1557), + [anon_sym_DOLLARevaltype] = ACTIONS(1557), + [anon_sym_DOLLARvatype] = ACTIONS(1557), + [sym_real_literal] = ACTIONS(1559), + }, + [447] = { + [sym_line_comment] = STATE(447), + [sym_doc_comment] = STATE(447), + [sym_block_comment] = STATE(447), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARcase] = ACTIONS(1561), + [anon_sym_DOLLARdefault] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARendswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), + }, + [448] = { + [sym_line_comment] = STATE(448), + [sym_doc_comment] = STATE(448), + [sym_block_comment] = STATE(448), + [sym_else_part] = STATE(693), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1449), - [sym_at_ident] = ACTIONS(1451), - [sym_hash_ident] = ACTIONS(1451), - [sym_type_ident] = ACTIONS(1451), - [sym_ct_type_ident] = ACTIONS(1451), - [sym_const_ident] = ACTIONS(1449), - [sym_builtin] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_static] = ACTIONS(1449), - [anon_sym_tlocal] = ACTIONS(1449), - [anon_sym_SEMI] = ACTIONS(1451), - [anon_sym_fn] = ACTIONS(1449), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1449), - [anon_sym_var] = ACTIONS(1449), - [anon_sym_return] = ACTIONS(1449), - [anon_sym_continue] = ACTIONS(1449), - [anon_sym_break] = ACTIONS(1449), - [anon_sym_defer] = ACTIONS(1449), - [anon_sym_assert] = ACTIONS(1449), - [anon_sym_nextcase] = ACTIONS(1449), - [anon_sym_switch] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_if] = ACTIONS(1449), - [anon_sym_for] = ACTIONS(1449), - [anon_sym_foreach] = ACTIONS(1449), - [anon_sym_foreach_r] = ACTIONS(1449), - [anon_sym_while] = ACTIONS(1449), - [anon_sym_do] = ACTIONS(1449), - [anon_sym_int] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1451), - [anon_sym_asm] = ACTIONS(1449), - [anon_sym_DOLLARassert] = ACTIONS(1449), - [anon_sym_DOLLARerror] = ACTIONS(1449), - [anon_sym_DOLLARecho] = ACTIONS(1449), - [anon_sym_DOLLARif] = ACTIONS(1449), - [anon_sym_DOLLARcase] = ACTIONS(1449), - [anon_sym_DOLLARdefault] = ACTIONS(1449), - [anon_sym_DOLLARswitch] = ACTIONS(1449), - [anon_sym_DOLLARendswitch] = ACTIONS(1449), - [anon_sym_DOLLARfor] = ACTIONS(1449), - [anon_sym_DOLLARforeach] = ACTIONS(1449), - [anon_sym_DOLLARalignof] = ACTIONS(1449), - [anon_sym_DOLLARextnameof] = ACTIONS(1449), - [anon_sym_DOLLARnameof] = ACTIONS(1449), - [anon_sym_DOLLARoffsetof] = ACTIONS(1449), - [anon_sym_DOLLARqnameof] = ACTIONS(1449), - [anon_sym_DOLLAReval] = ACTIONS(1449), - [anon_sym_DOLLARdefined] = ACTIONS(1449), - [anon_sym_DOLLARsizeof] = ACTIONS(1449), - [anon_sym_DOLLARstringify] = ACTIONS(1449), - [anon_sym_DOLLARis_const] = ACTIONS(1449), - [anon_sym_DOLLARvaconst] = ACTIONS(1449), - [anon_sym_DOLLARvaarg] = ACTIONS(1449), - [anon_sym_DOLLARvaref] = ACTIONS(1449), - [anon_sym_DOLLARvaexpr] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1449), - [anon_sym_false] = ACTIONS(1449), - [anon_sym_null] = ACTIONS(1449), - [anon_sym_DOLLARvacount] = ACTIONS(1449), - [anon_sym_DOLLARfeature] = ACTIONS(1449), - [anon_sym_DOLLARand] = ACTIONS(1449), - [anon_sym_DOLLARor] = ACTIONS(1449), - [anon_sym_DOLLARassignable] = ACTIONS(1449), - [anon_sym_DOLLARembed] = ACTIONS(1449), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_TILDE] = ACTIONS(1451), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [anon_sym_typeid] = ACTIONS(1449), - [anon_sym_LBRACE_PIPE] = ACTIONS(1451), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_bool] = ACTIONS(1449), - [anon_sym_char] = ACTIONS(1449), - [anon_sym_ichar] = ACTIONS(1449), - [anon_sym_short] = ACTIONS(1449), - [anon_sym_ushort] = ACTIONS(1449), - [anon_sym_uint] = ACTIONS(1449), - [anon_sym_long] = ACTIONS(1449), - [anon_sym_ulong] = ACTIONS(1449), - [anon_sym_int128] = ACTIONS(1449), - [anon_sym_uint128] = ACTIONS(1449), - [anon_sym_float] = ACTIONS(1449), - [anon_sym_double] = ACTIONS(1449), - [anon_sym_float16] = ACTIONS(1449), - [anon_sym_bfloat16] = ACTIONS(1449), - [anon_sym_float128] = ACTIONS(1449), - [anon_sym_iptr] = ACTIONS(1449), - [anon_sym_uptr] = ACTIONS(1449), - [anon_sym_isz] = ACTIONS(1449), - [anon_sym_usz] = ACTIONS(1449), - [anon_sym_anyfault] = ACTIONS(1449), - [anon_sym_any] = ACTIONS(1449), - [anon_sym_DOLLARtypeof] = ACTIONS(1449), - [anon_sym_DOLLARtypefrom] = ACTIONS(1449), - [anon_sym_DOLLARvatype] = ACTIONS(1449), - [anon_sym_DOLLARevaltype] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1451), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARendforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), }, - [483] = { - [sym_line_comment] = STATE(483), - [sym_doc_comment] = STATE(483), - [sym_block_comment] = STATE(483), - [sym_ident] = ACTIONS(1519), - [sym_integer_literal] = ACTIONS(1521), - [anon_sym_SQUOTE] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1521), - [anon_sym_BQUOTE] = ACTIONS(1521), - [sym_bytes_literal] = ACTIONS(1521), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1519), - [sym_at_ident] = ACTIONS(1521), - [sym_hash_ident] = ACTIONS(1521), - [sym_type_ident] = ACTIONS(1521), - [sym_ct_type_ident] = ACTIONS(1521), - [sym_const_ident] = ACTIONS(1519), - [sym_builtin] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_static] = ACTIONS(1519), - [anon_sym_tlocal] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_fn] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(1519), - [anon_sym_var] = ACTIONS(1519), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_defer] = ACTIONS(1519), - [anon_sym_assert] = ACTIONS(1519), - [anon_sym_nextcase] = ACTIONS(1519), - [anon_sym_switch] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_foreach] = ACTIONS(1519), - [anon_sym_foreach_r] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_do] = ACTIONS(1519), - [anon_sym_int] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1521), - [anon_sym_asm] = ACTIONS(1519), - [anon_sym_DOLLARassert] = ACTIONS(1519), - [anon_sym_DOLLARerror] = ACTIONS(1519), - [anon_sym_DOLLARecho] = ACTIONS(1519), - [anon_sym_DOLLARif] = ACTIONS(1519), - [anon_sym_DOLLARcase] = ACTIONS(1519), - [anon_sym_DOLLARdefault] = ACTIONS(1519), - [anon_sym_DOLLARswitch] = ACTIONS(1519), - [anon_sym_DOLLARendswitch] = ACTIONS(1519), - [anon_sym_DOLLARfor] = ACTIONS(1519), - [anon_sym_DOLLARforeach] = ACTIONS(1519), - [anon_sym_DOLLARalignof] = ACTIONS(1519), - [anon_sym_DOLLARextnameof] = ACTIONS(1519), - [anon_sym_DOLLARnameof] = ACTIONS(1519), - [anon_sym_DOLLARoffsetof] = ACTIONS(1519), - [anon_sym_DOLLARqnameof] = ACTIONS(1519), - [anon_sym_DOLLAReval] = ACTIONS(1519), - [anon_sym_DOLLARdefined] = ACTIONS(1519), - [anon_sym_DOLLARsizeof] = ACTIONS(1519), - [anon_sym_DOLLARstringify] = ACTIONS(1519), - [anon_sym_DOLLARis_const] = ACTIONS(1519), - [anon_sym_DOLLARvaconst] = ACTIONS(1519), - [anon_sym_DOLLARvaarg] = ACTIONS(1519), - [anon_sym_DOLLARvaref] = ACTIONS(1519), - [anon_sym_DOLLARvaexpr] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1519), - [anon_sym_DOLLARvacount] = ACTIONS(1519), - [anon_sym_DOLLARfeature] = ACTIONS(1519), - [anon_sym_DOLLARand] = ACTIONS(1519), - [anon_sym_DOLLARor] = ACTIONS(1519), - [anon_sym_DOLLARassignable] = ACTIONS(1519), - [anon_sym_DOLLARembed] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1521), - [anon_sym_TILDE] = ACTIONS(1521), - [anon_sym_PLUS_PLUS] = ACTIONS(1521), - [anon_sym_DASH_DASH] = ACTIONS(1521), - [anon_sym_typeid] = ACTIONS(1519), - [anon_sym_LBRACE_PIPE] = ACTIONS(1521), - [anon_sym_void] = ACTIONS(1519), - [anon_sym_bool] = ACTIONS(1519), - [anon_sym_char] = ACTIONS(1519), - [anon_sym_ichar] = ACTIONS(1519), - [anon_sym_short] = ACTIONS(1519), - [anon_sym_ushort] = ACTIONS(1519), - [anon_sym_uint] = ACTIONS(1519), - [anon_sym_long] = ACTIONS(1519), - [anon_sym_ulong] = ACTIONS(1519), - [anon_sym_int128] = ACTIONS(1519), - [anon_sym_uint128] = ACTIONS(1519), - [anon_sym_float] = ACTIONS(1519), - [anon_sym_double] = ACTIONS(1519), - [anon_sym_float16] = ACTIONS(1519), - [anon_sym_bfloat16] = ACTIONS(1519), - [anon_sym_float128] = ACTIONS(1519), - [anon_sym_iptr] = ACTIONS(1519), - [anon_sym_uptr] = ACTIONS(1519), - [anon_sym_isz] = ACTIONS(1519), - [anon_sym_usz] = ACTIONS(1519), - [anon_sym_anyfault] = ACTIONS(1519), - [anon_sym_any] = ACTIONS(1519), - [anon_sym_DOLLARtypeof] = ACTIONS(1519), - [anon_sym_DOLLARtypefrom] = ACTIONS(1519), - [anon_sym_DOLLARvatype] = ACTIONS(1519), - [anon_sym_DOLLARevaltype] = ACTIONS(1519), - [sym_real_literal] = ACTIONS(1521), + [449] = { + [sym_line_comment] = STATE(449), + [sym_doc_comment] = STATE(449), + [sym_block_comment] = STATE(449), + [sym_ident] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [anon_sym_BQUOTE] = ACTIONS(1567), + [sym_bytes_literal] = ACTIONS(1567), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1565), + [sym_at_ident] = ACTIONS(1567), + [sym_hash_ident] = ACTIONS(1567), + [sym_type_ident] = ACTIONS(1567), + [sym_ct_type_ident] = ACTIONS(1567), + [sym_const_ident] = ACTIONS(1565), + [sym_builtin] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_tlocal] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_fn] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_var] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_defer] = ACTIONS(1565), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_nextcase] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_foreach] = ACTIONS(1565), + [anon_sym_foreach_r] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_int] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_asm] = ACTIONS(1565), + [anon_sym_DOLLARassert] = ACTIONS(1565), + [anon_sym_DOLLARerror] = ACTIONS(1565), + [anon_sym_DOLLARecho] = ACTIONS(1565), + [anon_sym_DOLLARif] = ACTIONS(1565), + [anon_sym_DOLLARcase] = ACTIONS(1565), + [anon_sym_DOLLARdefault] = ACTIONS(1565), + [anon_sym_DOLLARswitch] = ACTIONS(1565), + [anon_sym_DOLLARendswitch] = ACTIONS(1565), + [anon_sym_DOLLARfor] = ACTIONS(1565), + [anon_sym_DOLLARforeach] = ACTIONS(1565), + [anon_sym_DOLLARalignof] = ACTIONS(1565), + [anon_sym_DOLLARextnameof] = ACTIONS(1565), + [anon_sym_DOLLARnameof] = ACTIONS(1565), + [anon_sym_DOLLARoffsetof] = ACTIONS(1565), + [anon_sym_DOLLARqnameof] = ACTIONS(1565), + [anon_sym_DOLLARvaconst] = ACTIONS(1565), + [anon_sym_DOLLARvaarg] = ACTIONS(1565), + [anon_sym_DOLLARvaref] = ACTIONS(1565), + [anon_sym_DOLLARvaexpr] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_DOLLARvacount] = ACTIONS(1565), + [anon_sym_DOLLAReval] = ACTIONS(1565), + [anon_sym_DOLLARis_const] = ACTIONS(1565), + [anon_sym_DOLLARsizeof] = ACTIONS(1565), + [anon_sym_DOLLARstringify] = ACTIONS(1565), + [anon_sym_DOLLARappend] = ACTIONS(1565), + [anon_sym_DOLLARconcat] = ACTIONS(1565), + [anon_sym_DOLLARdefined] = ACTIONS(1565), + [anon_sym_DOLLARembed] = ACTIONS(1565), + [anon_sym_DOLLARand] = ACTIONS(1565), + [anon_sym_DOLLARor] = ACTIONS(1565), + [anon_sym_DOLLARfeature] = ACTIONS(1565), + [anon_sym_DOLLARassignable] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_typeid] = ACTIONS(1565), + [anon_sym_LBRACE_PIPE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_bool] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_ichar] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [anon_sym_ushort] = ACTIONS(1565), + [anon_sym_uint] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_ulong] = ACTIONS(1565), + [anon_sym_int128] = ACTIONS(1565), + [anon_sym_uint128] = ACTIONS(1565), + [anon_sym_float] = ACTIONS(1565), + [anon_sym_double] = ACTIONS(1565), + [anon_sym_float16] = ACTIONS(1565), + [anon_sym_bfloat16] = ACTIONS(1565), + [anon_sym_float128] = ACTIONS(1565), + [anon_sym_iptr] = ACTIONS(1565), + [anon_sym_uptr] = ACTIONS(1565), + [anon_sym_isz] = ACTIONS(1565), + [anon_sym_usz] = ACTIONS(1565), + [anon_sym_anyfault] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1565), + [anon_sym_DOLLARtypeof] = ACTIONS(1565), + [anon_sym_DOLLARtypefrom] = ACTIONS(1565), + [anon_sym_DOLLARevaltype] = ACTIONS(1565), + [anon_sym_DOLLARvatype] = ACTIONS(1565), + [sym_real_literal] = ACTIONS(1567), }, - [484] = { - [sym_line_comment] = STATE(484), - [sym_doc_comment] = STATE(484), - [sym_block_comment] = STATE(484), - [sym_ident] = ACTIONS(1515), - [sym_integer_literal] = ACTIONS(1517), - [anon_sym_SQUOTE] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(1517), - [anon_sym_BQUOTE] = ACTIONS(1517), - [sym_bytes_literal] = ACTIONS(1517), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1515), - [sym_at_ident] = ACTIONS(1517), - [sym_hash_ident] = ACTIONS(1517), - [sym_type_ident] = ACTIONS(1517), - [sym_ct_type_ident] = ACTIONS(1517), - [sym_const_ident] = ACTIONS(1515), - [sym_builtin] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_static] = ACTIONS(1515), - [anon_sym_tlocal] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1517), - [anon_sym_fn] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_var] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_defer] = ACTIONS(1515), - [anon_sym_assert] = ACTIONS(1515), - [anon_sym_nextcase] = ACTIONS(1515), - [anon_sym_switch] = ACTIONS(1515), - [anon_sym_AMP_AMP] = ACTIONS(1517), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_foreach] = ACTIONS(1515), - [anon_sym_foreach_r] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_int] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_asm] = ACTIONS(1515), - [anon_sym_DOLLARassert] = ACTIONS(1515), - [anon_sym_DOLLARerror] = ACTIONS(1515), - [anon_sym_DOLLARecho] = ACTIONS(1515), - [anon_sym_DOLLARif] = ACTIONS(1515), - [anon_sym_DOLLARcase] = ACTIONS(1515), - [anon_sym_DOLLARdefault] = ACTIONS(1515), - [anon_sym_DOLLARswitch] = ACTIONS(1515), - [anon_sym_DOLLARendswitch] = ACTIONS(1515), - [anon_sym_DOLLARfor] = ACTIONS(1515), - [anon_sym_DOLLARforeach] = ACTIONS(1515), - [anon_sym_DOLLARalignof] = ACTIONS(1515), - [anon_sym_DOLLARextnameof] = ACTIONS(1515), - [anon_sym_DOLLARnameof] = ACTIONS(1515), - [anon_sym_DOLLARoffsetof] = ACTIONS(1515), - [anon_sym_DOLLARqnameof] = ACTIONS(1515), - [anon_sym_DOLLAReval] = ACTIONS(1515), - [anon_sym_DOLLARdefined] = ACTIONS(1515), - [anon_sym_DOLLARsizeof] = ACTIONS(1515), - [anon_sym_DOLLARstringify] = ACTIONS(1515), - [anon_sym_DOLLARis_const] = ACTIONS(1515), - [anon_sym_DOLLARvaconst] = ACTIONS(1515), - [anon_sym_DOLLARvaarg] = ACTIONS(1515), - [anon_sym_DOLLARvaref] = ACTIONS(1515), - [anon_sym_DOLLARvaexpr] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [anon_sym_null] = ACTIONS(1515), - [anon_sym_DOLLARvacount] = ACTIONS(1515), - [anon_sym_DOLLARfeature] = ACTIONS(1515), - [anon_sym_DOLLARand] = ACTIONS(1515), - [anon_sym_DOLLARor] = ACTIONS(1515), - [anon_sym_DOLLARassignable] = ACTIONS(1515), - [anon_sym_DOLLARembed] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [anon_sym_typeid] = ACTIONS(1515), - [anon_sym_LBRACE_PIPE] = ACTIONS(1517), - [anon_sym_void] = ACTIONS(1515), - [anon_sym_bool] = ACTIONS(1515), - [anon_sym_char] = ACTIONS(1515), - [anon_sym_ichar] = ACTIONS(1515), - [anon_sym_short] = ACTIONS(1515), - [anon_sym_ushort] = ACTIONS(1515), - [anon_sym_uint] = ACTIONS(1515), - [anon_sym_long] = ACTIONS(1515), - [anon_sym_ulong] = ACTIONS(1515), - [anon_sym_int128] = ACTIONS(1515), - [anon_sym_uint128] = ACTIONS(1515), - [anon_sym_float] = ACTIONS(1515), - [anon_sym_double] = ACTIONS(1515), - [anon_sym_float16] = ACTIONS(1515), - [anon_sym_bfloat16] = ACTIONS(1515), - [anon_sym_float128] = ACTIONS(1515), - [anon_sym_iptr] = ACTIONS(1515), - [anon_sym_uptr] = ACTIONS(1515), - [anon_sym_isz] = ACTIONS(1515), - [anon_sym_usz] = ACTIONS(1515), - [anon_sym_anyfault] = ACTIONS(1515), - [anon_sym_any] = ACTIONS(1515), - [anon_sym_DOLLARtypeof] = ACTIONS(1515), - [anon_sym_DOLLARtypefrom] = ACTIONS(1515), - [anon_sym_DOLLARvatype] = ACTIONS(1515), - [anon_sym_DOLLARevaltype] = ACTIONS(1515), - [sym_real_literal] = ACTIONS(1517), + [450] = { + [sym_line_comment] = STATE(450), + [sym_doc_comment] = STATE(450), + [sym_block_comment] = STATE(450), + [sym_ident] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [anon_sym_BQUOTE] = ACTIONS(1571), + [sym_bytes_literal] = ACTIONS(1571), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1569), + [sym_at_ident] = ACTIONS(1571), + [sym_hash_ident] = ACTIONS(1571), + [sym_type_ident] = ACTIONS(1571), + [sym_ct_type_ident] = ACTIONS(1571), + [sym_const_ident] = ACTIONS(1569), + [sym_builtin] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_tlocal] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_var] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_defer] = ACTIONS(1569), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_nextcase] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_foreach] = ACTIONS(1569), + [anon_sym_foreach_r] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_int] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_asm] = ACTIONS(1569), + [anon_sym_DOLLARassert] = ACTIONS(1569), + [anon_sym_DOLLARerror] = ACTIONS(1569), + [anon_sym_DOLLARecho] = ACTIONS(1569), + [anon_sym_DOLLARif] = ACTIONS(1569), + [anon_sym_DOLLARcase] = ACTIONS(1569), + [anon_sym_DOLLARdefault] = ACTIONS(1569), + [anon_sym_DOLLARswitch] = ACTIONS(1569), + [anon_sym_DOLLARendswitch] = ACTIONS(1569), + [anon_sym_DOLLARfor] = ACTIONS(1569), + [anon_sym_DOLLARforeach] = ACTIONS(1569), + [anon_sym_DOLLARalignof] = ACTIONS(1569), + [anon_sym_DOLLARextnameof] = ACTIONS(1569), + [anon_sym_DOLLARnameof] = ACTIONS(1569), + [anon_sym_DOLLARoffsetof] = ACTIONS(1569), + [anon_sym_DOLLARqnameof] = ACTIONS(1569), + [anon_sym_DOLLARvaconst] = ACTIONS(1569), + [anon_sym_DOLLARvaarg] = ACTIONS(1569), + [anon_sym_DOLLARvaref] = ACTIONS(1569), + [anon_sym_DOLLARvaexpr] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [anon_sym_DOLLARvacount] = ACTIONS(1569), + [anon_sym_DOLLAReval] = ACTIONS(1569), + [anon_sym_DOLLARis_const] = ACTIONS(1569), + [anon_sym_DOLLARsizeof] = ACTIONS(1569), + [anon_sym_DOLLARstringify] = ACTIONS(1569), + [anon_sym_DOLLARappend] = ACTIONS(1569), + [anon_sym_DOLLARconcat] = ACTIONS(1569), + [anon_sym_DOLLARdefined] = ACTIONS(1569), + [anon_sym_DOLLARembed] = ACTIONS(1569), + [anon_sym_DOLLARand] = ACTIONS(1569), + [anon_sym_DOLLARor] = ACTIONS(1569), + [anon_sym_DOLLARfeature] = ACTIONS(1569), + [anon_sym_DOLLARassignable] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_typeid] = ACTIONS(1569), + [anon_sym_LBRACE_PIPE] = ACTIONS(1571), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_bool] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_ichar] = ACTIONS(1569), + [anon_sym_short] = ACTIONS(1569), + [anon_sym_ushort] = ACTIONS(1569), + [anon_sym_uint] = ACTIONS(1569), + [anon_sym_long] = ACTIONS(1569), + [anon_sym_ulong] = ACTIONS(1569), + [anon_sym_int128] = ACTIONS(1569), + [anon_sym_uint128] = ACTIONS(1569), + [anon_sym_float] = ACTIONS(1569), + [anon_sym_double] = ACTIONS(1569), + [anon_sym_float16] = ACTIONS(1569), + [anon_sym_bfloat16] = ACTIONS(1569), + [anon_sym_float128] = ACTIONS(1569), + [anon_sym_iptr] = ACTIONS(1569), + [anon_sym_uptr] = ACTIONS(1569), + [anon_sym_isz] = ACTIONS(1569), + [anon_sym_usz] = ACTIONS(1569), + [anon_sym_anyfault] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1569), + [anon_sym_DOLLARtypeof] = ACTIONS(1569), + [anon_sym_DOLLARtypefrom] = ACTIONS(1569), + [anon_sym_DOLLARevaltype] = ACTIONS(1569), + [anon_sym_DOLLARvatype] = ACTIONS(1569), + [sym_real_literal] = ACTIONS(1571), }, - [485] = { - [sym_line_comment] = STATE(485), - [sym_doc_comment] = STATE(485), - [sym_block_comment] = STATE(485), - [sym_else_part] = STATE(635), - [sym_ident] = ACTIONS(1365), - [sym_integer_literal] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1367), - [sym_bytes_literal] = ACTIONS(1367), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1365), - [sym_at_ident] = ACTIONS(1367), - [sym_hash_ident] = ACTIONS(1367), - [sym_type_ident] = ACTIONS(1367), - [sym_ct_type_ident] = ACTIONS(1367), - [sym_const_ident] = ACTIONS(1365), - [sym_builtin] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_tlocal] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_fn] = ACTIONS(1365), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_var] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_defer] = ACTIONS(1365), - [anon_sym_assert] = ACTIONS(1365), - [anon_sym_nextcase] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_else] = ACTIONS(1635), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_foreach] = ACTIONS(1365), - [anon_sym_foreach_r] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_do] = ACTIONS(1365), - [anon_sym_int] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_asm] = ACTIONS(1365), - [anon_sym_DOLLARassert] = ACTIONS(1365), - [anon_sym_DOLLARerror] = ACTIONS(1365), - [anon_sym_DOLLARecho] = ACTIONS(1365), - [anon_sym_DOLLARif] = ACTIONS(1365), - [anon_sym_DOLLARendif] = ACTIONS(1365), - [anon_sym_DOLLARswitch] = ACTIONS(1365), - [anon_sym_DOLLARfor] = ACTIONS(1365), - [anon_sym_DOLLARforeach] = ACTIONS(1365), - [anon_sym_DOLLARalignof] = ACTIONS(1365), - [anon_sym_DOLLARextnameof] = ACTIONS(1365), - [anon_sym_DOLLARnameof] = ACTIONS(1365), - [anon_sym_DOLLARoffsetof] = ACTIONS(1365), - [anon_sym_DOLLARqnameof] = ACTIONS(1365), - [anon_sym_DOLLAReval] = ACTIONS(1365), - [anon_sym_DOLLARdefined] = ACTIONS(1365), - [anon_sym_DOLLARsizeof] = ACTIONS(1365), - [anon_sym_DOLLARstringify] = ACTIONS(1365), - [anon_sym_DOLLARis_const] = ACTIONS(1365), - [anon_sym_DOLLARvaconst] = ACTIONS(1365), - [anon_sym_DOLLARvaarg] = ACTIONS(1365), - [anon_sym_DOLLARvaref] = ACTIONS(1365), - [anon_sym_DOLLARvaexpr] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1365), - [anon_sym_false] = ACTIONS(1365), - [anon_sym_null] = ACTIONS(1365), - [anon_sym_DOLLARvacount] = ACTIONS(1365), - [anon_sym_DOLLARfeature] = ACTIONS(1365), - [anon_sym_DOLLARand] = ACTIONS(1365), - [anon_sym_DOLLARor] = ACTIONS(1365), - [anon_sym_DOLLARassignable] = ACTIONS(1365), - [anon_sym_DOLLARembed] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_typeid] = ACTIONS(1365), - [anon_sym_LBRACE_PIPE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1365), - [anon_sym_bool] = ACTIONS(1365), - [anon_sym_char] = ACTIONS(1365), - [anon_sym_ichar] = ACTIONS(1365), - [anon_sym_short] = ACTIONS(1365), - [anon_sym_ushort] = ACTIONS(1365), - [anon_sym_uint] = ACTIONS(1365), - [anon_sym_long] = ACTIONS(1365), - [anon_sym_ulong] = ACTIONS(1365), - [anon_sym_int128] = ACTIONS(1365), - [anon_sym_uint128] = ACTIONS(1365), - [anon_sym_float] = ACTIONS(1365), - [anon_sym_double] = ACTIONS(1365), - [anon_sym_float16] = ACTIONS(1365), - [anon_sym_bfloat16] = ACTIONS(1365), - [anon_sym_float128] = ACTIONS(1365), - [anon_sym_iptr] = ACTIONS(1365), - [anon_sym_uptr] = ACTIONS(1365), - [anon_sym_isz] = ACTIONS(1365), - [anon_sym_usz] = ACTIONS(1365), - [anon_sym_anyfault] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1365), - [anon_sym_DOLLARtypeof] = ACTIONS(1365), - [anon_sym_DOLLARtypefrom] = ACTIONS(1365), - [anon_sym_DOLLARvatype] = ACTIONS(1365), - [anon_sym_DOLLARevaltype] = ACTIONS(1365), - [sym_real_literal] = ACTIONS(1367), + [451] = { + [sym_line_comment] = STATE(451), + [sym_doc_comment] = STATE(451), + [sym_block_comment] = STATE(451), + [sym_ident] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_bytes_literal] = ACTIONS(1583), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1581), + [sym_at_ident] = ACTIONS(1583), + [sym_hash_ident] = ACTIONS(1583), + [sym_type_ident] = ACTIONS(1583), + [sym_ct_type_ident] = ACTIONS(1583), + [sym_const_ident] = ACTIONS(1581), + [sym_builtin] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_tlocal] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_fn] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_var] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_defer] = ACTIONS(1581), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_nextcase] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_AMP_AMP] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_foreach] = ACTIONS(1581), + [anon_sym_foreach_r] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_int] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_asm] = ACTIONS(1581), + [anon_sym_DOLLARassert] = ACTIONS(1581), + [anon_sym_DOLLARerror] = ACTIONS(1581), + [anon_sym_DOLLARecho] = ACTIONS(1581), + [anon_sym_DOLLARif] = ACTIONS(1581), + [anon_sym_DOLLARcase] = ACTIONS(1581), + [anon_sym_DOLLARdefault] = ACTIONS(1581), + [anon_sym_DOLLARswitch] = ACTIONS(1581), + [anon_sym_DOLLARendswitch] = ACTIONS(1581), + [anon_sym_DOLLARfor] = ACTIONS(1581), + [anon_sym_DOLLARforeach] = ACTIONS(1581), + [anon_sym_DOLLARalignof] = ACTIONS(1581), + [anon_sym_DOLLARextnameof] = ACTIONS(1581), + [anon_sym_DOLLARnameof] = ACTIONS(1581), + [anon_sym_DOLLARoffsetof] = ACTIONS(1581), + [anon_sym_DOLLARqnameof] = ACTIONS(1581), + [anon_sym_DOLLARvaconst] = ACTIONS(1581), + [anon_sym_DOLLARvaarg] = ACTIONS(1581), + [anon_sym_DOLLARvaref] = ACTIONS(1581), + [anon_sym_DOLLARvaexpr] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_DOLLARvacount] = ACTIONS(1581), + [anon_sym_DOLLAReval] = ACTIONS(1581), + [anon_sym_DOLLARis_const] = ACTIONS(1581), + [anon_sym_DOLLARsizeof] = ACTIONS(1581), + [anon_sym_DOLLARstringify] = ACTIONS(1581), + [anon_sym_DOLLARappend] = ACTIONS(1581), + [anon_sym_DOLLARconcat] = ACTIONS(1581), + [anon_sym_DOLLARdefined] = ACTIONS(1581), + [anon_sym_DOLLARembed] = ACTIONS(1581), + [anon_sym_DOLLARand] = ACTIONS(1581), + [anon_sym_DOLLARor] = ACTIONS(1581), + [anon_sym_DOLLARfeature] = ACTIONS(1581), + [anon_sym_DOLLARassignable] = ACTIONS(1581), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_typeid] = ACTIONS(1581), + [anon_sym_LBRACE_PIPE] = ACTIONS(1583), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_bool] = ACTIONS(1581), + [anon_sym_char] = ACTIONS(1581), + [anon_sym_ichar] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [anon_sym_ushort] = ACTIONS(1581), + [anon_sym_uint] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_ulong] = ACTIONS(1581), + [anon_sym_int128] = ACTIONS(1581), + [anon_sym_uint128] = ACTIONS(1581), + [anon_sym_float] = ACTIONS(1581), + [anon_sym_double] = ACTIONS(1581), + [anon_sym_float16] = ACTIONS(1581), + [anon_sym_bfloat16] = ACTIONS(1581), + [anon_sym_float128] = ACTIONS(1581), + [anon_sym_iptr] = ACTIONS(1581), + [anon_sym_uptr] = ACTIONS(1581), + [anon_sym_isz] = ACTIONS(1581), + [anon_sym_usz] = ACTIONS(1581), + [anon_sym_anyfault] = ACTIONS(1581), + [anon_sym_any] = ACTIONS(1581), + [anon_sym_DOLLARtypeof] = ACTIONS(1581), + [anon_sym_DOLLARtypefrom] = ACTIONS(1581), + [anon_sym_DOLLARevaltype] = ACTIONS(1581), + [anon_sym_DOLLARvatype] = ACTIONS(1581), + [sym_real_literal] = ACTIONS(1583), }, - [486] = { - [sym_line_comment] = STATE(486), - [sym_doc_comment] = STATE(486), - [sym_block_comment] = STATE(486), - [sym_ident] = ACTIONS(1511), - [sym_integer_literal] = ACTIONS(1513), - [anon_sym_SQUOTE] = ACTIONS(1513), - [anon_sym_DQUOTE] = ACTIONS(1513), - [anon_sym_BQUOTE] = ACTIONS(1513), - [sym_bytes_literal] = ACTIONS(1513), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1511), - [sym_at_ident] = ACTIONS(1513), - [sym_hash_ident] = ACTIONS(1513), - [sym_type_ident] = ACTIONS(1513), - [sym_ct_type_ident] = ACTIONS(1513), - [sym_const_ident] = ACTIONS(1511), - [sym_builtin] = ACTIONS(1513), - [anon_sym_LPAREN] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_tlocal] = ACTIONS(1511), - [anon_sym_SEMI] = ACTIONS(1513), - [anon_sym_fn] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_var] = ACTIONS(1511), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_defer] = ACTIONS(1511), - [anon_sym_assert] = ACTIONS(1511), - [anon_sym_nextcase] = ACTIONS(1511), - [anon_sym_switch] = ACTIONS(1511), - [anon_sym_AMP_AMP] = ACTIONS(1513), - [anon_sym_if] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_foreach] = ACTIONS(1511), - [anon_sym_foreach_r] = ACTIONS(1511), - [anon_sym_while] = ACTIONS(1511), - [anon_sym_do] = ACTIONS(1511), - [anon_sym_int] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_asm] = ACTIONS(1511), - [anon_sym_DOLLARassert] = ACTIONS(1511), - [anon_sym_DOLLARerror] = ACTIONS(1511), - [anon_sym_DOLLARecho] = ACTIONS(1511), - [anon_sym_DOLLARif] = ACTIONS(1511), - [anon_sym_DOLLARcase] = ACTIONS(1511), - [anon_sym_DOLLARdefault] = ACTIONS(1511), - [anon_sym_DOLLARswitch] = ACTIONS(1511), - [anon_sym_DOLLARendswitch] = ACTIONS(1511), - [anon_sym_DOLLARfor] = ACTIONS(1511), - [anon_sym_DOLLARforeach] = ACTIONS(1511), - [anon_sym_DOLLARalignof] = ACTIONS(1511), - [anon_sym_DOLLARextnameof] = ACTIONS(1511), - [anon_sym_DOLLARnameof] = ACTIONS(1511), - [anon_sym_DOLLARoffsetof] = ACTIONS(1511), - [anon_sym_DOLLARqnameof] = ACTIONS(1511), - [anon_sym_DOLLAReval] = ACTIONS(1511), - [anon_sym_DOLLARdefined] = ACTIONS(1511), - [anon_sym_DOLLARsizeof] = ACTIONS(1511), - [anon_sym_DOLLARstringify] = ACTIONS(1511), - [anon_sym_DOLLARis_const] = ACTIONS(1511), - [anon_sym_DOLLARvaconst] = ACTIONS(1511), - [anon_sym_DOLLARvaarg] = ACTIONS(1511), - [anon_sym_DOLLARvaref] = ACTIONS(1511), - [anon_sym_DOLLARvaexpr] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1511), - [anon_sym_false] = ACTIONS(1511), - [anon_sym_null] = ACTIONS(1511), - [anon_sym_DOLLARvacount] = ACTIONS(1511), - [anon_sym_DOLLARfeature] = ACTIONS(1511), - [anon_sym_DOLLARand] = ACTIONS(1511), - [anon_sym_DOLLARor] = ACTIONS(1511), - [anon_sym_DOLLARassignable] = ACTIONS(1511), - [anon_sym_DOLLARembed] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_TILDE] = ACTIONS(1513), - [anon_sym_PLUS_PLUS] = ACTIONS(1513), - [anon_sym_DASH_DASH] = ACTIONS(1513), - [anon_sym_typeid] = ACTIONS(1511), - [anon_sym_LBRACE_PIPE] = ACTIONS(1513), - [anon_sym_void] = ACTIONS(1511), - [anon_sym_bool] = ACTIONS(1511), - [anon_sym_char] = ACTIONS(1511), - [anon_sym_ichar] = ACTIONS(1511), - [anon_sym_short] = ACTIONS(1511), - [anon_sym_ushort] = ACTIONS(1511), - [anon_sym_uint] = ACTIONS(1511), - [anon_sym_long] = ACTIONS(1511), - [anon_sym_ulong] = ACTIONS(1511), - [anon_sym_int128] = ACTIONS(1511), - [anon_sym_uint128] = ACTIONS(1511), - [anon_sym_float] = ACTIONS(1511), - [anon_sym_double] = ACTIONS(1511), - [anon_sym_float16] = ACTIONS(1511), - [anon_sym_bfloat16] = ACTIONS(1511), - [anon_sym_float128] = ACTIONS(1511), - [anon_sym_iptr] = ACTIONS(1511), - [anon_sym_uptr] = ACTIONS(1511), - [anon_sym_isz] = ACTIONS(1511), - [anon_sym_usz] = ACTIONS(1511), - [anon_sym_anyfault] = ACTIONS(1511), - [anon_sym_any] = ACTIONS(1511), - [anon_sym_DOLLARtypeof] = ACTIONS(1511), - [anon_sym_DOLLARtypefrom] = ACTIONS(1511), - [anon_sym_DOLLARvatype] = ACTIONS(1511), - [anon_sym_DOLLARevaltype] = ACTIONS(1511), - [sym_real_literal] = ACTIONS(1513), + [452] = { + [sym_line_comment] = STATE(452), + [sym_doc_comment] = STATE(452), + [sym_block_comment] = STATE(452), + [sym_ident] = ACTIONS(1597), + [sym_integer_literal] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_bytes_literal] = ACTIONS(1599), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1597), + [sym_at_ident] = ACTIONS(1599), + [sym_hash_ident] = ACTIONS(1599), + [sym_type_ident] = ACTIONS(1599), + [sym_ct_type_ident] = ACTIONS(1599), + [sym_const_ident] = ACTIONS(1597), + [sym_builtin] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_tlocal] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_fn] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_var] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_defer] = ACTIONS(1597), + [anon_sym_assert] = ACTIONS(1597), + [anon_sym_nextcase] = ACTIONS(1597), + [anon_sym_switch] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_foreach] = ACTIONS(1597), + [anon_sym_foreach_r] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_int] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_asm] = ACTIONS(1597), + [anon_sym_DOLLARassert] = ACTIONS(1597), + [anon_sym_DOLLARerror] = ACTIONS(1597), + [anon_sym_DOLLARecho] = ACTIONS(1597), + [anon_sym_DOLLARif] = ACTIONS(1597), + [anon_sym_DOLLARcase] = ACTIONS(1597), + [anon_sym_DOLLARdefault] = ACTIONS(1597), + [anon_sym_DOLLARswitch] = ACTIONS(1597), + [anon_sym_DOLLARendswitch] = ACTIONS(1597), + [anon_sym_DOLLARfor] = ACTIONS(1597), + [anon_sym_DOLLARforeach] = ACTIONS(1597), + [anon_sym_DOLLARalignof] = ACTIONS(1597), + [anon_sym_DOLLARextnameof] = ACTIONS(1597), + [anon_sym_DOLLARnameof] = ACTIONS(1597), + [anon_sym_DOLLARoffsetof] = ACTIONS(1597), + [anon_sym_DOLLARqnameof] = ACTIONS(1597), + [anon_sym_DOLLARvaconst] = ACTIONS(1597), + [anon_sym_DOLLARvaarg] = ACTIONS(1597), + [anon_sym_DOLLARvaref] = ACTIONS(1597), + [anon_sym_DOLLARvaexpr] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_DOLLARvacount] = ACTIONS(1597), + [anon_sym_DOLLAReval] = ACTIONS(1597), + [anon_sym_DOLLARis_const] = ACTIONS(1597), + [anon_sym_DOLLARsizeof] = ACTIONS(1597), + [anon_sym_DOLLARstringify] = ACTIONS(1597), + [anon_sym_DOLLARappend] = ACTIONS(1597), + [anon_sym_DOLLARconcat] = ACTIONS(1597), + [anon_sym_DOLLARdefined] = ACTIONS(1597), + [anon_sym_DOLLARembed] = ACTIONS(1597), + [anon_sym_DOLLARand] = ACTIONS(1597), + [anon_sym_DOLLARor] = ACTIONS(1597), + [anon_sym_DOLLARfeature] = ACTIONS(1597), + [anon_sym_DOLLARassignable] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_typeid] = ACTIONS(1597), + [anon_sym_LBRACE_PIPE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1597), + [anon_sym_bool] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_ichar] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [anon_sym_ushort] = ACTIONS(1597), + [anon_sym_uint] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_ulong] = ACTIONS(1597), + [anon_sym_int128] = ACTIONS(1597), + [anon_sym_uint128] = ACTIONS(1597), + [anon_sym_float] = ACTIONS(1597), + [anon_sym_double] = ACTIONS(1597), + [anon_sym_float16] = ACTIONS(1597), + [anon_sym_bfloat16] = ACTIONS(1597), + [anon_sym_float128] = ACTIONS(1597), + [anon_sym_iptr] = ACTIONS(1597), + [anon_sym_uptr] = ACTIONS(1597), + [anon_sym_isz] = ACTIONS(1597), + [anon_sym_usz] = ACTIONS(1597), + [anon_sym_anyfault] = ACTIONS(1597), + [anon_sym_any] = ACTIONS(1597), + [anon_sym_DOLLARtypeof] = ACTIONS(1597), + [anon_sym_DOLLARtypefrom] = ACTIONS(1597), + [anon_sym_DOLLARevaltype] = ACTIONS(1597), + [anon_sym_DOLLARvatype] = ACTIONS(1597), + [sym_real_literal] = ACTIONS(1599), }, - [487] = { - [sym_line_comment] = STATE(487), - [sym_doc_comment] = STATE(487), - [sym_block_comment] = STATE(487), - [sym_ident] = ACTIONS(1463), - [sym_integer_literal] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1465), - [sym_bytes_literal] = ACTIONS(1465), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1463), - [sym_at_ident] = ACTIONS(1465), - [sym_hash_ident] = ACTIONS(1465), - [sym_type_ident] = ACTIONS(1465), - [sym_ct_type_ident] = ACTIONS(1465), - [sym_const_ident] = ACTIONS(1463), - [sym_builtin] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_static] = ACTIONS(1463), - [anon_sym_tlocal] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_var] = ACTIONS(1463), - [anon_sym_return] = ACTIONS(1463), - [anon_sym_continue] = ACTIONS(1463), - [anon_sym_break] = ACTIONS(1463), - [anon_sym_defer] = ACTIONS(1463), - [anon_sym_assert] = ACTIONS(1463), - [anon_sym_nextcase] = ACTIONS(1463), - [anon_sym_switch] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1463), - [anon_sym_for] = ACTIONS(1463), - [anon_sym_foreach] = ACTIONS(1463), - [anon_sym_foreach_r] = ACTIONS(1463), - [anon_sym_while] = ACTIONS(1463), - [anon_sym_do] = ACTIONS(1463), - [anon_sym_int] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_asm] = ACTIONS(1463), - [anon_sym_DOLLARassert] = ACTIONS(1463), - [anon_sym_DOLLARerror] = ACTIONS(1463), - [anon_sym_DOLLARecho] = ACTIONS(1463), - [anon_sym_DOLLARif] = ACTIONS(1463), - [anon_sym_DOLLARcase] = ACTIONS(1463), - [anon_sym_DOLLARdefault] = ACTIONS(1463), - [anon_sym_DOLLARswitch] = ACTIONS(1463), - [anon_sym_DOLLARendswitch] = ACTIONS(1463), - [anon_sym_DOLLARfor] = ACTIONS(1463), - [anon_sym_DOLLARforeach] = ACTIONS(1463), - [anon_sym_DOLLARalignof] = ACTIONS(1463), - [anon_sym_DOLLARextnameof] = ACTIONS(1463), - [anon_sym_DOLLARnameof] = ACTIONS(1463), - [anon_sym_DOLLARoffsetof] = ACTIONS(1463), - [anon_sym_DOLLARqnameof] = ACTIONS(1463), - [anon_sym_DOLLAReval] = ACTIONS(1463), - [anon_sym_DOLLARdefined] = ACTIONS(1463), - [anon_sym_DOLLARsizeof] = ACTIONS(1463), - [anon_sym_DOLLARstringify] = ACTIONS(1463), - [anon_sym_DOLLARis_const] = ACTIONS(1463), - [anon_sym_DOLLARvaconst] = ACTIONS(1463), - [anon_sym_DOLLARvaarg] = ACTIONS(1463), - [anon_sym_DOLLARvaref] = ACTIONS(1463), - [anon_sym_DOLLARvaexpr] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1463), - [anon_sym_false] = ACTIONS(1463), - [anon_sym_null] = ACTIONS(1463), - [anon_sym_DOLLARvacount] = ACTIONS(1463), - [anon_sym_DOLLARfeature] = ACTIONS(1463), - [anon_sym_DOLLARand] = ACTIONS(1463), - [anon_sym_DOLLARor] = ACTIONS(1463), - [anon_sym_DOLLARassignable] = ACTIONS(1463), - [anon_sym_DOLLARembed] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1465), - [anon_sym_PLUS_PLUS] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1465), - [anon_sym_typeid] = ACTIONS(1463), - [anon_sym_LBRACE_PIPE] = ACTIONS(1465), - [anon_sym_void] = ACTIONS(1463), - [anon_sym_bool] = ACTIONS(1463), - [anon_sym_char] = ACTIONS(1463), - [anon_sym_ichar] = ACTIONS(1463), - [anon_sym_short] = ACTIONS(1463), - [anon_sym_ushort] = ACTIONS(1463), - [anon_sym_uint] = ACTIONS(1463), - [anon_sym_long] = ACTIONS(1463), - [anon_sym_ulong] = ACTIONS(1463), - [anon_sym_int128] = ACTIONS(1463), - [anon_sym_uint128] = ACTIONS(1463), - [anon_sym_float] = ACTIONS(1463), - [anon_sym_double] = ACTIONS(1463), - [anon_sym_float16] = ACTIONS(1463), - [anon_sym_bfloat16] = ACTIONS(1463), - [anon_sym_float128] = ACTIONS(1463), - [anon_sym_iptr] = ACTIONS(1463), - [anon_sym_uptr] = ACTIONS(1463), - [anon_sym_isz] = ACTIONS(1463), - [anon_sym_usz] = ACTIONS(1463), - [anon_sym_anyfault] = ACTIONS(1463), - [anon_sym_any] = ACTIONS(1463), - [anon_sym_DOLLARtypeof] = ACTIONS(1463), - [anon_sym_DOLLARtypefrom] = ACTIONS(1463), - [anon_sym_DOLLARvatype] = ACTIONS(1463), - [anon_sym_DOLLARevaltype] = ACTIONS(1463), - [sym_real_literal] = ACTIONS(1465), + [453] = { + [sym_line_comment] = STATE(453), + [sym_doc_comment] = STATE(453), + [sym_block_comment] = STATE(453), + [sym_ident] = ACTIONS(1601), + [sym_integer_literal] = ACTIONS(1603), + [anon_sym_SQUOTE] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [anon_sym_BQUOTE] = ACTIONS(1603), + [sym_bytes_literal] = ACTIONS(1603), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1601), + [sym_at_ident] = ACTIONS(1603), + [sym_hash_ident] = ACTIONS(1603), + [sym_type_ident] = ACTIONS(1603), + [sym_ct_type_ident] = ACTIONS(1603), + [sym_const_ident] = ACTIONS(1601), + [sym_builtin] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_static] = ACTIONS(1601), + [anon_sym_tlocal] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_fn] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1601), + [anon_sym_var] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_continue] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1601), + [anon_sym_defer] = ACTIONS(1601), + [anon_sym_assert] = ACTIONS(1601), + [anon_sym_nextcase] = ACTIONS(1601), + [anon_sym_switch] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_for] = ACTIONS(1601), + [anon_sym_foreach] = ACTIONS(1601), + [anon_sym_foreach_r] = ACTIONS(1601), + [anon_sym_while] = ACTIONS(1601), + [anon_sym_do] = ACTIONS(1601), + [anon_sym_int] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_asm] = ACTIONS(1601), + [anon_sym_DOLLARassert] = ACTIONS(1601), + [anon_sym_DOLLARerror] = ACTIONS(1601), + [anon_sym_DOLLARecho] = ACTIONS(1601), + [anon_sym_DOLLARif] = ACTIONS(1601), + [anon_sym_DOLLARcase] = ACTIONS(1601), + [anon_sym_DOLLARdefault] = ACTIONS(1601), + [anon_sym_DOLLARswitch] = ACTIONS(1601), + [anon_sym_DOLLARendswitch] = ACTIONS(1601), + [anon_sym_DOLLARfor] = ACTIONS(1601), + [anon_sym_DOLLARforeach] = ACTIONS(1601), + [anon_sym_DOLLARalignof] = ACTIONS(1601), + [anon_sym_DOLLARextnameof] = ACTIONS(1601), + [anon_sym_DOLLARnameof] = ACTIONS(1601), + [anon_sym_DOLLARoffsetof] = ACTIONS(1601), + [anon_sym_DOLLARqnameof] = ACTIONS(1601), + [anon_sym_DOLLARvaconst] = ACTIONS(1601), + [anon_sym_DOLLARvaarg] = ACTIONS(1601), + [anon_sym_DOLLARvaref] = ACTIONS(1601), + [anon_sym_DOLLARvaexpr] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_DOLLARvacount] = ACTIONS(1601), + [anon_sym_DOLLAReval] = ACTIONS(1601), + [anon_sym_DOLLARis_const] = ACTIONS(1601), + [anon_sym_DOLLARsizeof] = ACTIONS(1601), + [anon_sym_DOLLARstringify] = ACTIONS(1601), + [anon_sym_DOLLARappend] = ACTIONS(1601), + [anon_sym_DOLLARconcat] = ACTIONS(1601), + [anon_sym_DOLLARdefined] = ACTIONS(1601), + [anon_sym_DOLLARembed] = ACTIONS(1601), + [anon_sym_DOLLARand] = ACTIONS(1601), + [anon_sym_DOLLARor] = ACTIONS(1601), + [anon_sym_DOLLARfeature] = ACTIONS(1601), + [anon_sym_DOLLARassignable] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_typeid] = ACTIONS(1601), + [anon_sym_LBRACE_PIPE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_bool] = ACTIONS(1601), + [anon_sym_char] = ACTIONS(1601), + [anon_sym_ichar] = ACTIONS(1601), + [anon_sym_short] = ACTIONS(1601), + [anon_sym_ushort] = ACTIONS(1601), + [anon_sym_uint] = ACTIONS(1601), + [anon_sym_long] = ACTIONS(1601), + [anon_sym_ulong] = ACTIONS(1601), + [anon_sym_int128] = ACTIONS(1601), + [anon_sym_uint128] = ACTIONS(1601), + [anon_sym_float] = ACTIONS(1601), + [anon_sym_double] = ACTIONS(1601), + [anon_sym_float16] = ACTIONS(1601), + [anon_sym_bfloat16] = ACTIONS(1601), + [anon_sym_float128] = ACTIONS(1601), + [anon_sym_iptr] = ACTIONS(1601), + [anon_sym_uptr] = ACTIONS(1601), + [anon_sym_isz] = ACTIONS(1601), + [anon_sym_usz] = ACTIONS(1601), + [anon_sym_anyfault] = ACTIONS(1601), + [anon_sym_any] = ACTIONS(1601), + [anon_sym_DOLLARtypeof] = ACTIONS(1601), + [anon_sym_DOLLARtypefrom] = ACTIONS(1601), + [anon_sym_DOLLARevaltype] = ACTIONS(1601), + [anon_sym_DOLLARvatype] = ACTIONS(1601), + [sym_real_literal] = ACTIONS(1603), }, - [488] = { - [sym_line_comment] = STATE(488), - [sym_doc_comment] = STATE(488), - [sym_block_comment] = STATE(488), - [sym_ident] = ACTIONS(1467), - [sym_integer_literal] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_BQUOTE] = ACTIONS(1469), - [sym_bytes_literal] = ACTIONS(1469), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1467), - [sym_at_ident] = ACTIONS(1469), - [sym_hash_ident] = ACTIONS(1469), - [sym_type_ident] = ACTIONS(1469), - [sym_ct_type_ident] = ACTIONS(1469), - [sym_const_ident] = ACTIONS(1467), - [sym_builtin] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_static] = ACTIONS(1467), - [anon_sym_tlocal] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_fn] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_const] = ACTIONS(1467), - [anon_sym_var] = ACTIONS(1467), - [anon_sym_return] = ACTIONS(1467), - [anon_sym_continue] = ACTIONS(1467), - [anon_sym_break] = ACTIONS(1467), - [anon_sym_defer] = ACTIONS(1467), - [anon_sym_assert] = ACTIONS(1467), - [anon_sym_nextcase] = ACTIONS(1467), - [anon_sym_switch] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_for] = ACTIONS(1467), - [anon_sym_foreach] = ACTIONS(1467), - [anon_sym_foreach_r] = ACTIONS(1467), - [anon_sym_while] = ACTIONS(1467), - [anon_sym_do] = ACTIONS(1467), - [anon_sym_int] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_asm] = ACTIONS(1467), - [anon_sym_DOLLARassert] = ACTIONS(1467), - [anon_sym_DOLLARerror] = ACTIONS(1467), - [anon_sym_DOLLARecho] = ACTIONS(1467), - [anon_sym_DOLLARif] = ACTIONS(1467), - [anon_sym_DOLLARcase] = ACTIONS(1467), - [anon_sym_DOLLARdefault] = ACTIONS(1467), - [anon_sym_DOLLARswitch] = ACTIONS(1467), - [anon_sym_DOLLARendswitch] = ACTIONS(1467), - [anon_sym_DOLLARfor] = ACTIONS(1467), - [anon_sym_DOLLARforeach] = ACTIONS(1467), - [anon_sym_DOLLARalignof] = ACTIONS(1467), - [anon_sym_DOLLARextnameof] = ACTIONS(1467), - [anon_sym_DOLLARnameof] = ACTIONS(1467), - [anon_sym_DOLLARoffsetof] = ACTIONS(1467), - [anon_sym_DOLLARqnameof] = ACTIONS(1467), - [anon_sym_DOLLAReval] = ACTIONS(1467), - [anon_sym_DOLLARdefined] = ACTIONS(1467), - [anon_sym_DOLLARsizeof] = ACTIONS(1467), - [anon_sym_DOLLARstringify] = ACTIONS(1467), - [anon_sym_DOLLARis_const] = ACTIONS(1467), - [anon_sym_DOLLARvaconst] = ACTIONS(1467), - [anon_sym_DOLLARvaarg] = ACTIONS(1467), - [anon_sym_DOLLARvaref] = ACTIONS(1467), - [anon_sym_DOLLARvaexpr] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1467), - [anon_sym_false] = ACTIONS(1467), - [anon_sym_null] = ACTIONS(1467), - [anon_sym_DOLLARvacount] = ACTIONS(1467), - [anon_sym_DOLLARfeature] = ACTIONS(1467), - [anon_sym_DOLLARand] = ACTIONS(1467), - [anon_sym_DOLLARor] = ACTIONS(1467), - [anon_sym_DOLLARassignable] = ACTIONS(1467), - [anon_sym_DOLLARembed] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_PLUS_PLUS] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1469), - [anon_sym_typeid] = ACTIONS(1467), - [anon_sym_LBRACE_PIPE] = ACTIONS(1469), - [anon_sym_void] = ACTIONS(1467), - [anon_sym_bool] = ACTIONS(1467), - [anon_sym_char] = ACTIONS(1467), - [anon_sym_ichar] = ACTIONS(1467), - [anon_sym_short] = ACTIONS(1467), - [anon_sym_ushort] = ACTIONS(1467), - [anon_sym_uint] = ACTIONS(1467), - [anon_sym_long] = ACTIONS(1467), - [anon_sym_ulong] = ACTIONS(1467), - [anon_sym_int128] = ACTIONS(1467), - [anon_sym_uint128] = ACTIONS(1467), - [anon_sym_float] = ACTIONS(1467), - [anon_sym_double] = ACTIONS(1467), - [anon_sym_float16] = ACTIONS(1467), - [anon_sym_bfloat16] = ACTIONS(1467), - [anon_sym_float128] = ACTIONS(1467), - [anon_sym_iptr] = ACTIONS(1467), - [anon_sym_uptr] = ACTIONS(1467), - [anon_sym_isz] = ACTIONS(1467), - [anon_sym_usz] = ACTIONS(1467), - [anon_sym_anyfault] = ACTIONS(1467), - [anon_sym_any] = ACTIONS(1467), - [anon_sym_DOLLARtypeof] = ACTIONS(1467), - [anon_sym_DOLLARtypefrom] = ACTIONS(1467), - [anon_sym_DOLLARvatype] = ACTIONS(1467), - [anon_sym_DOLLARevaltype] = ACTIONS(1467), - [sym_real_literal] = ACTIONS(1469), + [454] = { + [sym_line_comment] = STATE(454), + [sym_doc_comment] = STATE(454), + [sym_block_comment] = STATE(454), + [sym_ident] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1607), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [anon_sym_BQUOTE] = ACTIONS(1607), + [sym_bytes_literal] = ACTIONS(1607), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1605), + [sym_at_ident] = ACTIONS(1607), + [sym_hash_ident] = ACTIONS(1607), + [sym_type_ident] = ACTIONS(1607), + [sym_ct_type_ident] = ACTIONS(1607), + [sym_const_ident] = ACTIONS(1605), + [sym_builtin] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_tlocal] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_var] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_defer] = ACTIONS(1605), + [anon_sym_assert] = ACTIONS(1605), + [anon_sym_nextcase] = ACTIONS(1605), + [anon_sym_switch] = ACTIONS(1605), + [anon_sym_AMP_AMP] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_foreach] = ACTIONS(1605), + [anon_sym_foreach_r] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_int] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_asm] = ACTIONS(1605), + [anon_sym_DOLLARassert] = ACTIONS(1605), + [anon_sym_DOLLARerror] = ACTIONS(1605), + [anon_sym_DOLLARecho] = ACTIONS(1605), + [anon_sym_DOLLARif] = ACTIONS(1605), + [anon_sym_DOLLARcase] = ACTIONS(1605), + [anon_sym_DOLLARdefault] = ACTIONS(1605), + [anon_sym_DOLLARswitch] = ACTIONS(1605), + [anon_sym_DOLLARendswitch] = ACTIONS(1605), + [anon_sym_DOLLARfor] = ACTIONS(1605), + [anon_sym_DOLLARforeach] = ACTIONS(1605), + [anon_sym_DOLLARalignof] = ACTIONS(1605), + [anon_sym_DOLLARextnameof] = ACTIONS(1605), + [anon_sym_DOLLARnameof] = ACTIONS(1605), + [anon_sym_DOLLARoffsetof] = ACTIONS(1605), + [anon_sym_DOLLARqnameof] = ACTIONS(1605), + [anon_sym_DOLLARvaconst] = ACTIONS(1605), + [anon_sym_DOLLARvaarg] = ACTIONS(1605), + [anon_sym_DOLLARvaref] = ACTIONS(1605), + [anon_sym_DOLLARvaexpr] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1605), + [anon_sym_false] = ACTIONS(1605), + [anon_sym_null] = ACTIONS(1605), + [anon_sym_DOLLARvacount] = ACTIONS(1605), + [anon_sym_DOLLAReval] = ACTIONS(1605), + [anon_sym_DOLLARis_const] = ACTIONS(1605), + [anon_sym_DOLLARsizeof] = ACTIONS(1605), + [anon_sym_DOLLARstringify] = ACTIONS(1605), + [anon_sym_DOLLARappend] = ACTIONS(1605), + [anon_sym_DOLLARconcat] = ACTIONS(1605), + [anon_sym_DOLLARdefined] = ACTIONS(1605), + [anon_sym_DOLLARembed] = ACTIONS(1605), + [anon_sym_DOLLARand] = ACTIONS(1605), + [anon_sym_DOLLARor] = ACTIONS(1605), + [anon_sym_DOLLARfeature] = ACTIONS(1605), + [anon_sym_DOLLARassignable] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_typeid] = ACTIONS(1605), + [anon_sym_LBRACE_PIPE] = ACTIONS(1607), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_bool] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_ichar] = ACTIONS(1605), + [anon_sym_short] = ACTIONS(1605), + [anon_sym_ushort] = ACTIONS(1605), + [anon_sym_uint] = ACTIONS(1605), + [anon_sym_long] = ACTIONS(1605), + [anon_sym_ulong] = ACTIONS(1605), + [anon_sym_int128] = ACTIONS(1605), + [anon_sym_uint128] = ACTIONS(1605), + [anon_sym_float] = ACTIONS(1605), + [anon_sym_double] = ACTIONS(1605), + [anon_sym_float16] = ACTIONS(1605), + [anon_sym_bfloat16] = ACTIONS(1605), + [anon_sym_float128] = ACTIONS(1605), + [anon_sym_iptr] = ACTIONS(1605), + [anon_sym_uptr] = ACTIONS(1605), + [anon_sym_isz] = ACTIONS(1605), + [anon_sym_usz] = ACTIONS(1605), + [anon_sym_anyfault] = ACTIONS(1605), + [anon_sym_any] = ACTIONS(1605), + [anon_sym_DOLLARtypeof] = ACTIONS(1605), + [anon_sym_DOLLARtypefrom] = ACTIONS(1605), + [anon_sym_DOLLARevaltype] = ACTIONS(1605), + [anon_sym_DOLLARvatype] = ACTIONS(1605), + [sym_real_literal] = ACTIONS(1607), }, - [489] = { - [sym_line_comment] = STATE(489), - [sym_doc_comment] = STATE(489), - [sym_block_comment] = STATE(489), - [sym_else_part] = STATE(723), - [sym_ident] = ACTIONS(1365), - [sym_integer_literal] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1367), - [sym_bytes_literal] = ACTIONS(1367), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1365), - [sym_at_ident] = ACTIONS(1367), - [sym_hash_ident] = ACTIONS(1367), - [sym_type_ident] = ACTIONS(1367), - [sym_ct_type_ident] = ACTIONS(1367), - [sym_const_ident] = ACTIONS(1365), - [sym_builtin] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_tlocal] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_fn] = ACTIONS(1365), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_var] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_defer] = ACTIONS(1365), - [anon_sym_assert] = ACTIONS(1365), - [anon_sym_nextcase] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_else] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_foreach] = ACTIONS(1365), - [anon_sym_foreach_r] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_do] = ACTIONS(1365), - [anon_sym_int] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_asm] = ACTIONS(1365), - [anon_sym_DOLLARassert] = ACTIONS(1365), - [anon_sym_DOLLARerror] = ACTIONS(1365), - [anon_sym_DOLLARecho] = ACTIONS(1365), - [anon_sym_DOLLARif] = ACTIONS(1365), - [anon_sym_DOLLARswitch] = ACTIONS(1365), - [anon_sym_DOLLARfor] = ACTIONS(1365), - [anon_sym_DOLLARforeach] = ACTIONS(1365), - [anon_sym_DOLLARendforeach] = ACTIONS(1365), - [anon_sym_DOLLARalignof] = ACTIONS(1365), - [anon_sym_DOLLARextnameof] = ACTIONS(1365), - [anon_sym_DOLLARnameof] = ACTIONS(1365), - [anon_sym_DOLLARoffsetof] = ACTIONS(1365), - [anon_sym_DOLLARqnameof] = ACTIONS(1365), - [anon_sym_DOLLAReval] = ACTIONS(1365), - [anon_sym_DOLLARdefined] = ACTIONS(1365), - [anon_sym_DOLLARsizeof] = ACTIONS(1365), - [anon_sym_DOLLARstringify] = ACTIONS(1365), - [anon_sym_DOLLARis_const] = ACTIONS(1365), - [anon_sym_DOLLARvaconst] = ACTIONS(1365), - [anon_sym_DOLLARvaarg] = ACTIONS(1365), - [anon_sym_DOLLARvaref] = ACTIONS(1365), - [anon_sym_DOLLARvaexpr] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1365), - [anon_sym_false] = ACTIONS(1365), - [anon_sym_null] = ACTIONS(1365), - [anon_sym_DOLLARvacount] = ACTIONS(1365), - [anon_sym_DOLLARfeature] = ACTIONS(1365), - [anon_sym_DOLLARand] = ACTIONS(1365), - [anon_sym_DOLLARor] = ACTIONS(1365), - [anon_sym_DOLLARassignable] = ACTIONS(1365), - [anon_sym_DOLLARembed] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_typeid] = ACTIONS(1365), - [anon_sym_LBRACE_PIPE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1365), - [anon_sym_bool] = ACTIONS(1365), - [anon_sym_char] = ACTIONS(1365), - [anon_sym_ichar] = ACTIONS(1365), - [anon_sym_short] = ACTIONS(1365), - [anon_sym_ushort] = ACTIONS(1365), - [anon_sym_uint] = ACTIONS(1365), - [anon_sym_long] = ACTIONS(1365), - [anon_sym_ulong] = ACTIONS(1365), - [anon_sym_int128] = ACTIONS(1365), - [anon_sym_uint128] = ACTIONS(1365), - [anon_sym_float] = ACTIONS(1365), - [anon_sym_double] = ACTIONS(1365), - [anon_sym_float16] = ACTIONS(1365), - [anon_sym_bfloat16] = ACTIONS(1365), - [anon_sym_float128] = ACTIONS(1365), - [anon_sym_iptr] = ACTIONS(1365), - [anon_sym_uptr] = ACTIONS(1365), - [anon_sym_isz] = ACTIONS(1365), - [anon_sym_usz] = ACTIONS(1365), - [anon_sym_anyfault] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1365), - [anon_sym_DOLLARtypeof] = ACTIONS(1365), - [anon_sym_DOLLARtypefrom] = ACTIONS(1365), - [anon_sym_DOLLARvatype] = ACTIONS(1365), - [anon_sym_DOLLARevaltype] = ACTIONS(1365), - [sym_real_literal] = ACTIONS(1367), + [455] = { + [sym_line_comment] = STATE(455), + [sym_doc_comment] = STATE(455), + [sym_block_comment] = STATE(455), + [sym_ident] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [sym_bytes_literal] = ACTIONS(1611), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1609), + [sym_at_ident] = ACTIONS(1611), + [sym_hash_ident] = ACTIONS(1611), + [sym_type_ident] = ACTIONS(1611), + [sym_ct_type_ident] = ACTIONS(1611), + [sym_const_ident] = ACTIONS(1609), + [sym_builtin] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_static] = ACTIONS(1609), + [anon_sym_tlocal] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_fn] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_const] = ACTIONS(1609), + [anon_sym_var] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1609), + [anon_sym_defer] = ACTIONS(1609), + [anon_sym_assert] = ACTIONS(1609), + [anon_sym_nextcase] = ACTIONS(1609), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_for] = ACTIONS(1609), + [anon_sym_foreach] = ACTIONS(1609), + [anon_sym_foreach_r] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_do] = ACTIONS(1609), + [anon_sym_int] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1609), + [anon_sym_DOLLARassert] = ACTIONS(1609), + [anon_sym_DOLLARerror] = ACTIONS(1609), + [anon_sym_DOLLARecho] = ACTIONS(1609), + [anon_sym_DOLLARif] = ACTIONS(1609), + [anon_sym_DOLLARcase] = ACTIONS(1609), + [anon_sym_DOLLARdefault] = ACTIONS(1609), + [anon_sym_DOLLARswitch] = ACTIONS(1609), + [anon_sym_DOLLARendswitch] = ACTIONS(1609), + [anon_sym_DOLLARfor] = ACTIONS(1609), + [anon_sym_DOLLARforeach] = ACTIONS(1609), + [anon_sym_DOLLARalignof] = ACTIONS(1609), + [anon_sym_DOLLARextnameof] = ACTIONS(1609), + [anon_sym_DOLLARnameof] = ACTIONS(1609), + [anon_sym_DOLLARoffsetof] = ACTIONS(1609), + [anon_sym_DOLLARqnameof] = ACTIONS(1609), + [anon_sym_DOLLARvaconst] = ACTIONS(1609), + [anon_sym_DOLLARvaarg] = ACTIONS(1609), + [anon_sym_DOLLARvaref] = ACTIONS(1609), + [anon_sym_DOLLARvaexpr] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_DOLLARvacount] = ACTIONS(1609), + [anon_sym_DOLLAReval] = ACTIONS(1609), + [anon_sym_DOLLARis_const] = ACTIONS(1609), + [anon_sym_DOLLARsizeof] = ACTIONS(1609), + [anon_sym_DOLLARstringify] = ACTIONS(1609), + [anon_sym_DOLLARappend] = ACTIONS(1609), + [anon_sym_DOLLARconcat] = ACTIONS(1609), + [anon_sym_DOLLARdefined] = ACTIONS(1609), + [anon_sym_DOLLARembed] = ACTIONS(1609), + [anon_sym_DOLLARand] = ACTIONS(1609), + [anon_sym_DOLLARor] = ACTIONS(1609), + [anon_sym_DOLLARfeature] = ACTIONS(1609), + [anon_sym_DOLLARassignable] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_TILDE] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_typeid] = ACTIONS(1609), + [anon_sym_LBRACE_PIPE] = ACTIONS(1611), + [anon_sym_void] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_ichar] = ACTIONS(1609), + [anon_sym_short] = ACTIONS(1609), + [anon_sym_ushort] = ACTIONS(1609), + [anon_sym_uint] = ACTIONS(1609), + [anon_sym_long] = ACTIONS(1609), + [anon_sym_ulong] = ACTIONS(1609), + [anon_sym_int128] = ACTIONS(1609), + [anon_sym_uint128] = ACTIONS(1609), + [anon_sym_float] = ACTIONS(1609), + [anon_sym_double] = ACTIONS(1609), + [anon_sym_float16] = ACTIONS(1609), + [anon_sym_bfloat16] = ACTIONS(1609), + [anon_sym_float128] = ACTIONS(1609), + [anon_sym_iptr] = ACTIONS(1609), + [anon_sym_uptr] = ACTIONS(1609), + [anon_sym_isz] = ACTIONS(1609), + [anon_sym_usz] = ACTIONS(1609), + [anon_sym_anyfault] = ACTIONS(1609), + [anon_sym_any] = ACTIONS(1609), + [anon_sym_DOLLARtypeof] = ACTIONS(1609), + [anon_sym_DOLLARtypefrom] = ACTIONS(1609), + [anon_sym_DOLLARevaltype] = ACTIONS(1609), + [anon_sym_DOLLARvatype] = ACTIONS(1609), + [sym_real_literal] = ACTIONS(1611), }, - [490] = { - [sym_line_comment] = STATE(490), - [sym_doc_comment] = STATE(490), - [sym_block_comment] = STATE(490), - [sym_else_part] = STATE(687), - [sym_ident] = ACTIONS(1365), - [sym_integer_literal] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1367), - [sym_bytes_literal] = ACTIONS(1367), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1365), - [sym_at_ident] = ACTIONS(1367), - [sym_hash_ident] = ACTIONS(1367), - [sym_type_ident] = ACTIONS(1367), - [sym_ct_type_ident] = ACTIONS(1367), - [sym_const_ident] = ACTIONS(1365), - [sym_builtin] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_tlocal] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_fn] = ACTIONS(1365), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_var] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_defer] = ACTIONS(1365), - [anon_sym_assert] = ACTIONS(1365), - [anon_sym_nextcase] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_else] = ACTIONS(1639), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_foreach] = ACTIONS(1365), - [anon_sym_foreach_r] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_do] = ACTIONS(1365), - [anon_sym_int] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_asm] = ACTIONS(1365), - [anon_sym_DOLLARassert] = ACTIONS(1365), - [anon_sym_DOLLARerror] = ACTIONS(1365), - [anon_sym_DOLLARecho] = ACTIONS(1365), - [anon_sym_DOLLARif] = ACTIONS(1365), - [anon_sym_DOLLARswitch] = ACTIONS(1365), - [anon_sym_DOLLARfor] = ACTIONS(1365), - [anon_sym_DOLLARendfor] = ACTIONS(1365), - [anon_sym_DOLLARforeach] = ACTIONS(1365), - [anon_sym_DOLLARalignof] = ACTIONS(1365), - [anon_sym_DOLLARextnameof] = ACTIONS(1365), - [anon_sym_DOLLARnameof] = ACTIONS(1365), - [anon_sym_DOLLARoffsetof] = ACTIONS(1365), - [anon_sym_DOLLARqnameof] = ACTIONS(1365), - [anon_sym_DOLLAReval] = ACTIONS(1365), - [anon_sym_DOLLARdefined] = ACTIONS(1365), - [anon_sym_DOLLARsizeof] = ACTIONS(1365), - [anon_sym_DOLLARstringify] = ACTIONS(1365), - [anon_sym_DOLLARis_const] = ACTIONS(1365), - [anon_sym_DOLLARvaconst] = ACTIONS(1365), - [anon_sym_DOLLARvaarg] = ACTIONS(1365), - [anon_sym_DOLLARvaref] = ACTIONS(1365), - [anon_sym_DOLLARvaexpr] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1365), - [anon_sym_false] = ACTIONS(1365), - [anon_sym_null] = ACTIONS(1365), - [anon_sym_DOLLARvacount] = ACTIONS(1365), - [anon_sym_DOLLARfeature] = ACTIONS(1365), - [anon_sym_DOLLARand] = ACTIONS(1365), - [anon_sym_DOLLARor] = ACTIONS(1365), - [anon_sym_DOLLARassignable] = ACTIONS(1365), - [anon_sym_DOLLARembed] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_typeid] = ACTIONS(1365), - [anon_sym_LBRACE_PIPE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1365), - [anon_sym_bool] = ACTIONS(1365), - [anon_sym_char] = ACTIONS(1365), - [anon_sym_ichar] = ACTIONS(1365), - [anon_sym_short] = ACTIONS(1365), - [anon_sym_ushort] = ACTIONS(1365), - [anon_sym_uint] = ACTIONS(1365), - [anon_sym_long] = ACTIONS(1365), - [anon_sym_ulong] = ACTIONS(1365), - [anon_sym_int128] = ACTIONS(1365), - [anon_sym_uint128] = ACTIONS(1365), - [anon_sym_float] = ACTIONS(1365), - [anon_sym_double] = ACTIONS(1365), - [anon_sym_float16] = ACTIONS(1365), - [anon_sym_bfloat16] = ACTIONS(1365), - [anon_sym_float128] = ACTIONS(1365), - [anon_sym_iptr] = ACTIONS(1365), - [anon_sym_uptr] = ACTIONS(1365), - [anon_sym_isz] = ACTIONS(1365), - [anon_sym_usz] = ACTIONS(1365), - [anon_sym_anyfault] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1365), - [anon_sym_DOLLARtypeof] = ACTIONS(1365), - [anon_sym_DOLLARtypefrom] = ACTIONS(1365), - [anon_sym_DOLLARvatype] = ACTIONS(1365), - [anon_sym_DOLLARevaltype] = ACTIONS(1365), - [sym_real_literal] = ACTIONS(1367), + [456] = { + [sym_line_comment] = STATE(456), + [sym_doc_comment] = STATE(456), + [sym_block_comment] = STATE(456), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARcase] = ACTIONS(1613), + [anon_sym_DOLLARdefault] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARendswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), + }, + [457] = { + [sym_line_comment] = STATE(457), + [sym_doc_comment] = STATE(457), + [sym_block_comment] = STATE(457), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARcase] = ACTIONS(1613), + [anon_sym_DOLLARdefault] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARendswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), + }, + [458] = { + [sym_line_comment] = STATE(458), + [sym_doc_comment] = STATE(458), + [sym_block_comment] = STATE(458), + [sym_ident] = ACTIONS(1573), + [sym_integer_literal] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_BQUOTE] = ACTIONS(1575), + [sym_bytes_literal] = ACTIONS(1575), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1573), + [sym_at_ident] = ACTIONS(1575), + [sym_hash_ident] = ACTIONS(1575), + [sym_type_ident] = ACTIONS(1575), + [sym_ct_type_ident] = ACTIONS(1575), + [sym_const_ident] = ACTIONS(1573), + [sym_builtin] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_tlocal] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_fn] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_var] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_defer] = ACTIONS(1573), + [anon_sym_assert] = ACTIONS(1573), + [anon_sym_nextcase] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_foreach] = ACTIONS(1573), + [anon_sym_foreach_r] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_int] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_asm] = ACTIONS(1573), + [anon_sym_DOLLARassert] = ACTIONS(1573), + [anon_sym_DOLLARerror] = ACTIONS(1573), + [anon_sym_DOLLARecho] = ACTIONS(1573), + [anon_sym_DOLLARif] = ACTIONS(1573), + [anon_sym_DOLLARcase] = ACTIONS(1573), + [anon_sym_DOLLARdefault] = ACTIONS(1573), + [anon_sym_DOLLARswitch] = ACTIONS(1573), + [anon_sym_DOLLARendswitch] = ACTIONS(1573), + [anon_sym_DOLLARfor] = ACTIONS(1573), + [anon_sym_DOLLARforeach] = ACTIONS(1573), + [anon_sym_DOLLARalignof] = ACTIONS(1573), + [anon_sym_DOLLARextnameof] = ACTIONS(1573), + [anon_sym_DOLLARnameof] = ACTIONS(1573), + [anon_sym_DOLLARoffsetof] = ACTIONS(1573), + [anon_sym_DOLLARqnameof] = ACTIONS(1573), + [anon_sym_DOLLARvaconst] = ACTIONS(1573), + [anon_sym_DOLLARvaarg] = ACTIONS(1573), + [anon_sym_DOLLARvaref] = ACTIONS(1573), + [anon_sym_DOLLARvaexpr] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [anon_sym_null] = ACTIONS(1573), + [anon_sym_DOLLARvacount] = ACTIONS(1573), + [anon_sym_DOLLAReval] = ACTIONS(1573), + [anon_sym_DOLLARis_const] = ACTIONS(1573), + [anon_sym_DOLLARsizeof] = ACTIONS(1573), + [anon_sym_DOLLARstringify] = ACTIONS(1573), + [anon_sym_DOLLARappend] = ACTIONS(1573), + [anon_sym_DOLLARconcat] = ACTIONS(1573), + [anon_sym_DOLLARdefined] = ACTIONS(1573), + [anon_sym_DOLLARembed] = ACTIONS(1573), + [anon_sym_DOLLARand] = ACTIONS(1573), + [anon_sym_DOLLARor] = ACTIONS(1573), + [anon_sym_DOLLARfeature] = ACTIONS(1573), + [anon_sym_DOLLARassignable] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_typeid] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_bool] = ACTIONS(1573), + [anon_sym_char] = ACTIONS(1573), + [anon_sym_ichar] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [anon_sym_ushort] = ACTIONS(1573), + [anon_sym_uint] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_ulong] = ACTIONS(1573), + [anon_sym_int128] = ACTIONS(1573), + [anon_sym_uint128] = ACTIONS(1573), + [anon_sym_float] = ACTIONS(1573), + [anon_sym_double] = ACTIONS(1573), + [anon_sym_float16] = ACTIONS(1573), + [anon_sym_bfloat16] = ACTIONS(1573), + [anon_sym_float128] = ACTIONS(1573), + [anon_sym_iptr] = ACTIONS(1573), + [anon_sym_uptr] = ACTIONS(1573), + [anon_sym_isz] = ACTIONS(1573), + [anon_sym_usz] = ACTIONS(1573), + [anon_sym_anyfault] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_DOLLARtypeof] = ACTIONS(1573), + [anon_sym_DOLLARtypefrom] = ACTIONS(1573), + [anon_sym_DOLLARevaltype] = ACTIONS(1573), + [anon_sym_DOLLARvatype] = ACTIONS(1573), + [sym_real_literal] = ACTIONS(1575), + }, + [459] = { + [sym_line_comment] = STATE(459), + [sym_doc_comment] = STATE(459), + [sym_block_comment] = STATE(459), + [sym_ident] = ACTIONS(1621), + [sym_integer_literal] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_bytes_literal] = ACTIONS(1623), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1621), + [sym_at_ident] = ACTIONS(1623), + [sym_hash_ident] = ACTIONS(1623), + [sym_type_ident] = ACTIONS(1623), + [sym_ct_type_ident] = ACTIONS(1623), + [sym_const_ident] = ACTIONS(1621), + [sym_builtin] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_tlocal] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_var] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_defer] = ACTIONS(1621), + [anon_sym_assert] = ACTIONS(1621), + [anon_sym_nextcase] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_foreach] = ACTIONS(1621), + [anon_sym_foreach_r] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_int] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_asm] = ACTIONS(1621), + [anon_sym_DOLLARassert] = ACTIONS(1621), + [anon_sym_DOLLARerror] = ACTIONS(1621), + [anon_sym_DOLLARecho] = ACTIONS(1621), + [anon_sym_DOLLARif] = ACTIONS(1621), + [anon_sym_DOLLARcase] = ACTIONS(1621), + [anon_sym_DOLLARdefault] = ACTIONS(1621), + [anon_sym_DOLLARswitch] = ACTIONS(1621), + [anon_sym_DOLLARendswitch] = ACTIONS(1621), + [anon_sym_DOLLARfor] = ACTIONS(1621), + [anon_sym_DOLLARforeach] = ACTIONS(1621), + [anon_sym_DOLLARalignof] = ACTIONS(1621), + [anon_sym_DOLLARextnameof] = ACTIONS(1621), + [anon_sym_DOLLARnameof] = ACTIONS(1621), + [anon_sym_DOLLARoffsetof] = ACTIONS(1621), + [anon_sym_DOLLARqnameof] = ACTIONS(1621), + [anon_sym_DOLLARvaconst] = ACTIONS(1621), + [anon_sym_DOLLARvaarg] = ACTIONS(1621), + [anon_sym_DOLLARvaref] = ACTIONS(1621), + [anon_sym_DOLLARvaexpr] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_null] = ACTIONS(1621), + [anon_sym_DOLLARvacount] = ACTIONS(1621), + [anon_sym_DOLLAReval] = ACTIONS(1621), + [anon_sym_DOLLARis_const] = ACTIONS(1621), + [anon_sym_DOLLARsizeof] = ACTIONS(1621), + [anon_sym_DOLLARstringify] = ACTIONS(1621), + [anon_sym_DOLLARappend] = ACTIONS(1621), + [anon_sym_DOLLARconcat] = ACTIONS(1621), + [anon_sym_DOLLARdefined] = ACTIONS(1621), + [anon_sym_DOLLARembed] = ACTIONS(1621), + [anon_sym_DOLLARand] = ACTIONS(1621), + [anon_sym_DOLLARor] = ACTIONS(1621), + [anon_sym_DOLLARfeature] = ACTIONS(1621), + [anon_sym_DOLLARassignable] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_typeid] = ACTIONS(1621), + [anon_sym_LBRACE_PIPE] = ACTIONS(1623), + [anon_sym_void] = ACTIONS(1621), + [anon_sym_bool] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_ichar] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_ushort] = ACTIONS(1621), + [anon_sym_uint] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_ulong] = ACTIONS(1621), + [anon_sym_int128] = ACTIONS(1621), + [anon_sym_uint128] = ACTIONS(1621), + [anon_sym_float] = ACTIONS(1621), + [anon_sym_double] = ACTIONS(1621), + [anon_sym_float16] = ACTIONS(1621), + [anon_sym_bfloat16] = ACTIONS(1621), + [anon_sym_float128] = ACTIONS(1621), + [anon_sym_iptr] = ACTIONS(1621), + [anon_sym_uptr] = ACTIONS(1621), + [anon_sym_isz] = ACTIONS(1621), + [anon_sym_usz] = ACTIONS(1621), + [anon_sym_anyfault] = ACTIONS(1621), + [anon_sym_any] = ACTIONS(1621), + [anon_sym_DOLLARtypeof] = ACTIONS(1621), + [anon_sym_DOLLARtypefrom] = ACTIONS(1621), + [anon_sym_DOLLARevaltype] = ACTIONS(1621), + [anon_sym_DOLLARvatype] = ACTIONS(1621), + [sym_real_literal] = ACTIONS(1623), + }, + [460] = { + [sym_line_comment] = STATE(460), + [sym_doc_comment] = STATE(460), + [sym_block_comment] = STATE(460), + [sym_ident] = ACTIONS(1625), + [sym_integer_literal] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [sym_bytes_literal] = ACTIONS(1627), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1625), + [sym_at_ident] = ACTIONS(1627), + [sym_hash_ident] = ACTIONS(1627), + [sym_type_ident] = ACTIONS(1627), + [sym_ct_type_ident] = ACTIONS(1627), + [sym_const_ident] = ACTIONS(1625), + [sym_builtin] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_tlocal] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_defer] = ACTIONS(1625), + [anon_sym_assert] = ACTIONS(1625), + [anon_sym_nextcase] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_foreach] = ACTIONS(1625), + [anon_sym_foreach_r] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_int] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_asm] = ACTIONS(1625), + [anon_sym_DOLLARassert] = ACTIONS(1625), + [anon_sym_DOLLARerror] = ACTIONS(1625), + [anon_sym_DOLLARecho] = ACTIONS(1625), + [anon_sym_DOLLARif] = ACTIONS(1625), + [anon_sym_DOLLARcase] = ACTIONS(1625), + [anon_sym_DOLLARdefault] = ACTIONS(1625), + [anon_sym_DOLLARswitch] = ACTIONS(1625), + [anon_sym_DOLLARendswitch] = ACTIONS(1625), + [anon_sym_DOLLARfor] = ACTIONS(1625), + [anon_sym_DOLLARforeach] = ACTIONS(1625), + [anon_sym_DOLLARalignof] = ACTIONS(1625), + [anon_sym_DOLLARextnameof] = ACTIONS(1625), + [anon_sym_DOLLARnameof] = ACTIONS(1625), + [anon_sym_DOLLARoffsetof] = ACTIONS(1625), + [anon_sym_DOLLARqnameof] = ACTIONS(1625), + [anon_sym_DOLLARvaconst] = ACTIONS(1625), + [anon_sym_DOLLARvaarg] = ACTIONS(1625), + [anon_sym_DOLLARvaref] = ACTIONS(1625), + [anon_sym_DOLLARvaexpr] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_DOLLARvacount] = ACTIONS(1625), + [anon_sym_DOLLAReval] = ACTIONS(1625), + [anon_sym_DOLLARis_const] = ACTIONS(1625), + [anon_sym_DOLLARsizeof] = ACTIONS(1625), + [anon_sym_DOLLARstringify] = ACTIONS(1625), + [anon_sym_DOLLARappend] = ACTIONS(1625), + [anon_sym_DOLLARconcat] = ACTIONS(1625), + [anon_sym_DOLLARdefined] = ACTIONS(1625), + [anon_sym_DOLLARembed] = ACTIONS(1625), + [anon_sym_DOLLARand] = ACTIONS(1625), + [anon_sym_DOLLARor] = ACTIONS(1625), + [anon_sym_DOLLARfeature] = ACTIONS(1625), + [anon_sym_DOLLARassignable] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_typeid] = ACTIONS(1625), + [anon_sym_LBRACE_PIPE] = ACTIONS(1627), + [anon_sym_void] = ACTIONS(1625), + [anon_sym_bool] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_ichar] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_ushort] = ACTIONS(1625), + [anon_sym_uint] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_ulong] = ACTIONS(1625), + [anon_sym_int128] = ACTIONS(1625), + [anon_sym_uint128] = ACTIONS(1625), + [anon_sym_float] = ACTIONS(1625), + [anon_sym_double] = ACTIONS(1625), + [anon_sym_float16] = ACTIONS(1625), + [anon_sym_bfloat16] = ACTIONS(1625), + [anon_sym_float128] = ACTIONS(1625), + [anon_sym_iptr] = ACTIONS(1625), + [anon_sym_uptr] = ACTIONS(1625), + [anon_sym_isz] = ACTIONS(1625), + [anon_sym_usz] = ACTIONS(1625), + [anon_sym_anyfault] = ACTIONS(1625), + [anon_sym_any] = ACTIONS(1625), + [anon_sym_DOLLARtypeof] = ACTIONS(1625), + [anon_sym_DOLLARtypefrom] = ACTIONS(1625), + [anon_sym_DOLLARevaltype] = ACTIONS(1625), + [anon_sym_DOLLARvatype] = ACTIONS(1625), + [sym_real_literal] = ACTIONS(1627), + }, + [461] = { + [sym_line_comment] = STATE(461), + [sym_doc_comment] = STATE(461), + [sym_block_comment] = STATE(461), + [sym_ident] = ACTIONS(1629), + [sym_integer_literal] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1631), + [sym_bytes_literal] = ACTIONS(1631), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1629), + [sym_at_ident] = ACTIONS(1631), + [sym_hash_ident] = ACTIONS(1631), + [sym_type_ident] = ACTIONS(1631), + [sym_ct_type_ident] = ACTIONS(1631), + [sym_const_ident] = ACTIONS(1629), + [sym_builtin] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_tlocal] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_fn] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_var] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_defer] = ACTIONS(1629), + [anon_sym_assert] = ACTIONS(1629), + [anon_sym_nextcase] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_foreach] = ACTIONS(1629), + [anon_sym_foreach_r] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_int] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_asm] = ACTIONS(1629), + [anon_sym_DOLLARassert] = ACTIONS(1629), + [anon_sym_DOLLARerror] = ACTIONS(1629), + [anon_sym_DOLLARecho] = ACTIONS(1629), + [anon_sym_DOLLARif] = ACTIONS(1629), + [anon_sym_DOLLARcase] = ACTIONS(1629), + [anon_sym_DOLLARdefault] = ACTIONS(1629), + [anon_sym_DOLLARswitch] = ACTIONS(1629), + [anon_sym_DOLLARendswitch] = ACTIONS(1629), + [anon_sym_DOLLARfor] = ACTIONS(1629), + [anon_sym_DOLLARforeach] = ACTIONS(1629), + [anon_sym_DOLLARalignof] = ACTIONS(1629), + [anon_sym_DOLLARextnameof] = ACTIONS(1629), + [anon_sym_DOLLARnameof] = ACTIONS(1629), + [anon_sym_DOLLARoffsetof] = ACTIONS(1629), + [anon_sym_DOLLARqnameof] = ACTIONS(1629), + [anon_sym_DOLLARvaconst] = ACTIONS(1629), + [anon_sym_DOLLARvaarg] = ACTIONS(1629), + [anon_sym_DOLLARvaref] = ACTIONS(1629), + [anon_sym_DOLLARvaexpr] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_DOLLARvacount] = ACTIONS(1629), + [anon_sym_DOLLAReval] = ACTIONS(1629), + [anon_sym_DOLLARis_const] = ACTIONS(1629), + [anon_sym_DOLLARsizeof] = ACTIONS(1629), + [anon_sym_DOLLARstringify] = ACTIONS(1629), + [anon_sym_DOLLARappend] = ACTIONS(1629), + [anon_sym_DOLLARconcat] = ACTIONS(1629), + [anon_sym_DOLLARdefined] = ACTIONS(1629), + [anon_sym_DOLLARembed] = ACTIONS(1629), + [anon_sym_DOLLARand] = ACTIONS(1629), + [anon_sym_DOLLARor] = ACTIONS(1629), + [anon_sym_DOLLARfeature] = ACTIONS(1629), + [anon_sym_DOLLARassignable] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_typeid] = ACTIONS(1629), + [anon_sym_LBRACE_PIPE] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_ichar] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_ushort] = ACTIONS(1629), + [anon_sym_uint] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_ulong] = ACTIONS(1629), + [anon_sym_int128] = ACTIONS(1629), + [anon_sym_uint128] = ACTIONS(1629), + [anon_sym_float] = ACTIONS(1629), + [anon_sym_double] = ACTIONS(1629), + [anon_sym_float16] = ACTIONS(1629), + [anon_sym_bfloat16] = ACTIONS(1629), + [anon_sym_float128] = ACTIONS(1629), + [anon_sym_iptr] = ACTIONS(1629), + [anon_sym_uptr] = ACTIONS(1629), + [anon_sym_isz] = ACTIONS(1629), + [anon_sym_usz] = ACTIONS(1629), + [anon_sym_anyfault] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_DOLLARtypeof] = ACTIONS(1629), + [anon_sym_DOLLARtypefrom] = ACTIONS(1629), + [anon_sym_DOLLARevaltype] = ACTIONS(1629), + [anon_sym_DOLLARvatype] = ACTIONS(1629), + [sym_real_literal] = ACTIONS(1631), + }, + [462] = { + [sym_line_comment] = STATE(462), + [sym_doc_comment] = STATE(462), + [sym_block_comment] = STATE(462), + [sym_else_part] = STATE(766), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_else] = ACTIONS(1659), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARendif] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), + }, + [463] = { + [sym_line_comment] = STATE(463), + [sym_doc_comment] = STATE(463), + [sym_block_comment] = STATE(463), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARcase] = ACTIONS(1189), + [anon_sym_DOLLARdefault] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARendswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), + }, + [464] = { + [sym_line_comment] = STATE(464), + [sym_doc_comment] = STATE(464), + [sym_block_comment] = STATE(464), + [sym_ident] = ACTIONS(1637), + [sym_integer_literal] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_BQUOTE] = ACTIONS(1639), + [sym_bytes_literal] = ACTIONS(1639), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1637), + [sym_at_ident] = ACTIONS(1639), + [sym_hash_ident] = ACTIONS(1639), + [sym_type_ident] = ACTIONS(1639), + [sym_ct_type_ident] = ACTIONS(1639), + [sym_const_ident] = ACTIONS(1637), + [sym_builtin] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_tlocal] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_fn] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_var] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_defer] = ACTIONS(1637), + [anon_sym_assert] = ACTIONS(1637), + [anon_sym_nextcase] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_foreach] = ACTIONS(1637), + [anon_sym_foreach_r] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_int] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_asm] = ACTIONS(1637), + [anon_sym_DOLLARassert] = ACTIONS(1637), + [anon_sym_DOLLARerror] = ACTIONS(1637), + [anon_sym_DOLLARecho] = ACTIONS(1637), + [anon_sym_DOLLARif] = ACTIONS(1637), + [anon_sym_DOLLARcase] = ACTIONS(1637), + [anon_sym_DOLLARdefault] = ACTIONS(1637), + [anon_sym_DOLLARswitch] = ACTIONS(1637), + [anon_sym_DOLLARendswitch] = ACTIONS(1637), + [anon_sym_DOLLARfor] = ACTIONS(1637), + [anon_sym_DOLLARforeach] = ACTIONS(1637), + [anon_sym_DOLLARalignof] = ACTIONS(1637), + [anon_sym_DOLLARextnameof] = ACTIONS(1637), + [anon_sym_DOLLARnameof] = ACTIONS(1637), + [anon_sym_DOLLARoffsetof] = ACTIONS(1637), + [anon_sym_DOLLARqnameof] = ACTIONS(1637), + [anon_sym_DOLLARvaconst] = ACTIONS(1637), + [anon_sym_DOLLARvaarg] = ACTIONS(1637), + [anon_sym_DOLLARvaref] = ACTIONS(1637), + [anon_sym_DOLLARvaexpr] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_DOLLARvacount] = ACTIONS(1637), + [anon_sym_DOLLAReval] = ACTIONS(1637), + [anon_sym_DOLLARis_const] = ACTIONS(1637), + [anon_sym_DOLLARsizeof] = ACTIONS(1637), + [anon_sym_DOLLARstringify] = ACTIONS(1637), + [anon_sym_DOLLARappend] = ACTIONS(1637), + [anon_sym_DOLLARconcat] = ACTIONS(1637), + [anon_sym_DOLLARdefined] = ACTIONS(1637), + [anon_sym_DOLLARembed] = ACTIONS(1637), + [anon_sym_DOLLARand] = ACTIONS(1637), + [anon_sym_DOLLARor] = ACTIONS(1637), + [anon_sym_DOLLARfeature] = ACTIONS(1637), + [anon_sym_DOLLARassignable] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_typeid] = ACTIONS(1637), + [anon_sym_LBRACE_PIPE] = ACTIONS(1639), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_bool] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_ichar] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_ushort] = ACTIONS(1637), + [anon_sym_uint] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_ulong] = ACTIONS(1637), + [anon_sym_int128] = ACTIONS(1637), + [anon_sym_uint128] = ACTIONS(1637), + [anon_sym_float] = ACTIONS(1637), + [anon_sym_double] = ACTIONS(1637), + [anon_sym_float16] = ACTIONS(1637), + [anon_sym_bfloat16] = ACTIONS(1637), + [anon_sym_float128] = ACTIONS(1637), + [anon_sym_iptr] = ACTIONS(1637), + [anon_sym_uptr] = ACTIONS(1637), + [anon_sym_isz] = ACTIONS(1637), + [anon_sym_usz] = ACTIONS(1637), + [anon_sym_anyfault] = ACTIONS(1637), + [anon_sym_any] = ACTIONS(1637), + [anon_sym_DOLLARtypeof] = ACTIONS(1637), + [anon_sym_DOLLARtypefrom] = ACTIONS(1637), + [anon_sym_DOLLARevaltype] = ACTIONS(1637), + [anon_sym_DOLLARvatype] = ACTIONS(1637), + [sym_real_literal] = ACTIONS(1639), + }, + [465] = { + [sym_line_comment] = STATE(465), + [sym_doc_comment] = STATE(465), + [sym_block_comment] = STATE(465), + [sym_ident] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_bytes_literal] = ACTIONS(1643), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1641), + [sym_at_ident] = ACTIONS(1643), + [sym_hash_ident] = ACTIONS(1643), + [sym_type_ident] = ACTIONS(1643), + [sym_ct_type_ident] = ACTIONS(1643), + [sym_const_ident] = ACTIONS(1641), + [sym_builtin] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_tlocal] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_fn] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [anon_sym_var] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_defer] = ACTIONS(1641), + [anon_sym_assert] = ACTIONS(1641), + [anon_sym_nextcase] = ACTIONS(1641), + [anon_sym_switch] = ACTIONS(1641), + [anon_sym_AMP_AMP] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_foreach] = ACTIONS(1641), + [anon_sym_foreach_r] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_int] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_asm] = ACTIONS(1641), + [anon_sym_DOLLARassert] = ACTIONS(1641), + [anon_sym_DOLLARerror] = ACTIONS(1641), + [anon_sym_DOLLARecho] = ACTIONS(1641), + [anon_sym_DOLLARif] = ACTIONS(1641), + [anon_sym_DOLLARcase] = ACTIONS(1641), + [anon_sym_DOLLARdefault] = ACTIONS(1641), + [anon_sym_DOLLARswitch] = ACTIONS(1641), + [anon_sym_DOLLARendswitch] = ACTIONS(1641), + [anon_sym_DOLLARfor] = ACTIONS(1641), + [anon_sym_DOLLARforeach] = ACTIONS(1641), + [anon_sym_DOLLARalignof] = ACTIONS(1641), + [anon_sym_DOLLARextnameof] = ACTIONS(1641), + [anon_sym_DOLLARnameof] = ACTIONS(1641), + [anon_sym_DOLLARoffsetof] = ACTIONS(1641), + [anon_sym_DOLLARqnameof] = ACTIONS(1641), + [anon_sym_DOLLARvaconst] = ACTIONS(1641), + [anon_sym_DOLLARvaarg] = ACTIONS(1641), + [anon_sym_DOLLARvaref] = ACTIONS(1641), + [anon_sym_DOLLARvaexpr] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [anon_sym_DOLLARvacount] = ACTIONS(1641), + [anon_sym_DOLLAReval] = ACTIONS(1641), + [anon_sym_DOLLARis_const] = ACTIONS(1641), + [anon_sym_DOLLARsizeof] = ACTIONS(1641), + [anon_sym_DOLLARstringify] = ACTIONS(1641), + [anon_sym_DOLLARappend] = ACTIONS(1641), + [anon_sym_DOLLARconcat] = ACTIONS(1641), + [anon_sym_DOLLARdefined] = ACTIONS(1641), + [anon_sym_DOLLARembed] = ACTIONS(1641), + [anon_sym_DOLLARand] = ACTIONS(1641), + [anon_sym_DOLLARor] = ACTIONS(1641), + [anon_sym_DOLLARfeature] = ACTIONS(1641), + [anon_sym_DOLLARassignable] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1643), + [anon_sym_TILDE] = ACTIONS(1643), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_typeid] = ACTIONS(1641), + [anon_sym_LBRACE_PIPE] = ACTIONS(1643), + [anon_sym_void] = ACTIONS(1641), + [anon_sym_bool] = ACTIONS(1641), + [anon_sym_char] = ACTIONS(1641), + [anon_sym_ichar] = ACTIONS(1641), + [anon_sym_short] = ACTIONS(1641), + [anon_sym_ushort] = ACTIONS(1641), + [anon_sym_uint] = ACTIONS(1641), + [anon_sym_long] = ACTIONS(1641), + [anon_sym_ulong] = ACTIONS(1641), + [anon_sym_int128] = ACTIONS(1641), + [anon_sym_uint128] = ACTIONS(1641), + [anon_sym_float] = ACTIONS(1641), + [anon_sym_double] = ACTIONS(1641), + [anon_sym_float16] = ACTIONS(1641), + [anon_sym_bfloat16] = ACTIONS(1641), + [anon_sym_float128] = ACTIONS(1641), + [anon_sym_iptr] = ACTIONS(1641), + [anon_sym_uptr] = ACTIONS(1641), + [anon_sym_isz] = ACTIONS(1641), + [anon_sym_usz] = ACTIONS(1641), + [anon_sym_anyfault] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_DOLLARtypeof] = ACTIONS(1641), + [anon_sym_DOLLARtypefrom] = ACTIONS(1641), + [anon_sym_DOLLARevaltype] = ACTIONS(1641), + [anon_sym_DOLLARvatype] = ACTIONS(1641), + [sym_real_literal] = ACTIONS(1643), }, - [491] = { - [sym_line_comment] = STATE(491), - [sym_doc_comment] = STATE(491), - [sym_block_comment] = STATE(491), - [sym_ident] = ACTIONS(1405), - [sym_integer_literal] = ACTIONS(1407), - [anon_sym_SQUOTE] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [anon_sym_BQUOTE] = ACTIONS(1407), - [sym_bytes_literal] = ACTIONS(1407), + [466] = { + [sym_line_comment] = STATE(466), + [sym_doc_comment] = STATE(466), + [sym_block_comment] = STATE(466), + [sym_ident] = ACTIONS(1645), + [sym_integer_literal] = ACTIONS(1647), + [anon_sym_SQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), + [sym_bytes_literal] = ACTIONS(1647), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1405), - [sym_at_ident] = ACTIONS(1407), - [sym_hash_ident] = ACTIONS(1407), - [sym_type_ident] = ACTIONS(1407), - [sym_ct_type_ident] = ACTIONS(1407), - [sym_const_ident] = ACTIONS(1405), - [sym_builtin] = ACTIONS(1407), - [anon_sym_LPAREN] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_static] = ACTIONS(1405), - [anon_sym_tlocal] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_fn] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_var] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_defer] = ACTIONS(1405), - [anon_sym_assert] = ACTIONS(1405), - [anon_sym_nextcase] = ACTIONS(1405), - [anon_sym_switch] = ACTIONS(1405), - [anon_sym_AMP_AMP] = ACTIONS(1407), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_foreach] = ACTIONS(1405), - [anon_sym_foreach_r] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1405), - [anon_sym_int] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_asm] = ACTIONS(1405), - [anon_sym_DOLLARassert] = ACTIONS(1405), - [anon_sym_DOLLARerror] = ACTIONS(1405), - [anon_sym_DOLLARecho] = ACTIONS(1405), - [anon_sym_DOLLARif] = ACTIONS(1405), - [anon_sym_DOLLARcase] = ACTIONS(1405), - [anon_sym_DOLLARdefault] = ACTIONS(1405), - [anon_sym_DOLLARswitch] = ACTIONS(1405), - [anon_sym_DOLLARendswitch] = ACTIONS(1405), - [anon_sym_DOLLARfor] = ACTIONS(1405), - [anon_sym_DOLLARforeach] = ACTIONS(1405), - [anon_sym_DOLLARalignof] = ACTIONS(1405), - [anon_sym_DOLLARextnameof] = ACTIONS(1405), - [anon_sym_DOLLARnameof] = ACTIONS(1405), - [anon_sym_DOLLARoffsetof] = ACTIONS(1405), - [anon_sym_DOLLARqnameof] = ACTIONS(1405), - [anon_sym_DOLLAReval] = ACTIONS(1405), - [anon_sym_DOLLARdefined] = ACTIONS(1405), - [anon_sym_DOLLARsizeof] = ACTIONS(1405), - [anon_sym_DOLLARstringify] = ACTIONS(1405), - [anon_sym_DOLLARis_const] = ACTIONS(1405), - [anon_sym_DOLLARvaconst] = ACTIONS(1405), - [anon_sym_DOLLARvaarg] = ACTIONS(1405), - [anon_sym_DOLLARvaref] = ACTIONS(1405), - [anon_sym_DOLLARvaexpr] = ACTIONS(1405), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_null] = ACTIONS(1405), - [anon_sym_DOLLARvacount] = ACTIONS(1405), - [anon_sym_DOLLARfeature] = ACTIONS(1405), - [anon_sym_DOLLARand] = ACTIONS(1405), - [anon_sym_DOLLARor] = ACTIONS(1405), - [anon_sym_DOLLARassignable] = ACTIONS(1405), - [anon_sym_DOLLARembed] = ACTIONS(1405), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_typeid] = ACTIONS(1405), - [anon_sym_LBRACE_PIPE] = ACTIONS(1407), - [anon_sym_void] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_char] = ACTIONS(1405), - [anon_sym_ichar] = ACTIONS(1405), - [anon_sym_short] = ACTIONS(1405), - [anon_sym_ushort] = ACTIONS(1405), - [anon_sym_uint] = ACTIONS(1405), - [anon_sym_long] = ACTIONS(1405), - [anon_sym_ulong] = ACTIONS(1405), - [anon_sym_int128] = ACTIONS(1405), - [anon_sym_uint128] = ACTIONS(1405), - [anon_sym_float] = ACTIONS(1405), - [anon_sym_double] = ACTIONS(1405), - [anon_sym_float16] = ACTIONS(1405), - [anon_sym_bfloat16] = ACTIONS(1405), - [anon_sym_float128] = ACTIONS(1405), - [anon_sym_iptr] = ACTIONS(1405), - [anon_sym_uptr] = ACTIONS(1405), - [anon_sym_isz] = ACTIONS(1405), - [anon_sym_usz] = ACTIONS(1405), - [anon_sym_anyfault] = ACTIONS(1405), - [anon_sym_any] = ACTIONS(1405), - [anon_sym_DOLLARtypeof] = ACTIONS(1405), - [anon_sym_DOLLARtypefrom] = ACTIONS(1405), - [anon_sym_DOLLARvatype] = ACTIONS(1405), - [anon_sym_DOLLARevaltype] = ACTIONS(1405), - [sym_real_literal] = ACTIONS(1407), + [sym_ct_ident] = ACTIONS(1645), + [sym_at_ident] = ACTIONS(1647), + [sym_hash_ident] = ACTIONS(1647), + [sym_type_ident] = ACTIONS(1647), + [sym_ct_type_ident] = ACTIONS(1647), + [sym_const_ident] = ACTIONS(1645), + [sym_builtin] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_static] = ACTIONS(1645), + [anon_sym_tlocal] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_fn] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_var] = ACTIONS(1645), + [anon_sym_return] = ACTIONS(1645), + [anon_sym_continue] = ACTIONS(1645), + [anon_sym_break] = ACTIONS(1645), + [anon_sym_defer] = ACTIONS(1645), + [anon_sym_assert] = ACTIONS(1645), + [anon_sym_nextcase] = ACTIONS(1645), + [anon_sym_switch] = ACTIONS(1645), + [anon_sym_AMP_AMP] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1645), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_foreach] = ACTIONS(1645), + [anon_sym_foreach_r] = ACTIONS(1645), + [anon_sym_while] = ACTIONS(1645), + [anon_sym_do] = ACTIONS(1645), + [anon_sym_int] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_asm] = ACTIONS(1645), + [anon_sym_DOLLARassert] = ACTIONS(1645), + [anon_sym_DOLLARerror] = ACTIONS(1645), + [anon_sym_DOLLARecho] = ACTIONS(1645), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_DOLLARcase] = ACTIONS(1645), + [anon_sym_DOLLARdefault] = ACTIONS(1645), + [anon_sym_DOLLARswitch] = ACTIONS(1645), + [anon_sym_DOLLARendswitch] = ACTIONS(1645), + [anon_sym_DOLLARfor] = ACTIONS(1645), + [anon_sym_DOLLARforeach] = ACTIONS(1645), + [anon_sym_DOLLARalignof] = ACTIONS(1645), + [anon_sym_DOLLARextnameof] = ACTIONS(1645), + [anon_sym_DOLLARnameof] = ACTIONS(1645), + [anon_sym_DOLLARoffsetof] = ACTIONS(1645), + [anon_sym_DOLLARqnameof] = ACTIONS(1645), + [anon_sym_DOLLARvaconst] = ACTIONS(1645), + [anon_sym_DOLLARvaarg] = ACTIONS(1645), + [anon_sym_DOLLARvaref] = ACTIONS(1645), + [anon_sym_DOLLARvaexpr] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [anon_sym_DOLLARvacount] = ACTIONS(1645), + [anon_sym_DOLLAReval] = ACTIONS(1645), + [anon_sym_DOLLARis_const] = ACTIONS(1645), + [anon_sym_DOLLARsizeof] = ACTIONS(1645), + [anon_sym_DOLLARstringify] = ACTIONS(1645), + [anon_sym_DOLLARappend] = ACTIONS(1645), + [anon_sym_DOLLARconcat] = ACTIONS(1645), + [anon_sym_DOLLARdefined] = ACTIONS(1645), + [anon_sym_DOLLARembed] = ACTIONS(1645), + [anon_sym_DOLLARand] = ACTIONS(1645), + [anon_sym_DOLLARor] = ACTIONS(1645), + [anon_sym_DOLLARfeature] = ACTIONS(1645), + [anon_sym_DOLLARassignable] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1647), + [anon_sym_DASH_DASH] = ACTIONS(1647), + [anon_sym_typeid] = ACTIONS(1645), + [anon_sym_LBRACE_PIPE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_ichar] = ACTIONS(1645), + [anon_sym_short] = ACTIONS(1645), + [anon_sym_ushort] = ACTIONS(1645), + [anon_sym_uint] = ACTIONS(1645), + [anon_sym_long] = ACTIONS(1645), + [anon_sym_ulong] = ACTIONS(1645), + [anon_sym_int128] = ACTIONS(1645), + [anon_sym_uint128] = ACTIONS(1645), + [anon_sym_float] = ACTIONS(1645), + [anon_sym_double] = ACTIONS(1645), + [anon_sym_float16] = ACTIONS(1645), + [anon_sym_bfloat16] = ACTIONS(1645), + [anon_sym_float128] = ACTIONS(1645), + [anon_sym_iptr] = ACTIONS(1645), + [anon_sym_uptr] = ACTIONS(1645), + [anon_sym_isz] = ACTIONS(1645), + [anon_sym_usz] = ACTIONS(1645), + [anon_sym_anyfault] = ACTIONS(1645), + [anon_sym_any] = ACTIONS(1645), + [anon_sym_DOLLARtypeof] = ACTIONS(1645), + [anon_sym_DOLLARtypefrom] = ACTIONS(1645), + [anon_sym_DOLLARevaltype] = ACTIONS(1645), + [anon_sym_DOLLARvatype] = ACTIONS(1645), + [sym_real_literal] = ACTIONS(1647), }, - [492] = { - [sym_line_comment] = STATE(492), - [sym_doc_comment] = STATE(492), - [sym_block_comment] = STATE(492), + [467] = { + [sym_line_comment] = STATE(467), + [sym_doc_comment] = STATE(467), + [sym_block_comment] = STATE(467), [sym_ident] = ACTIONS(1377), [sym_integer_literal] = ACTIONS(1379), [anon_sym_SQUOTE] = ACTIONS(1379), @@ -82175,7 +79142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1379), [sym_bytes_literal] = ACTIONS(1379), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1377), [sym_at_ident] = ACTIONS(1379), @@ -82202,7 +79169,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(1377), [anon_sym_AMP_AMP] = ACTIONS(1379), [anon_sym_if] = ACTIONS(1377), - [anon_sym_else] = ACTIONS(1377), [anon_sym_for] = ACTIONS(1377), [anon_sym_foreach] = ACTIONS(1377), [anon_sym_foreach_r] = ACTIONS(1377), @@ -82217,9 +79183,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1377), [anon_sym_DOLLARecho] = ACTIONS(1377), [anon_sym_DOLLARif] = ACTIONS(1377), - [anon_sym_DOLLARendif] = ACTIONS(1377), - [anon_sym_DOLLARelse] = ACTIONS(1377), + [anon_sym_DOLLARcase] = ACTIONS(1377), + [anon_sym_DOLLARdefault] = ACTIONS(1377), [anon_sym_DOLLARswitch] = ACTIONS(1377), + [anon_sym_DOLLARendswitch] = ACTIONS(1377), [anon_sym_DOLLARfor] = ACTIONS(1377), [anon_sym_DOLLARforeach] = ACTIONS(1377), [anon_sym_DOLLARalignof] = ACTIONS(1377), @@ -82227,11 +79194,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1377), [anon_sym_DOLLARoffsetof] = ACTIONS(1377), [anon_sym_DOLLARqnameof] = ACTIONS(1377), - [anon_sym_DOLLAReval] = ACTIONS(1377), - [anon_sym_DOLLARdefined] = ACTIONS(1377), - [anon_sym_DOLLARsizeof] = ACTIONS(1377), - [anon_sym_DOLLARstringify] = ACTIONS(1377), - [anon_sym_DOLLARis_const] = ACTIONS(1377), [anon_sym_DOLLARvaconst] = ACTIONS(1377), [anon_sym_DOLLARvaarg] = ACTIONS(1377), [anon_sym_DOLLARvaref] = ACTIONS(1377), @@ -82240,11 +79202,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1377), [anon_sym_null] = ACTIONS(1377), [anon_sym_DOLLARvacount] = ACTIONS(1377), - [anon_sym_DOLLARfeature] = ACTIONS(1377), + [anon_sym_DOLLAReval] = ACTIONS(1377), + [anon_sym_DOLLARis_const] = ACTIONS(1377), + [anon_sym_DOLLARsizeof] = ACTIONS(1377), + [anon_sym_DOLLARstringify] = ACTIONS(1377), + [anon_sym_DOLLARappend] = ACTIONS(1377), + [anon_sym_DOLLARconcat] = ACTIONS(1377), + [anon_sym_DOLLARdefined] = ACTIONS(1377), + [anon_sym_DOLLARembed] = ACTIONS(1377), [anon_sym_DOLLARand] = ACTIONS(1377), [anon_sym_DOLLARor] = ACTIONS(1377), + [anon_sym_DOLLARfeature] = ACTIONS(1377), [anon_sym_DOLLARassignable] = ACTIONS(1377), - [anon_sym_DOLLARembed] = ACTIONS(1377), [anon_sym_BANG] = ACTIONS(1379), [anon_sym_TILDE] = ACTIONS(1379), [anon_sym_PLUS_PLUS] = ACTIONS(1379), @@ -82275,589 +79244,1184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1377), [anon_sym_DOLLARtypeof] = ACTIONS(1377), [anon_sym_DOLLARtypefrom] = ACTIONS(1377), - [anon_sym_DOLLARvatype] = ACTIONS(1377), [anon_sym_DOLLARevaltype] = ACTIONS(1377), + [anon_sym_DOLLARvatype] = ACTIONS(1377), [sym_real_literal] = ACTIONS(1379), }, - [493] = { - [sym_line_comment] = STATE(493), - [sym_doc_comment] = STATE(493), - [sym_block_comment] = STATE(493), - [sym_ident] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1497), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [anon_sym_BQUOTE] = ACTIONS(1497), - [sym_bytes_literal] = ACTIONS(1497), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1495), - [sym_at_ident] = ACTIONS(1497), - [sym_hash_ident] = ACTIONS(1497), - [sym_type_ident] = ACTIONS(1497), - [sym_ct_type_ident] = ACTIONS(1497), - [sym_const_ident] = ACTIONS(1495), - [sym_builtin] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_tlocal] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1497), - [anon_sym_fn] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_var] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_defer] = ACTIONS(1495), - [anon_sym_assert] = ACTIONS(1495), - [anon_sym_nextcase] = ACTIONS(1495), - [anon_sym_switch] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_foreach] = ACTIONS(1495), - [anon_sym_foreach_r] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_int] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_asm] = ACTIONS(1495), - [anon_sym_DOLLARassert] = ACTIONS(1495), - [anon_sym_DOLLARerror] = ACTIONS(1495), - [anon_sym_DOLLARecho] = ACTIONS(1495), - [anon_sym_DOLLARif] = ACTIONS(1495), - [anon_sym_DOLLARcase] = ACTIONS(1495), - [anon_sym_DOLLARdefault] = ACTIONS(1495), - [anon_sym_DOLLARswitch] = ACTIONS(1495), - [anon_sym_DOLLARendswitch] = ACTIONS(1495), - [anon_sym_DOLLARfor] = ACTIONS(1495), - [anon_sym_DOLLARforeach] = ACTIONS(1495), - [anon_sym_DOLLARalignof] = ACTIONS(1495), - [anon_sym_DOLLARextnameof] = ACTIONS(1495), - [anon_sym_DOLLARnameof] = ACTIONS(1495), - [anon_sym_DOLLARoffsetof] = ACTIONS(1495), - [anon_sym_DOLLARqnameof] = ACTIONS(1495), - [anon_sym_DOLLAReval] = ACTIONS(1495), - [anon_sym_DOLLARdefined] = ACTIONS(1495), - [anon_sym_DOLLARsizeof] = ACTIONS(1495), - [anon_sym_DOLLARstringify] = ACTIONS(1495), - [anon_sym_DOLLARis_const] = ACTIONS(1495), - [anon_sym_DOLLARvaconst] = ACTIONS(1495), - [anon_sym_DOLLARvaarg] = ACTIONS(1495), - [anon_sym_DOLLARvaref] = ACTIONS(1495), - [anon_sym_DOLLARvaexpr] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_DOLLARvacount] = ACTIONS(1495), - [anon_sym_DOLLARfeature] = ACTIONS(1495), - [anon_sym_DOLLARand] = ACTIONS(1495), - [anon_sym_DOLLARor] = ACTIONS(1495), - [anon_sym_DOLLARassignable] = ACTIONS(1495), - [anon_sym_DOLLARembed] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_TILDE] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [anon_sym_typeid] = ACTIONS(1495), - [anon_sym_LBRACE_PIPE] = ACTIONS(1497), - [anon_sym_void] = ACTIONS(1495), - [anon_sym_bool] = ACTIONS(1495), - [anon_sym_char] = ACTIONS(1495), - [anon_sym_ichar] = ACTIONS(1495), - [anon_sym_short] = ACTIONS(1495), - [anon_sym_ushort] = ACTIONS(1495), - [anon_sym_uint] = ACTIONS(1495), - [anon_sym_long] = ACTIONS(1495), - [anon_sym_ulong] = ACTIONS(1495), - [anon_sym_int128] = ACTIONS(1495), - [anon_sym_uint128] = ACTIONS(1495), - [anon_sym_float] = ACTIONS(1495), - [anon_sym_double] = ACTIONS(1495), - [anon_sym_float16] = ACTIONS(1495), - [anon_sym_bfloat16] = ACTIONS(1495), - [anon_sym_float128] = ACTIONS(1495), - [anon_sym_iptr] = ACTIONS(1495), - [anon_sym_uptr] = ACTIONS(1495), - [anon_sym_isz] = ACTIONS(1495), - [anon_sym_usz] = ACTIONS(1495), - [anon_sym_anyfault] = ACTIONS(1495), - [anon_sym_any] = ACTIONS(1495), - [anon_sym_DOLLARtypeof] = ACTIONS(1495), - [anon_sym_DOLLARtypefrom] = ACTIONS(1495), - [anon_sym_DOLLARvatype] = ACTIONS(1495), - [anon_sym_DOLLARevaltype] = ACTIONS(1495), - [sym_real_literal] = ACTIONS(1497), + [468] = { + [sym_line_comment] = STATE(468), + [sym_doc_comment] = STATE(468), + [sym_block_comment] = STATE(468), + [sym_ident] = ACTIONS(1373), + [sym_integer_literal] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [anon_sym_BQUOTE] = ACTIONS(1375), + [sym_bytes_literal] = ACTIONS(1375), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1373), + [sym_at_ident] = ACTIONS(1375), + [sym_hash_ident] = ACTIONS(1375), + [sym_type_ident] = ACTIONS(1375), + [sym_ct_type_ident] = ACTIONS(1375), + [sym_const_ident] = ACTIONS(1373), + [sym_builtin] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_tlocal] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_fn] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_var] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [anon_sym_defer] = ACTIONS(1373), + [anon_sym_assert] = ACTIONS(1373), + [anon_sym_nextcase] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1373), + [anon_sym_AMP_AMP] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_foreach] = ACTIONS(1373), + [anon_sym_foreach_r] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(1373), + [anon_sym_int] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_asm] = ACTIONS(1373), + [anon_sym_DOLLARassert] = ACTIONS(1373), + [anon_sym_DOLLARerror] = ACTIONS(1373), + [anon_sym_DOLLARecho] = ACTIONS(1373), + [anon_sym_DOLLARif] = ACTIONS(1373), + [anon_sym_DOLLARcase] = ACTIONS(1373), + [anon_sym_DOLLARdefault] = ACTIONS(1373), + [anon_sym_DOLLARswitch] = ACTIONS(1373), + [anon_sym_DOLLARendswitch] = ACTIONS(1373), + [anon_sym_DOLLARfor] = ACTIONS(1373), + [anon_sym_DOLLARforeach] = ACTIONS(1373), + [anon_sym_DOLLARalignof] = ACTIONS(1373), + [anon_sym_DOLLARextnameof] = ACTIONS(1373), + [anon_sym_DOLLARnameof] = ACTIONS(1373), + [anon_sym_DOLLARoffsetof] = ACTIONS(1373), + [anon_sym_DOLLARqnameof] = ACTIONS(1373), + [anon_sym_DOLLARvaconst] = ACTIONS(1373), + [anon_sym_DOLLARvaarg] = ACTIONS(1373), + [anon_sym_DOLLARvaref] = ACTIONS(1373), + [anon_sym_DOLLARvaexpr] = ACTIONS(1373), + [anon_sym_true] = ACTIONS(1373), + [anon_sym_false] = ACTIONS(1373), + [anon_sym_null] = ACTIONS(1373), + [anon_sym_DOLLARvacount] = ACTIONS(1373), + [anon_sym_DOLLAReval] = ACTIONS(1373), + [anon_sym_DOLLARis_const] = ACTIONS(1373), + [anon_sym_DOLLARsizeof] = ACTIONS(1373), + [anon_sym_DOLLARstringify] = ACTIONS(1373), + [anon_sym_DOLLARappend] = ACTIONS(1373), + [anon_sym_DOLLARconcat] = ACTIONS(1373), + [anon_sym_DOLLARdefined] = ACTIONS(1373), + [anon_sym_DOLLARembed] = ACTIONS(1373), + [anon_sym_DOLLARand] = ACTIONS(1373), + [anon_sym_DOLLARor] = ACTIONS(1373), + [anon_sym_DOLLARfeature] = ACTIONS(1373), + [anon_sym_DOLLARassignable] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_typeid] = ACTIONS(1373), + [anon_sym_LBRACE_PIPE] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1373), + [anon_sym_bool] = ACTIONS(1373), + [anon_sym_char] = ACTIONS(1373), + [anon_sym_ichar] = ACTIONS(1373), + [anon_sym_short] = ACTIONS(1373), + [anon_sym_ushort] = ACTIONS(1373), + [anon_sym_uint] = ACTIONS(1373), + [anon_sym_long] = ACTIONS(1373), + [anon_sym_ulong] = ACTIONS(1373), + [anon_sym_int128] = ACTIONS(1373), + [anon_sym_uint128] = ACTIONS(1373), + [anon_sym_float] = ACTIONS(1373), + [anon_sym_double] = ACTIONS(1373), + [anon_sym_float16] = ACTIONS(1373), + [anon_sym_bfloat16] = ACTIONS(1373), + [anon_sym_float128] = ACTIONS(1373), + [anon_sym_iptr] = ACTIONS(1373), + [anon_sym_uptr] = ACTIONS(1373), + [anon_sym_isz] = ACTIONS(1373), + [anon_sym_usz] = ACTIONS(1373), + [anon_sym_anyfault] = ACTIONS(1373), + [anon_sym_any] = ACTIONS(1373), + [anon_sym_DOLLARtypeof] = ACTIONS(1373), + [anon_sym_DOLLARtypefrom] = ACTIONS(1373), + [anon_sym_DOLLARevaltype] = ACTIONS(1373), + [anon_sym_DOLLARvatype] = ACTIONS(1373), + [sym_real_literal] = ACTIONS(1375), + }, + [469] = { + [sym_line_comment] = STATE(469), + [sym_doc_comment] = STATE(469), + [sym_block_comment] = STATE(469), + [sym_ident] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1523), + [sym_bytes_literal] = ACTIONS(1523), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1521), + [sym_at_ident] = ACTIONS(1523), + [sym_hash_ident] = ACTIONS(1523), + [sym_type_ident] = ACTIONS(1523), + [sym_ct_type_ident] = ACTIONS(1523), + [sym_const_ident] = ACTIONS(1521), + [sym_builtin] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_tlocal] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_var] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_defer] = ACTIONS(1521), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_nextcase] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_foreach] = ACTIONS(1521), + [anon_sym_foreach_r] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_int] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_asm] = ACTIONS(1521), + [anon_sym_DOLLARassert] = ACTIONS(1521), + [anon_sym_DOLLARerror] = ACTIONS(1521), + [anon_sym_DOLLARecho] = ACTIONS(1521), + [anon_sym_DOLLARif] = ACTIONS(1521), + [anon_sym_DOLLARcase] = ACTIONS(1521), + [anon_sym_DOLLARdefault] = ACTIONS(1521), + [anon_sym_DOLLARswitch] = ACTIONS(1521), + [anon_sym_DOLLARendswitch] = ACTIONS(1521), + [anon_sym_DOLLARfor] = ACTIONS(1521), + [anon_sym_DOLLARforeach] = ACTIONS(1521), + [anon_sym_DOLLARalignof] = ACTIONS(1521), + [anon_sym_DOLLARextnameof] = ACTIONS(1521), + [anon_sym_DOLLARnameof] = ACTIONS(1521), + [anon_sym_DOLLARoffsetof] = ACTIONS(1521), + [anon_sym_DOLLARqnameof] = ACTIONS(1521), + [anon_sym_DOLLARvaconst] = ACTIONS(1521), + [anon_sym_DOLLARvaarg] = ACTIONS(1521), + [anon_sym_DOLLARvaref] = ACTIONS(1521), + [anon_sym_DOLLARvaexpr] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [anon_sym_DOLLARvacount] = ACTIONS(1521), + [anon_sym_DOLLAReval] = ACTIONS(1521), + [anon_sym_DOLLARis_const] = ACTIONS(1521), + [anon_sym_DOLLARsizeof] = ACTIONS(1521), + [anon_sym_DOLLARstringify] = ACTIONS(1521), + [anon_sym_DOLLARappend] = ACTIONS(1521), + [anon_sym_DOLLARconcat] = ACTIONS(1521), + [anon_sym_DOLLARdefined] = ACTIONS(1521), + [anon_sym_DOLLARembed] = ACTIONS(1521), + [anon_sym_DOLLARand] = ACTIONS(1521), + [anon_sym_DOLLARor] = ACTIONS(1521), + [anon_sym_DOLLARfeature] = ACTIONS(1521), + [anon_sym_DOLLARassignable] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_typeid] = ACTIONS(1521), + [anon_sym_LBRACE_PIPE] = ACTIONS(1523), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_ichar] = ACTIONS(1521), + [anon_sym_short] = ACTIONS(1521), + [anon_sym_ushort] = ACTIONS(1521), + [anon_sym_uint] = ACTIONS(1521), + [anon_sym_long] = ACTIONS(1521), + [anon_sym_ulong] = ACTIONS(1521), + [anon_sym_int128] = ACTIONS(1521), + [anon_sym_uint128] = ACTIONS(1521), + [anon_sym_float] = ACTIONS(1521), + [anon_sym_double] = ACTIONS(1521), + [anon_sym_float16] = ACTIONS(1521), + [anon_sym_bfloat16] = ACTIONS(1521), + [anon_sym_float128] = ACTIONS(1521), + [anon_sym_iptr] = ACTIONS(1521), + [anon_sym_uptr] = ACTIONS(1521), + [anon_sym_isz] = ACTIONS(1521), + [anon_sym_usz] = ACTIONS(1521), + [anon_sym_anyfault] = ACTIONS(1521), + [anon_sym_any] = ACTIONS(1521), + [anon_sym_DOLLARtypeof] = ACTIONS(1521), + [anon_sym_DOLLARtypefrom] = ACTIONS(1521), + [anon_sym_DOLLARevaltype] = ACTIONS(1521), + [anon_sym_DOLLARvatype] = ACTIONS(1521), + [sym_real_literal] = ACTIONS(1523), + }, + [470] = { + [sym_line_comment] = STATE(470), + [sym_doc_comment] = STATE(470), + [sym_block_comment] = STATE(470), + [sym_ident] = ACTIONS(1381), + [sym_integer_literal] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_BQUOTE] = ACTIONS(1383), + [sym_bytes_literal] = ACTIONS(1383), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1381), + [sym_at_ident] = ACTIONS(1383), + [sym_hash_ident] = ACTIONS(1383), + [sym_type_ident] = ACTIONS(1383), + [sym_ct_type_ident] = ACTIONS(1383), + [sym_const_ident] = ACTIONS(1381), + [sym_builtin] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_tlocal] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_var] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_defer] = ACTIONS(1381), + [anon_sym_assert] = ACTIONS(1381), + [anon_sym_nextcase] = ACTIONS(1381), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_foreach] = ACTIONS(1381), + [anon_sym_foreach_r] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_int] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_asm] = ACTIONS(1381), + [anon_sym_DOLLARassert] = ACTIONS(1381), + [anon_sym_DOLLARerror] = ACTIONS(1381), + [anon_sym_DOLLARecho] = ACTIONS(1381), + [anon_sym_DOLLARif] = ACTIONS(1381), + [anon_sym_DOLLARcase] = ACTIONS(1381), + [anon_sym_DOLLARdefault] = ACTIONS(1381), + [anon_sym_DOLLARswitch] = ACTIONS(1381), + [anon_sym_DOLLARendswitch] = ACTIONS(1381), + [anon_sym_DOLLARfor] = ACTIONS(1381), + [anon_sym_DOLLARforeach] = ACTIONS(1381), + [anon_sym_DOLLARalignof] = ACTIONS(1381), + [anon_sym_DOLLARextnameof] = ACTIONS(1381), + [anon_sym_DOLLARnameof] = ACTIONS(1381), + [anon_sym_DOLLARoffsetof] = ACTIONS(1381), + [anon_sym_DOLLARqnameof] = ACTIONS(1381), + [anon_sym_DOLLARvaconst] = ACTIONS(1381), + [anon_sym_DOLLARvaarg] = ACTIONS(1381), + [anon_sym_DOLLARvaref] = ACTIONS(1381), + [anon_sym_DOLLARvaexpr] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_DOLLARvacount] = ACTIONS(1381), + [anon_sym_DOLLAReval] = ACTIONS(1381), + [anon_sym_DOLLARis_const] = ACTIONS(1381), + [anon_sym_DOLLARsizeof] = ACTIONS(1381), + [anon_sym_DOLLARstringify] = ACTIONS(1381), + [anon_sym_DOLLARappend] = ACTIONS(1381), + [anon_sym_DOLLARconcat] = ACTIONS(1381), + [anon_sym_DOLLARdefined] = ACTIONS(1381), + [anon_sym_DOLLARembed] = ACTIONS(1381), + [anon_sym_DOLLARand] = ACTIONS(1381), + [anon_sym_DOLLARor] = ACTIONS(1381), + [anon_sym_DOLLARfeature] = ACTIONS(1381), + [anon_sym_DOLLARassignable] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_typeid] = ACTIONS(1381), + [anon_sym_LBRACE_PIPE] = ACTIONS(1383), + [anon_sym_void] = ACTIONS(1381), + [anon_sym_bool] = ACTIONS(1381), + [anon_sym_char] = ACTIONS(1381), + [anon_sym_ichar] = ACTIONS(1381), + [anon_sym_short] = ACTIONS(1381), + [anon_sym_ushort] = ACTIONS(1381), + [anon_sym_uint] = ACTIONS(1381), + [anon_sym_long] = ACTIONS(1381), + [anon_sym_ulong] = ACTIONS(1381), + [anon_sym_int128] = ACTIONS(1381), + [anon_sym_uint128] = ACTIONS(1381), + [anon_sym_float] = ACTIONS(1381), + [anon_sym_double] = ACTIONS(1381), + [anon_sym_float16] = ACTIONS(1381), + [anon_sym_bfloat16] = ACTIONS(1381), + [anon_sym_float128] = ACTIONS(1381), + [anon_sym_iptr] = ACTIONS(1381), + [anon_sym_uptr] = ACTIONS(1381), + [anon_sym_isz] = ACTIONS(1381), + [anon_sym_usz] = ACTIONS(1381), + [anon_sym_anyfault] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_DOLLARtypeof] = ACTIONS(1381), + [anon_sym_DOLLARtypefrom] = ACTIONS(1381), + [anon_sym_DOLLARevaltype] = ACTIONS(1381), + [anon_sym_DOLLARvatype] = ACTIONS(1381), + [sym_real_literal] = ACTIONS(1383), + }, + [471] = { + [sym_line_comment] = STATE(471), + [sym_doc_comment] = STATE(471), + [sym_block_comment] = STATE(471), + [sym_ident] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1387), + [sym_bytes_literal] = ACTIONS(1387), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1385), + [sym_at_ident] = ACTIONS(1387), + [sym_hash_ident] = ACTIONS(1387), + [sym_type_ident] = ACTIONS(1387), + [sym_ct_type_ident] = ACTIONS(1387), + [sym_const_ident] = ACTIONS(1385), + [sym_builtin] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_static] = ACTIONS(1385), + [anon_sym_tlocal] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_fn] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_var] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1385), + [anon_sym_continue] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1385), + [anon_sym_defer] = ACTIONS(1385), + [anon_sym_assert] = ACTIONS(1385), + [anon_sym_nextcase] = ACTIONS(1385), + [anon_sym_switch] = ACTIONS(1385), + [anon_sym_AMP_AMP] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1385), + [anon_sym_foreach] = ACTIONS(1385), + [anon_sym_foreach_r] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(1385), + [anon_sym_int] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_asm] = ACTIONS(1385), + [anon_sym_DOLLARassert] = ACTIONS(1385), + [anon_sym_DOLLARerror] = ACTIONS(1385), + [anon_sym_DOLLARecho] = ACTIONS(1385), + [anon_sym_DOLLARif] = ACTIONS(1385), + [anon_sym_DOLLARcase] = ACTIONS(1385), + [anon_sym_DOLLARdefault] = ACTIONS(1385), + [anon_sym_DOLLARswitch] = ACTIONS(1385), + [anon_sym_DOLLARendswitch] = ACTIONS(1385), + [anon_sym_DOLLARfor] = ACTIONS(1385), + [anon_sym_DOLLARforeach] = ACTIONS(1385), + [anon_sym_DOLLARalignof] = ACTIONS(1385), + [anon_sym_DOLLARextnameof] = ACTIONS(1385), + [anon_sym_DOLLARnameof] = ACTIONS(1385), + [anon_sym_DOLLARoffsetof] = ACTIONS(1385), + [anon_sym_DOLLARqnameof] = ACTIONS(1385), + [anon_sym_DOLLARvaconst] = ACTIONS(1385), + [anon_sym_DOLLARvaarg] = ACTIONS(1385), + [anon_sym_DOLLARvaref] = ACTIONS(1385), + [anon_sym_DOLLARvaexpr] = ACTIONS(1385), + [anon_sym_true] = ACTIONS(1385), + [anon_sym_false] = ACTIONS(1385), + [anon_sym_null] = ACTIONS(1385), + [anon_sym_DOLLARvacount] = ACTIONS(1385), + [anon_sym_DOLLAReval] = ACTIONS(1385), + [anon_sym_DOLLARis_const] = ACTIONS(1385), + [anon_sym_DOLLARsizeof] = ACTIONS(1385), + [anon_sym_DOLLARstringify] = ACTIONS(1385), + [anon_sym_DOLLARappend] = ACTIONS(1385), + [anon_sym_DOLLARconcat] = ACTIONS(1385), + [anon_sym_DOLLARdefined] = ACTIONS(1385), + [anon_sym_DOLLARembed] = ACTIONS(1385), + [anon_sym_DOLLARand] = ACTIONS(1385), + [anon_sym_DOLLARor] = ACTIONS(1385), + [anon_sym_DOLLARfeature] = ACTIONS(1385), + [anon_sym_DOLLARassignable] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_typeid] = ACTIONS(1385), + [anon_sym_LBRACE_PIPE] = ACTIONS(1387), + [anon_sym_void] = ACTIONS(1385), + [anon_sym_bool] = ACTIONS(1385), + [anon_sym_char] = ACTIONS(1385), + [anon_sym_ichar] = ACTIONS(1385), + [anon_sym_short] = ACTIONS(1385), + [anon_sym_ushort] = ACTIONS(1385), + [anon_sym_uint] = ACTIONS(1385), + [anon_sym_long] = ACTIONS(1385), + [anon_sym_ulong] = ACTIONS(1385), + [anon_sym_int128] = ACTIONS(1385), + [anon_sym_uint128] = ACTIONS(1385), + [anon_sym_float] = ACTIONS(1385), + [anon_sym_double] = ACTIONS(1385), + [anon_sym_float16] = ACTIONS(1385), + [anon_sym_bfloat16] = ACTIONS(1385), + [anon_sym_float128] = ACTIONS(1385), + [anon_sym_iptr] = ACTIONS(1385), + [anon_sym_uptr] = ACTIONS(1385), + [anon_sym_isz] = ACTIONS(1385), + [anon_sym_usz] = ACTIONS(1385), + [anon_sym_anyfault] = ACTIONS(1385), + [anon_sym_any] = ACTIONS(1385), + [anon_sym_DOLLARtypeof] = ACTIONS(1385), + [anon_sym_DOLLARtypefrom] = ACTIONS(1385), + [anon_sym_DOLLARevaltype] = ACTIONS(1385), + [anon_sym_DOLLARvatype] = ACTIONS(1385), + [sym_real_literal] = ACTIONS(1387), }, - [494] = { - [sym_line_comment] = STATE(494), - [sym_doc_comment] = STATE(494), - [sym_block_comment] = STATE(494), - [sym_ident] = ACTIONS(1491), - [sym_integer_literal] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_BQUOTE] = ACTIONS(1493), - [sym_bytes_literal] = ACTIONS(1493), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1491), - [sym_at_ident] = ACTIONS(1493), - [sym_hash_ident] = ACTIONS(1493), - [sym_type_ident] = ACTIONS(1493), - [sym_ct_type_ident] = ACTIONS(1493), - [sym_const_ident] = ACTIONS(1491), - [sym_builtin] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_tlocal] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_fn] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_var] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_defer] = ACTIONS(1491), - [anon_sym_assert] = ACTIONS(1491), - [anon_sym_nextcase] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_foreach] = ACTIONS(1491), - [anon_sym_foreach_r] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_int] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_asm] = ACTIONS(1491), - [anon_sym_DOLLARassert] = ACTIONS(1491), - [anon_sym_DOLLARerror] = ACTIONS(1491), - [anon_sym_DOLLARecho] = ACTIONS(1491), - [anon_sym_DOLLARif] = ACTIONS(1491), - [anon_sym_DOLLARcase] = ACTIONS(1491), - [anon_sym_DOLLARdefault] = ACTIONS(1491), - [anon_sym_DOLLARswitch] = ACTIONS(1491), - [anon_sym_DOLLARendswitch] = ACTIONS(1491), - [anon_sym_DOLLARfor] = ACTIONS(1491), - [anon_sym_DOLLARforeach] = ACTIONS(1491), - [anon_sym_DOLLARalignof] = ACTIONS(1491), - [anon_sym_DOLLARextnameof] = ACTIONS(1491), - [anon_sym_DOLLARnameof] = ACTIONS(1491), - [anon_sym_DOLLARoffsetof] = ACTIONS(1491), - [anon_sym_DOLLARqnameof] = ACTIONS(1491), - [anon_sym_DOLLAReval] = ACTIONS(1491), - [anon_sym_DOLLARdefined] = ACTIONS(1491), - [anon_sym_DOLLARsizeof] = ACTIONS(1491), - [anon_sym_DOLLARstringify] = ACTIONS(1491), - [anon_sym_DOLLARis_const] = ACTIONS(1491), - [anon_sym_DOLLARvaconst] = ACTIONS(1491), - [anon_sym_DOLLARvaarg] = ACTIONS(1491), - [anon_sym_DOLLARvaref] = ACTIONS(1491), - [anon_sym_DOLLARvaexpr] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1491), - [anon_sym_DOLLARvacount] = ACTIONS(1491), - [anon_sym_DOLLARfeature] = ACTIONS(1491), - [anon_sym_DOLLARand] = ACTIONS(1491), - [anon_sym_DOLLARor] = ACTIONS(1491), - [anon_sym_DOLLARassignable] = ACTIONS(1491), - [anon_sym_DOLLARembed] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_typeid] = ACTIONS(1491), - [anon_sym_LBRACE_PIPE] = ACTIONS(1493), - [anon_sym_void] = ACTIONS(1491), - [anon_sym_bool] = ACTIONS(1491), - [anon_sym_char] = ACTIONS(1491), - [anon_sym_ichar] = ACTIONS(1491), - [anon_sym_short] = ACTIONS(1491), - [anon_sym_ushort] = ACTIONS(1491), - [anon_sym_uint] = ACTIONS(1491), - [anon_sym_long] = ACTIONS(1491), - [anon_sym_ulong] = ACTIONS(1491), - [anon_sym_int128] = ACTIONS(1491), - [anon_sym_uint128] = ACTIONS(1491), - [anon_sym_float] = ACTIONS(1491), - [anon_sym_double] = ACTIONS(1491), - [anon_sym_float16] = ACTIONS(1491), - [anon_sym_bfloat16] = ACTIONS(1491), - [anon_sym_float128] = ACTIONS(1491), - [anon_sym_iptr] = ACTIONS(1491), - [anon_sym_uptr] = ACTIONS(1491), - [anon_sym_isz] = ACTIONS(1491), - [anon_sym_usz] = ACTIONS(1491), - [anon_sym_anyfault] = ACTIONS(1491), - [anon_sym_any] = ACTIONS(1491), - [anon_sym_DOLLARtypeof] = ACTIONS(1491), - [anon_sym_DOLLARtypefrom] = ACTIONS(1491), - [anon_sym_DOLLARvatype] = ACTIONS(1491), - [anon_sym_DOLLARevaltype] = ACTIONS(1491), - [sym_real_literal] = ACTIONS(1493), + [472] = { + [sym_line_comment] = STATE(472), + [sym_doc_comment] = STATE(472), + [sym_block_comment] = STATE(472), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARcase] = ACTIONS(1357), + [anon_sym_DOLLARdefault] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARendswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), }, - [495] = { - [sym_line_comment] = STATE(495), - [sym_doc_comment] = STATE(495), - [sym_block_comment] = STATE(495), - [sym_ident] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1459), - [anon_sym_DQUOTE] = ACTIONS(1459), - [anon_sym_BQUOTE] = ACTIONS(1459), - [sym_bytes_literal] = ACTIONS(1459), + [473] = { + [sym_line_comment] = STATE(473), + [sym_doc_comment] = STATE(473), + [sym_block_comment] = STATE(473), + [sym_ident] = ACTIONS(1389), + [sym_integer_literal] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [anon_sym_BQUOTE] = ACTIONS(1391), + [sym_bytes_literal] = ACTIONS(1391), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1457), - [sym_at_ident] = ACTIONS(1459), - [sym_hash_ident] = ACTIONS(1459), - [sym_type_ident] = ACTIONS(1459), - [sym_ct_type_ident] = ACTIONS(1459), - [sym_const_ident] = ACTIONS(1457), - [sym_builtin] = ACTIONS(1459), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1457), - [anon_sym_static] = ACTIONS(1457), - [anon_sym_tlocal] = ACTIONS(1457), - [anon_sym_SEMI] = ACTIONS(1459), - [anon_sym_fn] = ACTIONS(1457), - [anon_sym_LBRACE] = ACTIONS(1457), - [anon_sym_const] = ACTIONS(1457), - [anon_sym_var] = ACTIONS(1457), - [anon_sym_return] = ACTIONS(1457), - [anon_sym_continue] = ACTIONS(1457), - [anon_sym_break] = ACTIONS(1457), - [anon_sym_defer] = ACTIONS(1457), - [anon_sym_assert] = ACTIONS(1457), - [anon_sym_nextcase] = ACTIONS(1457), - [anon_sym_switch] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(1459), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_for] = ACTIONS(1457), - [anon_sym_foreach] = ACTIONS(1457), - [anon_sym_foreach_r] = ACTIONS(1457), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_do] = ACTIONS(1457), - [anon_sym_int] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1457), - [anon_sym_DASH] = ACTIONS(1457), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_asm] = ACTIONS(1457), - [anon_sym_DOLLARassert] = ACTIONS(1457), - [anon_sym_DOLLARerror] = ACTIONS(1457), - [anon_sym_DOLLARecho] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1457), - [anon_sym_DOLLARcase] = ACTIONS(1457), - [anon_sym_DOLLARdefault] = ACTIONS(1457), - [anon_sym_DOLLARswitch] = ACTIONS(1457), - [anon_sym_DOLLARendswitch] = ACTIONS(1457), - [anon_sym_DOLLARfor] = ACTIONS(1457), - [anon_sym_DOLLARforeach] = ACTIONS(1457), - [anon_sym_DOLLARalignof] = ACTIONS(1457), - [anon_sym_DOLLARextnameof] = ACTIONS(1457), - [anon_sym_DOLLARnameof] = ACTIONS(1457), - [anon_sym_DOLLARoffsetof] = ACTIONS(1457), - [anon_sym_DOLLARqnameof] = ACTIONS(1457), - [anon_sym_DOLLAReval] = ACTIONS(1457), - [anon_sym_DOLLARdefined] = ACTIONS(1457), - [anon_sym_DOLLARsizeof] = ACTIONS(1457), - [anon_sym_DOLLARstringify] = ACTIONS(1457), - [anon_sym_DOLLARis_const] = ACTIONS(1457), - [anon_sym_DOLLARvaconst] = ACTIONS(1457), - [anon_sym_DOLLARvaarg] = ACTIONS(1457), - [anon_sym_DOLLARvaref] = ACTIONS(1457), - [anon_sym_DOLLARvaexpr] = ACTIONS(1457), - [anon_sym_true] = ACTIONS(1457), - [anon_sym_false] = ACTIONS(1457), - [anon_sym_null] = ACTIONS(1457), - [anon_sym_DOLLARvacount] = ACTIONS(1457), - [anon_sym_DOLLARfeature] = ACTIONS(1457), - [anon_sym_DOLLARand] = ACTIONS(1457), - [anon_sym_DOLLARor] = ACTIONS(1457), - [anon_sym_DOLLARassignable] = ACTIONS(1457), - [anon_sym_DOLLARembed] = ACTIONS(1457), - [anon_sym_BANG] = ACTIONS(1459), - [anon_sym_TILDE] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_typeid] = ACTIONS(1457), - [anon_sym_LBRACE_PIPE] = ACTIONS(1459), - [anon_sym_void] = ACTIONS(1457), - [anon_sym_bool] = ACTIONS(1457), - [anon_sym_char] = ACTIONS(1457), - [anon_sym_ichar] = ACTIONS(1457), - [anon_sym_short] = ACTIONS(1457), - [anon_sym_ushort] = ACTIONS(1457), - [anon_sym_uint] = ACTIONS(1457), - [anon_sym_long] = ACTIONS(1457), - [anon_sym_ulong] = ACTIONS(1457), - [anon_sym_int128] = ACTIONS(1457), - [anon_sym_uint128] = ACTIONS(1457), - [anon_sym_float] = ACTIONS(1457), - [anon_sym_double] = ACTIONS(1457), - [anon_sym_float16] = ACTIONS(1457), - [anon_sym_bfloat16] = ACTIONS(1457), - [anon_sym_float128] = ACTIONS(1457), - [anon_sym_iptr] = ACTIONS(1457), - [anon_sym_uptr] = ACTIONS(1457), - [anon_sym_isz] = ACTIONS(1457), - [anon_sym_usz] = ACTIONS(1457), - [anon_sym_anyfault] = ACTIONS(1457), - [anon_sym_any] = ACTIONS(1457), - [anon_sym_DOLLARtypeof] = ACTIONS(1457), - [anon_sym_DOLLARtypefrom] = ACTIONS(1457), - [anon_sym_DOLLARvatype] = ACTIONS(1457), - [anon_sym_DOLLARevaltype] = ACTIONS(1457), - [sym_real_literal] = ACTIONS(1459), + [sym_ct_ident] = ACTIONS(1389), + [sym_at_ident] = ACTIONS(1391), + [sym_hash_ident] = ACTIONS(1391), + [sym_type_ident] = ACTIONS(1391), + [sym_ct_type_ident] = ACTIONS(1391), + [sym_const_ident] = ACTIONS(1389), + [sym_builtin] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_tlocal] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_fn] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_var] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_defer] = ACTIONS(1389), + [anon_sym_assert] = ACTIONS(1389), + [anon_sym_nextcase] = ACTIONS(1389), + [anon_sym_switch] = ACTIONS(1389), + [anon_sym_AMP_AMP] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_foreach] = ACTIONS(1389), + [anon_sym_foreach_r] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_do] = ACTIONS(1389), + [anon_sym_int] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_asm] = ACTIONS(1389), + [anon_sym_DOLLARassert] = ACTIONS(1389), + [anon_sym_DOLLARerror] = ACTIONS(1389), + [anon_sym_DOLLARecho] = ACTIONS(1389), + [anon_sym_DOLLARif] = ACTIONS(1389), + [anon_sym_DOLLARcase] = ACTIONS(1389), + [anon_sym_DOLLARdefault] = ACTIONS(1389), + [anon_sym_DOLLARswitch] = ACTIONS(1389), + [anon_sym_DOLLARendswitch] = ACTIONS(1389), + [anon_sym_DOLLARfor] = ACTIONS(1389), + [anon_sym_DOLLARforeach] = ACTIONS(1389), + [anon_sym_DOLLARalignof] = ACTIONS(1389), + [anon_sym_DOLLARextnameof] = ACTIONS(1389), + [anon_sym_DOLLARnameof] = ACTIONS(1389), + [anon_sym_DOLLARoffsetof] = ACTIONS(1389), + [anon_sym_DOLLARqnameof] = ACTIONS(1389), + [anon_sym_DOLLARvaconst] = ACTIONS(1389), + [anon_sym_DOLLARvaarg] = ACTIONS(1389), + [anon_sym_DOLLARvaref] = ACTIONS(1389), + [anon_sym_DOLLARvaexpr] = ACTIONS(1389), + [anon_sym_true] = ACTIONS(1389), + [anon_sym_false] = ACTIONS(1389), + [anon_sym_null] = ACTIONS(1389), + [anon_sym_DOLLARvacount] = ACTIONS(1389), + [anon_sym_DOLLAReval] = ACTIONS(1389), + [anon_sym_DOLLARis_const] = ACTIONS(1389), + [anon_sym_DOLLARsizeof] = ACTIONS(1389), + [anon_sym_DOLLARstringify] = ACTIONS(1389), + [anon_sym_DOLLARappend] = ACTIONS(1389), + [anon_sym_DOLLARconcat] = ACTIONS(1389), + [anon_sym_DOLLARdefined] = ACTIONS(1389), + [anon_sym_DOLLARembed] = ACTIONS(1389), + [anon_sym_DOLLARand] = ACTIONS(1389), + [anon_sym_DOLLARor] = ACTIONS(1389), + [anon_sym_DOLLARfeature] = ACTIONS(1389), + [anon_sym_DOLLARassignable] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1391), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_typeid] = ACTIONS(1389), + [anon_sym_LBRACE_PIPE] = ACTIONS(1391), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_bool] = ACTIONS(1389), + [anon_sym_char] = ACTIONS(1389), + [anon_sym_ichar] = ACTIONS(1389), + [anon_sym_short] = ACTIONS(1389), + [anon_sym_ushort] = ACTIONS(1389), + [anon_sym_uint] = ACTIONS(1389), + [anon_sym_long] = ACTIONS(1389), + [anon_sym_ulong] = ACTIONS(1389), + [anon_sym_int128] = ACTIONS(1389), + [anon_sym_uint128] = ACTIONS(1389), + [anon_sym_float] = ACTIONS(1389), + [anon_sym_double] = ACTIONS(1389), + [anon_sym_float16] = ACTIONS(1389), + [anon_sym_bfloat16] = ACTIONS(1389), + [anon_sym_float128] = ACTIONS(1389), + [anon_sym_iptr] = ACTIONS(1389), + [anon_sym_uptr] = ACTIONS(1389), + [anon_sym_isz] = ACTIONS(1389), + [anon_sym_usz] = ACTIONS(1389), + [anon_sym_anyfault] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_DOLLARtypeof] = ACTIONS(1389), + [anon_sym_DOLLARtypefrom] = ACTIONS(1389), + [anon_sym_DOLLARevaltype] = ACTIONS(1389), + [anon_sym_DOLLARvatype] = ACTIONS(1389), + [sym_real_literal] = ACTIONS(1391), }, - [496] = { - [sym_line_comment] = STATE(496), - [sym_doc_comment] = STATE(496), - [sym_block_comment] = STATE(496), - [sym_ident] = ACTIONS(1453), - [sym_integer_literal] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [anon_sym_BQUOTE] = ACTIONS(1455), - [sym_bytes_literal] = ACTIONS(1455), + [474] = { + [sym_line_comment] = STATE(474), + [sym_doc_comment] = STATE(474), + [sym_block_comment] = STATE(474), + [sym_ident] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1579), + [sym_bytes_literal] = ACTIONS(1579), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1577), + [sym_at_ident] = ACTIONS(1579), + [sym_hash_ident] = ACTIONS(1579), + [sym_type_ident] = ACTIONS(1579), + [sym_ct_type_ident] = ACTIONS(1579), + [sym_const_ident] = ACTIONS(1577), + [sym_builtin] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_tlocal] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_fn] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_var] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_defer] = ACTIONS(1577), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_nextcase] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_foreach] = ACTIONS(1577), + [anon_sym_foreach_r] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_int] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_asm] = ACTIONS(1577), + [anon_sym_DOLLARassert] = ACTIONS(1577), + [anon_sym_DOLLARerror] = ACTIONS(1577), + [anon_sym_DOLLARecho] = ACTIONS(1577), + [anon_sym_DOLLARif] = ACTIONS(1577), + [anon_sym_DOLLARcase] = ACTIONS(1577), + [anon_sym_DOLLARdefault] = ACTIONS(1577), + [anon_sym_DOLLARswitch] = ACTIONS(1577), + [anon_sym_DOLLARendswitch] = ACTIONS(1577), + [anon_sym_DOLLARfor] = ACTIONS(1577), + [anon_sym_DOLLARforeach] = ACTIONS(1577), + [anon_sym_DOLLARalignof] = ACTIONS(1577), + [anon_sym_DOLLARextnameof] = ACTIONS(1577), + [anon_sym_DOLLARnameof] = ACTIONS(1577), + [anon_sym_DOLLARoffsetof] = ACTIONS(1577), + [anon_sym_DOLLARqnameof] = ACTIONS(1577), + [anon_sym_DOLLARvaconst] = ACTIONS(1577), + [anon_sym_DOLLARvaarg] = ACTIONS(1577), + [anon_sym_DOLLARvaref] = ACTIONS(1577), + [anon_sym_DOLLARvaexpr] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_DOLLARvacount] = ACTIONS(1577), + [anon_sym_DOLLAReval] = ACTIONS(1577), + [anon_sym_DOLLARis_const] = ACTIONS(1577), + [anon_sym_DOLLARsizeof] = ACTIONS(1577), + [anon_sym_DOLLARstringify] = ACTIONS(1577), + [anon_sym_DOLLARappend] = ACTIONS(1577), + [anon_sym_DOLLARconcat] = ACTIONS(1577), + [anon_sym_DOLLARdefined] = ACTIONS(1577), + [anon_sym_DOLLARembed] = ACTIONS(1577), + [anon_sym_DOLLARand] = ACTIONS(1577), + [anon_sym_DOLLARor] = ACTIONS(1577), + [anon_sym_DOLLARfeature] = ACTIONS(1577), + [anon_sym_DOLLARassignable] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_typeid] = ACTIONS(1577), + [anon_sym_LBRACE_PIPE] = ACTIONS(1579), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_bool] = ACTIONS(1577), + [anon_sym_char] = ACTIONS(1577), + [anon_sym_ichar] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [anon_sym_ushort] = ACTIONS(1577), + [anon_sym_uint] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_ulong] = ACTIONS(1577), + [anon_sym_int128] = ACTIONS(1577), + [anon_sym_uint128] = ACTIONS(1577), + [anon_sym_float] = ACTIONS(1577), + [anon_sym_double] = ACTIONS(1577), + [anon_sym_float16] = ACTIONS(1577), + [anon_sym_bfloat16] = ACTIONS(1577), + [anon_sym_float128] = ACTIONS(1577), + [anon_sym_iptr] = ACTIONS(1577), + [anon_sym_uptr] = ACTIONS(1577), + [anon_sym_isz] = ACTIONS(1577), + [anon_sym_usz] = ACTIONS(1577), + [anon_sym_anyfault] = ACTIONS(1577), + [anon_sym_any] = ACTIONS(1577), + [anon_sym_DOLLARtypeof] = ACTIONS(1577), + [anon_sym_DOLLARtypefrom] = ACTIONS(1577), + [anon_sym_DOLLARevaltype] = ACTIONS(1577), + [anon_sym_DOLLARvatype] = ACTIONS(1577), + [sym_real_literal] = ACTIONS(1579), + }, + [475] = { + [sym_line_comment] = STATE(475), + [sym_doc_comment] = STATE(475), + [sym_block_comment] = STATE(475), + [sym_ident] = ACTIONS(1433), + [sym_integer_literal] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_DQUOTE] = ACTIONS(1435), + [anon_sym_BQUOTE] = ACTIONS(1435), + [sym_bytes_literal] = ACTIONS(1435), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1453), - [sym_at_ident] = ACTIONS(1455), - [sym_hash_ident] = ACTIONS(1455), - [sym_type_ident] = ACTIONS(1455), - [sym_ct_type_ident] = ACTIONS(1455), - [sym_const_ident] = ACTIONS(1453), - [sym_builtin] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1453), - [anon_sym_tlocal] = ACTIONS(1453), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym_fn] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [anon_sym_var] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_defer] = ACTIONS(1453), - [anon_sym_assert] = ACTIONS(1453), - [anon_sym_nextcase] = ACTIONS(1453), - [anon_sym_switch] = ACTIONS(1453), - [anon_sym_AMP_AMP] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_foreach] = ACTIONS(1453), - [anon_sym_foreach_r] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_int] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_asm] = ACTIONS(1453), - [anon_sym_DOLLARassert] = ACTIONS(1453), - [anon_sym_DOLLARerror] = ACTIONS(1453), - [anon_sym_DOLLARecho] = ACTIONS(1453), - [anon_sym_DOLLARif] = ACTIONS(1453), - [anon_sym_DOLLARcase] = ACTIONS(1453), - [anon_sym_DOLLARdefault] = ACTIONS(1453), - [anon_sym_DOLLARswitch] = ACTIONS(1453), - [anon_sym_DOLLARendswitch] = ACTIONS(1453), - [anon_sym_DOLLARfor] = ACTIONS(1453), - [anon_sym_DOLLARforeach] = ACTIONS(1453), - [anon_sym_DOLLARalignof] = ACTIONS(1453), - [anon_sym_DOLLARextnameof] = ACTIONS(1453), - [anon_sym_DOLLARnameof] = ACTIONS(1453), - [anon_sym_DOLLARoffsetof] = ACTIONS(1453), - [anon_sym_DOLLARqnameof] = ACTIONS(1453), - [anon_sym_DOLLAReval] = ACTIONS(1453), - [anon_sym_DOLLARdefined] = ACTIONS(1453), - [anon_sym_DOLLARsizeof] = ACTIONS(1453), - [anon_sym_DOLLARstringify] = ACTIONS(1453), - [anon_sym_DOLLARis_const] = ACTIONS(1453), - [anon_sym_DOLLARvaconst] = ACTIONS(1453), - [anon_sym_DOLLARvaarg] = ACTIONS(1453), - [anon_sym_DOLLARvaref] = ACTIONS(1453), - [anon_sym_DOLLARvaexpr] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_DOLLARvacount] = ACTIONS(1453), - [anon_sym_DOLLARfeature] = ACTIONS(1453), - [anon_sym_DOLLARand] = ACTIONS(1453), - [anon_sym_DOLLARor] = ACTIONS(1453), - [anon_sym_DOLLARassignable] = ACTIONS(1453), - [anon_sym_DOLLARembed] = ACTIONS(1453), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_TILDE] = ACTIONS(1455), - [anon_sym_PLUS_PLUS] = ACTIONS(1455), - [anon_sym_DASH_DASH] = ACTIONS(1455), - [anon_sym_typeid] = ACTIONS(1453), - [anon_sym_LBRACE_PIPE] = ACTIONS(1455), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_bool] = ACTIONS(1453), - [anon_sym_char] = ACTIONS(1453), - [anon_sym_ichar] = ACTIONS(1453), - [anon_sym_short] = ACTIONS(1453), - [anon_sym_ushort] = ACTIONS(1453), - [anon_sym_uint] = ACTIONS(1453), - [anon_sym_long] = ACTIONS(1453), - [anon_sym_ulong] = ACTIONS(1453), - [anon_sym_int128] = ACTIONS(1453), - [anon_sym_uint128] = ACTIONS(1453), - [anon_sym_float] = ACTIONS(1453), - [anon_sym_double] = ACTIONS(1453), - [anon_sym_float16] = ACTIONS(1453), - [anon_sym_bfloat16] = ACTIONS(1453), - [anon_sym_float128] = ACTIONS(1453), - [anon_sym_iptr] = ACTIONS(1453), - [anon_sym_uptr] = ACTIONS(1453), - [anon_sym_isz] = ACTIONS(1453), - [anon_sym_usz] = ACTIONS(1453), - [anon_sym_anyfault] = ACTIONS(1453), - [anon_sym_any] = ACTIONS(1453), - [anon_sym_DOLLARtypeof] = ACTIONS(1453), - [anon_sym_DOLLARtypefrom] = ACTIONS(1453), - [anon_sym_DOLLARvatype] = ACTIONS(1453), - [anon_sym_DOLLARevaltype] = ACTIONS(1453), - [sym_real_literal] = ACTIONS(1455), + [sym_ct_ident] = ACTIONS(1433), + [sym_at_ident] = ACTIONS(1435), + [sym_hash_ident] = ACTIONS(1435), + [sym_type_ident] = ACTIONS(1435), + [sym_ct_type_ident] = ACTIONS(1435), + [sym_const_ident] = ACTIONS(1433), + [sym_builtin] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_tlocal] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_fn] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_var] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_defer] = ACTIONS(1433), + [anon_sym_assert] = ACTIONS(1433), + [anon_sym_nextcase] = ACTIONS(1433), + [anon_sym_switch] = ACTIONS(1433), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_foreach] = ACTIONS(1433), + [anon_sym_foreach_r] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_do] = ACTIONS(1433), + [anon_sym_int] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_asm] = ACTIONS(1433), + [anon_sym_DOLLARassert] = ACTIONS(1433), + [anon_sym_DOLLARerror] = ACTIONS(1433), + [anon_sym_DOLLARecho] = ACTIONS(1433), + [anon_sym_DOLLARif] = ACTIONS(1433), + [anon_sym_DOLLARcase] = ACTIONS(1433), + [anon_sym_DOLLARdefault] = ACTIONS(1433), + [anon_sym_DOLLARswitch] = ACTIONS(1433), + [anon_sym_DOLLARendswitch] = ACTIONS(1433), + [anon_sym_DOLLARfor] = ACTIONS(1433), + [anon_sym_DOLLARforeach] = ACTIONS(1433), + [anon_sym_DOLLARalignof] = ACTIONS(1433), + [anon_sym_DOLLARextnameof] = ACTIONS(1433), + [anon_sym_DOLLARnameof] = ACTIONS(1433), + [anon_sym_DOLLARoffsetof] = ACTIONS(1433), + [anon_sym_DOLLARqnameof] = ACTIONS(1433), + [anon_sym_DOLLARvaconst] = ACTIONS(1433), + [anon_sym_DOLLARvaarg] = ACTIONS(1433), + [anon_sym_DOLLARvaref] = ACTIONS(1433), + [anon_sym_DOLLARvaexpr] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1433), + [anon_sym_DOLLARvacount] = ACTIONS(1433), + [anon_sym_DOLLAReval] = ACTIONS(1433), + [anon_sym_DOLLARis_const] = ACTIONS(1433), + [anon_sym_DOLLARsizeof] = ACTIONS(1433), + [anon_sym_DOLLARstringify] = ACTIONS(1433), + [anon_sym_DOLLARappend] = ACTIONS(1433), + [anon_sym_DOLLARconcat] = ACTIONS(1433), + [anon_sym_DOLLARdefined] = ACTIONS(1433), + [anon_sym_DOLLARembed] = ACTIONS(1433), + [anon_sym_DOLLARand] = ACTIONS(1433), + [anon_sym_DOLLARor] = ACTIONS(1433), + [anon_sym_DOLLARfeature] = ACTIONS(1433), + [anon_sym_DOLLARassignable] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_PLUS_PLUS] = ACTIONS(1435), + [anon_sym_DASH_DASH] = ACTIONS(1435), + [anon_sym_typeid] = ACTIONS(1433), + [anon_sym_LBRACE_PIPE] = ACTIONS(1435), + [anon_sym_void] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_ichar] = ACTIONS(1433), + [anon_sym_short] = ACTIONS(1433), + [anon_sym_ushort] = ACTIONS(1433), + [anon_sym_uint] = ACTIONS(1433), + [anon_sym_long] = ACTIONS(1433), + [anon_sym_ulong] = ACTIONS(1433), + [anon_sym_int128] = ACTIONS(1433), + [anon_sym_uint128] = ACTIONS(1433), + [anon_sym_float] = ACTIONS(1433), + [anon_sym_double] = ACTIONS(1433), + [anon_sym_float16] = ACTIONS(1433), + [anon_sym_bfloat16] = ACTIONS(1433), + [anon_sym_float128] = ACTIONS(1433), + [anon_sym_iptr] = ACTIONS(1433), + [anon_sym_uptr] = ACTIONS(1433), + [anon_sym_isz] = ACTIONS(1433), + [anon_sym_usz] = ACTIONS(1433), + [anon_sym_anyfault] = ACTIONS(1433), + [anon_sym_any] = ACTIONS(1433), + [anon_sym_DOLLARtypeof] = ACTIONS(1433), + [anon_sym_DOLLARtypefrom] = ACTIONS(1433), + [anon_sym_DOLLARevaltype] = ACTIONS(1433), + [anon_sym_DOLLARvatype] = ACTIONS(1433), + [sym_real_literal] = ACTIONS(1435), }, - [497] = { - [sym_line_comment] = STATE(497), - [sym_doc_comment] = STATE(497), - [sym_block_comment] = STATE(497), - [sym_ident] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(1443), - [anon_sym_SQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [anon_sym_BQUOTE] = ACTIONS(1443), - [sym_bytes_literal] = ACTIONS(1443), + [476] = { + [sym_line_comment] = STATE(476), + [sym_doc_comment] = STATE(476), + [sym_block_comment] = STATE(476), + [sym_ident] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [sym_bytes_literal] = ACTIONS(1531), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1529), + [sym_at_ident] = ACTIONS(1531), + [sym_hash_ident] = ACTIONS(1531), + [sym_type_ident] = ACTIONS(1531), + [sym_ct_type_ident] = ACTIONS(1531), + [sym_const_ident] = ACTIONS(1529), + [sym_builtin] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_tlocal] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_defer] = ACTIONS(1529), + [anon_sym_assert] = ACTIONS(1529), + [anon_sym_nextcase] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_foreach] = ACTIONS(1529), + [anon_sym_foreach_r] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_int] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_asm] = ACTIONS(1529), + [anon_sym_DOLLARassert] = ACTIONS(1529), + [anon_sym_DOLLARerror] = ACTIONS(1529), + [anon_sym_DOLLARecho] = ACTIONS(1529), + [anon_sym_DOLLARif] = ACTIONS(1529), + [anon_sym_DOLLARcase] = ACTIONS(1529), + [anon_sym_DOLLARdefault] = ACTIONS(1529), + [anon_sym_DOLLARswitch] = ACTIONS(1529), + [anon_sym_DOLLARendswitch] = ACTIONS(1529), + [anon_sym_DOLLARfor] = ACTIONS(1529), + [anon_sym_DOLLARforeach] = ACTIONS(1529), + [anon_sym_DOLLARalignof] = ACTIONS(1529), + [anon_sym_DOLLARextnameof] = ACTIONS(1529), + [anon_sym_DOLLARnameof] = ACTIONS(1529), + [anon_sym_DOLLARoffsetof] = ACTIONS(1529), + [anon_sym_DOLLARqnameof] = ACTIONS(1529), + [anon_sym_DOLLARvaconst] = ACTIONS(1529), + [anon_sym_DOLLARvaarg] = ACTIONS(1529), + [anon_sym_DOLLARvaref] = ACTIONS(1529), + [anon_sym_DOLLARvaexpr] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_null] = ACTIONS(1529), + [anon_sym_DOLLARvacount] = ACTIONS(1529), + [anon_sym_DOLLAReval] = ACTIONS(1529), + [anon_sym_DOLLARis_const] = ACTIONS(1529), + [anon_sym_DOLLARsizeof] = ACTIONS(1529), + [anon_sym_DOLLARstringify] = ACTIONS(1529), + [anon_sym_DOLLARappend] = ACTIONS(1529), + [anon_sym_DOLLARconcat] = ACTIONS(1529), + [anon_sym_DOLLARdefined] = ACTIONS(1529), + [anon_sym_DOLLARembed] = ACTIONS(1529), + [anon_sym_DOLLARand] = ACTIONS(1529), + [anon_sym_DOLLARor] = ACTIONS(1529), + [anon_sym_DOLLARfeature] = ACTIONS(1529), + [anon_sym_DOLLARassignable] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1531), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_typeid] = ACTIONS(1529), + [anon_sym_LBRACE_PIPE] = ACTIONS(1531), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_ichar] = ACTIONS(1529), + [anon_sym_short] = ACTIONS(1529), + [anon_sym_ushort] = ACTIONS(1529), + [anon_sym_uint] = ACTIONS(1529), + [anon_sym_long] = ACTIONS(1529), + [anon_sym_ulong] = ACTIONS(1529), + [anon_sym_int128] = ACTIONS(1529), + [anon_sym_uint128] = ACTIONS(1529), + [anon_sym_float] = ACTIONS(1529), + [anon_sym_double] = ACTIONS(1529), + [anon_sym_float16] = ACTIONS(1529), + [anon_sym_bfloat16] = ACTIONS(1529), + [anon_sym_float128] = ACTIONS(1529), + [anon_sym_iptr] = ACTIONS(1529), + [anon_sym_uptr] = ACTIONS(1529), + [anon_sym_isz] = ACTIONS(1529), + [anon_sym_usz] = ACTIONS(1529), + [anon_sym_anyfault] = ACTIONS(1529), + [anon_sym_any] = ACTIONS(1529), + [anon_sym_DOLLARtypeof] = ACTIONS(1529), + [anon_sym_DOLLARtypefrom] = ACTIONS(1529), + [anon_sym_DOLLARevaltype] = ACTIONS(1529), + [anon_sym_DOLLARvatype] = ACTIONS(1529), + [sym_real_literal] = ACTIONS(1531), + }, + [477] = { + [sym_line_comment] = STATE(477), + [sym_doc_comment] = STATE(477), + [sym_block_comment] = STATE(477), + [sym_ident] = ACTIONS(1393), + [sym_integer_literal] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1395), + [anon_sym_BQUOTE] = ACTIONS(1395), + [sym_bytes_literal] = ACTIONS(1395), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1441), - [sym_at_ident] = ACTIONS(1443), - [sym_hash_ident] = ACTIONS(1443), - [sym_type_ident] = ACTIONS(1443), - [sym_ct_type_ident] = ACTIONS(1443), - [sym_const_ident] = ACTIONS(1441), - [sym_builtin] = ACTIONS(1443), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1441), - [anon_sym_static] = ACTIONS(1441), - [anon_sym_tlocal] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1443), - [anon_sym_fn] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_const] = ACTIONS(1441), - [anon_sym_var] = ACTIONS(1441), - [anon_sym_return] = ACTIONS(1441), - [anon_sym_continue] = ACTIONS(1441), - [anon_sym_break] = ACTIONS(1441), - [anon_sym_defer] = ACTIONS(1441), - [anon_sym_assert] = ACTIONS(1441), - [anon_sym_nextcase] = ACTIONS(1441), - [anon_sym_switch] = ACTIONS(1441), - [anon_sym_AMP_AMP] = ACTIONS(1443), - [anon_sym_if] = ACTIONS(1441), - [anon_sym_for] = ACTIONS(1441), - [anon_sym_foreach] = ACTIONS(1441), - [anon_sym_foreach_r] = ACTIONS(1441), - [anon_sym_while] = ACTIONS(1441), - [anon_sym_do] = ACTIONS(1441), - [anon_sym_int] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_asm] = ACTIONS(1441), - [anon_sym_DOLLARassert] = ACTIONS(1441), - [anon_sym_DOLLARerror] = ACTIONS(1441), - [anon_sym_DOLLARecho] = ACTIONS(1441), - [anon_sym_DOLLARif] = ACTIONS(1441), - [anon_sym_DOLLARcase] = ACTIONS(1441), - [anon_sym_DOLLARdefault] = ACTIONS(1441), - [anon_sym_DOLLARswitch] = ACTIONS(1441), - [anon_sym_DOLLARendswitch] = ACTIONS(1441), - [anon_sym_DOLLARfor] = ACTIONS(1441), - [anon_sym_DOLLARforeach] = ACTIONS(1441), - [anon_sym_DOLLARalignof] = ACTIONS(1441), - [anon_sym_DOLLARextnameof] = ACTIONS(1441), - [anon_sym_DOLLARnameof] = ACTIONS(1441), - [anon_sym_DOLLARoffsetof] = ACTIONS(1441), - [anon_sym_DOLLARqnameof] = ACTIONS(1441), - [anon_sym_DOLLAReval] = ACTIONS(1441), - [anon_sym_DOLLARdefined] = ACTIONS(1441), - [anon_sym_DOLLARsizeof] = ACTIONS(1441), - [anon_sym_DOLLARstringify] = ACTIONS(1441), - [anon_sym_DOLLARis_const] = ACTIONS(1441), - [anon_sym_DOLLARvaconst] = ACTIONS(1441), - [anon_sym_DOLLARvaarg] = ACTIONS(1441), - [anon_sym_DOLLARvaref] = ACTIONS(1441), - [anon_sym_DOLLARvaexpr] = ACTIONS(1441), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), - [anon_sym_null] = ACTIONS(1441), - [anon_sym_DOLLARvacount] = ACTIONS(1441), - [anon_sym_DOLLARfeature] = ACTIONS(1441), - [anon_sym_DOLLARand] = ACTIONS(1441), - [anon_sym_DOLLARor] = ACTIONS(1441), - [anon_sym_DOLLARassignable] = ACTIONS(1441), - [anon_sym_DOLLARembed] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1443), - [anon_sym_TILDE] = ACTIONS(1443), - [anon_sym_PLUS_PLUS] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1443), - [anon_sym_typeid] = ACTIONS(1441), - [anon_sym_LBRACE_PIPE] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1441), - [anon_sym_bool] = ACTIONS(1441), - [anon_sym_char] = ACTIONS(1441), - [anon_sym_ichar] = ACTIONS(1441), - [anon_sym_short] = ACTIONS(1441), - [anon_sym_ushort] = ACTIONS(1441), - [anon_sym_uint] = ACTIONS(1441), - [anon_sym_long] = ACTIONS(1441), - [anon_sym_ulong] = ACTIONS(1441), - [anon_sym_int128] = ACTIONS(1441), - [anon_sym_uint128] = ACTIONS(1441), - [anon_sym_float] = ACTIONS(1441), - [anon_sym_double] = ACTIONS(1441), - [anon_sym_float16] = ACTIONS(1441), - [anon_sym_bfloat16] = ACTIONS(1441), - [anon_sym_float128] = ACTIONS(1441), - [anon_sym_iptr] = ACTIONS(1441), - [anon_sym_uptr] = ACTIONS(1441), - [anon_sym_isz] = ACTIONS(1441), - [anon_sym_usz] = ACTIONS(1441), - [anon_sym_anyfault] = ACTIONS(1441), - [anon_sym_any] = ACTIONS(1441), - [anon_sym_DOLLARtypeof] = ACTIONS(1441), - [anon_sym_DOLLARtypefrom] = ACTIONS(1441), - [anon_sym_DOLLARvatype] = ACTIONS(1441), - [anon_sym_DOLLARevaltype] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1443), + [sym_ct_ident] = ACTIONS(1393), + [sym_at_ident] = ACTIONS(1395), + [sym_hash_ident] = ACTIONS(1395), + [sym_type_ident] = ACTIONS(1395), + [sym_ct_type_ident] = ACTIONS(1395), + [sym_const_ident] = ACTIONS(1393), + [sym_builtin] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1393), + [anon_sym_tlocal] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_fn] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_var] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1393), + [anon_sym_continue] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1393), + [anon_sym_defer] = ACTIONS(1393), + [anon_sym_assert] = ACTIONS(1393), + [anon_sym_nextcase] = ACTIONS(1393), + [anon_sym_switch] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_foreach] = ACTIONS(1393), + [anon_sym_foreach_r] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_do] = ACTIONS(1393), + [anon_sym_int] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_asm] = ACTIONS(1393), + [anon_sym_DOLLARassert] = ACTIONS(1393), + [anon_sym_DOLLARerror] = ACTIONS(1393), + [anon_sym_DOLLARecho] = ACTIONS(1393), + [anon_sym_DOLLARif] = ACTIONS(1393), + [anon_sym_DOLLARcase] = ACTIONS(1393), + [anon_sym_DOLLARdefault] = ACTIONS(1393), + [anon_sym_DOLLARswitch] = ACTIONS(1393), + [anon_sym_DOLLARendswitch] = ACTIONS(1393), + [anon_sym_DOLLARfor] = ACTIONS(1393), + [anon_sym_DOLLARforeach] = ACTIONS(1393), + [anon_sym_DOLLARalignof] = ACTIONS(1393), + [anon_sym_DOLLARextnameof] = ACTIONS(1393), + [anon_sym_DOLLARnameof] = ACTIONS(1393), + [anon_sym_DOLLARoffsetof] = ACTIONS(1393), + [anon_sym_DOLLARqnameof] = ACTIONS(1393), + [anon_sym_DOLLARvaconst] = ACTIONS(1393), + [anon_sym_DOLLARvaarg] = ACTIONS(1393), + [anon_sym_DOLLARvaref] = ACTIONS(1393), + [anon_sym_DOLLARvaexpr] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(1393), + [anon_sym_false] = ACTIONS(1393), + [anon_sym_null] = ACTIONS(1393), + [anon_sym_DOLLARvacount] = ACTIONS(1393), + [anon_sym_DOLLAReval] = ACTIONS(1393), + [anon_sym_DOLLARis_const] = ACTIONS(1393), + [anon_sym_DOLLARsizeof] = ACTIONS(1393), + [anon_sym_DOLLARstringify] = ACTIONS(1393), + [anon_sym_DOLLARappend] = ACTIONS(1393), + [anon_sym_DOLLARconcat] = ACTIONS(1393), + [anon_sym_DOLLARdefined] = ACTIONS(1393), + [anon_sym_DOLLARembed] = ACTIONS(1393), + [anon_sym_DOLLARand] = ACTIONS(1393), + [anon_sym_DOLLARor] = ACTIONS(1393), + [anon_sym_DOLLARfeature] = ACTIONS(1393), + [anon_sym_DOLLARassignable] = ACTIONS(1393), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_typeid] = ACTIONS(1393), + [anon_sym_LBRACE_PIPE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1393), + [anon_sym_bool] = ACTIONS(1393), + [anon_sym_char] = ACTIONS(1393), + [anon_sym_ichar] = ACTIONS(1393), + [anon_sym_short] = ACTIONS(1393), + [anon_sym_ushort] = ACTIONS(1393), + [anon_sym_uint] = ACTIONS(1393), + [anon_sym_long] = ACTIONS(1393), + [anon_sym_ulong] = ACTIONS(1393), + [anon_sym_int128] = ACTIONS(1393), + [anon_sym_uint128] = ACTIONS(1393), + [anon_sym_float] = ACTIONS(1393), + [anon_sym_double] = ACTIONS(1393), + [anon_sym_float16] = ACTIONS(1393), + [anon_sym_bfloat16] = ACTIONS(1393), + [anon_sym_float128] = ACTIONS(1393), + [anon_sym_iptr] = ACTIONS(1393), + [anon_sym_uptr] = ACTIONS(1393), + [anon_sym_isz] = ACTIONS(1393), + [anon_sym_usz] = ACTIONS(1393), + [anon_sym_anyfault] = ACTIONS(1393), + [anon_sym_any] = ACTIONS(1393), + [anon_sym_DOLLARtypeof] = ACTIONS(1393), + [anon_sym_DOLLARtypefrom] = ACTIONS(1393), + [anon_sym_DOLLARevaltype] = ACTIONS(1393), + [anon_sym_DOLLARvatype] = ACTIONS(1393), + [sym_real_literal] = ACTIONS(1395), }, - [498] = { - [sym_line_comment] = STATE(498), - [sym_doc_comment] = STATE(498), - [sym_block_comment] = STATE(498), + [478] = { + [sym_line_comment] = STATE(478), + [sym_doc_comment] = STATE(478), + [sym_block_comment] = STATE(478), [sym_ident] = ACTIONS(1437), [sym_integer_literal] = ACTIONS(1439), [anon_sym_SQUOTE] = ACTIONS(1439), @@ -82865,7 +80429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1439), [sym_bytes_literal] = ACTIONS(1439), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1437), [sym_at_ident] = ACTIONS(1439), @@ -82917,11 +80481,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1437), [anon_sym_DOLLARoffsetof] = ACTIONS(1437), [anon_sym_DOLLARqnameof] = ACTIONS(1437), - [anon_sym_DOLLAReval] = ACTIONS(1437), - [anon_sym_DOLLARdefined] = ACTIONS(1437), - [anon_sym_DOLLARsizeof] = ACTIONS(1437), - [anon_sym_DOLLARstringify] = ACTIONS(1437), - [anon_sym_DOLLARis_const] = ACTIONS(1437), [anon_sym_DOLLARvaconst] = ACTIONS(1437), [anon_sym_DOLLARvaarg] = ACTIONS(1437), [anon_sym_DOLLARvaref] = ACTIONS(1437), @@ -82930,11 +80489,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1437), [anon_sym_null] = ACTIONS(1437), [anon_sym_DOLLARvacount] = ACTIONS(1437), - [anon_sym_DOLLARfeature] = ACTIONS(1437), + [anon_sym_DOLLAReval] = ACTIONS(1437), + [anon_sym_DOLLARis_const] = ACTIONS(1437), + [anon_sym_DOLLARsizeof] = ACTIONS(1437), + [anon_sym_DOLLARstringify] = ACTIONS(1437), + [anon_sym_DOLLARappend] = ACTIONS(1437), + [anon_sym_DOLLARconcat] = ACTIONS(1437), + [anon_sym_DOLLARdefined] = ACTIONS(1437), + [anon_sym_DOLLARembed] = ACTIONS(1437), [anon_sym_DOLLARand] = ACTIONS(1437), [anon_sym_DOLLARor] = ACTIONS(1437), + [anon_sym_DOLLARfeature] = ACTIONS(1437), [anon_sym_DOLLARassignable] = ACTIONS(1437), - [anon_sym_DOLLARembed] = ACTIONS(1437), [anon_sym_BANG] = ACTIONS(1439), [anon_sym_TILDE] = ACTIONS(1439), [anon_sym_PLUS_PLUS] = ACTIONS(1439), @@ -82965,359 +80531,1184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1437), [anon_sym_DOLLARtypeof] = ACTIONS(1437), [anon_sym_DOLLARtypefrom] = ACTIONS(1437), - [anon_sym_DOLLARvatype] = ACTIONS(1437), [anon_sym_DOLLARevaltype] = ACTIONS(1437), + [anon_sym_DOLLARvatype] = ACTIONS(1437), [sym_real_literal] = ACTIONS(1439), }, - [499] = { - [sym_line_comment] = STATE(499), - [sym_doc_comment] = STATE(499), - [sym_block_comment] = STATE(499), - [sym_ident] = ACTIONS(1371), - [sym_integer_literal] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1373), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BQUOTE] = ACTIONS(1373), - [sym_bytes_literal] = ACTIONS(1373), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1371), - [sym_at_ident] = ACTIONS(1373), - [sym_hash_ident] = ACTIONS(1373), - [sym_type_ident] = ACTIONS(1373), - [sym_ct_type_ident] = ACTIONS(1373), - [sym_const_ident] = ACTIONS(1371), - [sym_builtin] = ACTIONS(1373), - [anon_sym_LPAREN] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1371), - [anon_sym_static] = ACTIONS(1371), - [anon_sym_tlocal] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_fn] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_const] = ACTIONS(1371), - [anon_sym_var] = ACTIONS(1371), - [anon_sym_return] = ACTIONS(1371), - [anon_sym_continue] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(1371), - [anon_sym_defer] = ACTIONS(1371), - [anon_sym_assert] = ACTIONS(1371), - [anon_sym_nextcase] = ACTIONS(1371), - [anon_sym_switch] = ACTIONS(1371), - [anon_sym_AMP_AMP] = ACTIONS(1373), - [anon_sym_if] = ACTIONS(1371), - [anon_sym_else] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1371), - [anon_sym_foreach] = ACTIONS(1371), - [anon_sym_foreach_r] = ACTIONS(1371), - [anon_sym_while] = ACTIONS(1371), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_int] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_asm] = ACTIONS(1371), - [anon_sym_DOLLARassert] = ACTIONS(1371), - [anon_sym_DOLLARerror] = ACTIONS(1371), - [anon_sym_DOLLARecho] = ACTIONS(1371), - [anon_sym_DOLLARif] = ACTIONS(1371), - [anon_sym_DOLLARendif] = ACTIONS(1371), - [anon_sym_DOLLARelse] = ACTIONS(1371), - [anon_sym_DOLLARswitch] = ACTIONS(1371), - [anon_sym_DOLLARfor] = ACTIONS(1371), - [anon_sym_DOLLARforeach] = ACTIONS(1371), - [anon_sym_DOLLARalignof] = ACTIONS(1371), - [anon_sym_DOLLARextnameof] = ACTIONS(1371), - [anon_sym_DOLLARnameof] = ACTIONS(1371), - [anon_sym_DOLLARoffsetof] = ACTIONS(1371), - [anon_sym_DOLLARqnameof] = ACTIONS(1371), - [anon_sym_DOLLAReval] = ACTIONS(1371), - [anon_sym_DOLLARdefined] = ACTIONS(1371), - [anon_sym_DOLLARsizeof] = ACTIONS(1371), - [anon_sym_DOLLARstringify] = ACTIONS(1371), - [anon_sym_DOLLARis_const] = ACTIONS(1371), - [anon_sym_DOLLARvaconst] = ACTIONS(1371), - [anon_sym_DOLLARvaarg] = ACTIONS(1371), - [anon_sym_DOLLARvaref] = ACTIONS(1371), - [anon_sym_DOLLARvaexpr] = ACTIONS(1371), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_null] = ACTIONS(1371), - [anon_sym_DOLLARvacount] = ACTIONS(1371), - [anon_sym_DOLLARfeature] = ACTIONS(1371), - [anon_sym_DOLLARand] = ACTIONS(1371), - [anon_sym_DOLLARor] = ACTIONS(1371), - [anon_sym_DOLLARassignable] = ACTIONS(1371), - [anon_sym_DOLLARembed] = ACTIONS(1371), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), - [anon_sym_typeid] = ACTIONS(1371), - [anon_sym_LBRACE_PIPE] = ACTIONS(1373), - [anon_sym_void] = ACTIONS(1371), - [anon_sym_bool] = ACTIONS(1371), - [anon_sym_char] = ACTIONS(1371), - [anon_sym_ichar] = ACTIONS(1371), - [anon_sym_short] = ACTIONS(1371), - [anon_sym_ushort] = ACTIONS(1371), - [anon_sym_uint] = ACTIONS(1371), - [anon_sym_long] = ACTIONS(1371), - [anon_sym_ulong] = ACTIONS(1371), - [anon_sym_int128] = ACTIONS(1371), - [anon_sym_uint128] = ACTIONS(1371), - [anon_sym_float] = ACTIONS(1371), - [anon_sym_double] = ACTIONS(1371), - [anon_sym_float16] = ACTIONS(1371), - [anon_sym_bfloat16] = ACTIONS(1371), - [anon_sym_float128] = ACTIONS(1371), - [anon_sym_iptr] = ACTIONS(1371), - [anon_sym_uptr] = ACTIONS(1371), - [anon_sym_isz] = ACTIONS(1371), - [anon_sym_usz] = ACTIONS(1371), - [anon_sym_anyfault] = ACTIONS(1371), - [anon_sym_any] = ACTIONS(1371), - [anon_sym_DOLLARtypeof] = ACTIONS(1371), - [anon_sym_DOLLARtypefrom] = ACTIONS(1371), - [anon_sym_DOLLARvatype] = ACTIONS(1371), - [anon_sym_DOLLARevaltype] = ACTIONS(1371), - [sym_real_literal] = ACTIONS(1373), + [479] = { + [sym_line_comment] = STATE(479), + [sym_doc_comment] = STATE(479), + [sym_block_comment] = STATE(479), + [sym_ident] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [anon_sym_BQUOTE] = ACTIONS(1399), + [sym_bytes_literal] = ACTIONS(1399), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1397), + [sym_at_ident] = ACTIONS(1399), + [sym_hash_ident] = ACTIONS(1399), + [sym_type_ident] = ACTIONS(1399), + [sym_ct_type_ident] = ACTIONS(1399), + [sym_const_ident] = ACTIONS(1397), + [sym_builtin] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_tlocal] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_fn] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_var] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_defer] = ACTIONS(1397), + [anon_sym_assert] = ACTIONS(1397), + [anon_sym_nextcase] = ACTIONS(1397), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_AMP_AMP] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_foreach] = ACTIONS(1397), + [anon_sym_foreach_r] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_do] = ACTIONS(1397), + [anon_sym_int] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_asm] = ACTIONS(1397), + [anon_sym_DOLLARassert] = ACTIONS(1397), + [anon_sym_DOLLARerror] = ACTIONS(1397), + [anon_sym_DOLLARecho] = ACTIONS(1397), + [anon_sym_DOLLARif] = ACTIONS(1397), + [anon_sym_DOLLARcase] = ACTIONS(1397), + [anon_sym_DOLLARdefault] = ACTIONS(1397), + [anon_sym_DOLLARswitch] = ACTIONS(1397), + [anon_sym_DOLLARendswitch] = ACTIONS(1397), + [anon_sym_DOLLARfor] = ACTIONS(1397), + [anon_sym_DOLLARforeach] = ACTIONS(1397), + [anon_sym_DOLLARalignof] = ACTIONS(1397), + [anon_sym_DOLLARextnameof] = ACTIONS(1397), + [anon_sym_DOLLARnameof] = ACTIONS(1397), + [anon_sym_DOLLARoffsetof] = ACTIONS(1397), + [anon_sym_DOLLARqnameof] = ACTIONS(1397), + [anon_sym_DOLLARvaconst] = ACTIONS(1397), + [anon_sym_DOLLARvaarg] = ACTIONS(1397), + [anon_sym_DOLLARvaref] = ACTIONS(1397), + [anon_sym_DOLLARvaexpr] = ACTIONS(1397), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_null] = ACTIONS(1397), + [anon_sym_DOLLARvacount] = ACTIONS(1397), + [anon_sym_DOLLAReval] = ACTIONS(1397), + [anon_sym_DOLLARis_const] = ACTIONS(1397), + [anon_sym_DOLLARsizeof] = ACTIONS(1397), + [anon_sym_DOLLARstringify] = ACTIONS(1397), + [anon_sym_DOLLARappend] = ACTIONS(1397), + [anon_sym_DOLLARconcat] = ACTIONS(1397), + [anon_sym_DOLLARdefined] = ACTIONS(1397), + [anon_sym_DOLLARembed] = ACTIONS(1397), + [anon_sym_DOLLARand] = ACTIONS(1397), + [anon_sym_DOLLARor] = ACTIONS(1397), + [anon_sym_DOLLARfeature] = ACTIONS(1397), + [anon_sym_DOLLARassignable] = ACTIONS(1397), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1399), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_typeid] = ACTIONS(1397), + [anon_sym_LBRACE_PIPE] = ACTIONS(1399), + [anon_sym_void] = ACTIONS(1397), + [anon_sym_bool] = ACTIONS(1397), + [anon_sym_char] = ACTIONS(1397), + [anon_sym_ichar] = ACTIONS(1397), + [anon_sym_short] = ACTIONS(1397), + [anon_sym_ushort] = ACTIONS(1397), + [anon_sym_uint] = ACTIONS(1397), + [anon_sym_long] = ACTIONS(1397), + [anon_sym_ulong] = ACTIONS(1397), + [anon_sym_int128] = ACTIONS(1397), + [anon_sym_uint128] = ACTIONS(1397), + [anon_sym_float] = ACTIONS(1397), + [anon_sym_double] = ACTIONS(1397), + [anon_sym_float16] = ACTIONS(1397), + [anon_sym_bfloat16] = ACTIONS(1397), + [anon_sym_float128] = ACTIONS(1397), + [anon_sym_iptr] = ACTIONS(1397), + [anon_sym_uptr] = ACTIONS(1397), + [anon_sym_isz] = ACTIONS(1397), + [anon_sym_usz] = ACTIONS(1397), + [anon_sym_anyfault] = ACTIONS(1397), + [anon_sym_any] = ACTIONS(1397), + [anon_sym_DOLLARtypeof] = ACTIONS(1397), + [anon_sym_DOLLARtypefrom] = ACTIONS(1397), + [anon_sym_DOLLARevaltype] = ACTIONS(1397), + [anon_sym_DOLLARvatype] = ACTIONS(1397), + [sym_real_literal] = ACTIONS(1399), + }, + [480] = { + [sym_line_comment] = STATE(480), + [sym_doc_comment] = STATE(480), + [sym_block_comment] = STATE(480), + [sym_ident] = ACTIONS(1401), + [sym_integer_literal] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_DQUOTE] = ACTIONS(1403), + [anon_sym_BQUOTE] = ACTIONS(1403), + [sym_bytes_literal] = ACTIONS(1403), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1401), + [sym_at_ident] = ACTIONS(1403), + [sym_hash_ident] = ACTIONS(1403), + [sym_type_ident] = ACTIONS(1403), + [sym_ct_type_ident] = ACTIONS(1403), + [sym_const_ident] = ACTIONS(1401), + [sym_builtin] = ACTIONS(1403), + [anon_sym_LPAREN] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_tlocal] = ACTIONS(1401), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_var] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1401), + [anon_sym_continue] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1401), + [anon_sym_defer] = ACTIONS(1401), + [anon_sym_assert] = ACTIONS(1401), + [anon_sym_nextcase] = ACTIONS(1401), + [anon_sym_switch] = ACTIONS(1401), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1401), + [anon_sym_foreach] = ACTIONS(1401), + [anon_sym_foreach_r] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_do] = ACTIONS(1401), + [anon_sym_int] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_asm] = ACTIONS(1401), + [anon_sym_DOLLARassert] = ACTIONS(1401), + [anon_sym_DOLLARerror] = ACTIONS(1401), + [anon_sym_DOLLARecho] = ACTIONS(1401), + [anon_sym_DOLLARif] = ACTIONS(1401), + [anon_sym_DOLLARcase] = ACTIONS(1401), + [anon_sym_DOLLARdefault] = ACTIONS(1401), + [anon_sym_DOLLARswitch] = ACTIONS(1401), + [anon_sym_DOLLARendswitch] = ACTIONS(1401), + [anon_sym_DOLLARfor] = ACTIONS(1401), + [anon_sym_DOLLARforeach] = ACTIONS(1401), + [anon_sym_DOLLARalignof] = ACTIONS(1401), + [anon_sym_DOLLARextnameof] = ACTIONS(1401), + [anon_sym_DOLLARnameof] = ACTIONS(1401), + [anon_sym_DOLLARoffsetof] = ACTIONS(1401), + [anon_sym_DOLLARqnameof] = ACTIONS(1401), + [anon_sym_DOLLARvaconst] = ACTIONS(1401), + [anon_sym_DOLLARvaarg] = ACTIONS(1401), + [anon_sym_DOLLARvaref] = ACTIONS(1401), + [anon_sym_DOLLARvaexpr] = ACTIONS(1401), + [anon_sym_true] = ACTIONS(1401), + [anon_sym_false] = ACTIONS(1401), + [anon_sym_null] = ACTIONS(1401), + [anon_sym_DOLLARvacount] = ACTIONS(1401), + [anon_sym_DOLLAReval] = ACTIONS(1401), + [anon_sym_DOLLARis_const] = ACTIONS(1401), + [anon_sym_DOLLARsizeof] = ACTIONS(1401), + [anon_sym_DOLLARstringify] = ACTIONS(1401), + [anon_sym_DOLLARappend] = ACTIONS(1401), + [anon_sym_DOLLARconcat] = ACTIONS(1401), + [anon_sym_DOLLARdefined] = ACTIONS(1401), + [anon_sym_DOLLARembed] = ACTIONS(1401), + [anon_sym_DOLLARand] = ACTIONS(1401), + [anon_sym_DOLLARor] = ACTIONS(1401), + [anon_sym_DOLLARfeature] = ACTIONS(1401), + [anon_sym_DOLLARassignable] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [anon_sym_PLUS_PLUS] = ACTIONS(1403), + [anon_sym_DASH_DASH] = ACTIONS(1403), + [anon_sym_typeid] = ACTIONS(1401), + [anon_sym_LBRACE_PIPE] = ACTIONS(1403), + [anon_sym_void] = ACTIONS(1401), + [anon_sym_bool] = ACTIONS(1401), + [anon_sym_char] = ACTIONS(1401), + [anon_sym_ichar] = ACTIONS(1401), + [anon_sym_short] = ACTIONS(1401), + [anon_sym_ushort] = ACTIONS(1401), + [anon_sym_uint] = ACTIONS(1401), + [anon_sym_long] = ACTIONS(1401), + [anon_sym_ulong] = ACTIONS(1401), + [anon_sym_int128] = ACTIONS(1401), + [anon_sym_uint128] = ACTIONS(1401), + [anon_sym_float] = ACTIONS(1401), + [anon_sym_double] = ACTIONS(1401), + [anon_sym_float16] = ACTIONS(1401), + [anon_sym_bfloat16] = ACTIONS(1401), + [anon_sym_float128] = ACTIONS(1401), + [anon_sym_iptr] = ACTIONS(1401), + [anon_sym_uptr] = ACTIONS(1401), + [anon_sym_isz] = ACTIONS(1401), + [anon_sym_usz] = ACTIONS(1401), + [anon_sym_anyfault] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_DOLLARtypeof] = ACTIONS(1401), + [anon_sym_DOLLARtypefrom] = ACTIONS(1401), + [anon_sym_DOLLARevaltype] = ACTIONS(1401), + [anon_sym_DOLLARvatype] = ACTIONS(1401), + [sym_real_literal] = ACTIONS(1403), }, - [500] = { - [sym_line_comment] = STATE(500), - [sym_doc_comment] = STATE(500), - [sym_block_comment] = STATE(500), - [sym_ident] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1435), - [anon_sym_DQUOTE] = ACTIONS(1435), - [anon_sym_BQUOTE] = ACTIONS(1435), - [sym_bytes_literal] = ACTIONS(1435), + [481] = { + [sym_line_comment] = STATE(481), + [sym_doc_comment] = STATE(481), + [sym_block_comment] = STATE(481), + [sym_ident] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_BQUOTE] = ACTIONS(1407), + [sym_bytes_literal] = ACTIONS(1407), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1433), - [sym_at_ident] = ACTIONS(1435), - [sym_hash_ident] = ACTIONS(1435), - [sym_type_ident] = ACTIONS(1435), - [sym_ct_type_ident] = ACTIONS(1435), - [sym_const_ident] = ACTIONS(1433), - [sym_builtin] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_tlocal] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_var] = ACTIONS(1433), - [anon_sym_return] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_defer] = ACTIONS(1433), - [anon_sym_assert] = ACTIONS(1433), - [anon_sym_nextcase] = ACTIONS(1433), - [anon_sym_switch] = ACTIONS(1433), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_foreach] = ACTIONS(1433), - [anon_sym_foreach_r] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_do] = ACTIONS(1433), - [anon_sym_int] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_asm] = ACTIONS(1433), - [anon_sym_DOLLARassert] = ACTIONS(1433), - [anon_sym_DOLLARerror] = ACTIONS(1433), - [anon_sym_DOLLARecho] = ACTIONS(1433), - [anon_sym_DOLLARif] = ACTIONS(1433), - [anon_sym_DOLLARcase] = ACTIONS(1433), - [anon_sym_DOLLARdefault] = ACTIONS(1433), - [anon_sym_DOLLARswitch] = ACTIONS(1433), - [anon_sym_DOLLARendswitch] = ACTIONS(1433), - [anon_sym_DOLLARfor] = ACTIONS(1433), - [anon_sym_DOLLARforeach] = ACTIONS(1433), - [anon_sym_DOLLARalignof] = ACTIONS(1433), - [anon_sym_DOLLARextnameof] = ACTIONS(1433), - [anon_sym_DOLLARnameof] = ACTIONS(1433), - [anon_sym_DOLLARoffsetof] = ACTIONS(1433), - [anon_sym_DOLLARqnameof] = ACTIONS(1433), - [anon_sym_DOLLAReval] = ACTIONS(1433), - [anon_sym_DOLLARdefined] = ACTIONS(1433), - [anon_sym_DOLLARsizeof] = ACTIONS(1433), - [anon_sym_DOLLARstringify] = ACTIONS(1433), - [anon_sym_DOLLARis_const] = ACTIONS(1433), - [anon_sym_DOLLARvaconst] = ACTIONS(1433), - [anon_sym_DOLLARvaarg] = ACTIONS(1433), - [anon_sym_DOLLARvaref] = ACTIONS(1433), - [anon_sym_DOLLARvaexpr] = ACTIONS(1433), - [anon_sym_true] = ACTIONS(1433), - [anon_sym_false] = ACTIONS(1433), - [anon_sym_null] = ACTIONS(1433), - [anon_sym_DOLLARvacount] = ACTIONS(1433), - [anon_sym_DOLLARfeature] = ACTIONS(1433), - [anon_sym_DOLLARand] = ACTIONS(1433), - [anon_sym_DOLLARor] = ACTIONS(1433), - [anon_sym_DOLLARassignable] = ACTIONS(1433), - [anon_sym_DOLLARembed] = ACTIONS(1433), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_typeid] = ACTIONS(1433), - [anon_sym_LBRACE_PIPE] = ACTIONS(1435), - [anon_sym_void] = ACTIONS(1433), - [anon_sym_bool] = ACTIONS(1433), - [anon_sym_char] = ACTIONS(1433), - [anon_sym_ichar] = ACTIONS(1433), - [anon_sym_short] = ACTIONS(1433), - [anon_sym_ushort] = ACTIONS(1433), - [anon_sym_uint] = ACTIONS(1433), - [anon_sym_long] = ACTIONS(1433), - [anon_sym_ulong] = ACTIONS(1433), - [anon_sym_int128] = ACTIONS(1433), - [anon_sym_uint128] = ACTIONS(1433), - [anon_sym_float] = ACTIONS(1433), - [anon_sym_double] = ACTIONS(1433), - [anon_sym_float16] = ACTIONS(1433), - [anon_sym_bfloat16] = ACTIONS(1433), - [anon_sym_float128] = ACTIONS(1433), - [anon_sym_iptr] = ACTIONS(1433), - [anon_sym_uptr] = ACTIONS(1433), - [anon_sym_isz] = ACTIONS(1433), - [anon_sym_usz] = ACTIONS(1433), - [anon_sym_anyfault] = ACTIONS(1433), - [anon_sym_any] = ACTIONS(1433), - [anon_sym_DOLLARtypeof] = ACTIONS(1433), - [anon_sym_DOLLARtypefrom] = ACTIONS(1433), - [anon_sym_DOLLARvatype] = ACTIONS(1433), - [anon_sym_DOLLARevaltype] = ACTIONS(1433), - [sym_real_literal] = ACTIONS(1435), + [sym_ct_ident] = ACTIONS(1405), + [sym_at_ident] = ACTIONS(1407), + [sym_hash_ident] = ACTIONS(1407), + [sym_type_ident] = ACTIONS(1407), + [sym_ct_type_ident] = ACTIONS(1407), + [sym_const_ident] = ACTIONS(1405), + [sym_builtin] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_static] = ACTIONS(1405), + [anon_sym_tlocal] = ACTIONS(1405), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_fn] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_var] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1405), + [anon_sym_continue] = ACTIONS(1405), + [anon_sym_break] = ACTIONS(1405), + [anon_sym_defer] = ACTIONS(1405), + [anon_sym_assert] = ACTIONS(1405), + [anon_sym_nextcase] = ACTIONS(1405), + [anon_sym_switch] = ACTIONS(1405), + [anon_sym_AMP_AMP] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_foreach] = ACTIONS(1405), + [anon_sym_foreach_r] = ACTIONS(1405), + [anon_sym_while] = ACTIONS(1405), + [anon_sym_do] = ACTIONS(1405), + [anon_sym_int] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_asm] = ACTIONS(1405), + [anon_sym_DOLLARassert] = ACTIONS(1405), + [anon_sym_DOLLARerror] = ACTIONS(1405), + [anon_sym_DOLLARecho] = ACTIONS(1405), + [anon_sym_DOLLARif] = ACTIONS(1405), + [anon_sym_DOLLARcase] = ACTIONS(1405), + [anon_sym_DOLLARdefault] = ACTIONS(1405), + [anon_sym_DOLLARswitch] = ACTIONS(1405), + [anon_sym_DOLLARendswitch] = ACTIONS(1405), + [anon_sym_DOLLARfor] = ACTIONS(1405), + [anon_sym_DOLLARforeach] = ACTIONS(1405), + [anon_sym_DOLLARalignof] = ACTIONS(1405), + [anon_sym_DOLLARextnameof] = ACTIONS(1405), + [anon_sym_DOLLARnameof] = ACTIONS(1405), + [anon_sym_DOLLARoffsetof] = ACTIONS(1405), + [anon_sym_DOLLARqnameof] = ACTIONS(1405), + [anon_sym_DOLLARvaconst] = ACTIONS(1405), + [anon_sym_DOLLARvaarg] = ACTIONS(1405), + [anon_sym_DOLLARvaref] = ACTIONS(1405), + [anon_sym_DOLLARvaexpr] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1405), + [anon_sym_false] = ACTIONS(1405), + [anon_sym_null] = ACTIONS(1405), + [anon_sym_DOLLARvacount] = ACTIONS(1405), + [anon_sym_DOLLAReval] = ACTIONS(1405), + [anon_sym_DOLLARis_const] = ACTIONS(1405), + [anon_sym_DOLLARsizeof] = ACTIONS(1405), + [anon_sym_DOLLARstringify] = ACTIONS(1405), + [anon_sym_DOLLARappend] = ACTIONS(1405), + [anon_sym_DOLLARconcat] = ACTIONS(1405), + [anon_sym_DOLLARdefined] = ACTIONS(1405), + [anon_sym_DOLLARembed] = ACTIONS(1405), + [anon_sym_DOLLARand] = ACTIONS(1405), + [anon_sym_DOLLARor] = ACTIONS(1405), + [anon_sym_DOLLARfeature] = ACTIONS(1405), + [anon_sym_DOLLARassignable] = ACTIONS(1405), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1407), + [anon_sym_typeid] = ACTIONS(1405), + [anon_sym_LBRACE_PIPE] = ACTIONS(1407), + [anon_sym_void] = ACTIONS(1405), + [anon_sym_bool] = ACTIONS(1405), + [anon_sym_char] = ACTIONS(1405), + [anon_sym_ichar] = ACTIONS(1405), + [anon_sym_short] = ACTIONS(1405), + [anon_sym_ushort] = ACTIONS(1405), + [anon_sym_uint] = ACTIONS(1405), + [anon_sym_long] = ACTIONS(1405), + [anon_sym_ulong] = ACTIONS(1405), + [anon_sym_int128] = ACTIONS(1405), + [anon_sym_uint128] = ACTIONS(1405), + [anon_sym_float] = ACTIONS(1405), + [anon_sym_double] = ACTIONS(1405), + [anon_sym_float16] = ACTIONS(1405), + [anon_sym_bfloat16] = ACTIONS(1405), + [anon_sym_float128] = ACTIONS(1405), + [anon_sym_iptr] = ACTIONS(1405), + [anon_sym_uptr] = ACTIONS(1405), + [anon_sym_isz] = ACTIONS(1405), + [anon_sym_usz] = ACTIONS(1405), + [anon_sym_anyfault] = ACTIONS(1405), + [anon_sym_any] = ACTIONS(1405), + [anon_sym_DOLLARtypeof] = ACTIONS(1405), + [anon_sym_DOLLARtypefrom] = ACTIONS(1405), + [anon_sym_DOLLARevaltype] = ACTIONS(1405), + [anon_sym_DOLLARvatype] = ACTIONS(1405), + [sym_real_literal] = ACTIONS(1407), }, - [501] = { - [sym_line_comment] = STATE(501), - [sym_doc_comment] = STATE(501), - [sym_block_comment] = STATE(501), - [sym_ident] = ACTIONS(1421), - [sym_integer_literal] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1423), - [anon_sym_DQUOTE] = ACTIONS(1423), - [anon_sym_BQUOTE] = ACTIONS(1423), - [sym_bytes_literal] = ACTIONS(1423), + [482] = { + [sym_line_comment] = STATE(482), + [sym_doc_comment] = STATE(482), + [sym_block_comment] = STATE(482), + [sym_ident] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [anon_sym_SQUOTE] = ACTIONS(1411), + [anon_sym_DQUOTE] = ACTIONS(1411), + [anon_sym_BQUOTE] = ACTIONS(1411), + [sym_bytes_literal] = ACTIONS(1411), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1421), - [sym_at_ident] = ACTIONS(1423), - [sym_hash_ident] = ACTIONS(1423), - [sym_type_ident] = ACTIONS(1423), - [sym_ct_type_ident] = ACTIONS(1423), - [sym_const_ident] = ACTIONS(1421), - [sym_builtin] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_static] = ACTIONS(1421), - [anon_sym_tlocal] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym_fn] = ACTIONS(1421), - [anon_sym_LBRACE] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1421), - [anon_sym_return] = ACTIONS(1421), - [anon_sym_continue] = ACTIONS(1421), - [anon_sym_break] = ACTIONS(1421), - [anon_sym_defer] = ACTIONS(1421), - [anon_sym_assert] = ACTIONS(1421), - [anon_sym_nextcase] = ACTIONS(1421), - [anon_sym_switch] = ACTIONS(1421), - [anon_sym_AMP_AMP] = ACTIONS(1423), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_for] = ACTIONS(1421), - [anon_sym_foreach] = ACTIONS(1421), - [anon_sym_foreach_r] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1421), - [anon_sym_do] = ACTIONS(1421), - [anon_sym_int] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_asm] = ACTIONS(1421), - [anon_sym_DOLLARassert] = ACTIONS(1421), - [anon_sym_DOLLARerror] = ACTIONS(1421), - [anon_sym_DOLLARecho] = ACTIONS(1421), - [anon_sym_DOLLARif] = ACTIONS(1421), - [anon_sym_DOLLARcase] = ACTIONS(1421), - [anon_sym_DOLLARdefault] = ACTIONS(1421), - [anon_sym_DOLLARswitch] = ACTIONS(1421), - [anon_sym_DOLLARendswitch] = ACTIONS(1421), - [anon_sym_DOLLARfor] = ACTIONS(1421), - [anon_sym_DOLLARforeach] = ACTIONS(1421), - [anon_sym_DOLLARalignof] = ACTIONS(1421), - [anon_sym_DOLLARextnameof] = ACTIONS(1421), - [anon_sym_DOLLARnameof] = ACTIONS(1421), - [anon_sym_DOLLARoffsetof] = ACTIONS(1421), - [anon_sym_DOLLARqnameof] = ACTIONS(1421), - [anon_sym_DOLLAReval] = ACTIONS(1421), - [anon_sym_DOLLARdefined] = ACTIONS(1421), - [anon_sym_DOLLARsizeof] = ACTIONS(1421), - [anon_sym_DOLLARstringify] = ACTIONS(1421), - [anon_sym_DOLLARis_const] = ACTIONS(1421), - [anon_sym_DOLLARvaconst] = ACTIONS(1421), - [anon_sym_DOLLARvaarg] = ACTIONS(1421), - [anon_sym_DOLLARvaref] = ACTIONS(1421), - [anon_sym_DOLLARvaexpr] = ACTIONS(1421), - [anon_sym_true] = ACTIONS(1421), - [anon_sym_false] = ACTIONS(1421), - [anon_sym_null] = ACTIONS(1421), - [anon_sym_DOLLARvacount] = ACTIONS(1421), - [anon_sym_DOLLARfeature] = ACTIONS(1421), - [anon_sym_DOLLARand] = ACTIONS(1421), - [anon_sym_DOLLARor] = ACTIONS(1421), - [anon_sym_DOLLARassignable] = ACTIONS(1421), - [anon_sym_DOLLARembed] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_TILDE] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1423), - [anon_sym_typeid] = ACTIONS(1421), - [anon_sym_LBRACE_PIPE] = ACTIONS(1423), - [anon_sym_void] = ACTIONS(1421), - [anon_sym_bool] = ACTIONS(1421), - [anon_sym_char] = ACTIONS(1421), - [anon_sym_ichar] = ACTIONS(1421), - [anon_sym_short] = ACTIONS(1421), - [anon_sym_ushort] = ACTIONS(1421), - [anon_sym_uint] = ACTIONS(1421), - [anon_sym_long] = ACTIONS(1421), - [anon_sym_ulong] = ACTIONS(1421), - [anon_sym_int128] = ACTIONS(1421), - [anon_sym_uint128] = ACTIONS(1421), - [anon_sym_float] = ACTIONS(1421), - [anon_sym_double] = ACTIONS(1421), - [anon_sym_float16] = ACTIONS(1421), - [anon_sym_bfloat16] = ACTIONS(1421), - [anon_sym_float128] = ACTIONS(1421), - [anon_sym_iptr] = ACTIONS(1421), - [anon_sym_uptr] = ACTIONS(1421), - [anon_sym_isz] = ACTIONS(1421), - [anon_sym_usz] = ACTIONS(1421), - [anon_sym_anyfault] = ACTIONS(1421), - [anon_sym_any] = ACTIONS(1421), - [anon_sym_DOLLARtypeof] = ACTIONS(1421), - [anon_sym_DOLLARtypefrom] = ACTIONS(1421), - [anon_sym_DOLLARvatype] = ACTIONS(1421), - [anon_sym_DOLLARevaltype] = ACTIONS(1421), - [sym_real_literal] = ACTIONS(1423), + [sym_ct_ident] = ACTIONS(1409), + [sym_at_ident] = ACTIONS(1411), + [sym_hash_ident] = ACTIONS(1411), + [sym_type_ident] = ACTIONS(1411), + [sym_ct_type_ident] = ACTIONS(1411), + [sym_const_ident] = ACTIONS(1409), + [sym_builtin] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_tlocal] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1411), + [anon_sym_fn] = ACTIONS(1409), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_var] = ACTIONS(1409), + [anon_sym_return] = ACTIONS(1409), + [anon_sym_continue] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1409), + [anon_sym_defer] = ACTIONS(1409), + [anon_sym_assert] = ACTIONS(1409), + [anon_sym_nextcase] = ACTIONS(1409), + [anon_sym_switch] = ACTIONS(1409), + [anon_sym_AMP_AMP] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1409), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_foreach] = ACTIONS(1409), + [anon_sym_foreach_r] = ACTIONS(1409), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_do] = ACTIONS(1409), + [anon_sym_int] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_asm] = ACTIONS(1409), + [anon_sym_DOLLARassert] = ACTIONS(1409), + [anon_sym_DOLLARerror] = ACTIONS(1409), + [anon_sym_DOLLARecho] = ACTIONS(1409), + [anon_sym_DOLLARif] = ACTIONS(1409), + [anon_sym_DOLLARcase] = ACTIONS(1409), + [anon_sym_DOLLARdefault] = ACTIONS(1409), + [anon_sym_DOLLARswitch] = ACTIONS(1409), + [anon_sym_DOLLARendswitch] = ACTIONS(1409), + [anon_sym_DOLLARfor] = ACTIONS(1409), + [anon_sym_DOLLARforeach] = ACTIONS(1409), + [anon_sym_DOLLARalignof] = ACTIONS(1409), + [anon_sym_DOLLARextnameof] = ACTIONS(1409), + [anon_sym_DOLLARnameof] = ACTIONS(1409), + [anon_sym_DOLLARoffsetof] = ACTIONS(1409), + [anon_sym_DOLLARqnameof] = ACTIONS(1409), + [anon_sym_DOLLARvaconst] = ACTIONS(1409), + [anon_sym_DOLLARvaarg] = ACTIONS(1409), + [anon_sym_DOLLARvaref] = ACTIONS(1409), + [anon_sym_DOLLARvaexpr] = ACTIONS(1409), + [anon_sym_true] = ACTIONS(1409), + [anon_sym_false] = ACTIONS(1409), + [anon_sym_null] = ACTIONS(1409), + [anon_sym_DOLLARvacount] = ACTIONS(1409), + [anon_sym_DOLLAReval] = ACTIONS(1409), + [anon_sym_DOLLARis_const] = ACTIONS(1409), + [anon_sym_DOLLARsizeof] = ACTIONS(1409), + [anon_sym_DOLLARstringify] = ACTIONS(1409), + [anon_sym_DOLLARappend] = ACTIONS(1409), + [anon_sym_DOLLARconcat] = ACTIONS(1409), + [anon_sym_DOLLARdefined] = ACTIONS(1409), + [anon_sym_DOLLARembed] = ACTIONS(1409), + [anon_sym_DOLLARand] = ACTIONS(1409), + [anon_sym_DOLLARor] = ACTIONS(1409), + [anon_sym_DOLLARfeature] = ACTIONS(1409), + [anon_sym_DOLLARassignable] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_typeid] = ACTIONS(1409), + [anon_sym_LBRACE_PIPE] = ACTIONS(1411), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_bool] = ACTIONS(1409), + [anon_sym_char] = ACTIONS(1409), + [anon_sym_ichar] = ACTIONS(1409), + [anon_sym_short] = ACTIONS(1409), + [anon_sym_ushort] = ACTIONS(1409), + [anon_sym_uint] = ACTIONS(1409), + [anon_sym_long] = ACTIONS(1409), + [anon_sym_ulong] = ACTIONS(1409), + [anon_sym_int128] = ACTIONS(1409), + [anon_sym_uint128] = ACTIONS(1409), + [anon_sym_float] = ACTIONS(1409), + [anon_sym_double] = ACTIONS(1409), + [anon_sym_float16] = ACTIONS(1409), + [anon_sym_bfloat16] = ACTIONS(1409), + [anon_sym_float128] = ACTIONS(1409), + [anon_sym_iptr] = ACTIONS(1409), + [anon_sym_uptr] = ACTIONS(1409), + [anon_sym_isz] = ACTIONS(1409), + [anon_sym_usz] = ACTIONS(1409), + [anon_sym_anyfault] = ACTIONS(1409), + [anon_sym_any] = ACTIONS(1409), + [anon_sym_DOLLARtypeof] = ACTIONS(1409), + [anon_sym_DOLLARtypefrom] = ACTIONS(1409), + [anon_sym_DOLLARevaltype] = ACTIONS(1409), + [anon_sym_DOLLARvatype] = ACTIONS(1409), + [sym_real_literal] = ACTIONS(1411), + }, + [483] = { + [sym_line_comment] = STATE(483), + [sym_doc_comment] = STATE(483), + [sym_block_comment] = STATE(483), + [sym_ident] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1555), + [anon_sym_BQUOTE] = ACTIONS(1555), + [sym_bytes_literal] = ACTIONS(1555), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1553), + [sym_at_ident] = ACTIONS(1555), + [sym_hash_ident] = ACTIONS(1555), + [sym_type_ident] = ACTIONS(1555), + [sym_ct_type_ident] = ACTIONS(1555), + [sym_const_ident] = ACTIONS(1553), + [sym_builtin] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_tlocal] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_defer] = ACTIONS(1553), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_nextcase] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_foreach] = ACTIONS(1553), + [anon_sym_foreach_r] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_int] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_asm] = ACTIONS(1553), + [anon_sym_DOLLARassert] = ACTIONS(1553), + [anon_sym_DOLLARerror] = ACTIONS(1553), + [anon_sym_DOLLARecho] = ACTIONS(1553), + [anon_sym_DOLLARif] = ACTIONS(1553), + [anon_sym_DOLLARcase] = ACTIONS(1553), + [anon_sym_DOLLARdefault] = ACTIONS(1553), + [anon_sym_DOLLARswitch] = ACTIONS(1553), + [anon_sym_DOLLARendswitch] = ACTIONS(1553), + [anon_sym_DOLLARfor] = ACTIONS(1553), + [anon_sym_DOLLARforeach] = ACTIONS(1553), + [anon_sym_DOLLARalignof] = ACTIONS(1553), + [anon_sym_DOLLARextnameof] = ACTIONS(1553), + [anon_sym_DOLLARnameof] = ACTIONS(1553), + [anon_sym_DOLLARoffsetof] = ACTIONS(1553), + [anon_sym_DOLLARqnameof] = ACTIONS(1553), + [anon_sym_DOLLARvaconst] = ACTIONS(1553), + [anon_sym_DOLLARvaarg] = ACTIONS(1553), + [anon_sym_DOLLARvaref] = ACTIONS(1553), + [anon_sym_DOLLARvaexpr] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_DOLLARvacount] = ACTIONS(1553), + [anon_sym_DOLLAReval] = ACTIONS(1553), + [anon_sym_DOLLARis_const] = ACTIONS(1553), + [anon_sym_DOLLARsizeof] = ACTIONS(1553), + [anon_sym_DOLLARstringify] = ACTIONS(1553), + [anon_sym_DOLLARappend] = ACTIONS(1553), + [anon_sym_DOLLARconcat] = ACTIONS(1553), + [anon_sym_DOLLARdefined] = ACTIONS(1553), + [anon_sym_DOLLARembed] = ACTIONS(1553), + [anon_sym_DOLLARand] = ACTIONS(1553), + [anon_sym_DOLLARor] = ACTIONS(1553), + [anon_sym_DOLLARfeature] = ACTIONS(1553), + [anon_sym_DOLLARassignable] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_typeid] = ACTIONS(1553), + [anon_sym_LBRACE_PIPE] = ACTIONS(1555), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_ichar] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [anon_sym_ushort] = ACTIONS(1553), + [anon_sym_uint] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_ulong] = ACTIONS(1553), + [anon_sym_int128] = ACTIONS(1553), + [anon_sym_uint128] = ACTIONS(1553), + [anon_sym_float] = ACTIONS(1553), + [anon_sym_double] = ACTIONS(1553), + [anon_sym_float16] = ACTIONS(1553), + [anon_sym_bfloat16] = ACTIONS(1553), + [anon_sym_float128] = ACTIONS(1553), + [anon_sym_iptr] = ACTIONS(1553), + [anon_sym_uptr] = ACTIONS(1553), + [anon_sym_isz] = ACTIONS(1553), + [anon_sym_usz] = ACTIONS(1553), + [anon_sym_anyfault] = ACTIONS(1553), + [anon_sym_any] = ACTIONS(1553), + [anon_sym_DOLLARtypeof] = ACTIONS(1553), + [anon_sym_DOLLARtypefrom] = ACTIONS(1553), + [anon_sym_DOLLARevaltype] = ACTIONS(1553), + [anon_sym_DOLLARvatype] = ACTIONS(1553), + [sym_real_literal] = ACTIONS(1555), + }, + [484] = { + [sym_line_comment] = STATE(484), + [sym_doc_comment] = STATE(484), + [sym_block_comment] = STATE(484), + [sym_ident] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_BQUOTE] = ACTIONS(1467), + [sym_bytes_literal] = ACTIONS(1467), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1465), + [sym_at_ident] = ACTIONS(1467), + [sym_hash_ident] = ACTIONS(1467), + [sym_type_ident] = ACTIONS(1467), + [sym_ct_type_ident] = ACTIONS(1467), + [sym_const_ident] = ACTIONS(1465), + [sym_builtin] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_tlocal] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_defer] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1465), + [anon_sym_nextcase] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_foreach] = ACTIONS(1465), + [anon_sym_foreach_r] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_int] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_asm] = ACTIONS(1465), + [anon_sym_DOLLARassert] = ACTIONS(1465), + [anon_sym_DOLLARerror] = ACTIONS(1465), + [anon_sym_DOLLARecho] = ACTIONS(1465), + [anon_sym_DOLLARif] = ACTIONS(1465), + [anon_sym_DOLLARcase] = ACTIONS(1465), + [anon_sym_DOLLARdefault] = ACTIONS(1465), + [anon_sym_DOLLARswitch] = ACTIONS(1465), + [anon_sym_DOLLARendswitch] = ACTIONS(1465), + [anon_sym_DOLLARfor] = ACTIONS(1465), + [anon_sym_DOLLARforeach] = ACTIONS(1465), + [anon_sym_DOLLARalignof] = ACTIONS(1465), + [anon_sym_DOLLARextnameof] = ACTIONS(1465), + [anon_sym_DOLLARnameof] = ACTIONS(1465), + [anon_sym_DOLLARoffsetof] = ACTIONS(1465), + [anon_sym_DOLLARqnameof] = ACTIONS(1465), + [anon_sym_DOLLARvaconst] = ACTIONS(1465), + [anon_sym_DOLLARvaarg] = ACTIONS(1465), + [anon_sym_DOLLARvaref] = ACTIONS(1465), + [anon_sym_DOLLARvaexpr] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1465), + [anon_sym_DOLLARvacount] = ACTIONS(1465), + [anon_sym_DOLLAReval] = ACTIONS(1465), + [anon_sym_DOLLARis_const] = ACTIONS(1465), + [anon_sym_DOLLARsizeof] = ACTIONS(1465), + [anon_sym_DOLLARstringify] = ACTIONS(1465), + [anon_sym_DOLLARappend] = ACTIONS(1465), + [anon_sym_DOLLARconcat] = ACTIONS(1465), + [anon_sym_DOLLARdefined] = ACTIONS(1465), + [anon_sym_DOLLARembed] = ACTIONS(1465), + [anon_sym_DOLLARand] = ACTIONS(1465), + [anon_sym_DOLLARor] = ACTIONS(1465), + [anon_sym_DOLLARfeature] = ACTIONS(1465), + [anon_sym_DOLLARassignable] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_typeid] = ACTIONS(1465), + [anon_sym_LBRACE_PIPE] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_ichar] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [anon_sym_ushort] = ACTIONS(1465), + [anon_sym_uint] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_ulong] = ACTIONS(1465), + [anon_sym_int128] = ACTIONS(1465), + [anon_sym_uint128] = ACTIONS(1465), + [anon_sym_float] = ACTIONS(1465), + [anon_sym_double] = ACTIONS(1465), + [anon_sym_float16] = ACTIONS(1465), + [anon_sym_bfloat16] = ACTIONS(1465), + [anon_sym_float128] = ACTIONS(1465), + [anon_sym_iptr] = ACTIONS(1465), + [anon_sym_uptr] = ACTIONS(1465), + [anon_sym_isz] = ACTIONS(1465), + [anon_sym_usz] = ACTIONS(1465), + [anon_sym_anyfault] = ACTIONS(1465), + [anon_sym_any] = ACTIONS(1465), + [anon_sym_DOLLARtypeof] = ACTIONS(1465), + [anon_sym_DOLLARtypefrom] = ACTIONS(1465), + [anon_sym_DOLLARevaltype] = ACTIONS(1465), + [anon_sym_DOLLARvatype] = ACTIONS(1465), + [sym_real_literal] = ACTIONS(1467), + }, + [485] = { + [sym_line_comment] = STATE(485), + [sym_doc_comment] = STATE(485), + [sym_block_comment] = STATE(485), + [sym_ident] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1471), + [sym_bytes_literal] = ACTIONS(1471), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1469), + [sym_at_ident] = ACTIONS(1471), + [sym_hash_ident] = ACTIONS(1471), + [sym_type_ident] = ACTIONS(1471), + [sym_ct_type_ident] = ACTIONS(1471), + [sym_const_ident] = ACTIONS(1469), + [sym_builtin] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_tlocal] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_defer] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1469), + [anon_sym_nextcase] = ACTIONS(1469), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_foreach] = ACTIONS(1469), + [anon_sym_foreach_r] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_int] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1469), + [anon_sym_DOLLARassert] = ACTIONS(1469), + [anon_sym_DOLLARerror] = ACTIONS(1469), + [anon_sym_DOLLARecho] = ACTIONS(1469), + [anon_sym_DOLLARif] = ACTIONS(1469), + [anon_sym_DOLLARcase] = ACTIONS(1469), + [anon_sym_DOLLARdefault] = ACTIONS(1469), + [anon_sym_DOLLARswitch] = ACTIONS(1469), + [anon_sym_DOLLARendswitch] = ACTIONS(1469), + [anon_sym_DOLLARfor] = ACTIONS(1469), + [anon_sym_DOLLARforeach] = ACTIONS(1469), + [anon_sym_DOLLARalignof] = ACTIONS(1469), + [anon_sym_DOLLARextnameof] = ACTIONS(1469), + [anon_sym_DOLLARnameof] = ACTIONS(1469), + [anon_sym_DOLLARoffsetof] = ACTIONS(1469), + [anon_sym_DOLLARqnameof] = ACTIONS(1469), + [anon_sym_DOLLARvaconst] = ACTIONS(1469), + [anon_sym_DOLLARvaarg] = ACTIONS(1469), + [anon_sym_DOLLARvaref] = ACTIONS(1469), + [anon_sym_DOLLARvaexpr] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_DOLLARvacount] = ACTIONS(1469), + [anon_sym_DOLLAReval] = ACTIONS(1469), + [anon_sym_DOLLARis_const] = ACTIONS(1469), + [anon_sym_DOLLARsizeof] = ACTIONS(1469), + [anon_sym_DOLLARstringify] = ACTIONS(1469), + [anon_sym_DOLLARappend] = ACTIONS(1469), + [anon_sym_DOLLARconcat] = ACTIONS(1469), + [anon_sym_DOLLARdefined] = ACTIONS(1469), + [anon_sym_DOLLARembed] = ACTIONS(1469), + [anon_sym_DOLLARand] = ACTIONS(1469), + [anon_sym_DOLLARor] = ACTIONS(1469), + [anon_sym_DOLLARfeature] = ACTIONS(1469), + [anon_sym_DOLLARassignable] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_typeid] = ACTIONS(1469), + [anon_sym_LBRACE_PIPE] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_ichar] = ACTIONS(1469), + [anon_sym_short] = ACTIONS(1469), + [anon_sym_ushort] = ACTIONS(1469), + [anon_sym_uint] = ACTIONS(1469), + [anon_sym_long] = ACTIONS(1469), + [anon_sym_ulong] = ACTIONS(1469), + [anon_sym_int128] = ACTIONS(1469), + [anon_sym_uint128] = ACTIONS(1469), + [anon_sym_float] = ACTIONS(1469), + [anon_sym_double] = ACTIONS(1469), + [anon_sym_float16] = ACTIONS(1469), + [anon_sym_bfloat16] = ACTIONS(1469), + [anon_sym_float128] = ACTIONS(1469), + [anon_sym_iptr] = ACTIONS(1469), + [anon_sym_uptr] = ACTIONS(1469), + [anon_sym_isz] = ACTIONS(1469), + [anon_sym_usz] = ACTIONS(1469), + [anon_sym_anyfault] = ACTIONS(1469), + [anon_sym_any] = ACTIONS(1469), + [anon_sym_DOLLARtypeof] = ACTIONS(1469), + [anon_sym_DOLLARtypefrom] = ACTIONS(1469), + [anon_sym_DOLLARevaltype] = ACTIONS(1469), + [anon_sym_DOLLARvatype] = ACTIONS(1469), + [sym_real_literal] = ACTIONS(1471), + }, + [486] = { + [sym_line_comment] = STATE(486), + [sym_doc_comment] = STATE(486), + [sym_block_comment] = STATE(486), + [sym_ident] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1415), + [anon_sym_SQUOTE] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(1415), + [anon_sym_BQUOTE] = ACTIONS(1415), + [sym_bytes_literal] = ACTIONS(1415), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1413), + [sym_at_ident] = ACTIONS(1415), + [sym_hash_ident] = ACTIONS(1415), + [sym_type_ident] = ACTIONS(1415), + [sym_ct_type_ident] = ACTIONS(1415), + [sym_const_ident] = ACTIONS(1413), + [sym_builtin] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_tlocal] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_fn] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [anon_sym_var] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_defer] = ACTIONS(1413), + [anon_sym_assert] = ACTIONS(1413), + [anon_sym_nextcase] = ACTIONS(1413), + [anon_sym_switch] = ACTIONS(1413), + [anon_sym_AMP_AMP] = ACTIONS(1415), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_foreach] = ACTIONS(1413), + [anon_sym_foreach_r] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_do] = ACTIONS(1413), + [anon_sym_int] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_asm] = ACTIONS(1413), + [anon_sym_DOLLARassert] = ACTIONS(1413), + [anon_sym_DOLLARerror] = ACTIONS(1413), + [anon_sym_DOLLARecho] = ACTIONS(1413), + [anon_sym_DOLLARif] = ACTIONS(1413), + [anon_sym_DOLLARcase] = ACTIONS(1413), + [anon_sym_DOLLARdefault] = ACTIONS(1413), + [anon_sym_DOLLARswitch] = ACTIONS(1413), + [anon_sym_DOLLARendswitch] = ACTIONS(1413), + [anon_sym_DOLLARfor] = ACTIONS(1413), + [anon_sym_DOLLARforeach] = ACTIONS(1413), + [anon_sym_DOLLARalignof] = ACTIONS(1413), + [anon_sym_DOLLARextnameof] = ACTIONS(1413), + [anon_sym_DOLLARnameof] = ACTIONS(1413), + [anon_sym_DOLLARoffsetof] = ACTIONS(1413), + [anon_sym_DOLLARqnameof] = ACTIONS(1413), + [anon_sym_DOLLARvaconst] = ACTIONS(1413), + [anon_sym_DOLLARvaarg] = ACTIONS(1413), + [anon_sym_DOLLARvaref] = ACTIONS(1413), + [anon_sym_DOLLARvaexpr] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_null] = ACTIONS(1413), + [anon_sym_DOLLARvacount] = ACTIONS(1413), + [anon_sym_DOLLAReval] = ACTIONS(1413), + [anon_sym_DOLLARis_const] = ACTIONS(1413), + [anon_sym_DOLLARsizeof] = ACTIONS(1413), + [anon_sym_DOLLARstringify] = ACTIONS(1413), + [anon_sym_DOLLARappend] = ACTIONS(1413), + [anon_sym_DOLLARconcat] = ACTIONS(1413), + [anon_sym_DOLLARdefined] = ACTIONS(1413), + [anon_sym_DOLLARembed] = ACTIONS(1413), + [anon_sym_DOLLARand] = ACTIONS(1413), + [anon_sym_DOLLARor] = ACTIONS(1413), + [anon_sym_DOLLARfeature] = ACTIONS(1413), + [anon_sym_DOLLARassignable] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_typeid] = ACTIONS(1413), + [anon_sym_LBRACE_PIPE] = ACTIONS(1415), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_bool] = ACTIONS(1413), + [anon_sym_char] = ACTIONS(1413), + [anon_sym_ichar] = ACTIONS(1413), + [anon_sym_short] = ACTIONS(1413), + [anon_sym_ushort] = ACTIONS(1413), + [anon_sym_uint] = ACTIONS(1413), + [anon_sym_long] = ACTIONS(1413), + [anon_sym_ulong] = ACTIONS(1413), + [anon_sym_int128] = ACTIONS(1413), + [anon_sym_uint128] = ACTIONS(1413), + [anon_sym_float] = ACTIONS(1413), + [anon_sym_double] = ACTIONS(1413), + [anon_sym_float16] = ACTIONS(1413), + [anon_sym_bfloat16] = ACTIONS(1413), + [anon_sym_float128] = ACTIONS(1413), + [anon_sym_iptr] = ACTIONS(1413), + [anon_sym_uptr] = ACTIONS(1413), + [anon_sym_isz] = ACTIONS(1413), + [anon_sym_usz] = ACTIONS(1413), + [anon_sym_anyfault] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_DOLLARtypeof] = ACTIONS(1413), + [anon_sym_DOLLARtypefrom] = ACTIONS(1413), + [anon_sym_DOLLARevaltype] = ACTIONS(1413), + [anon_sym_DOLLARvatype] = ACTIONS(1413), + [sym_real_literal] = ACTIONS(1415), }, - [502] = { - [sym_line_comment] = STATE(502), - [sym_doc_comment] = STATE(502), - [sym_block_comment] = STATE(502), + [487] = { + [sym_line_comment] = STATE(487), + [sym_doc_comment] = STATE(487), + [sym_block_comment] = STATE(487), + [sym_ident] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1511), + [anon_sym_BQUOTE] = ACTIONS(1511), + [sym_bytes_literal] = ACTIONS(1511), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1509), + [sym_at_ident] = ACTIONS(1511), + [sym_hash_ident] = ACTIONS(1511), + [sym_type_ident] = ACTIONS(1511), + [sym_ct_type_ident] = ACTIONS(1511), + [sym_const_ident] = ACTIONS(1509), + [sym_builtin] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_tlocal] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_fn] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_defer] = ACTIONS(1509), + [anon_sym_assert] = ACTIONS(1509), + [anon_sym_nextcase] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_foreach] = ACTIONS(1509), + [anon_sym_foreach_r] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_int] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_asm] = ACTIONS(1509), + [anon_sym_DOLLARassert] = ACTIONS(1509), + [anon_sym_DOLLARerror] = ACTIONS(1509), + [anon_sym_DOLLARecho] = ACTIONS(1509), + [anon_sym_DOLLARif] = ACTIONS(1509), + [anon_sym_DOLLARcase] = ACTIONS(1509), + [anon_sym_DOLLARdefault] = ACTIONS(1509), + [anon_sym_DOLLARswitch] = ACTIONS(1509), + [anon_sym_DOLLARendswitch] = ACTIONS(1509), + [anon_sym_DOLLARfor] = ACTIONS(1509), + [anon_sym_DOLLARforeach] = ACTIONS(1509), + [anon_sym_DOLLARalignof] = ACTIONS(1509), + [anon_sym_DOLLARextnameof] = ACTIONS(1509), + [anon_sym_DOLLARnameof] = ACTIONS(1509), + [anon_sym_DOLLARoffsetof] = ACTIONS(1509), + [anon_sym_DOLLARqnameof] = ACTIONS(1509), + [anon_sym_DOLLARvaconst] = ACTIONS(1509), + [anon_sym_DOLLARvaarg] = ACTIONS(1509), + [anon_sym_DOLLARvaref] = ACTIONS(1509), + [anon_sym_DOLLARvaexpr] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_DOLLARvacount] = ACTIONS(1509), + [anon_sym_DOLLAReval] = ACTIONS(1509), + [anon_sym_DOLLARis_const] = ACTIONS(1509), + [anon_sym_DOLLARsizeof] = ACTIONS(1509), + [anon_sym_DOLLARstringify] = ACTIONS(1509), + [anon_sym_DOLLARappend] = ACTIONS(1509), + [anon_sym_DOLLARconcat] = ACTIONS(1509), + [anon_sym_DOLLARdefined] = ACTIONS(1509), + [anon_sym_DOLLARembed] = ACTIONS(1509), + [anon_sym_DOLLARand] = ACTIONS(1509), + [anon_sym_DOLLARor] = ACTIONS(1509), + [anon_sym_DOLLARfeature] = ACTIONS(1509), + [anon_sym_DOLLARassignable] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_typeid] = ACTIONS(1509), + [anon_sym_LBRACE_PIPE] = ACTIONS(1511), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_ichar] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [anon_sym_ushort] = ACTIONS(1509), + [anon_sym_uint] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_ulong] = ACTIONS(1509), + [anon_sym_int128] = ACTIONS(1509), + [anon_sym_uint128] = ACTIONS(1509), + [anon_sym_float] = ACTIONS(1509), + [anon_sym_double] = ACTIONS(1509), + [anon_sym_float16] = ACTIONS(1509), + [anon_sym_bfloat16] = ACTIONS(1509), + [anon_sym_float128] = ACTIONS(1509), + [anon_sym_iptr] = ACTIONS(1509), + [anon_sym_uptr] = ACTIONS(1509), + [anon_sym_isz] = ACTIONS(1509), + [anon_sym_usz] = ACTIONS(1509), + [anon_sym_anyfault] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_DOLLARtypeof] = ACTIONS(1509), + [anon_sym_DOLLARtypefrom] = ACTIONS(1509), + [anon_sym_DOLLARevaltype] = ACTIONS(1509), + [anon_sym_DOLLARvatype] = ACTIONS(1509), + [sym_real_literal] = ACTIONS(1511), + }, + [488] = { + [sym_line_comment] = STATE(488), + [sym_doc_comment] = STATE(488), + [sym_block_comment] = STATE(488), + [sym_ident] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_bytes_literal] = ACTIONS(1515), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1513), + [sym_at_ident] = ACTIONS(1515), + [sym_hash_ident] = ACTIONS(1515), + [sym_type_ident] = ACTIONS(1515), + [sym_ct_type_ident] = ACTIONS(1515), + [sym_const_ident] = ACTIONS(1513), + [sym_builtin] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_tlocal] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_var] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_defer] = ACTIONS(1513), + [anon_sym_assert] = ACTIONS(1513), + [anon_sym_nextcase] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_foreach] = ACTIONS(1513), + [anon_sym_foreach_r] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_int] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_asm] = ACTIONS(1513), + [anon_sym_DOLLARassert] = ACTIONS(1513), + [anon_sym_DOLLARerror] = ACTIONS(1513), + [anon_sym_DOLLARecho] = ACTIONS(1513), + [anon_sym_DOLLARif] = ACTIONS(1513), + [anon_sym_DOLLARcase] = ACTIONS(1513), + [anon_sym_DOLLARdefault] = ACTIONS(1513), + [anon_sym_DOLLARswitch] = ACTIONS(1513), + [anon_sym_DOLLARendswitch] = ACTIONS(1513), + [anon_sym_DOLLARfor] = ACTIONS(1513), + [anon_sym_DOLLARforeach] = ACTIONS(1513), + [anon_sym_DOLLARalignof] = ACTIONS(1513), + [anon_sym_DOLLARextnameof] = ACTIONS(1513), + [anon_sym_DOLLARnameof] = ACTIONS(1513), + [anon_sym_DOLLARoffsetof] = ACTIONS(1513), + [anon_sym_DOLLARqnameof] = ACTIONS(1513), + [anon_sym_DOLLARvaconst] = ACTIONS(1513), + [anon_sym_DOLLARvaarg] = ACTIONS(1513), + [anon_sym_DOLLARvaref] = ACTIONS(1513), + [anon_sym_DOLLARvaexpr] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_DOLLARvacount] = ACTIONS(1513), + [anon_sym_DOLLAReval] = ACTIONS(1513), + [anon_sym_DOLLARis_const] = ACTIONS(1513), + [anon_sym_DOLLARsizeof] = ACTIONS(1513), + [anon_sym_DOLLARstringify] = ACTIONS(1513), + [anon_sym_DOLLARappend] = ACTIONS(1513), + [anon_sym_DOLLARconcat] = ACTIONS(1513), + [anon_sym_DOLLARdefined] = ACTIONS(1513), + [anon_sym_DOLLARembed] = ACTIONS(1513), + [anon_sym_DOLLARand] = ACTIONS(1513), + [anon_sym_DOLLARor] = ACTIONS(1513), + [anon_sym_DOLLARfeature] = ACTIONS(1513), + [anon_sym_DOLLARassignable] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_typeid] = ACTIONS(1513), + [anon_sym_LBRACE_PIPE] = ACTIONS(1515), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_ichar] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_ushort] = ACTIONS(1513), + [anon_sym_uint] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_ulong] = ACTIONS(1513), + [anon_sym_int128] = ACTIONS(1513), + [anon_sym_uint128] = ACTIONS(1513), + [anon_sym_float] = ACTIONS(1513), + [anon_sym_double] = ACTIONS(1513), + [anon_sym_float16] = ACTIONS(1513), + [anon_sym_bfloat16] = ACTIONS(1513), + [anon_sym_float128] = ACTIONS(1513), + [anon_sym_iptr] = ACTIONS(1513), + [anon_sym_uptr] = ACTIONS(1513), + [anon_sym_isz] = ACTIONS(1513), + [anon_sym_usz] = ACTIONS(1513), + [anon_sym_anyfault] = ACTIONS(1513), + [anon_sym_any] = ACTIONS(1513), + [anon_sym_DOLLARtypeof] = ACTIONS(1513), + [anon_sym_DOLLARtypefrom] = ACTIONS(1513), + [anon_sym_DOLLARevaltype] = ACTIONS(1513), + [anon_sym_DOLLARvatype] = ACTIONS(1513), + [sym_real_literal] = ACTIONS(1515), + }, + [489] = { + [sym_line_comment] = STATE(489), + [sym_doc_comment] = STATE(489), + [sym_block_comment] = STATE(489), [sym_ident] = ACTIONS(1417), [sym_integer_literal] = ACTIONS(1419), [anon_sym_SQUOTE] = ACTIONS(1419), @@ -83325,7 +81716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1419), [sym_bytes_literal] = ACTIONS(1419), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1417), [sym_at_ident] = ACTIONS(1419), @@ -83377,11 +81768,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1417), [anon_sym_DOLLARoffsetof] = ACTIONS(1417), [anon_sym_DOLLARqnameof] = ACTIONS(1417), - [anon_sym_DOLLAReval] = ACTIONS(1417), - [anon_sym_DOLLARdefined] = ACTIONS(1417), - [anon_sym_DOLLARsizeof] = ACTIONS(1417), - [anon_sym_DOLLARstringify] = ACTIONS(1417), - [anon_sym_DOLLARis_const] = ACTIONS(1417), [anon_sym_DOLLARvaconst] = ACTIONS(1417), [anon_sym_DOLLARvaarg] = ACTIONS(1417), [anon_sym_DOLLARvaref] = ACTIONS(1417), @@ -83390,11 +81776,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1417), [anon_sym_null] = ACTIONS(1417), [anon_sym_DOLLARvacount] = ACTIONS(1417), - [anon_sym_DOLLARfeature] = ACTIONS(1417), + [anon_sym_DOLLAReval] = ACTIONS(1417), + [anon_sym_DOLLARis_const] = ACTIONS(1417), + [anon_sym_DOLLARsizeof] = ACTIONS(1417), + [anon_sym_DOLLARstringify] = ACTIONS(1417), + [anon_sym_DOLLARappend] = ACTIONS(1417), + [anon_sym_DOLLARconcat] = ACTIONS(1417), + [anon_sym_DOLLARdefined] = ACTIONS(1417), + [anon_sym_DOLLARembed] = ACTIONS(1417), [anon_sym_DOLLARand] = ACTIONS(1417), [anon_sym_DOLLARor] = ACTIONS(1417), + [anon_sym_DOLLARfeature] = ACTIONS(1417), [anon_sym_DOLLARassignable] = ACTIONS(1417), - [anon_sym_DOLLARembed] = ACTIONS(1417), [anon_sym_BANG] = ACTIONS(1419), [anon_sym_TILDE] = ACTIONS(1419), [anon_sym_PLUS_PLUS] = ACTIONS(1419), @@ -83425,5486 +81818,3152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1417), [anon_sym_DOLLARtypeof] = ACTIONS(1417), [anon_sym_DOLLARtypefrom] = ACTIONS(1417), - [anon_sym_DOLLARvatype] = ACTIONS(1417), [anon_sym_DOLLARevaltype] = ACTIONS(1417), + [anon_sym_DOLLARvatype] = ACTIONS(1417), [sym_real_literal] = ACTIONS(1419), }, - [503] = { - [sym_line_comment] = STATE(503), - [sym_doc_comment] = STATE(503), - [sym_block_comment] = STATE(503), - [sym_ident] = ACTIONS(1615), - [sym_integer_literal] = ACTIONS(1617), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_DQUOTE] = ACTIONS(1617), - [anon_sym_BQUOTE] = ACTIONS(1617), - [sym_bytes_literal] = ACTIONS(1617), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1615), - [sym_at_ident] = ACTIONS(1617), - [sym_hash_ident] = ACTIONS(1617), - [sym_type_ident] = ACTIONS(1617), - [sym_ct_type_ident] = ACTIONS(1617), - [sym_const_ident] = ACTIONS(1615), - [sym_builtin] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1615), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_tlocal] = ACTIONS(1615), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_fn] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1615), - [anon_sym_const] = ACTIONS(1615), - [anon_sym_var] = ACTIONS(1615), - [anon_sym_return] = ACTIONS(1615), - [anon_sym_continue] = ACTIONS(1615), - [anon_sym_break] = ACTIONS(1615), - [anon_sym_defer] = ACTIONS(1615), - [anon_sym_assert] = ACTIONS(1615), - [anon_sym_nextcase] = ACTIONS(1615), - [anon_sym_switch] = ACTIONS(1615), - [anon_sym_AMP_AMP] = ACTIONS(1617), - [anon_sym_if] = ACTIONS(1615), - [anon_sym_for] = ACTIONS(1615), - [anon_sym_foreach] = ACTIONS(1615), - [anon_sym_foreach_r] = ACTIONS(1615), - [anon_sym_while] = ACTIONS(1615), - [anon_sym_do] = ACTIONS(1615), - [anon_sym_int] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1617), - [anon_sym_asm] = ACTIONS(1615), - [anon_sym_DOLLARassert] = ACTIONS(1615), - [anon_sym_DOLLARerror] = ACTIONS(1615), - [anon_sym_DOLLARecho] = ACTIONS(1615), - [anon_sym_DOLLARif] = ACTIONS(1615), - [anon_sym_DOLLARendif] = ACTIONS(1615), - [anon_sym_DOLLARelse] = ACTIONS(1615), - [anon_sym_DOLLARswitch] = ACTIONS(1615), - [anon_sym_DOLLARfor] = ACTIONS(1615), - [anon_sym_DOLLARforeach] = ACTIONS(1615), - [anon_sym_DOLLARalignof] = ACTIONS(1615), - [anon_sym_DOLLARextnameof] = ACTIONS(1615), - [anon_sym_DOLLARnameof] = ACTIONS(1615), - [anon_sym_DOLLARoffsetof] = ACTIONS(1615), - [anon_sym_DOLLARqnameof] = ACTIONS(1615), - [anon_sym_DOLLAReval] = ACTIONS(1615), - [anon_sym_DOLLARdefined] = ACTIONS(1615), - [anon_sym_DOLLARsizeof] = ACTIONS(1615), - [anon_sym_DOLLARstringify] = ACTIONS(1615), - [anon_sym_DOLLARis_const] = ACTIONS(1615), - [anon_sym_DOLLARvaconst] = ACTIONS(1615), - [anon_sym_DOLLARvaarg] = ACTIONS(1615), - [anon_sym_DOLLARvaref] = ACTIONS(1615), - [anon_sym_DOLLARvaexpr] = ACTIONS(1615), - [anon_sym_true] = ACTIONS(1615), - [anon_sym_false] = ACTIONS(1615), - [anon_sym_null] = ACTIONS(1615), - [anon_sym_DOLLARvacount] = ACTIONS(1615), - [anon_sym_DOLLARfeature] = ACTIONS(1615), - [anon_sym_DOLLARand] = ACTIONS(1615), - [anon_sym_DOLLARor] = ACTIONS(1615), - [anon_sym_DOLLARassignable] = ACTIONS(1615), - [anon_sym_DOLLARembed] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_typeid] = ACTIONS(1615), - [anon_sym_LBRACE_PIPE] = ACTIONS(1617), - [anon_sym_void] = ACTIONS(1615), - [anon_sym_bool] = ACTIONS(1615), - [anon_sym_char] = ACTIONS(1615), - [anon_sym_ichar] = ACTIONS(1615), - [anon_sym_short] = ACTIONS(1615), - [anon_sym_ushort] = ACTIONS(1615), - [anon_sym_uint] = ACTIONS(1615), - [anon_sym_long] = ACTIONS(1615), - [anon_sym_ulong] = ACTIONS(1615), - [anon_sym_int128] = ACTIONS(1615), - [anon_sym_uint128] = ACTIONS(1615), - [anon_sym_float] = ACTIONS(1615), - [anon_sym_double] = ACTIONS(1615), - [anon_sym_float16] = ACTIONS(1615), - [anon_sym_bfloat16] = ACTIONS(1615), - [anon_sym_float128] = ACTIONS(1615), - [anon_sym_iptr] = ACTIONS(1615), - [anon_sym_uptr] = ACTIONS(1615), - [anon_sym_isz] = ACTIONS(1615), - [anon_sym_usz] = ACTIONS(1615), - [anon_sym_anyfault] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_DOLLARtypeof] = ACTIONS(1615), - [anon_sym_DOLLARtypefrom] = ACTIONS(1615), - [anon_sym_DOLLARvatype] = ACTIONS(1615), - [anon_sym_DOLLARevaltype] = ACTIONS(1615), - [sym_real_literal] = ACTIONS(1617), - }, - [504] = { - [sym_line_comment] = STATE(504), - [sym_doc_comment] = STATE(504), - [sym_block_comment] = STATE(504), - [sym_ident] = ACTIONS(1377), - [sym_integer_literal] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1379), - [anon_sym_BQUOTE] = ACTIONS(1379), - [sym_bytes_literal] = ACTIONS(1379), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1377), - [sym_at_ident] = ACTIONS(1379), - [sym_hash_ident] = ACTIONS(1379), - [sym_type_ident] = ACTIONS(1379), - [sym_ct_type_ident] = ACTIONS(1379), - [sym_const_ident] = ACTIONS(1377), - [sym_builtin] = ACTIONS(1379), - [anon_sym_LPAREN] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(1377), - [anon_sym_tlocal] = ACTIONS(1377), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_fn] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_const] = ACTIONS(1377), - [anon_sym_var] = ACTIONS(1377), - [anon_sym_return] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1377), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_defer] = ACTIONS(1377), - [anon_sym_assert] = ACTIONS(1377), - [anon_sym_nextcase] = ACTIONS(1377), - [anon_sym_switch] = ACTIONS(1377), - [anon_sym_AMP_AMP] = ACTIONS(1379), - [anon_sym_if] = ACTIONS(1377), - [anon_sym_else] = ACTIONS(1377), - [anon_sym_for] = ACTIONS(1377), - [anon_sym_foreach] = ACTIONS(1377), - [anon_sym_foreach_r] = ACTIONS(1377), - [anon_sym_while] = ACTIONS(1377), - [anon_sym_do] = ACTIONS(1377), - [anon_sym_int] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_asm] = ACTIONS(1377), - [anon_sym_DOLLARassert] = ACTIONS(1377), - [anon_sym_DOLLARerror] = ACTIONS(1377), - [anon_sym_DOLLARecho] = ACTIONS(1377), - [anon_sym_DOLLARif] = ACTIONS(1377), - [anon_sym_DOLLARendif] = ACTIONS(1377), - [anon_sym_DOLLARswitch] = ACTIONS(1377), - [anon_sym_DOLLARfor] = ACTIONS(1377), - [anon_sym_DOLLARforeach] = ACTIONS(1377), - [anon_sym_DOLLARalignof] = ACTIONS(1377), - [anon_sym_DOLLARextnameof] = ACTIONS(1377), - [anon_sym_DOLLARnameof] = ACTIONS(1377), - [anon_sym_DOLLARoffsetof] = ACTIONS(1377), - [anon_sym_DOLLARqnameof] = ACTIONS(1377), - [anon_sym_DOLLAReval] = ACTIONS(1377), - [anon_sym_DOLLARdefined] = ACTIONS(1377), - [anon_sym_DOLLARsizeof] = ACTIONS(1377), - [anon_sym_DOLLARstringify] = ACTIONS(1377), - [anon_sym_DOLLARis_const] = ACTIONS(1377), - [anon_sym_DOLLARvaconst] = ACTIONS(1377), - [anon_sym_DOLLARvaarg] = ACTIONS(1377), - [anon_sym_DOLLARvaref] = ACTIONS(1377), - [anon_sym_DOLLARvaexpr] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1377), - [anon_sym_false] = ACTIONS(1377), - [anon_sym_null] = ACTIONS(1377), - [anon_sym_DOLLARvacount] = ACTIONS(1377), - [anon_sym_DOLLARfeature] = ACTIONS(1377), - [anon_sym_DOLLARand] = ACTIONS(1377), - [anon_sym_DOLLARor] = ACTIONS(1377), - [anon_sym_DOLLARassignable] = ACTIONS(1377), - [anon_sym_DOLLARembed] = ACTIONS(1377), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [anon_sym_typeid] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_bool] = ACTIONS(1377), - [anon_sym_char] = ACTIONS(1377), - [anon_sym_ichar] = ACTIONS(1377), - [anon_sym_short] = ACTIONS(1377), - [anon_sym_ushort] = ACTIONS(1377), - [anon_sym_uint] = ACTIONS(1377), - [anon_sym_long] = ACTIONS(1377), - [anon_sym_ulong] = ACTIONS(1377), - [anon_sym_int128] = ACTIONS(1377), - [anon_sym_uint128] = ACTIONS(1377), - [anon_sym_float] = ACTIONS(1377), - [anon_sym_double] = ACTIONS(1377), - [anon_sym_float16] = ACTIONS(1377), - [anon_sym_bfloat16] = ACTIONS(1377), - [anon_sym_float128] = ACTIONS(1377), - [anon_sym_iptr] = ACTIONS(1377), - [anon_sym_uptr] = ACTIONS(1377), - [anon_sym_isz] = ACTIONS(1377), - [anon_sym_usz] = ACTIONS(1377), - [anon_sym_anyfault] = ACTIONS(1377), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_DOLLARtypeof] = ACTIONS(1377), - [anon_sym_DOLLARtypefrom] = ACTIONS(1377), - [anon_sym_DOLLARvatype] = ACTIONS(1377), - [anon_sym_DOLLARevaltype] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - }, - [505] = { - [sym_line_comment] = STATE(505), - [sym_doc_comment] = STATE(505), - [sym_block_comment] = STATE(505), - [sym_ident] = ACTIONS(1503), - [sym_integer_literal] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_BQUOTE] = ACTIONS(1505), - [sym_bytes_literal] = ACTIONS(1505), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1503), - [sym_at_ident] = ACTIONS(1505), - [sym_hash_ident] = ACTIONS(1505), - [sym_type_ident] = ACTIONS(1505), - [sym_ct_type_ident] = ACTIONS(1505), - [sym_const_ident] = ACTIONS(1503), - [sym_builtin] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1503), - [anon_sym_tlocal] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym_fn] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_var] = ACTIONS(1503), - [anon_sym_return] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1503), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_defer] = ACTIONS(1503), - [anon_sym_assert] = ACTIONS(1503), - [anon_sym_nextcase] = ACTIONS(1503), - [anon_sym_switch] = ACTIONS(1503), - [anon_sym_AMP_AMP] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1503), - [anon_sym_for] = ACTIONS(1503), - [anon_sym_foreach] = ACTIONS(1503), - [anon_sym_foreach_r] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_do] = ACTIONS(1503), - [anon_sym_int] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_asm] = ACTIONS(1503), - [anon_sym_DOLLARassert] = ACTIONS(1503), - [anon_sym_DOLLARerror] = ACTIONS(1503), - [anon_sym_DOLLARecho] = ACTIONS(1503), - [anon_sym_DOLLARif] = ACTIONS(1503), - [anon_sym_DOLLARendif] = ACTIONS(1503), - [anon_sym_DOLLARelse] = ACTIONS(1503), - [anon_sym_DOLLARswitch] = ACTIONS(1503), - [anon_sym_DOLLARfor] = ACTIONS(1503), - [anon_sym_DOLLARforeach] = ACTIONS(1503), - [anon_sym_DOLLARalignof] = ACTIONS(1503), - [anon_sym_DOLLARextnameof] = ACTIONS(1503), - [anon_sym_DOLLARnameof] = ACTIONS(1503), - [anon_sym_DOLLARoffsetof] = ACTIONS(1503), - [anon_sym_DOLLARqnameof] = ACTIONS(1503), - [anon_sym_DOLLAReval] = ACTIONS(1503), - [anon_sym_DOLLARdefined] = ACTIONS(1503), - [anon_sym_DOLLARsizeof] = ACTIONS(1503), - [anon_sym_DOLLARstringify] = ACTIONS(1503), - [anon_sym_DOLLARis_const] = ACTIONS(1503), - [anon_sym_DOLLARvaconst] = ACTIONS(1503), - [anon_sym_DOLLARvaarg] = ACTIONS(1503), - [anon_sym_DOLLARvaref] = ACTIONS(1503), - [anon_sym_DOLLARvaexpr] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1503), - [anon_sym_false] = ACTIONS(1503), - [anon_sym_null] = ACTIONS(1503), - [anon_sym_DOLLARvacount] = ACTIONS(1503), - [anon_sym_DOLLARfeature] = ACTIONS(1503), - [anon_sym_DOLLARand] = ACTIONS(1503), - [anon_sym_DOLLARor] = ACTIONS(1503), - [anon_sym_DOLLARassignable] = ACTIONS(1503), - [anon_sym_DOLLARembed] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1505), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [anon_sym_typeid] = ACTIONS(1503), - [anon_sym_LBRACE_PIPE] = ACTIONS(1505), - [anon_sym_void] = ACTIONS(1503), - [anon_sym_bool] = ACTIONS(1503), - [anon_sym_char] = ACTIONS(1503), - [anon_sym_ichar] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [anon_sym_ushort] = ACTIONS(1503), - [anon_sym_uint] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_ulong] = ACTIONS(1503), - [anon_sym_int128] = ACTIONS(1503), - [anon_sym_uint128] = ACTIONS(1503), - [anon_sym_float] = ACTIONS(1503), - [anon_sym_double] = ACTIONS(1503), - [anon_sym_float16] = ACTIONS(1503), - [anon_sym_bfloat16] = ACTIONS(1503), - [anon_sym_float128] = ACTIONS(1503), - [anon_sym_iptr] = ACTIONS(1503), - [anon_sym_uptr] = ACTIONS(1503), - [anon_sym_isz] = ACTIONS(1503), - [anon_sym_usz] = ACTIONS(1503), - [anon_sym_anyfault] = ACTIONS(1503), - [anon_sym_any] = ACTIONS(1503), - [anon_sym_DOLLARtypeof] = ACTIONS(1503), - [anon_sym_DOLLARtypefrom] = ACTIONS(1503), - [anon_sym_DOLLARvatype] = ACTIONS(1503), - [anon_sym_DOLLARevaltype] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1505), - }, - [506] = { - [sym_line_comment] = STATE(506), - [sym_doc_comment] = STATE(506), - [sym_block_comment] = STATE(506), - [sym_ident] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1427), - [anon_sym_SQUOTE] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1427), - [anon_sym_BQUOTE] = ACTIONS(1427), - [sym_bytes_literal] = ACTIONS(1427), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1425), - [sym_at_ident] = ACTIONS(1427), - [sym_hash_ident] = ACTIONS(1427), - [sym_type_ident] = ACTIONS(1427), - [sym_ct_type_ident] = ACTIONS(1427), - [sym_const_ident] = ACTIONS(1425), - [sym_builtin] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_tlocal] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_fn] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_var] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_defer] = ACTIONS(1425), - [anon_sym_assert] = ACTIONS(1425), - [anon_sym_nextcase] = ACTIONS(1425), - [anon_sym_switch] = ACTIONS(1425), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_foreach] = ACTIONS(1425), - [anon_sym_foreach_r] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_do] = ACTIONS(1425), - [anon_sym_int] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_asm] = ACTIONS(1425), - [anon_sym_DOLLARassert] = ACTIONS(1425), - [anon_sym_DOLLARerror] = ACTIONS(1425), - [anon_sym_DOLLARecho] = ACTIONS(1425), - [anon_sym_DOLLARif] = ACTIONS(1425), - [anon_sym_DOLLARendif] = ACTIONS(1425), - [anon_sym_DOLLARelse] = ACTIONS(1425), - [anon_sym_DOLLARswitch] = ACTIONS(1425), - [anon_sym_DOLLARfor] = ACTIONS(1425), - [anon_sym_DOLLARforeach] = ACTIONS(1425), - [anon_sym_DOLLARalignof] = ACTIONS(1425), - [anon_sym_DOLLARextnameof] = ACTIONS(1425), - [anon_sym_DOLLARnameof] = ACTIONS(1425), - [anon_sym_DOLLARoffsetof] = ACTIONS(1425), - [anon_sym_DOLLARqnameof] = ACTIONS(1425), - [anon_sym_DOLLAReval] = ACTIONS(1425), - [anon_sym_DOLLARdefined] = ACTIONS(1425), - [anon_sym_DOLLARsizeof] = ACTIONS(1425), - [anon_sym_DOLLARstringify] = ACTIONS(1425), - [anon_sym_DOLLARis_const] = ACTIONS(1425), - [anon_sym_DOLLARvaconst] = ACTIONS(1425), - [anon_sym_DOLLARvaarg] = ACTIONS(1425), - [anon_sym_DOLLARvaref] = ACTIONS(1425), - [anon_sym_DOLLARvaexpr] = ACTIONS(1425), - [anon_sym_true] = ACTIONS(1425), - [anon_sym_false] = ACTIONS(1425), - [anon_sym_null] = ACTIONS(1425), - [anon_sym_DOLLARvacount] = ACTIONS(1425), - [anon_sym_DOLLARfeature] = ACTIONS(1425), - [anon_sym_DOLLARand] = ACTIONS(1425), - [anon_sym_DOLLARor] = ACTIONS(1425), - [anon_sym_DOLLARassignable] = ACTIONS(1425), - [anon_sym_DOLLARembed] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_typeid] = ACTIONS(1425), - [anon_sym_LBRACE_PIPE] = ACTIONS(1427), - [anon_sym_void] = ACTIONS(1425), - [anon_sym_bool] = ACTIONS(1425), - [anon_sym_char] = ACTIONS(1425), - [anon_sym_ichar] = ACTIONS(1425), - [anon_sym_short] = ACTIONS(1425), - [anon_sym_ushort] = ACTIONS(1425), - [anon_sym_uint] = ACTIONS(1425), - [anon_sym_long] = ACTIONS(1425), - [anon_sym_ulong] = ACTIONS(1425), - [anon_sym_int128] = ACTIONS(1425), - [anon_sym_uint128] = ACTIONS(1425), - [anon_sym_float] = ACTIONS(1425), - [anon_sym_double] = ACTIONS(1425), - [anon_sym_float16] = ACTIONS(1425), - [anon_sym_bfloat16] = ACTIONS(1425), - [anon_sym_float128] = ACTIONS(1425), - [anon_sym_iptr] = ACTIONS(1425), - [anon_sym_uptr] = ACTIONS(1425), - [anon_sym_isz] = ACTIONS(1425), - [anon_sym_usz] = ACTIONS(1425), - [anon_sym_anyfault] = ACTIONS(1425), - [anon_sym_any] = ACTIONS(1425), - [anon_sym_DOLLARtypeof] = ACTIONS(1425), - [anon_sym_DOLLARtypefrom] = ACTIONS(1425), - [anon_sym_DOLLARvatype] = ACTIONS(1425), - [anon_sym_DOLLARevaltype] = ACTIONS(1425), - [sym_real_literal] = ACTIONS(1427), - }, - [507] = { - [sym_line_comment] = STATE(507), - [sym_doc_comment] = STATE(507), - [sym_block_comment] = STATE(507), - [sym_ident] = ACTIONS(1631), - [sym_integer_literal] = ACTIONS(1633), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_bytes_literal] = ACTIONS(1633), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1631), - [sym_at_ident] = ACTIONS(1633), - [sym_hash_ident] = ACTIONS(1633), - [sym_type_ident] = ACTIONS(1633), - [sym_ct_type_ident] = ACTIONS(1633), - [sym_const_ident] = ACTIONS(1631), - [sym_builtin] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_AMP] = ACTIONS(1631), - [anon_sym_static] = ACTIONS(1631), - [anon_sym_tlocal] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_defer] = ACTIONS(1631), - [anon_sym_assert] = ACTIONS(1631), - [anon_sym_nextcase] = ACTIONS(1631), - [anon_sym_switch] = ACTIONS(1631), - [anon_sym_AMP_AMP] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_foreach] = ACTIONS(1631), - [anon_sym_foreach_r] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_int] = ACTIONS(1631), - [anon_sym_PLUS] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_asm] = ACTIONS(1631), - [anon_sym_DOLLARassert] = ACTIONS(1631), - [anon_sym_DOLLARerror] = ACTIONS(1631), - [anon_sym_DOLLARecho] = ACTIONS(1631), - [anon_sym_DOLLARif] = ACTIONS(1631), - [anon_sym_DOLLARendif] = ACTIONS(1631), - [anon_sym_DOLLARelse] = ACTIONS(1631), - [anon_sym_DOLLARswitch] = ACTIONS(1631), - [anon_sym_DOLLARfor] = ACTIONS(1631), - [anon_sym_DOLLARforeach] = ACTIONS(1631), - [anon_sym_DOLLARalignof] = ACTIONS(1631), - [anon_sym_DOLLARextnameof] = ACTIONS(1631), - [anon_sym_DOLLARnameof] = ACTIONS(1631), - [anon_sym_DOLLARoffsetof] = ACTIONS(1631), - [anon_sym_DOLLARqnameof] = ACTIONS(1631), - [anon_sym_DOLLAReval] = ACTIONS(1631), - [anon_sym_DOLLARdefined] = ACTIONS(1631), - [anon_sym_DOLLARsizeof] = ACTIONS(1631), - [anon_sym_DOLLARstringify] = ACTIONS(1631), - [anon_sym_DOLLARis_const] = ACTIONS(1631), - [anon_sym_DOLLARvaconst] = ACTIONS(1631), - [anon_sym_DOLLARvaarg] = ACTIONS(1631), - [anon_sym_DOLLARvaref] = ACTIONS(1631), - [anon_sym_DOLLARvaexpr] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1631), - [anon_sym_false] = ACTIONS(1631), - [anon_sym_null] = ACTIONS(1631), - [anon_sym_DOLLARvacount] = ACTIONS(1631), - [anon_sym_DOLLARfeature] = ACTIONS(1631), - [anon_sym_DOLLARand] = ACTIONS(1631), - [anon_sym_DOLLARor] = ACTIONS(1631), - [anon_sym_DOLLARassignable] = ACTIONS(1631), - [anon_sym_DOLLARembed] = ACTIONS(1631), - [anon_sym_BANG] = ACTIONS(1633), - [anon_sym_TILDE] = ACTIONS(1633), - [anon_sym_PLUS_PLUS] = ACTIONS(1633), - [anon_sym_DASH_DASH] = ACTIONS(1633), - [anon_sym_typeid] = ACTIONS(1631), - [anon_sym_LBRACE_PIPE] = ACTIONS(1633), - [anon_sym_void] = ACTIONS(1631), - [anon_sym_bool] = ACTIONS(1631), - [anon_sym_char] = ACTIONS(1631), - [anon_sym_ichar] = ACTIONS(1631), - [anon_sym_short] = ACTIONS(1631), - [anon_sym_ushort] = ACTIONS(1631), - [anon_sym_uint] = ACTIONS(1631), - [anon_sym_long] = ACTIONS(1631), - [anon_sym_ulong] = ACTIONS(1631), - [anon_sym_int128] = ACTIONS(1631), - [anon_sym_uint128] = ACTIONS(1631), - [anon_sym_float] = ACTIONS(1631), - [anon_sym_double] = ACTIONS(1631), - [anon_sym_float16] = ACTIONS(1631), - [anon_sym_bfloat16] = ACTIONS(1631), - [anon_sym_float128] = ACTIONS(1631), - [anon_sym_iptr] = ACTIONS(1631), - [anon_sym_uptr] = ACTIONS(1631), - [anon_sym_isz] = ACTIONS(1631), - [anon_sym_usz] = ACTIONS(1631), - [anon_sym_anyfault] = ACTIONS(1631), - [anon_sym_any] = ACTIONS(1631), - [anon_sym_DOLLARtypeof] = ACTIONS(1631), - [anon_sym_DOLLARtypefrom] = ACTIONS(1631), - [anon_sym_DOLLARvatype] = ACTIONS(1631), - [anon_sym_DOLLARevaltype] = ACTIONS(1631), - [sym_real_literal] = ACTIONS(1633), - }, - [508] = { - [sym_line_comment] = STATE(508), - [sym_doc_comment] = STATE(508), - [sym_block_comment] = STATE(508), - [sym_ident] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [anon_sym_BQUOTE] = ACTIONS(1629), - [sym_bytes_literal] = ACTIONS(1629), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1627), - [sym_at_ident] = ACTIONS(1629), - [sym_hash_ident] = ACTIONS(1629), - [sym_type_ident] = ACTIONS(1629), - [sym_ct_type_ident] = ACTIONS(1629), - [sym_const_ident] = ACTIONS(1627), - [sym_builtin] = ACTIONS(1629), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_AMP] = ACTIONS(1627), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_tlocal] = ACTIONS(1627), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_fn] = ACTIONS(1627), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_const] = ACTIONS(1627), - [anon_sym_var] = ACTIONS(1627), - [anon_sym_return] = ACTIONS(1627), - [anon_sym_continue] = ACTIONS(1627), - [anon_sym_break] = ACTIONS(1627), - [anon_sym_defer] = ACTIONS(1627), - [anon_sym_assert] = ACTIONS(1627), - [anon_sym_nextcase] = ACTIONS(1627), - [anon_sym_switch] = ACTIONS(1627), - [anon_sym_AMP_AMP] = ACTIONS(1629), - [anon_sym_if] = ACTIONS(1627), - [anon_sym_for] = ACTIONS(1627), - [anon_sym_foreach] = ACTIONS(1627), - [anon_sym_foreach_r] = ACTIONS(1627), - [anon_sym_while] = ACTIONS(1627), - [anon_sym_do] = ACTIONS(1627), - [anon_sym_int] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_STAR] = ACTIONS(1629), - [anon_sym_asm] = ACTIONS(1627), - [anon_sym_DOLLARassert] = ACTIONS(1627), - [anon_sym_DOLLARerror] = ACTIONS(1627), - [anon_sym_DOLLARecho] = ACTIONS(1627), - [anon_sym_DOLLARif] = ACTIONS(1627), - [anon_sym_DOLLARendif] = ACTIONS(1627), - [anon_sym_DOLLARelse] = ACTIONS(1627), - [anon_sym_DOLLARswitch] = ACTIONS(1627), - [anon_sym_DOLLARfor] = ACTIONS(1627), - [anon_sym_DOLLARforeach] = ACTIONS(1627), - [anon_sym_DOLLARalignof] = ACTIONS(1627), - [anon_sym_DOLLARextnameof] = ACTIONS(1627), - [anon_sym_DOLLARnameof] = ACTIONS(1627), - [anon_sym_DOLLARoffsetof] = ACTIONS(1627), - [anon_sym_DOLLARqnameof] = ACTIONS(1627), - [anon_sym_DOLLAReval] = ACTIONS(1627), - [anon_sym_DOLLARdefined] = ACTIONS(1627), - [anon_sym_DOLLARsizeof] = ACTIONS(1627), - [anon_sym_DOLLARstringify] = ACTIONS(1627), - [anon_sym_DOLLARis_const] = ACTIONS(1627), - [anon_sym_DOLLARvaconst] = ACTIONS(1627), - [anon_sym_DOLLARvaarg] = ACTIONS(1627), - [anon_sym_DOLLARvaref] = ACTIONS(1627), - [anon_sym_DOLLARvaexpr] = ACTIONS(1627), - [anon_sym_true] = ACTIONS(1627), - [anon_sym_false] = ACTIONS(1627), - [anon_sym_null] = ACTIONS(1627), - [anon_sym_DOLLARvacount] = ACTIONS(1627), - [anon_sym_DOLLARfeature] = ACTIONS(1627), - [anon_sym_DOLLARand] = ACTIONS(1627), - [anon_sym_DOLLARor] = ACTIONS(1627), - [anon_sym_DOLLARassignable] = ACTIONS(1627), - [anon_sym_DOLLARembed] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1629), - [anon_sym_TILDE] = ACTIONS(1629), - [anon_sym_PLUS_PLUS] = ACTIONS(1629), - [anon_sym_DASH_DASH] = ACTIONS(1629), - [anon_sym_typeid] = ACTIONS(1627), - [anon_sym_LBRACE_PIPE] = ACTIONS(1629), - [anon_sym_void] = ACTIONS(1627), - [anon_sym_bool] = ACTIONS(1627), - [anon_sym_char] = ACTIONS(1627), - [anon_sym_ichar] = ACTIONS(1627), - [anon_sym_short] = ACTIONS(1627), - [anon_sym_ushort] = ACTIONS(1627), - [anon_sym_uint] = ACTIONS(1627), - [anon_sym_long] = ACTIONS(1627), - [anon_sym_ulong] = ACTIONS(1627), - [anon_sym_int128] = ACTIONS(1627), - [anon_sym_uint128] = ACTIONS(1627), - [anon_sym_float] = ACTIONS(1627), - [anon_sym_double] = ACTIONS(1627), - [anon_sym_float16] = ACTIONS(1627), - [anon_sym_bfloat16] = ACTIONS(1627), - [anon_sym_float128] = ACTIONS(1627), - [anon_sym_iptr] = ACTIONS(1627), - [anon_sym_uptr] = ACTIONS(1627), - [anon_sym_isz] = ACTIONS(1627), - [anon_sym_usz] = ACTIONS(1627), - [anon_sym_anyfault] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_DOLLARtypeof] = ACTIONS(1627), - [anon_sym_DOLLARtypefrom] = ACTIONS(1627), - [anon_sym_DOLLARvatype] = ACTIONS(1627), - [anon_sym_DOLLARevaltype] = ACTIONS(1627), - [sym_real_literal] = ACTIONS(1629), - }, - [509] = { - [sym_line_comment] = STATE(509), - [sym_doc_comment] = STATE(509), - [sym_block_comment] = STATE(509), - [sym_ident] = ACTIONS(1619), - [sym_integer_literal] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_BQUOTE] = ACTIONS(1621), - [sym_bytes_literal] = ACTIONS(1621), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1619), - [sym_at_ident] = ACTIONS(1621), - [sym_hash_ident] = ACTIONS(1621), - [sym_type_ident] = ACTIONS(1621), - [sym_ct_type_ident] = ACTIONS(1621), - [sym_const_ident] = ACTIONS(1619), - [sym_builtin] = ACTIONS(1621), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_static] = ACTIONS(1619), - [anon_sym_tlocal] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_fn] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1619), - [anon_sym_const] = ACTIONS(1619), - [anon_sym_var] = ACTIONS(1619), - [anon_sym_return] = ACTIONS(1619), - [anon_sym_continue] = ACTIONS(1619), - [anon_sym_break] = ACTIONS(1619), - [anon_sym_defer] = ACTIONS(1619), - [anon_sym_assert] = ACTIONS(1619), - [anon_sym_nextcase] = ACTIONS(1619), - [anon_sym_switch] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1619), - [anon_sym_for] = ACTIONS(1619), - [anon_sym_foreach] = ACTIONS(1619), - [anon_sym_foreach_r] = ACTIONS(1619), - [anon_sym_while] = ACTIONS(1619), - [anon_sym_do] = ACTIONS(1619), - [anon_sym_int] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_asm] = ACTIONS(1619), - [anon_sym_DOLLARassert] = ACTIONS(1619), - [anon_sym_DOLLARerror] = ACTIONS(1619), - [anon_sym_DOLLARecho] = ACTIONS(1619), - [anon_sym_DOLLARif] = ACTIONS(1619), - [anon_sym_DOLLARendif] = ACTIONS(1619), - [anon_sym_DOLLARelse] = ACTIONS(1619), - [anon_sym_DOLLARswitch] = ACTIONS(1619), - [anon_sym_DOLLARfor] = ACTIONS(1619), - [anon_sym_DOLLARforeach] = ACTIONS(1619), - [anon_sym_DOLLARalignof] = ACTIONS(1619), - [anon_sym_DOLLARextnameof] = ACTIONS(1619), - [anon_sym_DOLLARnameof] = ACTIONS(1619), - [anon_sym_DOLLARoffsetof] = ACTIONS(1619), - [anon_sym_DOLLARqnameof] = ACTIONS(1619), - [anon_sym_DOLLAReval] = ACTIONS(1619), - [anon_sym_DOLLARdefined] = ACTIONS(1619), - [anon_sym_DOLLARsizeof] = ACTIONS(1619), - [anon_sym_DOLLARstringify] = ACTIONS(1619), - [anon_sym_DOLLARis_const] = ACTIONS(1619), - [anon_sym_DOLLARvaconst] = ACTIONS(1619), - [anon_sym_DOLLARvaarg] = ACTIONS(1619), - [anon_sym_DOLLARvaref] = ACTIONS(1619), - [anon_sym_DOLLARvaexpr] = ACTIONS(1619), - [anon_sym_true] = ACTIONS(1619), - [anon_sym_false] = ACTIONS(1619), - [anon_sym_null] = ACTIONS(1619), - [anon_sym_DOLLARvacount] = ACTIONS(1619), - [anon_sym_DOLLARfeature] = ACTIONS(1619), - [anon_sym_DOLLARand] = ACTIONS(1619), - [anon_sym_DOLLARor] = ACTIONS(1619), - [anon_sym_DOLLARassignable] = ACTIONS(1619), - [anon_sym_DOLLARembed] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_typeid] = ACTIONS(1619), - [anon_sym_LBRACE_PIPE] = ACTIONS(1621), - [anon_sym_void] = ACTIONS(1619), - [anon_sym_bool] = ACTIONS(1619), - [anon_sym_char] = ACTIONS(1619), - [anon_sym_ichar] = ACTIONS(1619), - [anon_sym_short] = ACTIONS(1619), - [anon_sym_ushort] = ACTIONS(1619), - [anon_sym_uint] = ACTIONS(1619), - [anon_sym_long] = ACTIONS(1619), - [anon_sym_ulong] = ACTIONS(1619), - [anon_sym_int128] = ACTIONS(1619), - [anon_sym_uint128] = ACTIONS(1619), - [anon_sym_float] = ACTIONS(1619), - [anon_sym_double] = ACTIONS(1619), - [anon_sym_float16] = ACTIONS(1619), - [anon_sym_bfloat16] = ACTIONS(1619), - [anon_sym_float128] = ACTIONS(1619), - [anon_sym_iptr] = ACTIONS(1619), - [anon_sym_uptr] = ACTIONS(1619), - [anon_sym_isz] = ACTIONS(1619), - [anon_sym_usz] = ACTIONS(1619), - [anon_sym_anyfault] = ACTIONS(1619), - [anon_sym_any] = ACTIONS(1619), - [anon_sym_DOLLARtypeof] = ACTIONS(1619), - [anon_sym_DOLLARtypefrom] = ACTIONS(1619), - [anon_sym_DOLLARvatype] = ACTIONS(1619), - [anon_sym_DOLLARevaltype] = ACTIONS(1619), - [sym_real_literal] = ACTIONS(1621), - }, - [510] = { - [sym_line_comment] = STATE(510), - [sym_doc_comment] = STATE(510), - [sym_block_comment] = STATE(510), - [sym_ident] = ACTIONS(1607), - [sym_integer_literal] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1609), - [anon_sym_BQUOTE] = ACTIONS(1609), - [sym_bytes_literal] = ACTIONS(1609), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1607), - [sym_at_ident] = ACTIONS(1609), - [sym_hash_ident] = ACTIONS(1609), - [sym_type_ident] = ACTIONS(1609), - [sym_ct_type_ident] = ACTIONS(1609), - [sym_const_ident] = ACTIONS(1607), - [sym_builtin] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1607), - [anon_sym_tlocal] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_fn] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [anon_sym_var] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_defer] = ACTIONS(1607), - [anon_sym_assert] = ACTIONS(1607), - [anon_sym_nextcase] = ACTIONS(1607), - [anon_sym_switch] = ACTIONS(1607), - [anon_sym_AMP_AMP] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_foreach] = ACTIONS(1607), - [anon_sym_foreach_r] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [anon_sym_do] = ACTIONS(1607), - [anon_sym_int] = ACTIONS(1607), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1609), - [anon_sym_asm] = ACTIONS(1607), - [anon_sym_DOLLARassert] = ACTIONS(1607), - [anon_sym_DOLLARerror] = ACTIONS(1607), - [anon_sym_DOLLARecho] = ACTIONS(1607), - [anon_sym_DOLLARif] = ACTIONS(1607), - [anon_sym_DOLLARendif] = ACTIONS(1607), - [anon_sym_DOLLARelse] = ACTIONS(1607), - [anon_sym_DOLLARswitch] = ACTIONS(1607), - [anon_sym_DOLLARfor] = ACTIONS(1607), - [anon_sym_DOLLARforeach] = ACTIONS(1607), - [anon_sym_DOLLARalignof] = ACTIONS(1607), - [anon_sym_DOLLARextnameof] = ACTIONS(1607), - [anon_sym_DOLLARnameof] = ACTIONS(1607), - [anon_sym_DOLLARoffsetof] = ACTIONS(1607), - [anon_sym_DOLLARqnameof] = ACTIONS(1607), - [anon_sym_DOLLAReval] = ACTIONS(1607), - [anon_sym_DOLLARdefined] = ACTIONS(1607), - [anon_sym_DOLLARsizeof] = ACTIONS(1607), - [anon_sym_DOLLARstringify] = ACTIONS(1607), - [anon_sym_DOLLARis_const] = ACTIONS(1607), - [anon_sym_DOLLARvaconst] = ACTIONS(1607), - [anon_sym_DOLLARvaarg] = ACTIONS(1607), - [anon_sym_DOLLARvaref] = ACTIONS(1607), - [anon_sym_DOLLARvaexpr] = ACTIONS(1607), - [anon_sym_true] = ACTIONS(1607), - [anon_sym_false] = ACTIONS(1607), - [anon_sym_null] = ACTIONS(1607), - [anon_sym_DOLLARvacount] = ACTIONS(1607), - [anon_sym_DOLLARfeature] = ACTIONS(1607), - [anon_sym_DOLLARand] = ACTIONS(1607), - [anon_sym_DOLLARor] = ACTIONS(1607), - [anon_sym_DOLLARassignable] = ACTIONS(1607), - [anon_sym_DOLLARembed] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_TILDE] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym_typeid] = ACTIONS(1607), - [anon_sym_LBRACE_PIPE] = ACTIONS(1609), - [anon_sym_void] = ACTIONS(1607), - [anon_sym_bool] = ACTIONS(1607), - [anon_sym_char] = ACTIONS(1607), - [anon_sym_ichar] = ACTIONS(1607), - [anon_sym_short] = ACTIONS(1607), - [anon_sym_ushort] = ACTIONS(1607), - [anon_sym_uint] = ACTIONS(1607), - [anon_sym_long] = ACTIONS(1607), - [anon_sym_ulong] = ACTIONS(1607), - [anon_sym_int128] = ACTIONS(1607), - [anon_sym_uint128] = ACTIONS(1607), - [anon_sym_float] = ACTIONS(1607), - [anon_sym_double] = ACTIONS(1607), - [anon_sym_float16] = ACTIONS(1607), - [anon_sym_bfloat16] = ACTIONS(1607), - [anon_sym_float128] = ACTIONS(1607), - [anon_sym_iptr] = ACTIONS(1607), - [anon_sym_uptr] = ACTIONS(1607), - [anon_sym_isz] = ACTIONS(1607), - [anon_sym_usz] = ACTIONS(1607), - [anon_sym_anyfault] = ACTIONS(1607), - [anon_sym_any] = ACTIONS(1607), - [anon_sym_DOLLARtypeof] = ACTIONS(1607), - [anon_sym_DOLLARtypefrom] = ACTIONS(1607), - [anon_sym_DOLLARvatype] = ACTIONS(1607), - [anon_sym_DOLLARevaltype] = ACTIONS(1607), - [sym_real_literal] = ACTIONS(1609), - }, - [511] = { - [sym_line_comment] = STATE(511), - [sym_doc_comment] = STATE(511), - [sym_block_comment] = STATE(511), - [sym_ident] = ACTIONS(1571), - [sym_integer_literal] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_BQUOTE] = ACTIONS(1573), - [sym_bytes_literal] = ACTIONS(1573), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1571), - [sym_at_ident] = ACTIONS(1573), - [sym_hash_ident] = ACTIONS(1573), - [sym_type_ident] = ACTIONS(1573), - [sym_ct_type_ident] = ACTIONS(1573), - [sym_const_ident] = ACTIONS(1571), - [sym_builtin] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_static] = ACTIONS(1571), - [anon_sym_tlocal] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_fn] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_const] = ACTIONS(1571), - [anon_sym_var] = ACTIONS(1571), - [anon_sym_return] = ACTIONS(1571), - [anon_sym_continue] = ACTIONS(1571), - [anon_sym_break] = ACTIONS(1571), - [anon_sym_defer] = ACTIONS(1571), - [anon_sym_assert] = ACTIONS(1571), - [anon_sym_nextcase] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1571), - [anon_sym_AMP_AMP] = ACTIONS(1573), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_for] = ACTIONS(1571), - [anon_sym_foreach] = ACTIONS(1571), - [anon_sym_foreach_r] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1571), - [anon_sym_do] = ACTIONS(1571), - [anon_sym_int] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_asm] = ACTIONS(1571), - [anon_sym_DOLLARassert] = ACTIONS(1571), - [anon_sym_DOLLARerror] = ACTIONS(1571), - [anon_sym_DOLLARecho] = ACTIONS(1571), - [anon_sym_DOLLARif] = ACTIONS(1571), - [anon_sym_DOLLARendif] = ACTIONS(1571), - [anon_sym_DOLLARelse] = ACTIONS(1571), - [anon_sym_DOLLARswitch] = ACTIONS(1571), - [anon_sym_DOLLARfor] = ACTIONS(1571), - [anon_sym_DOLLARforeach] = ACTIONS(1571), - [anon_sym_DOLLARalignof] = ACTIONS(1571), - [anon_sym_DOLLARextnameof] = ACTIONS(1571), - [anon_sym_DOLLARnameof] = ACTIONS(1571), - [anon_sym_DOLLARoffsetof] = ACTIONS(1571), - [anon_sym_DOLLARqnameof] = ACTIONS(1571), - [anon_sym_DOLLAReval] = ACTIONS(1571), - [anon_sym_DOLLARdefined] = ACTIONS(1571), - [anon_sym_DOLLARsizeof] = ACTIONS(1571), - [anon_sym_DOLLARstringify] = ACTIONS(1571), - [anon_sym_DOLLARis_const] = ACTIONS(1571), - [anon_sym_DOLLARvaconst] = ACTIONS(1571), - [anon_sym_DOLLARvaarg] = ACTIONS(1571), - [anon_sym_DOLLARvaref] = ACTIONS(1571), - [anon_sym_DOLLARvaexpr] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [anon_sym_DOLLARvacount] = ACTIONS(1571), - [anon_sym_DOLLARfeature] = ACTIONS(1571), - [anon_sym_DOLLARand] = ACTIONS(1571), - [anon_sym_DOLLARor] = ACTIONS(1571), - [anon_sym_DOLLARassignable] = ACTIONS(1571), - [anon_sym_DOLLARembed] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_PLUS_PLUS] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1573), - [anon_sym_typeid] = ACTIONS(1571), - [anon_sym_LBRACE_PIPE] = ACTIONS(1573), - [anon_sym_void] = ACTIONS(1571), - [anon_sym_bool] = ACTIONS(1571), - [anon_sym_char] = ACTIONS(1571), - [anon_sym_ichar] = ACTIONS(1571), - [anon_sym_short] = ACTIONS(1571), - [anon_sym_ushort] = ACTIONS(1571), - [anon_sym_uint] = ACTIONS(1571), - [anon_sym_long] = ACTIONS(1571), - [anon_sym_ulong] = ACTIONS(1571), - [anon_sym_int128] = ACTIONS(1571), - [anon_sym_uint128] = ACTIONS(1571), - [anon_sym_float] = ACTIONS(1571), - [anon_sym_double] = ACTIONS(1571), - [anon_sym_float16] = ACTIONS(1571), - [anon_sym_bfloat16] = ACTIONS(1571), - [anon_sym_float128] = ACTIONS(1571), - [anon_sym_iptr] = ACTIONS(1571), - [anon_sym_uptr] = ACTIONS(1571), - [anon_sym_isz] = ACTIONS(1571), - [anon_sym_usz] = ACTIONS(1571), - [anon_sym_anyfault] = ACTIONS(1571), - [anon_sym_any] = ACTIONS(1571), - [anon_sym_DOLLARtypeof] = ACTIONS(1571), - [anon_sym_DOLLARtypefrom] = ACTIONS(1571), - [anon_sym_DOLLARvatype] = ACTIONS(1571), - [anon_sym_DOLLARevaltype] = ACTIONS(1571), - [sym_real_literal] = ACTIONS(1573), - }, - [512] = { - [sym_line_comment] = STATE(512), - [sym_doc_comment] = STATE(512), - [sym_block_comment] = STATE(512), - [sym_ident] = ACTIONS(1523), - [sym_integer_literal] = ACTIONS(1525), - [anon_sym_SQUOTE] = ACTIONS(1525), - [anon_sym_DQUOTE] = ACTIONS(1525), - [anon_sym_BQUOTE] = ACTIONS(1525), - [sym_bytes_literal] = ACTIONS(1525), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1523), - [sym_at_ident] = ACTIONS(1525), - [sym_hash_ident] = ACTIONS(1525), - [sym_type_ident] = ACTIONS(1525), - [sym_ct_type_ident] = ACTIONS(1525), - [sym_const_ident] = ACTIONS(1523), - [sym_builtin] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_tlocal] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_fn] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_var] = ACTIONS(1523), - [anon_sym_return] = ACTIONS(1523), - [anon_sym_continue] = ACTIONS(1523), - [anon_sym_break] = ACTIONS(1523), - [anon_sym_defer] = ACTIONS(1523), - [anon_sym_assert] = ACTIONS(1523), - [anon_sym_nextcase] = ACTIONS(1523), - [anon_sym_switch] = ACTIONS(1523), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_if] = ACTIONS(1523), - [anon_sym_for] = ACTIONS(1523), - [anon_sym_foreach] = ACTIONS(1523), - [anon_sym_foreach_r] = ACTIONS(1523), - [anon_sym_while] = ACTIONS(1523), - [anon_sym_do] = ACTIONS(1523), - [anon_sym_int] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1523), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_asm] = ACTIONS(1523), - [anon_sym_DOLLARassert] = ACTIONS(1523), - [anon_sym_DOLLARerror] = ACTIONS(1523), - [anon_sym_DOLLARecho] = ACTIONS(1523), - [anon_sym_DOLLARif] = ACTIONS(1523), - [anon_sym_DOLLARendif] = ACTIONS(1523), - [anon_sym_DOLLARelse] = ACTIONS(1523), - [anon_sym_DOLLARswitch] = ACTIONS(1523), - [anon_sym_DOLLARfor] = ACTIONS(1523), - [anon_sym_DOLLARforeach] = ACTIONS(1523), - [anon_sym_DOLLARalignof] = ACTIONS(1523), - [anon_sym_DOLLARextnameof] = ACTIONS(1523), - [anon_sym_DOLLARnameof] = ACTIONS(1523), - [anon_sym_DOLLARoffsetof] = ACTIONS(1523), - [anon_sym_DOLLARqnameof] = ACTIONS(1523), - [anon_sym_DOLLAReval] = ACTIONS(1523), - [anon_sym_DOLLARdefined] = ACTIONS(1523), - [anon_sym_DOLLARsizeof] = ACTIONS(1523), - [anon_sym_DOLLARstringify] = ACTIONS(1523), - [anon_sym_DOLLARis_const] = ACTIONS(1523), - [anon_sym_DOLLARvaconst] = ACTIONS(1523), - [anon_sym_DOLLARvaarg] = ACTIONS(1523), - [anon_sym_DOLLARvaref] = ACTIONS(1523), - [anon_sym_DOLLARvaexpr] = ACTIONS(1523), - [anon_sym_true] = ACTIONS(1523), - [anon_sym_false] = ACTIONS(1523), - [anon_sym_null] = ACTIONS(1523), - [anon_sym_DOLLARvacount] = ACTIONS(1523), - [anon_sym_DOLLARfeature] = ACTIONS(1523), - [anon_sym_DOLLARand] = ACTIONS(1523), - [anon_sym_DOLLARor] = ACTIONS(1523), - [anon_sym_DOLLARassignable] = ACTIONS(1523), - [anon_sym_DOLLARembed] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1525), - [anon_sym_TILDE] = ACTIONS(1525), - [anon_sym_PLUS_PLUS] = ACTIONS(1525), - [anon_sym_DASH_DASH] = ACTIONS(1525), - [anon_sym_typeid] = ACTIONS(1523), - [anon_sym_LBRACE_PIPE] = ACTIONS(1525), - [anon_sym_void] = ACTIONS(1523), - [anon_sym_bool] = ACTIONS(1523), - [anon_sym_char] = ACTIONS(1523), - [anon_sym_ichar] = ACTIONS(1523), - [anon_sym_short] = ACTIONS(1523), - [anon_sym_ushort] = ACTIONS(1523), - [anon_sym_uint] = ACTIONS(1523), - [anon_sym_long] = ACTIONS(1523), - [anon_sym_ulong] = ACTIONS(1523), - [anon_sym_int128] = ACTIONS(1523), - [anon_sym_uint128] = ACTIONS(1523), - [anon_sym_float] = ACTIONS(1523), - [anon_sym_double] = ACTIONS(1523), - [anon_sym_float16] = ACTIONS(1523), - [anon_sym_bfloat16] = ACTIONS(1523), - [anon_sym_float128] = ACTIONS(1523), - [anon_sym_iptr] = ACTIONS(1523), - [anon_sym_uptr] = ACTIONS(1523), - [anon_sym_isz] = ACTIONS(1523), - [anon_sym_usz] = ACTIONS(1523), - [anon_sym_anyfault] = ACTIONS(1523), - [anon_sym_any] = ACTIONS(1523), - [anon_sym_DOLLARtypeof] = ACTIONS(1523), - [anon_sym_DOLLARtypefrom] = ACTIONS(1523), - [anon_sym_DOLLARvatype] = ACTIONS(1523), - [anon_sym_DOLLARevaltype] = ACTIONS(1523), - [sym_real_literal] = ACTIONS(1525), - }, - [513] = { - [sym_line_comment] = STATE(513), - [sym_doc_comment] = STATE(513), - [sym_block_comment] = STATE(513), - [sym_ident] = ACTIONS(1499), - [sym_integer_literal] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1501), - [anon_sym_BQUOTE] = ACTIONS(1501), - [sym_bytes_literal] = ACTIONS(1501), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1499), - [sym_at_ident] = ACTIONS(1501), - [sym_hash_ident] = ACTIONS(1501), - [sym_type_ident] = ACTIONS(1501), - [sym_ct_type_ident] = ACTIONS(1501), - [sym_const_ident] = ACTIONS(1499), - [sym_builtin] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_static] = ACTIONS(1499), - [anon_sym_tlocal] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1501), - [anon_sym_fn] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_var] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_defer] = ACTIONS(1499), - [anon_sym_assert] = ACTIONS(1499), - [anon_sym_nextcase] = ACTIONS(1499), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_foreach] = ACTIONS(1499), - [anon_sym_foreach_r] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_do] = ACTIONS(1499), - [anon_sym_int] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_asm] = ACTIONS(1499), - [anon_sym_DOLLARassert] = ACTIONS(1499), - [anon_sym_DOLLARerror] = ACTIONS(1499), - [anon_sym_DOLLARecho] = ACTIONS(1499), - [anon_sym_DOLLARif] = ACTIONS(1499), - [anon_sym_DOLLARendif] = ACTIONS(1499), - [anon_sym_DOLLARelse] = ACTIONS(1499), - [anon_sym_DOLLARswitch] = ACTIONS(1499), - [anon_sym_DOLLARfor] = ACTIONS(1499), - [anon_sym_DOLLARforeach] = ACTIONS(1499), - [anon_sym_DOLLARalignof] = ACTIONS(1499), - [anon_sym_DOLLARextnameof] = ACTIONS(1499), - [anon_sym_DOLLARnameof] = ACTIONS(1499), - [anon_sym_DOLLARoffsetof] = ACTIONS(1499), - [anon_sym_DOLLARqnameof] = ACTIONS(1499), - [anon_sym_DOLLAReval] = ACTIONS(1499), - [anon_sym_DOLLARdefined] = ACTIONS(1499), - [anon_sym_DOLLARsizeof] = ACTIONS(1499), - [anon_sym_DOLLARstringify] = ACTIONS(1499), - [anon_sym_DOLLARis_const] = ACTIONS(1499), - [anon_sym_DOLLARvaconst] = ACTIONS(1499), - [anon_sym_DOLLARvaarg] = ACTIONS(1499), - [anon_sym_DOLLARvaref] = ACTIONS(1499), - [anon_sym_DOLLARvaexpr] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [anon_sym_DOLLARvacount] = ACTIONS(1499), - [anon_sym_DOLLARfeature] = ACTIONS(1499), - [anon_sym_DOLLARand] = ACTIONS(1499), - [anon_sym_DOLLARor] = ACTIONS(1499), - [anon_sym_DOLLARassignable] = ACTIONS(1499), - [anon_sym_DOLLARembed] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_TILDE] = ACTIONS(1501), - [anon_sym_PLUS_PLUS] = ACTIONS(1501), - [anon_sym_DASH_DASH] = ACTIONS(1501), - [anon_sym_typeid] = ACTIONS(1499), - [anon_sym_LBRACE_PIPE] = ACTIONS(1501), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_bool] = ACTIONS(1499), - [anon_sym_char] = ACTIONS(1499), - [anon_sym_ichar] = ACTIONS(1499), - [anon_sym_short] = ACTIONS(1499), - [anon_sym_ushort] = ACTIONS(1499), - [anon_sym_uint] = ACTIONS(1499), - [anon_sym_long] = ACTIONS(1499), - [anon_sym_ulong] = ACTIONS(1499), - [anon_sym_int128] = ACTIONS(1499), - [anon_sym_uint128] = ACTIONS(1499), - [anon_sym_float] = ACTIONS(1499), - [anon_sym_double] = ACTIONS(1499), - [anon_sym_float16] = ACTIONS(1499), - [anon_sym_bfloat16] = ACTIONS(1499), - [anon_sym_float128] = ACTIONS(1499), - [anon_sym_iptr] = ACTIONS(1499), - [anon_sym_uptr] = ACTIONS(1499), - [anon_sym_isz] = ACTIONS(1499), - [anon_sym_usz] = ACTIONS(1499), - [anon_sym_anyfault] = ACTIONS(1499), - [anon_sym_any] = ACTIONS(1499), - [anon_sym_DOLLARtypeof] = ACTIONS(1499), - [anon_sym_DOLLARtypefrom] = ACTIONS(1499), - [anon_sym_DOLLARvatype] = ACTIONS(1499), - [anon_sym_DOLLARevaltype] = ACTIONS(1499), - [sym_real_literal] = ACTIONS(1501), - }, - [514] = { - [sym_line_comment] = STATE(514), - [sym_doc_comment] = STATE(514), - [sym_block_comment] = STATE(514), - [sym_ident] = ACTIONS(1471), - [sym_integer_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1473), - [anon_sym_BQUOTE] = ACTIONS(1473), - [sym_bytes_literal] = ACTIONS(1473), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1471), - [sym_at_ident] = ACTIONS(1473), - [sym_hash_ident] = ACTIONS(1473), - [sym_type_ident] = ACTIONS(1473), - [sym_ct_type_ident] = ACTIONS(1473), - [sym_const_ident] = ACTIONS(1471), - [sym_builtin] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_tlocal] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1473), - [anon_sym_fn] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_const] = ACTIONS(1471), - [anon_sym_var] = ACTIONS(1471), - [anon_sym_return] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1471), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_defer] = ACTIONS(1471), - [anon_sym_assert] = ACTIONS(1471), - [anon_sym_nextcase] = ACTIONS(1471), - [anon_sym_switch] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1471), - [anon_sym_for] = ACTIONS(1471), - [anon_sym_foreach] = ACTIONS(1471), - [anon_sym_foreach_r] = ACTIONS(1471), - [anon_sym_while] = ACTIONS(1471), - [anon_sym_do] = ACTIONS(1471), - [anon_sym_int] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_asm] = ACTIONS(1471), - [anon_sym_DOLLARassert] = ACTIONS(1471), - [anon_sym_DOLLARerror] = ACTIONS(1471), - [anon_sym_DOLLARecho] = ACTIONS(1471), - [anon_sym_DOLLARif] = ACTIONS(1471), - [anon_sym_DOLLARendif] = ACTIONS(1471), - [anon_sym_DOLLARelse] = ACTIONS(1471), - [anon_sym_DOLLARswitch] = ACTIONS(1471), - [anon_sym_DOLLARfor] = ACTIONS(1471), - [anon_sym_DOLLARforeach] = ACTIONS(1471), - [anon_sym_DOLLARalignof] = ACTIONS(1471), - [anon_sym_DOLLARextnameof] = ACTIONS(1471), - [anon_sym_DOLLARnameof] = ACTIONS(1471), - [anon_sym_DOLLARoffsetof] = ACTIONS(1471), - [anon_sym_DOLLARqnameof] = ACTIONS(1471), - [anon_sym_DOLLAReval] = ACTIONS(1471), - [anon_sym_DOLLARdefined] = ACTIONS(1471), - [anon_sym_DOLLARsizeof] = ACTIONS(1471), - [anon_sym_DOLLARstringify] = ACTIONS(1471), - [anon_sym_DOLLARis_const] = ACTIONS(1471), - [anon_sym_DOLLARvaconst] = ACTIONS(1471), - [anon_sym_DOLLARvaarg] = ACTIONS(1471), - [anon_sym_DOLLARvaref] = ACTIONS(1471), - [anon_sym_DOLLARvaexpr] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1471), - [anon_sym_false] = ACTIONS(1471), - [anon_sym_null] = ACTIONS(1471), - [anon_sym_DOLLARvacount] = ACTIONS(1471), - [anon_sym_DOLLARfeature] = ACTIONS(1471), - [anon_sym_DOLLARand] = ACTIONS(1471), - [anon_sym_DOLLARor] = ACTIONS(1471), - [anon_sym_DOLLARassignable] = ACTIONS(1471), - [anon_sym_DOLLARembed] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1473), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), - [anon_sym_typeid] = ACTIONS(1471), - [anon_sym_LBRACE_PIPE] = ACTIONS(1473), - [anon_sym_void] = ACTIONS(1471), - [anon_sym_bool] = ACTIONS(1471), - [anon_sym_char] = ACTIONS(1471), - [anon_sym_ichar] = ACTIONS(1471), - [anon_sym_short] = ACTIONS(1471), - [anon_sym_ushort] = ACTIONS(1471), - [anon_sym_uint] = ACTIONS(1471), - [anon_sym_long] = ACTIONS(1471), - [anon_sym_ulong] = ACTIONS(1471), - [anon_sym_int128] = ACTIONS(1471), - [anon_sym_uint128] = ACTIONS(1471), - [anon_sym_float] = ACTIONS(1471), - [anon_sym_double] = ACTIONS(1471), - [anon_sym_float16] = ACTIONS(1471), - [anon_sym_bfloat16] = ACTIONS(1471), - [anon_sym_float128] = ACTIONS(1471), - [anon_sym_iptr] = ACTIONS(1471), - [anon_sym_uptr] = ACTIONS(1471), - [anon_sym_isz] = ACTIONS(1471), - [anon_sym_usz] = ACTIONS(1471), - [anon_sym_anyfault] = ACTIONS(1471), - [anon_sym_any] = ACTIONS(1471), - [anon_sym_DOLLARtypeof] = ACTIONS(1471), - [anon_sym_DOLLARtypefrom] = ACTIONS(1471), - [anon_sym_DOLLARvatype] = ACTIONS(1471), - [anon_sym_DOLLARevaltype] = ACTIONS(1471), - [sym_real_literal] = ACTIONS(1473), - }, - [515] = { - [sym_line_comment] = STATE(515), - [sym_doc_comment] = STATE(515), - [sym_block_comment] = STATE(515), - [sym_ident] = ACTIONS(1475), - [sym_integer_literal] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1477), - [sym_bytes_literal] = ACTIONS(1477), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1475), - [sym_at_ident] = ACTIONS(1477), - [sym_hash_ident] = ACTIONS(1477), - [sym_type_ident] = ACTIONS(1477), - [sym_ct_type_ident] = ACTIONS(1477), - [sym_const_ident] = ACTIONS(1475), - [sym_builtin] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_tlocal] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_fn] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_var] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_defer] = ACTIONS(1475), - [anon_sym_assert] = ACTIONS(1475), - [anon_sym_nextcase] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_foreach] = ACTIONS(1475), - [anon_sym_foreach_r] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_int] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_asm] = ACTIONS(1475), - [anon_sym_DOLLARassert] = ACTIONS(1475), - [anon_sym_DOLLARerror] = ACTIONS(1475), - [anon_sym_DOLLARecho] = ACTIONS(1475), - [anon_sym_DOLLARif] = ACTIONS(1475), - [anon_sym_DOLLARendif] = ACTIONS(1475), - [anon_sym_DOLLARelse] = ACTIONS(1475), - [anon_sym_DOLLARswitch] = ACTIONS(1475), - [anon_sym_DOLLARfor] = ACTIONS(1475), - [anon_sym_DOLLARforeach] = ACTIONS(1475), - [anon_sym_DOLLARalignof] = ACTIONS(1475), - [anon_sym_DOLLARextnameof] = ACTIONS(1475), - [anon_sym_DOLLARnameof] = ACTIONS(1475), - [anon_sym_DOLLARoffsetof] = ACTIONS(1475), - [anon_sym_DOLLARqnameof] = ACTIONS(1475), - [anon_sym_DOLLAReval] = ACTIONS(1475), - [anon_sym_DOLLARdefined] = ACTIONS(1475), - [anon_sym_DOLLARsizeof] = ACTIONS(1475), - [anon_sym_DOLLARstringify] = ACTIONS(1475), - [anon_sym_DOLLARis_const] = ACTIONS(1475), - [anon_sym_DOLLARvaconst] = ACTIONS(1475), - [anon_sym_DOLLARvaarg] = ACTIONS(1475), - [anon_sym_DOLLARvaref] = ACTIONS(1475), - [anon_sym_DOLLARvaexpr] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_DOLLARvacount] = ACTIONS(1475), - [anon_sym_DOLLARfeature] = ACTIONS(1475), - [anon_sym_DOLLARand] = ACTIONS(1475), - [anon_sym_DOLLARor] = ACTIONS(1475), - [anon_sym_DOLLARassignable] = ACTIONS(1475), - [anon_sym_DOLLARembed] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1477), - [anon_sym_DASH_DASH] = ACTIONS(1477), - [anon_sym_typeid] = ACTIONS(1475), - [anon_sym_LBRACE_PIPE] = ACTIONS(1477), - [anon_sym_void] = ACTIONS(1475), - [anon_sym_bool] = ACTIONS(1475), - [anon_sym_char] = ACTIONS(1475), - [anon_sym_ichar] = ACTIONS(1475), - [anon_sym_short] = ACTIONS(1475), - [anon_sym_ushort] = ACTIONS(1475), - [anon_sym_uint] = ACTIONS(1475), - [anon_sym_long] = ACTIONS(1475), - [anon_sym_ulong] = ACTIONS(1475), - [anon_sym_int128] = ACTIONS(1475), - [anon_sym_uint128] = ACTIONS(1475), - [anon_sym_float] = ACTIONS(1475), - [anon_sym_double] = ACTIONS(1475), - [anon_sym_float16] = ACTIONS(1475), - [anon_sym_bfloat16] = ACTIONS(1475), - [anon_sym_float128] = ACTIONS(1475), - [anon_sym_iptr] = ACTIONS(1475), - [anon_sym_uptr] = ACTIONS(1475), - [anon_sym_isz] = ACTIONS(1475), - [anon_sym_usz] = ACTIONS(1475), - [anon_sym_anyfault] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_DOLLARtypeof] = ACTIONS(1475), - [anon_sym_DOLLARtypefrom] = ACTIONS(1475), - [anon_sym_DOLLARvatype] = ACTIONS(1475), - [anon_sym_DOLLARevaltype] = ACTIONS(1475), - [sym_real_literal] = ACTIONS(1477), - }, - [516] = { - [sym_line_comment] = STATE(516), - [sym_doc_comment] = STATE(516), - [sym_block_comment] = STATE(516), - [sym_ident] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1481), - [anon_sym_BQUOTE] = ACTIONS(1481), - [sym_bytes_literal] = ACTIONS(1481), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1479), - [sym_at_ident] = ACTIONS(1481), - [sym_hash_ident] = ACTIONS(1481), - [sym_type_ident] = ACTIONS(1481), - [sym_ct_type_ident] = ACTIONS(1481), - [sym_const_ident] = ACTIONS(1479), - [sym_builtin] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_tlocal] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_fn] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_defer] = ACTIONS(1479), - [anon_sym_assert] = ACTIONS(1479), - [anon_sym_nextcase] = ACTIONS(1479), - [anon_sym_switch] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_foreach] = ACTIONS(1479), - [anon_sym_foreach_r] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_do] = ACTIONS(1479), - [anon_sym_int] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1481), - [anon_sym_asm] = ACTIONS(1479), - [anon_sym_DOLLARassert] = ACTIONS(1479), - [anon_sym_DOLLARerror] = ACTIONS(1479), - [anon_sym_DOLLARecho] = ACTIONS(1479), - [anon_sym_DOLLARif] = ACTIONS(1479), - [anon_sym_DOLLARendif] = ACTIONS(1479), - [anon_sym_DOLLARelse] = ACTIONS(1479), - [anon_sym_DOLLARswitch] = ACTIONS(1479), - [anon_sym_DOLLARfor] = ACTIONS(1479), - [anon_sym_DOLLARforeach] = ACTIONS(1479), - [anon_sym_DOLLARalignof] = ACTIONS(1479), - [anon_sym_DOLLARextnameof] = ACTIONS(1479), - [anon_sym_DOLLARnameof] = ACTIONS(1479), - [anon_sym_DOLLARoffsetof] = ACTIONS(1479), - [anon_sym_DOLLARqnameof] = ACTIONS(1479), - [anon_sym_DOLLAReval] = ACTIONS(1479), - [anon_sym_DOLLARdefined] = ACTIONS(1479), - [anon_sym_DOLLARsizeof] = ACTIONS(1479), - [anon_sym_DOLLARstringify] = ACTIONS(1479), - [anon_sym_DOLLARis_const] = ACTIONS(1479), - [anon_sym_DOLLARvaconst] = ACTIONS(1479), - [anon_sym_DOLLARvaarg] = ACTIONS(1479), - [anon_sym_DOLLARvaref] = ACTIONS(1479), - [anon_sym_DOLLARvaexpr] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1479), - [anon_sym_false] = ACTIONS(1479), - [anon_sym_null] = ACTIONS(1479), - [anon_sym_DOLLARvacount] = ACTIONS(1479), - [anon_sym_DOLLARfeature] = ACTIONS(1479), - [anon_sym_DOLLARand] = ACTIONS(1479), - [anon_sym_DOLLARor] = ACTIONS(1479), - [anon_sym_DOLLARassignable] = ACTIONS(1479), - [anon_sym_DOLLARembed] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1481), - [anon_sym_typeid] = ACTIONS(1479), - [anon_sym_LBRACE_PIPE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1479), - [anon_sym_bool] = ACTIONS(1479), - [anon_sym_char] = ACTIONS(1479), - [anon_sym_ichar] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [anon_sym_ushort] = ACTIONS(1479), - [anon_sym_uint] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_ulong] = ACTIONS(1479), - [anon_sym_int128] = ACTIONS(1479), - [anon_sym_uint128] = ACTIONS(1479), - [anon_sym_float] = ACTIONS(1479), - [anon_sym_double] = ACTIONS(1479), - [anon_sym_float16] = ACTIONS(1479), - [anon_sym_bfloat16] = ACTIONS(1479), - [anon_sym_float128] = ACTIONS(1479), - [anon_sym_iptr] = ACTIONS(1479), - [anon_sym_uptr] = ACTIONS(1479), - [anon_sym_isz] = ACTIONS(1479), - [anon_sym_usz] = ACTIONS(1479), - [anon_sym_anyfault] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_DOLLARtypeof] = ACTIONS(1479), - [anon_sym_DOLLARtypefrom] = ACTIONS(1479), - [anon_sym_DOLLARvatype] = ACTIONS(1479), - [anon_sym_DOLLARevaltype] = ACTIONS(1479), - [sym_real_literal] = ACTIONS(1481), - }, - [517] = { - [sym_line_comment] = STATE(517), - [sym_doc_comment] = STATE(517), - [sym_block_comment] = STATE(517), - [sym_ident] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [anon_sym_BQUOTE] = ACTIONS(1485), - [sym_bytes_literal] = ACTIONS(1485), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1483), - [sym_at_ident] = ACTIONS(1485), - [sym_hash_ident] = ACTIONS(1485), - [sym_type_ident] = ACTIONS(1485), - [sym_ct_type_ident] = ACTIONS(1485), - [sym_const_ident] = ACTIONS(1483), - [sym_builtin] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_tlocal] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_fn] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_var] = ACTIONS(1483), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_defer] = ACTIONS(1483), - [anon_sym_assert] = ACTIONS(1483), - [anon_sym_nextcase] = ACTIONS(1483), - [anon_sym_switch] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_foreach] = ACTIONS(1483), - [anon_sym_foreach_r] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(1483), - [anon_sym_int] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_asm] = ACTIONS(1483), - [anon_sym_DOLLARassert] = ACTIONS(1483), - [anon_sym_DOLLARerror] = ACTIONS(1483), - [anon_sym_DOLLARecho] = ACTIONS(1483), - [anon_sym_DOLLARif] = ACTIONS(1483), - [anon_sym_DOLLARendif] = ACTIONS(1483), - [anon_sym_DOLLARelse] = ACTIONS(1483), - [anon_sym_DOLLARswitch] = ACTIONS(1483), - [anon_sym_DOLLARfor] = ACTIONS(1483), - [anon_sym_DOLLARforeach] = ACTIONS(1483), - [anon_sym_DOLLARalignof] = ACTIONS(1483), - [anon_sym_DOLLARextnameof] = ACTIONS(1483), - [anon_sym_DOLLARnameof] = ACTIONS(1483), - [anon_sym_DOLLARoffsetof] = ACTIONS(1483), - [anon_sym_DOLLARqnameof] = ACTIONS(1483), - [anon_sym_DOLLAReval] = ACTIONS(1483), - [anon_sym_DOLLARdefined] = ACTIONS(1483), - [anon_sym_DOLLARsizeof] = ACTIONS(1483), - [anon_sym_DOLLARstringify] = ACTIONS(1483), - [anon_sym_DOLLARis_const] = ACTIONS(1483), - [anon_sym_DOLLARvaconst] = ACTIONS(1483), - [anon_sym_DOLLARvaarg] = ACTIONS(1483), - [anon_sym_DOLLARvaref] = ACTIONS(1483), - [anon_sym_DOLLARvaexpr] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [anon_sym_DOLLARvacount] = ACTIONS(1483), - [anon_sym_DOLLARfeature] = ACTIONS(1483), - [anon_sym_DOLLARand] = ACTIONS(1483), - [anon_sym_DOLLARor] = ACTIONS(1483), - [anon_sym_DOLLARassignable] = ACTIONS(1483), - [anon_sym_DOLLARembed] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_TILDE] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_DASH_DASH] = ACTIONS(1485), - [anon_sym_typeid] = ACTIONS(1483), - [anon_sym_LBRACE_PIPE] = ACTIONS(1485), - [anon_sym_void] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_ichar] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [anon_sym_ushort] = ACTIONS(1483), - [anon_sym_uint] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_ulong] = ACTIONS(1483), - [anon_sym_int128] = ACTIONS(1483), - [anon_sym_uint128] = ACTIONS(1483), - [anon_sym_float] = ACTIONS(1483), - [anon_sym_double] = ACTIONS(1483), - [anon_sym_float16] = ACTIONS(1483), - [anon_sym_bfloat16] = ACTIONS(1483), - [anon_sym_float128] = ACTIONS(1483), - [anon_sym_iptr] = ACTIONS(1483), - [anon_sym_uptr] = ACTIONS(1483), - [anon_sym_isz] = ACTIONS(1483), - [anon_sym_usz] = ACTIONS(1483), - [anon_sym_anyfault] = ACTIONS(1483), - [anon_sym_any] = ACTIONS(1483), - [anon_sym_DOLLARtypeof] = ACTIONS(1483), - [anon_sym_DOLLARtypefrom] = ACTIONS(1483), - [anon_sym_DOLLARvatype] = ACTIONS(1483), - [anon_sym_DOLLARevaltype] = ACTIONS(1483), - [sym_real_literal] = ACTIONS(1485), - }, - [518] = { - [sym_line_comment] = STATE(518), - [sym_doc_comment] = STATE(518), - [sym_block_comment] = STATE(518), - [sym_ident] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_BQUOTE] = ACTIONS(1489), - [sym_bytes_literal] = ACTIONS(1489), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1487), - [sym_at_ident] = ACTIONS(1489), - [sym_hash_ident] = ACTIONS(1489), - [sym_type_ident] = ACTIONS(1489), - [sym_ct_type_ident] = ACTIONS(1489), - [sym_const_ident] = ACTIONS(1487), - [sym_builtin] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_tlocal] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_fn] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_var] = ACTIONS(1487), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_defer] = ACTIONS(1487), - [anon_sym_assert] = ACTIONS(1487), - [anon_sym_nextcase] = ACTIONS(1487), - [anon_sym_switch] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_foreach] = ACTIONS(1487), - [anon_sym_foreach_r] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_do] = ACTIONS(1487), - [anon_sym_int] = ACTIONS(1487), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_asm] = ACTIONS(1487), - [anon_sym_DOLLARassert] = ACTIONS(1487), - [anon_sym_DOLLARerror] = ACTIONS(1487), - [anon_sym_DOLLARecho] = ACTIONS(1487), - [anon_sym_DOLLARif] = ACTIONS(1487), - [anon_sym_DOLLARendif] = ACTIONS(1487), - [anon_sym_DOLLARelse] = ACTIONS(1487), - [anon_sym_DOLLARswitch] = ACTIONS(1487), - [anon_sym_DOLLARfor] = ACTIONS(1487), - [anon_sym_DOLLARforeach] = ACTIONS(1487), - [anon_sym_DOLLARalignof] = ACTIONS(1487), - [anon_sym_DOLLARextnameof] = ACTIONS(1487), - [anon_sym_DOLLARnameof] = ACTIONS(1487), - [anon_sym_DOLLARoffsetof] = ACTIONS(1487), - [anon_sym_DOLLARqnameof] = ACTIONS(1487), - [anon_sym_DOLLAReval] = ACTIONS(1487), - [anon_sym_DOLLARdefined] = ACTIONS(1487), - [anon_sym_DOLLARsizeof] = ACTIONS(1487), - [anon_sym_DOLLARstringify] = ACTIONS(1487), - [anon_sym_DOLLARis_const] = ACTIONS(1487), - [anon_sym_DOLLARvaconst] = ACTIONS(1487), - [anon_sym_DOLLARvaarg] = ACTIONS(1487), - [anon_sym_DOLLARvaref] = ACTIONS(1487), - [anon_sym_DOLLARvaexpr] = ACTIONS(1487), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_null] = ACTIONS(1487), - [anon_sym_DOLLARvacount] = ACTIONS(1487), - [anon_sym_DOLLARfeature] = ACTIONS(1487), - [anon_sym_DOLLARand] = ACTIONS(1487), - [anon_sym_DOLLARor] = ACTIONS(1487), - [anon_sym_DOLLARassignable] = ACTIONS(1487), - [anon_sym_DOLLARembed] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1489), - [anon_sym_typeid] = ACTIONS(1487), - [anon_sym_LBRACE_PIPE] = ACTIONS(1489), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_ichar] = ACTIONS(1487), - [anon_sym_short] = ACTIONS(1487), - [anon_sym_ushort] = ACTIONS(1487), - [anon_sym_uint] = ACTIONS(1487), - [anon_sym_long] = ACTIONS(1487), - [anon_sym_ulong] = ACTIONS(1487), - [anon_sym_int128] = ACTIONS(1487), - [anon_sym_uint128] = ACTIONS(1487), - [anon_sym_float] = ACTIONS(1487), - [anon_sym_double] = ACTIONS(1487), - [anon_sym_float16] = ACTIONS(1487), - [anon_sym_bfloat16] = ACTIONS(1487), - [anon_sym_float128] = ACTIONS(1487), - [anon_sym_iptr] = ACTIONS(1487), - [anon_sym_uptr] = ACTIONS(1487), - [anon_sym_isz] = ACTIONS(1487), - [anon_sym_usz] = ACTIONS(1487), - [anon_sym_anyfault] = ACTIONS(1487), - [anon_sym_any] = ACTIONS(1487), - [anon_sym_DOLLARtypeof] = ACTIONS(1487), - [anon_sym_DOLLARtypefrom] = ACTIONS(1487), - [anon_sym_DOLLARvatype] = ACTIONS(1487), - [anon_sym_DOLLARevaltype] = ACTIONS(1487), - [sym_real_literal] = ACTIONS(1489), - }, - [519] = { - [sym_line_comment] = STATE(519), - [sym_doc_comment] = STATE(519), - [sym_block_comment] = STATE(519), - [sym_ident] = ACTIONS(1507), - [sym_integer_literal] = ACTIONS(1509), - [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(1509), - [anon_sym_BQUOTE] = ACTIONS(1509), - [sym_bytes_literal] = ACTIONS(1509), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1507), - [sym_at_ident] = ACTIONS(1509), - [sym_hash_ident] = ACTIONS(1509), - [sym_type_ident] = ACTIONS(1509), - [sym_ct_type_ident] = ACTIONS(1509), - [sym_const_ident] = ACTIONS(1507), - [sym_builtin] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_static] = ACTIONS(1507), - [anon_sym_tlocal] = ACTIONS(1507), - [anon_sym_SEMI] = ACTIONS(1509), - [anon_sym_fn] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [anon_sym_var] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_defer] = ACTIONS(1507), - [anon_sym_assert] = ACTIONS(1507), - [anon_sym_nextcase] = ACTIONS(1507), - [anon_sym_switch] = ACTIONS(1507), - [anon_sym_AMP_AMP] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_foreach] = ACTIONS(1507), - [anon_sym_foreach_r] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_do] = ACTIONS(1507), - [anon_sym_int] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_asm] = ACTIONS(1507), - [anon_sym_DOLLARassert] = ACTIONS(1507), - [anon_sym_DOLLARerror] = ACTIONS(1507), - [anon_sym_DOLLARecho] = ACTIONS(1507), - [anon_sym_DOLLARif] = ACTIONS(1507), - [anon_sym_DOLLARendif] = ACTIONS(1507), - [anon_sym_DOLLARelse] = ACTIONS(1507), - [anon_sym_DOLLARswitch] = ACTIONS(1507), - [anon_sym_DOLLARfor] = ACTIONS(1507), - [anon_sym_DOLLARforeach] = ACTIONS(1507), - [anon_sym_DOLLARalignof] = ACTIONS(1507), - [anon_sym_DOLLARextnameof] = ACTIONS(1507), - [anon_sym_DOLLARnameof] = ACTIONS(1507), - [anon_sym_DOLLARoffsetof] = ACTIONS(1507), - [anon_sym_DOLLARqnameof] = ACTIONS(1507), - [anon_sym_DOLLAReval] = ACTIONS(1507), - [anon_sym_DOLLARdefined] = ACTIONS(1507), - [anon_sym_DOLLARsizeof] = ACTIONS(1507), - [anon_sym_DOLLARstringify] = ACTIONS(1507), - [anon_sym_DOLLARis_const] = ACTIONS(1507), - [anon_sym_DOLLARvaconst] = ACTIONS(1507), - [anon_sym_DOLLARvaarg] = ACTIONS(1507), - [anon_sym_DOLLARvaref] = ACTIONS(1507), - [anon_sym_DOLLARvaexpr] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [anon_sym_null] = ACTIONS(1507), - [anon_sym_DOLLARvacount] = ACTIONS(1507), - [anon_sym_DOLLARfeature] = ACTIONS(1507), - [anon_sym_DOLLARand] = ACTIONS(1507), - [anon_sym_DOLLARor] = ACTIONS(1507), - [anon_sym_DOLLARassignable] = ACTIONS(1507), - [anon_sym_DOLLARembed] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_TILDE] = ACTIONS(1509), - [anon_sym_PLUS_PLUS] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_typeid] = ACTIONS(1507), - [anon_sym_LBRACE_PIPE] = ACTIONS(1509), - [anon_sym_void] = ACTIONS(1507), - [anon_sym_bool] = ACTIONS(1507), - [anon_sym_char] = ACTIONS(1507), - [anon_sym_ichar] = ACTIONS(1507), - [anon_sym_short] = ACTIONS(1507), - [anon_sym_ushort] = ACTIONS(1507), - [anon_sym_uint] = ACTIONS(1507), - [anon_sym_long] = ACTIONS(1507), - [anon_sym_ulong] = ACTIONS(1507), - [anon_sym_int128] = ACTIONS(1507), - [anon_sym_uint128] = ACTIONS(1507), - [anon_sym_float] = ACTIONS(1507), - [anon_sym_double] = ACTIONS(1507), - [anon_sym_float16] = ACTIONS(1507), - [anon_sym_bfloat16] = ACTIONS(1507), - [anon_sym_float128] = ACTIONS(1507), - [anon_sym_iptr] = ACTIONS(1507), - [anon_sym_uptr] = ACTIONS(1507), - [anon_sym_isz] = ACTIONS(1507), - [anon_sym_usz] = ACTIONS(1507), - [anon_sym_anyfault] = ACTIONS(1507), - [anon_sym_any] = ACTIONS(1507), - [anon_sym_DOLLARtypeof] = ACTIONS(1507), - [anon_sym_DOLLARtypefrom] = ACTIONS(1507), - [anon_sym_DOLLARvatype] = ACTIONS(1507), - [anon_sym_DOLLARevaltype] = ACTIONS(1507), - [sym_real_literal] = ACTIONS(1509), - }, - [520] = { - [sym_line_comment] = STATE(520), - [sym_doc_comment] = STATE(520), - [sym_block_comment] = STATE(520), - [sym_ident] = ACTIONS(1531), - [sym_integer_literal] = ACTIONS(1533), - [anon_sym_SQUOTE] = ACTIONS(1533), - [anon_sym_DQUOTE] = ACTIONS(1533), - [anon_sym_BQUOTE] = ACTIONS(1533), - [sym_bytes_literal] = ACTIONS(1533), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1531), - [sym_at_ident] = ACTIONS(1533), - [sym_hash_ident] = ACTIONS(1533), - [sym_type_ident] = ACTIONS(1533), - [sym_ct_type_ident] = ACTIONS(1533), - [sym_const_ident] = ACTIONS(1531), - [sym_builtin] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1531), - [anon_sym_static] = ACTIONS(1531), - [anon_sym_tlocal] = ACTIONS(1531), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_fn] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_const] = ACTIONS(1531), - [anon_sym_var] = ACTIONS(1531), - [anon_sym_return] = ACTIONS(1531), - [anon_sym_continue] = ACTIONS(1531), - [anon_sym_break] = ACTIONS(1531), - [anon_sym_defer] = ACTIONS(1531), - [anon_sym_assert] = ACTIONS(1531), - [anon_sym_nextcase] = ACTIONS(1531), - [anon_sym_switch] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1531), - [anon_sym_for] = ACTIONS(1531), - [anon_sym_foreach] = ACTIONS(1531), - [anon_sym_foreach_r] = ACTIONS(1531), - [anon_sym_while] = ACTIONS(1531), - [anon_sym_do] = ACTIONS(1531), - [anon_sym_int] = ACTIONS(1531), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_asm] = ACTIONS(1531), - [anon_sym_DOLLARassert] = ACTIONS(1531), - [anon_sym_DOLLARerror] = ACTIONS(1531), - [anon_sym_DOLLARecho] = ACTIONS(1531), - [anon_sym_DOLLARif] = ACTIONS(1531), - [anon_sym_DOLLARendif] = ACTIONS(1531), - [anon_sym_DOLLARelse] = ACTIONS(1531), - [anon_sym_DOLLARswitch] = ACTIONS(1531), - [anon_sym_DOLLARfor] = ACTIONS(1531), - [anon_sym_DOLLARforeach] = ACTIONS(1531), - [anon_sym_DOLLARalignof] = ACTIONS(1531), - [anon_sym_DOLLARextnameof] = ACTIONS(1531), - [anon_sym_DOLLARnameof] = ACTIONS(1531), - [anon_sym_DOLLARoffsetof] = ACTIONS(1531), - [anon_sym_DOLLARqnameof] = ACTIONS(1531), - [anon_sym_DOLLAReval] = ACTIONS(1531), - [anon_sym_DOLLARdefined] = ACTIONS(1531), - [anon_sym_DOLLARsizeof] = ACTIONS(1531), - [anon_sym_DOLLARstringify] = ACTIONS(1531), - [anon_sym_DOLLARis_const] = ACTIONS(1531), - [anon_sym_DOLLARvaconst] = ACTIONS(1531), - [anon_sym_DOLLARvaarg] = ACTIONS(1531), - [anon_sym_DOLLARvaref] = ACTIONS(1531), - [anon_sym_DOLLARvaexpr] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1531), - [anon_sym_false] = ACTIONS(1531), - [anon_sym_null] = ACTIONS(1531), - [anon_sym_DOLLARvacount] = ACTIONS(1531), - [anon_sym_DOLLARfeature] = ACTIONS(1531), - [anon_sym_DOLLARand] = ACTIONS(1531), - [anon_sym_DOLLARor] = ACTIONS(1531), - [anon_sym_DOLLARassignable] = ACTIONS(1531), - [anon_sym_DOLLARembed] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_typeid] = ACTIONS(1531), - [anon_sym_LBRACE_PIPE] = ACTIONS(1533), - [anon_sym_void] = ACTIONS(1531), - [anon_sym_bool] = ACTIONS(1531), - [anon_sym_char] = ACTIONS(1531), - [anon_sym_ichar] = ACTIONS(1531), - [anon_sym_short] = ACTIONS(1531), - [anon_sym_ushort] = ACTIONS(1531), - [anon_sym_uint] = ACTIONS(1531), - [anon_sym_long] = ACTIONS(1531), - [anon_sym_ulong] = ACTIONS(1531), - [anon_sym_int128] = ACTIONS(1531), - [anon_sym_uint128] = ACTIONS(1531), - [anon_sym_float] = ACTIONS(1531), - [anon_sym_double] = ACTIONS(1531), - [anon_sym_float16] = ACTIONS(1531), - [anon_sym_bfloat16] = ACTIONS(1531), - [anon_sym_float128] = ACTIONS(1531), - [anon_sym_iptr] = ACTIONS(1531), - [anon_sym_uptr] = ACTIONS(1531), - [anon_sym_isz] = ACTIONS(1531), - [anon_sym_usz] = ACTIONS(1531), - [anon_sym_anyfault] = ACTIONS(1531), - [anon_sym_any] = ACTIONS(1531), - [anon_sym_DOLLARtypeof] = ACTIONS(1531), - [anon_sym_DOLLARtypefrom] = ACTIONS(1531), - [anon_sym_DOLLARvatype] = ACTIONS(1531), - [anon_sym_DOLLARevaltype] = ACTIONS(1531), - [sym_real_literal] = ACTIONS(1533), - }, - [521] = { - [sym_line_comment] = STATE(521), - [sym_doc_comment] = STATE(521), - [sym_block_comment] = STATE(521), - [sym_ident] = ACTIONS(1539), - [sym_integer_literal] = ACTIONS(1541), - [anon_sym_SQUOTE] = ACTIONS(1541), - [anon_sym_DQUOTE] = ACTIONS(1541), - [anon_sym_BQUOTE] = ACTIONS(1541), - [sym_bytes_literal] = ACTIONS(1541), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1539), - [sym_at_ident] = ACTIONS(1541), - [sym_hash_ident] = ACTIONS(1541), - [sym_type_ident] = ACTIONS(1541), - [sym_ct_type_ident] = ACTIONS(1541), - [sym_const_ident] = ACTIONS(1539), - [sym_builtin] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1539), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_tlocal] = ACTIONS(1539), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_fn] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_defer] = ACTIONS(1539), - [anon_sym_assert] = ACTIONS(1539), - [anon_sym_nextcase] = ACTIONS(1539), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_AMP_AMP] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_foreach] = ACTIONS(1539), - [anon_sym_foreach_r] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_int] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1539), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_asm] = ACTIONS(1539), - [anon_sym_DOLLARassert] = ACTIONS(1539), - [anon_sym_DOLLARerror] = ACTIONS(1539), - [anon_sym_DOLLARecho] = ACTIONS(1539), - [anon_sym_DOLLARif] = ACTIONS(1539), - [anon_sym_DOLLARendif] = ACTIONS(1539), - [anon_sym_DOLLARelse] = ACTIONS(1539), - [anon_sym_DOLLARswitch] = ACTIONS(1539), - [anon_sym_DOLLARfor] = ACTIONS(1539), - [anon_sym_DOLLARforeach] = ACTIONS(1539), - [anon_sym_DOLLARalignof] = ACTIONS(1539), - [anon_sym_DOLLARextnameof] = ACTIONS(1539), - [anon_sym_DOLLARnameof] = ACTIONS(1539), - [anon_sym_DOLLARoffsetof] = ACTIONS(1539), - [anon_sym_DOLLARqnameof] = ACTIONS(1539), - [anon_sym_DOLLAReval] = ACTIONS(1539), - [anon_sym_DOLLARdefined] = ACTIONS(1539), - [anon_sym_DOLLARsizeof] = ACTIONS(1539), - [anon_sym_DOLLARstringify] = ACTIONS(1539), - [anon_sym_DOLLARis_const] = ACTIONS(1539), - [anon_sym_DOLLARvaconst] = ACTIONS(1539), - [anon_sym_DOLLARvaarg] = ACTIONS(1539), - [anon_sym_DOLLARvaref] = ACTIONS(1539), - [anon_sym_DOLLARvaexpr] = ACTIONS(1539), - [anon_sym_true] = ACTIONS(1539), - [anon_sym_false] = ACTIONS(1539), - [anon_sym_null] = ACTIONS(1539), - [anon_sym_DOLLARvacount] = ACTIONS(1539), - [anon_sym_DOLLARfeature] = ACTIONS(1539), - [anon_sym_DOLLARand] = ACTIONS(1539), - [anon_sym_DOLLARor] = ACTIONS(1539), - [anon_sym_DOLLARassignable] = ACTIONS(1539), - [anon_sym_DOLLARembed] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1541), - [anon_sym_DASH_DASH] = ACTIONS(1541), - [anon_sym_typeid] = ACTIONS(1539), - [anon_sym_LBRACE_PIPE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1539), - [anon_sym_bool] = ACTIONS(1539), - [anon_sym_char] = ACTIONS(1539), - [anon_sym_ichar] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [anon_sym_ushort] = ACTIONS(1539), - [anon_sym_uint] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_ulong] = ACTIONS(1539), - [anon_sym_int128] = ACTIONS(1539), - [anon_sym_uint128] = ACTIONS(1539), - [anon_sym_float] = ACTIONS(1539), - [anon_sym_double] = ACTIONS(1539), - [anon_sym_float16] = ACTIONS(1539), - [anon_sym_bfloat16] = ACTIONS(1539), - [anon_sym_float128] = ACTIONS(1539), - [anon_sym_iptr] = ACTIONS(1539), - [anon_sym_uptr] = ACTIONS(1539), - [anon_sym_isz] = ACTIONS(1539), - [anon_sym_usz] = ACTIONS(1539), - [anon_sym_anyfault] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_DOLLARtypeof] = ACTIONS(1539), - [anon_sym_DOLLARtypefrom] = ACTIONS(1539), - [anon_sym_DOLLARvatype] = ACTIONS(1539), - [anon_sym_DOLLARevaltype] = ACTIONS(1539), - [sym_real_literal] = ACTIONS(1541), - }, - [522] = { - [sym_line_comment] = STATE(522), - [sym_doc_comment] = STATE(522), - [sym_block_comment] = STATE(522), - [sym_ident] = ACTIONS(1365), - [sym_integer_literal] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1367), - [sym_bytes_literal] = ACTIONS(1367), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1365), - [sym_at_ident] = ACTIONS(1367), - [sym_hash_ident] = ACTIONS(1367), - [sym_type_ident] = ACTIONS(1367), - [sym_ct_type_ident] = ACTIONS(1367), - [sym_const_ident] = ACTIONS(1365), - [sym_builtin] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_tlocal] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_fn] = ACTIONS(1365), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_var] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_defer] = ACTIONS(1365), - [anon_sym_assert] = ACTIONS(1365), - [anon_sym_nextcase] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_foreach] = ACTIONS(1365), - [anon_sym_foreach_r] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_do] = ACTIONS(1365), - [anon_sym_int] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_asm] = ACTIONS(1365), - [anon_sym_DOLLARassert] = ACTIONS(1365), - [anon_sym_DOLLARerror] = ACTIONS(1365), - [anon_sym_DOLLARecho] = ACTIONS(1365), - [anon_sym_DOLLARif] = ACTIONS(1365), - [anon_sym_DOLLARendif] = ACTIONS(1365), - [anon_sym_DOLLARelse] = ACTIONS(1365), - [anon_sym_DOLLARswitch] = ACTIONS(1365), - [anon_sym_DOLLARfor] = ACTIONS(1365), - [anon_sym_DOLLARforeach] = ACTIONS(1365), - [anon_sym_DOLLARalignof] = ACTIONS(1365), - [anon_sym_DOLLARextnameof] = ACTIONS(1365), - [anon_sym_DOLLARnameof] = ACTIONS(1365), - [anon_sym_DOLLARoffsetof] = ACTIONS(1365), - [anon_sym_DOLLARqnameof] = ACTIONS(1365), - [anon_sym_DOLLAReval] = ACTIONS(1365), - [anon_sym_DOLLARdefined] = ACTIONS(1365), - [anon_sym_DOLLARsizeof] = ACTIONS(1365), - [anon_sym_DOLLARstringify] = ACTIONS(1365), - [anon_sym_DOLLARis_const] = ACTIONS(1365), - [anon_sym_DOLLARvaconst] = ACTIONS(1365), - [anon_sym_DOLLARvaarg] = ACTIONS(1365), - [anon_sym_DOLLARvaref] = ACTIONS(1365), - [anon_sym_DOLLARvaexpr] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1365), - [anon_sym_false] = ACTIONS(1365), - [anon_sym_null] = ACTIONS(1365), - [anon_sym_DOLLARvacount] = ACTIONS(1365), - [anon_sym_DOLLARfeature] = ACTIONS(1365), - [anon_sym_DOLLARand] = ACTIONS(1365), - [anon_sym_DOLLARor] = ACTIONS(1365), - [anon_sym_DOLLARassignable] = ACTIONS(1365), - [anon_sym_DOLLARembed] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_typeid] = ACTIONS(1365), - [anon_sym_LBRACE_PIPE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1365), - [anon_sym_bool] = ACTIONS(1365), - [anon_sym_char] = ACTIONS(1365), - [anon_sym_ichar] = ACTIONS(1365), - [anon_sym_short] = ACTIONS(1365), - [anon_sym_ushort] = ACTIONS(1365), - [anon_sym_uint] = ACTIONS(1365), - [anon_sym_long] = ACTIONS(1365), - [anon_sym_ulong] = ACTIONS(1365), - [anon_sym_int128] = ACTIONS(1365), - [anon_sym_uint128] = ACTIONS(1365), - [anon_sym_float] = ACTIONS(1365), - [anon_sym_double] = ACTIONS(1365), - [anon_sym_float16] = ACTIONS(1365), - [anon_sym_bfloat16] = ACTIONS(1365), - [anon_sym_float128] = ACTIONS(1365), - [anon_sym_iptr] = ACTIONS(1365), - [anon_sym_uptr] = ACTIONS(1365), - [anon_sym_isz] = ACTIONS(1365), - [anon_sym_usz] = ACTIONS(1365), - [anon_sym_anyfault] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1365), - [anon_sym_DOLLARtypeof] = ACTIONS(1365), - [anon_sym_DOLLARtypefrom] = ACTIONS(1365), - [anon_sym_DOLLARvatype] = ACTIONS(1365), - [anon_sym_DOLLARevaltype] = ACTIONS(1365), - [sym_real_literal] = ACTIONS(1367), - }, - [523] = { - [sym_line_comment] = STATE(523), - [sym_doc_comment] = STATE(523), - [sym_block_comment] = STATE(523), - [sym_ident] = ACTIONS(1555), - [sym_integer_literal] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_BQUOTE] = ACTIONS(1557), - [sym_bytes_literal] = ACTIONS(1557), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1555), - [sym_at_ident] = ACTIONS(1557), - [sym_hash_ident] = ACTIONS(1557), - [sym_type_ident] = ACTIONS(1557), - [sym_ct_type_ident] = ACTIONS(1557), - [sym_const_ident] = ACTIONS(1555), - [sym_builtin] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_AMP] = ACTIONS(1555), - [anon_sym_static] = ACTIONS(1555), - [anon_sym_tlocal] = ACTIONS(1555), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_const] = ACTIONS(1555), - [anon_sym_var] = ACTIONS(1555), - [anon_sym_return] = ACTIONS(1555), - [anon_sym_continue] = ACTIONS(1555), - [anon_sym_break] = ACTIONS(1555), - [anon_sym_defer] = ACTIONS(1555), - [anon_sym_assert] = ACTIONS(1555), - [anon_sym_nextcase] = ACTIONS(1555), - [anon_sym_switch] = ACTIONS(1555), - [anon_sym_AMP_AMP] = ACTIONS(1557), - [anon_sym_if] = ACTIONS(1555), - [anon_sym_for] = ACTIONS(1555), - [anon_sym_foreach] = ACTIONS(1555), - [anon_sym_foreach_r] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_do] = ACTIONS(1555), - [anon_sym_int] = ACTIONS(1555), - [anon_sym_PLUS] = ACTIONS(1555), - [anon_sym_DASH] = ACTIONS(1555), - [anon_sym_STAR] = ACTIONS(1557), - [anon_sym_asm] = ACTIONS(1555), - [anon_sym_DOLLARassert] = ACTIONS(1555), - [anon_sym_DOLLARerror] = ACTIONS(1555), - [anon_sym_DOLLARecho] = ACTIONS(1555), - [anon_sym_DOLLARif] = ACTIONS(1555), - [anon_sym_DOLLARendif] = ACTIONS(1555), - [anon_sym_DOLLARelse] = ACTIONS(1555), - [anon_sym_DOLLARswitch] = ACTIONS(1555), - [anon_sym_DOLLARfor] = ACTIONS(1555), - [anon_sym_DOLLARforeach] = ACTIONS(1555), - [anon_sym_DOLLARalignof] = ACTIONS(1555), - [anon_sym_DOLLARextnameof] = ACTIONS(1555), - [anon_sym_DOLLARnameof] = ACTIONS(1555), - [anon_sym_DOLLARoffsetof] = ACTIONS(1555), - [anon_sym_DOLLARqnameof] = ACTIONS(1555), - [anon_sym_DOLLAReval] = ACTIONS(1555), - [anon_sym_DOLLARdefined] = ACTIONS(1555), - [anon_sym_DOLLARsizeof] = ACTIONS(1555), - [anon_sym_DOLLARstringify] = ACTIONS(1555), - [anon_sym_DOLLARis_const] = ACTIONS(1555), - [anon_sym_DOLLARvaconst] = ACTIONS(1555), - [anon_sym_DOLLARvaarg] = ACTIONS(1555), - [anon_sym_DOLLARvaref] = ACTIONS(1555), - [anon_sym_DOLLARvaexpr] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(1555), - [anon_sym_false] = ACTIONS(1555), - [anon_sym_null] = ACTIONS(1555), - [anon_sym_DOLLARvacount] = ACTIONS(1555), - [anon_sym_DOLLARfeature] = ACTIONS(1555), - [anon_sym_DOLLARand] = ACTIONS(1555), - [anon_sym_DOLLARor] = ACTIONS(1555), - [anon_sym_DOLLARassignable] = ACTIONS(1555), - [anon_sym_DOLLARembed] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1557), - [anon_sym_TILDE] = ACTIONS(1557), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [anon_sym_typeid] = ACTIONS(1555), - [anon_sym_LBRACE_PIPE] = ACTIONS(1557), - [anon_sym_void] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [anon_sym_ichar] = ACTIONS(1555), - [anon_sym_short] = ACTIONS(1555), - [anon_sym_ushort] = ACTIONS(1555), - [anon_sym_uint] = ACTIONS(1555), - [anon_sym_long] = ACTIONS(1555), - [anon_sym_ulong] = ACTIONS(1555), - [anon_sym_int128] = ACTIONS(1555), - [anon_sym_uint128] = ACTIONS(1555), - [anon_sym_float] = ACTIONS(1555), - [anon_sym_double] = ACTIONS(1555), - [anon_sym_float16] = ACTIONS(1555), - [anon_sym_bfloat16] = ACTIONS(1555), - [anon_sym_float128] = ACTIONS(1555), - [anon_sym_iptr] = ACTIONS(1555), - [anon_sym_uptr] = ACTIONS(1555), - [anon_sym_isz] = ACTIONS(1555), - [anon_sym_usz] = ACTIONS(1555), - [anon_sym_anyfault] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1555), - [anon_sym_DOLLARtypeof] = ACTIONS(1555), - [anon_sym_DOLLARtypefrom] = ACTIONS(1555), - [anon_sym_DOLLARvatype] = ACTIONS(1555), - [anon_sym_DOLLARevaltype] = ACTIONS(1555), - [sym_real_literal] = ACTIONS(1557), - }, - [524] = { - [sym_line_comment] = STATE(524), - [sym_doc_comment] = STATE(524), - [sym_block_comment] = STATE(524), - [sym_ident] = ACTIONS(1559), - [sym_integer_literal] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_bytes_literal] = ACTIONS(1561), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1559), - [sym_at_ident] = ACTIONS(1561), - [sym_hash_ident] = ACTIONS(1561), - [sym_type_ident] = ACTIONS(1561), - [sym_ct_type_ident] = ACTIONS(1561), - [sym_const_ident] = ACTIONS(1559), - [sym_builtin] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_tlocal] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_fn] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [anon_sym_var] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_defer] = ACTIONS(1559), - [anon_sym_assert] = ACTIONS(1559), - [anon_sym_nextcase] = ACTIONS(1559), - [anon_sym_switch] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_foreach] = ACTIONS(1559), - [anon_sym_foreach_r] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_int] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_STAR] = ACTIONS(1561), - [anon_sym_asm] = ACTIONS(1559), - [anon_sym_DOLLARassert] = ACTIONS(1559), - [anon_sym_DOLLARerror] = ACTIONS(1559), - [anon_sym_DOLLARecho] = ACTIONS(1559), - [anon_sym_DOLLARif] = ACTIONS(1559), - [anon_sym_DOLLARendif] = ACTIONS(1559), - [anon_sym_DOLLARelse] = ACTIONS(1559), - [anon_sym_DOLLARswitch] = ACTIONS(1559), - [anon_sym_DOLLARfor] = ACTIONS(1559), - [anon_sym_DOLLARforeach] = ACTIONS(1559), - [anon_sym_DOLLARalignof] = ACTIONS(1559), - [anon_sym_DOLLARextnameof] = ACTIONS(1559), - [anon_sym_DOLLARnameof] = ACTIONS(1559), - [anon_sym_DOLLARoffsetof] = ACTIONS(1559), - [anon_sym_DOLLARqnameof] = ACTIONS(1559), - [anon_sym_DOLLAReval] = ACTIONS(1559), - [anon_sym_DOLLARdefined] = ACTIONS(1559), - [anon_sym_DOLLARsizeof] = ACTIONS(1559), - [anon_sym_DOLLARstringify] = ACTIONS(1559), - [anon_sym_DOLLARis_const] = ACTIONS(1559), - [anon_sym_DOLLARvaconst] = ACTIONS(1559), - [anon_sym_DOLLARvaarg] = ACTIONS(1559), - [anon_sym_DOLLARvaref] = ACTIONS(1559), - [anon_sym_DOLLARvaexpr] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1559), - [anon_sym_false] = ACTIONS(1559), - [anon_sym_null] = ACTIONS(1559), - [anon_sym_DOLLARvacount] = ACTIONS(1559), - [anon_sym_DOLLARfeature] = ACTIONS(1559), - [anon_sym_DOLLARand] = ACTIONS(1559), - [anon_sym_DOLLARor] = ACTIONS(1559), - [anon_sym_DOLLARassignable] = ACTIONS(1559), - [anon_sym_DOLLARembed] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1561), - [anon_sym_TILDE] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_typeid] = ACTIONS(1559), - [anon_sym_LBRACE_PIPE] = ACTIONS(1561), - [anon_sym_void] = ACTIONS(1559), - [anon_sym_bool] = ACTIONS(1559), - [anon_sym_char] = ACTIONS(1559), - [anon_sym_ichar] = ACTIONS(1559), - [anon_sym_short] = ACTIONS(1559), - [anon_sym_ushort] = ACTIONS(1559), - [anon_sym_uint] = ACTIONS(1559), - [anon_sym_long] = ACTIONS(1559), - [anon_sym_ulong] = ACTIONS(1559), - [anon_sym_int128] = ACTIONS(1559), - [anon_sym_uint128] = ACTIONS(1559), - [anon_sym_float] = ACTIONS(1559), - [anon_sym_double] = ACTIONS(1559), - [anon_sym_float16] = ACTIONS(1559), - [anon_sym_bfloat16] = ACTIONS(1559), - [anon_sym_float128] = ACTIONS(1559), - [anon_sym_iptr] = ACTIONS(1559), - [anon_sym_uptr] = ACTIONS(1559), - [anon_sym_isz] = ACTIONS(1559), - [anon_sym_usz] = ACTIONS(1559), - [anon_sym_anyfault] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_DOLLARtypeof] = ACTIONS(1559), - [anon_sym_DOLLARtypefrom] = ACTIONS(1559), - [anon_sym_DOLLARvatype] = ACTIONS(1559), - [anon_sym_DOLLARevaltype] = ACTIONS(1559), - [sym_real_literal] = ACTIONS(1561), - }, - [525] = { - [sym_line_comment] = STATE(525), - [sym_doc_comment] = STATE(525), - [sym_block_comment] = STATE(525), - [sym_ident] = ACTIONS(1567), - [sym_integer_literal] = ACTIONS(1569), - [anon_sym_SQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [anon_sym_BQUOTE] = ACTIONS(1569), - [sym_bytes_literal] = ACTIONS(1569), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1567), - [sym_at_ident] = ACTIONS(1569), - [sym_hash_ident] = ACTIONS(1569), - [sym_type_ident] = ACTIONS(1569), - [sym_ct_type_ident] = ACTIONS(1569), - [sym_const_ident] = ACTIONS(1567), - [sym_builtin] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_AMP] = ACTIONS(1567), - [anon_sym_static] = ACTIONS(1567), - [anon_sym_tlocal] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1569), - [anon_sym_fn] = ACTIONS(1567), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_const] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(1567), - [anon_sym_return] = ACTIONS(1567), - [anon_sym_continue] = ACTIONS(1567), - [anon_sym_break] = ACTIONS(1567), - [anon_sym_defer] = ACTIONS(1567), - [anon_sym_assert] = ACTIONS(1567), - [anon_sym_nextcase] = ACTIONS(1567), - [anon_sym_switch] = ACTIONS(1567), - [anon_sym_AMP_AMP] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1567), - [anon_sym_for] = ACTIONS(1567), - [anon_sym_foreach] = ACTIONS(1567), - [anon_sym_foreach_r] = ACTIONS(1567), - [anon_sym_while] = ACTIONS(1567), - [anon_sym_do] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), - [anon_sym_STAR] = ACTIONS(1569), - [anon_sym_asm] = ACTIONS(1567), - [anon_sym_DOLLARassert] = ACTIONS(1567), - [anon_sym_DOLLARerror] = ACTIONS(1567), - [anon_sym_DOLLARecho] = ACTIONS(1567), - [anon_sym_DOLLARif] = ACTIONS(1567), - [anon_sym_DOLLARendif] = ACTIONS(1567), - [anon_sym_DOLLARelse] = ACTIONS(1567), - [anon_sym_DOLLARswitch] = ACTIONS(1567), - [anon_sym_DOLLARfor] = ACTIONS(1567), - [anon_sym_DOLLARforeach] = ACTIONS(1567), - [anon_sym_DOLLARalignof] = ACTIONS(1567), - [anon_sym_DOLLARextnameof] = ACTIONS(1567), - [anon_sym_DOLLARnameof] = ACTIONS(1567), - [anon_sym_DOLLARoffsetof] = ACTIONS(1567), - [anon_sym_DOLLARqnameof] = ACTIONS(1567), - [anon_sym_DOLLAReval] = ACTIONS(1567), - [anon_sym_DOLLARdefined] = ACTIONS(1567), - [anon_sym_DOLLARsizeof] = ACTIONS(1567), - [anon_sym_DOLLARstringify] = ACTIONS(1567), - [anon_sym_DOLLARis_const] = ACTIONS(1567), - [anon_sym_DOLLARvaconst] = ACTIONS(1567), - [anon_sym_DOLLARvaarg] = ACTIONS(1567), - [anon_sym_DOLLARvaref] = ACTIONS(1567), - [anon_sym_DOLLARvaexpr] = ACTIONS(1567), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [anon_sym_null] = ACTIONS(1567), - [anon_sym_DOLLARvacount] = ACTIONS(1567), - [anon_sym_DOLLARfeature] = ACTIONS(1567), - [anon_sym_DOLLARand] = ACTIONS(1567), - [anon_sym_DOLLARor] = ACTIONS(1567), - [anon_sym_DOLLARassignable] = ACTIONS(1567), - [anon_sym_DOLLARembed] = ACTIONS(1567), - [anon_sym_BANG] = ACTIONS(1569), - [anon_sym_TILDE] = ACTIONS(1569), - [anon_sym_PLUS_PLUS] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1569), - [anon_sym_typeid] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_char] = ACTIONS(1567), - [anon_sym_ichar] = ACTIONS(1567), - [anon_sym_short] = ACTIONS(1567), - [anon_sym_ushort] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_long] = ACTIONS(1567), - [anon_sym_ulong] = ACTIONS(1567), - [anon_sym_int128] = ACTIONS(1567), - [anon_sym_uint128] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_double] = ACTIONS(1567), - [anon_sym_float16] = ACTIONS(1567), - [anon_sym_bfloat16] = ACTIONS(1567), - [anon_sym_float128] = ACTIONS(1567), - [anon_sym_iptr] = ACTIONS(1567), - [anon_sym_uptr] = ACTIONS(1567), - [anon_sym_isz] = ACTIONS(1567), - [anon_sym_usz] = ACTIONS(1567), - [anon_sym_anyfault] = ACTIONS(1567), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_DOLLARtypeof] = ACTIONS(1567), - [anon_sym_DOLLARtypefrom] = ACTIONS(1567), - [anon_sym_DOLLARvatype] = ACTIONS(1567), - [anon_sym_DOLLARevaltype] = ACTIONS(1567), - [sym_real_literal] = ACTIONS(1569), - }, - [526] = { - [sym_line_comment] = STATE(526), - [sym_doc_comment] = STATE(526), - [sym_block_comment] = STATE(526), - [sym_ident] = ACTIONS(1583), - [sym_integer_literal] = ACTIONS(1585), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1585), - [anon_sym_BQUOTE] = ACTIONS(1585), - [sym_bytes_literal] = ACTIONS(1585), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1583), - [sym_at_ident] = ACTIONS(1585), - [sym_hash_ident] = ACTIONS(1585), - [sym_type_ident] = ACTIONS(1585), - [sym_ct_type_ident] = ACTIONS(1585), - [sym_const_ident] = ACTIONS(1583), - [sym_builtin] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_static] = ACTIONS(1583), - [anon_sym_tlocal] = ACTIONS(1583), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_fn] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_const] = ACTIONS(1583), - [anon_sym_var] = ACTIONS(1583), - [anon_sym_return] = ACTIONS(1583), - [anon_sym_continue] = ACTIONS(1583), - [anon_sym_break] = ACTIONS(1583), - [anon_sym_defer] = ACTIONS(1583), - [anon_sym_assert] = ACTIONS(1583), - [anon_sym_nextcase] = ACTIONS(1583), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1583), - [anon_sym_foreach] = ACTIONS(1583), - [anon_sym_foreach_r] = ACTIONS(1583), - [anon_sym_while] = ACTIONS(1583), - [anon_sym_do] = ACTIONS(1583), - [anon_sym_int] = ACTIONS(1583), - [anon_sym_PLUS] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_asm] = ACTIONS(1583), - [anon_sym_DOLLARassert] = ACTIONS(1583), - [anon_sym_DOLLARerror] = ACTIONS(1583), - [anon_sym_DOLLARecho] = ACTIONS(1583), - [anon_sym_DOLLARif] = ACTIONS(1583), - [anon_sym_DOLLARendif] = ACTIONS(1583), - [anon_sym_DOLLARelse] = ACTIONS(1583), - [anon_sym_DOLLARswitch] = ACTIONS(1583), - [anon_sym_DOLLARfor] = ACTIONS(1583), - [anon_sym_DOLLARforeach] = ACTIONS(1583), - [anon_sym_DOLLARalignof] = ACTIONS(1583), - [anon_sym_DOLLARextnameof] = ACTIONS(1583), - [anon_sym_DOLLARnameof] = ACTIONS(1583), - [anon_sym_DOLLARoffsetof] = ACTIONS(1583), - [anon_sym_DOLLARqnameof] = ACTIONS(1583), - [anon_sym_DOLLAReval] = ACTIONS(1583), - [anon_sym_DOLLARdefined] = ACTIONS(1583), - [anon_sym_DOLLARsizeof] = ACTIONS(1583), - [anon_sym_DOLLARstringify] = ACTIONS(1583), - [anon_sym_DOLLARis_const] = ACTIONS(1583), - [anon_sym_DOLLARvaconst] = ACTIONS(1583), - [anon_sym_DOLLARvaarg] = ACTIONS(1583), - [anon_sym_DOLLARvaref] = ACTIONS(1583), - [anon_sym_DOLLARvaexpr] = ACTIONS(1583), - [anon_sym_true] = ACTIONS(1583), - [anon_sym_false] = ACTIONS(1583), - [anon_sym_null] = ACTIONS(1583), - [anon_sym_DOLLARvacount] = ACTIONS(1583), - [anon_sym_DOLLARfeature] = ACTIONS(1583), - [anon_sym_DOLLARand] = ACTIONS(1583), - [anon_sym_DOLLARor] = ACTIONS(1583), - [anon_sym_DOLLARassignable] = ACTIONS(1583), - [anon_sym_DOLLARembed] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1585), - [anon_sym_TILDE] = ACTIONS(1585), - [anon_sym_PLUS_PLUS] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1585), - [anon_sym_typeid] = ACTIONS(1583), - [anon_sym_LBRACE_PIPE] = ACTIONS(1585), - [anon_sym_void] = ACTIONS(1583), - [anon_sym_bool] = ACTIONS(1583), - [anon_sym_char] = ACTIONS(1583), - [anon_sym_ichar] = ACTIONS(1583), - [anon_sym_short] = ACTIONS(1583), - [anon_sym_ushort] = ACTIONS(1583), - [anon_sym_uint] = ACTIONS(1583), - [anon_sym_long] = ACTIONS(1583), - [anon_sym_ulong] = ACTIONS(1583), - [anon_sym_int128] = ACTIONS(1583), - [anon_sym_uint128] = ACTIONS(1583), - [anon_sym_float] = ACTIONS(1583), - [anon_sym_double] = ACTIONS(1583), - [anon_sym_float16] = ACTIONS(1583), - [anon_sym_bfloat16] = ACTIONS(1583), - [anon_sym_float128] = ACTIONS(1583), - [anon_sym_iptr] = ACTIONS(1583), - [anon_sym_uptr] = ACTIONS(1583), - [anon_sym_isz] = ACTIONS(1583), - [anon_sym_usz] = ACTIONS(1583), - [anon_sym_anyfault] = ACTIONS(1583), - [anon_sym_any] = ACTIONS(1583), - [anon_sym_DOLLARtypeof] = ACTIONS(1583), - [anon_sym_DOLLARtypefrom] = ACTIONS(1583), - [anon_sym_DOLLARvatype] = ACTIONS(1583), - [anon_sym_DOLLARevaltype] = ACTIONS(1583), - [sym_real_literal] = ACTIONS(1585), - }, - [527] = { - [sym_line_comment] = STATE(527), - [sym_doc_comment] = STATE(527), - [sym_block_comment] = STATE(527), - [sym_ident] = ACTIONS(1591), - [sym_integer_literal] = ACTIONS(1593), - [anon_sym_SQUOTE] = ACTIONS(1593), - [anon_sym_DQUOTE] = ACTIONS(1593), - [anon_sym_BQUOTE] = ACTIONS(1593), - [sym_bytes_literal] = ACTIONS(1593), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1591), - [sym_at_ident] = ACTIONS(1593), - [sym_hash_ident] = ACTIONS(1593), - [sym_type_ident] = ACTIONS(1593), - [sym_ct_type_ident] = ACTIONS(1593), - [sym_const_ident] = ACTIONS(1591), - [sym_builtin] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_static] = ACTIONS(1591), - [anon_sym_tlocal] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1593), - [anon_sym_fn] = ACTIONS(1591), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_const] = ACTIONS(1591), - [anon_sym_var] = ACTIONS(1591), - [anon_sym_return] = ACTIONS(1591), - [anon_sym_continue] = ACTIONS(1591), - [anon_sym_break] = ACTIONS(1591), - [anon_sym_defer] = ACTIONS(1591), - [anon_sym_assert] = ACTIONS(1591), - [anon_sym_nextcase] = ACTIONS(1591), - [anon_sym_switch] = ACTIONS(1591), - [anon_sym_AMP_AMP] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1591), - [anon_sym_foreach] = ACTIONS(1591), - [anon_sym_foreach_r] = ACTIONS(1591), - [anon_sym_while] = ACTIONS(1591), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_int] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1591), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_asm] = ACTIONS(1591), - [anon_sym_DOLLARassert] = ACTIONS(1591), - [anon_sym_DOLLARerror] = ACTIONS(1591), - [anon_sym_DOLLARecho] = ACTIONS(1591), - [anon_sym_DOLLARif] = ACTIONS(1591), - [anon_sym_DOLLARendif] = ACTIONS(1591), - [anon_sym_DOLLARelse] = ACTIONS(1591), - [anon_sym_DOLLARswitch] = ACTIONS(1591), - [anon_sym_DOLLARfor] = ACTIONS(1591), - [anon_sym_DOLLARforeach] = ACTIONS(1591), - [anon_sym_DOLLARalignof] = ACTIONS(1591), - [anon_sym_DOLLARextnameof] = ACTIONS(1591), - [anon_sym_DOLLARnameof] = ACTIONS(1591), - [anon_sym_DOLLARoffsetof] = ACTIONS(1591), - [anon_sym_DOLLARqnameof] = ACTIONS(1591), - [anon_sym_DOLLAReval] = ACTIONS(1591), - [anon_sym_DOLLARdefined] = ACTIONS(1591), - [anon_sym_DOLLARsizeof] = ACTIONS(1591), - [anon_sym_DOLLARstringify] = ACTIONS(1591), - [anon_sym_DOLLARis_const] = ACTIONS(1591), - [anon_sym_DOLLARvaconst] = ACTIONS(1591), - [anon_sym_DOLLARvaarg] = ACTIONS(1591), - [anon_sym_DOLLARvaref] = ACTIONS(1591), - [anon_sym_DOLLARvaexpr] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [anon_sym_DOLLARvacount] = ACTIONS(1591), - [anon_sym_DOLLARfeature] = ACTIONS(1591), - [anon_sym_DOLLARand] = ACTIONS(1591), - [anon_sym_DOLLARor] = ACTIONS(1591), - [anon_sym_DOLLARassignable] = ACTIONS(1591), - [anon_sym_DOLLARembed] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1593), - [anon_sym_TILDE] = ACTIONS(1593), - [anon_sym_PLUS_PLUS] = ACTIONS(1593), - [anon_sym_DASH_DASH] = ACTIONS(1593), - [anon_sym_typeid] = ACTIONS(1591), - [anon_sym_LBRACE_PIPE] = ACTIONS(1593), - [anon_sym_void] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_ichar] = ACTIONS(1591), - [anon_sym_short] = ACTIONS(1591), - [anon_sym_ushort] = ACTIONS(1591), - [anon_sym_uint] = ACTIONS(1591), - [anon_sym_long] = ACTIONS(1591), - [anon_sym_ulong] = ACTIONS(1591), - [anon_sym_int128] = ACTIONS(1591), - [anon_sym_uint128] = ACTIONS(1591), - [anon_sym_float] = ACTIONS(1591), - [anon_sym_double] = ACTIONS(1591), - [anon_sym_float16] = ACTIONS(1591), - [anon_sym_bfloat16] = ACTIONS(1591), - [anon_sym_float128] = ACTIONS(1591), - [anon_sym_iptr] = ACTIONS(1591), - [anon_sym_uptr] = ACTIONS(1591), - [anon_sym_isz] = ACTIONS(1591), - [anon_sym_usz] = ACTIONS(1591), - [anon_sym_anyfault] = ACTIONS(1591), - [anon_sym_any] = ACTIONS(1591), - [anon_sym_DOLLARtypeof] = ACTIONS(1591), - [anon_sym_DOLLARtypefrom] = ACTIONS(1591), - [anon_sym_DOLLARvatype] = ACTIONS(1591), - [anon_sym_DOLLARevaltype] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1593), + [490] = { + [sym_line_comment] = STATE(490), + [sym_doc_comment] = STATE(490), + [sym_block_comment] = STATE(490), + [sym_ident] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [sym_bytes_literal] = ACTIONS(1369), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1367), + [sym_at_ident] = ACTIONS(1369), + [sym_hash_ident] = ACTIONS(1369), + [sym_type_ident] = ACTIONS(1369), + [sym_ct_type_ident] = ACTIONS(1369), + [sym_const_ident] = ACTIONS(1367), + [sym_builtin] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_tlocal] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_var] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_defer] = ACTIONS(1367), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_nextcase] = ACTIONS(1367), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_else] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_foreach] = ACTIONS(1367), + [anon_sym_foreach_r] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1367), + [anon_sym_DOLLARassert] = ACTIONS(1367), + [anon_sym_DOLLARerror] = ACTIONS(1367), + [anon_sym_DOLLARecho] = ACTIONS(1367), + [anon_sym_DOLLARif] = ACTIONS(1367), + [anon_sym_DOLLARendif] = ACTIONS(1367), + [anon_sym_DOLLARelse] = ACTIONS(1367), + [anon_sym_DOLLARswitch] = ACTIONS(1367), + [anon_sym_DOLLARfor] = ACTIONS(1367), + [anon_sym_DOLLARforeach] = ACTIONS(1367), + [anon_sym_DOLLARalignof] = ACTIONS(1367), + [anon_sym_DOLLARextnameof] = ACTIONS(1367), + [anon_sym_DOLLARnameof] = ACTIONS(1367), + [anon_sym_DOLLARoffsetof] = ACTIONS(1367), + [anon_sym_DOLLARqnameof] = ACTIONS(1367), + [anon_sym_DOLLARvaconst] = ACTIONS(1367), + [anon_sym_DOLLARvaarg] = ACTIONS(1367), + [anon_sym_DOLLARvaref] = ACTIONS(1367), + [anon_sym_DOLLARvaexpr] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_null] = ACTIONS(1367), + [anon_sym_DOLLARvacount] = ACTIONS(1367), + [anon_sym_DOLLAReval] = ACTIONS(1367), + [anon_sym_DOLLARis_const] = ACTIONS(1367), + [anon_sym_DOLLARsizeof] = ACTIONS(1367), + [anon_sym_DOLLARstringify] = ACTIONS(1367), + [anon_sym_DOLLARappend] = ACTIONS(1367), + [anon_sym_DOLLARconcat] = ACTIONS(1367), + [anon_sym_DOLLARdefined] = ACTIONS(1367), + [anon_sym_DOLLARembed] = ACTIONS(1367), + [anon_sym_DOLLARand] = ACTIONS(1367), + [anon_sym_DOLLARor] = ACTIONS(1367), + [anon_sym_DOLLARfeature] = ACTIONS(1367), + [anon_sym_DOLLARassignable] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1369), + [anon_sym_typeid] = ACTIONS(1367), + [anon_sym_LBRACE_PIPE] = ACTIONS(1369), + [anon_sym_void] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_ichar] = ACTIONS(1367), + [anon_sym_short] = ACTIONS(1367), + [anon_sym_ushort] = ACTIONS(1367), + [anon_sym_uint] = ACTIONS(1367), + [anon_sym_long] = ACTIONS(1367), + [anon_sym_ulong] = ACTIONS(1367), + [anon_sym_int128] = ACTIONS(1367), + [anon_sym_uint128] = ACTIONS(1367), + [anon_sym_float] = ACTIONS(1367), + [anon_sym_double] = ACTIONS(1367), + [anon_sym_float16] = ACTIONS(1367), + [anon_sym_bfloat16] = ACTIONS(1367), + [anon_sym_float128] = ACTIONS(1367), + [anon_sym_iptr] = ACTIONS(1367), + [anon_sym_uptr] = ACTIONS(1367), + [anon_sym_isz] = ACTIONS(1367), + [anon_sym_usz] = ACTIONS(1367), + [anon_sym_anyfault] = ACTIONS(1367), + [anon_sym_any] = ACTIONS(1367), + [anon_sym_DOLLARtypeof] = ACTIONS(1367), + [anon_sym_DOLLARtypefrom] = ACTIONS(1367), + [anon_sym_DOLLARevaltype] = ACTIONS(1367), + [anon_sym_DOLLARvatype] = ACTIONS(1367), + [sym_real_literal] = ACTIONS(1369), }, - [528] = { - [sym_line_comment] = STATE(528), - [sym_doc_comment] = STATE(528), - [sym_block_comment] = STATE(528), - [sym_ident] = ACTIONS(1595), - [sym_integer_literal] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(1597), - [anon_sym_DQUOTE] = ACTIONS(1597), - [anon_sym_BQUOTE] = ACTIONS(1597), - [sym_bytes_literal] = ACTIONS(1597), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1595), - [sym_at_ident] = ACTIONS(1597), - [sym_hash_ident] = ACTIONS(1597), - [sym_type_ident] = ACTIONS(1597), - [sym_ct_type_ident] = ACTIONS(1597), - [sym_const_ident] = ACTIONS(1595), - [sym_builtin] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_tlocal] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_fn] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_const] = ACTIONS(1595), - [anon_sym_var] = ACTIONS(1595), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_continue] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1595), - [anon_sym_defer] = ACTIONS(1595), - [anon_sym_assert] = ACTIONS(1595), - [anon_sym_nextcase] = ACTIONS(1595), - [anon_sym_switch] = ACTIONS(1595), - [anon_sym_AMP_AMP] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1595), - [anon_sym_for] = ACTIONS(1595), - [anon_sym_foreach] = ACTIONS(1595), - [anon_sym_foreach_r] = ACTIONS(1595), - [anon_sym_while] = ACTIONS(1595), - [anon_sym_do] = ACTIONS(1595), - [anon_sym_int] = ACTIONS(1595), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1597), - [anon_sym_asm] = ACTIONS(1595), - [anon_sym_DOLLARassert] = ACTIONS(1595), - [anon_sym_DOLLARerror] = ACTIONS(1595), - [anon_sym_DOLLARecho] = ACTIONS(1595), - [anon_sym_DOLLARif] = ACTIONS(1595), - [anon_sym_DOLLARendif] = ACTIONS(1595), - [anon_sym_DOLLARelse] = ACTIONS(1595), - [anon_sym_DOLLARswitch] = ACTIONS(1595), - [anon_sym_DOLLARfor] = ACTIONS(1595), - [anon_sym_DOLLARforeach] = ACTIONS(1595), - [anon_sym_DOLLARalignof] = ACTIONS(1595), - [anon_sym_DOLLARextnameof] = ACTIONS(1595), - [anon_sym_DOLLARnameof] = ACTIONS(1595), - [anon_sym_DOLLARoffsetof] = ACTIONS(1595), - [anon_sym_DOLLARqnameof] = ACTIONS(1595), - [anon_sym_DOLLAReval] = ACTIONS(1595), - [anon_sym_DOLLARdefined] = ACTIONS(1595), - [anon_sym_DOLLARsizeof] = ACTIONS(1595), - [anon_sym_DOLLARstringify] = ACTIONS(1595), - [anon_sym_DOLLARis_const] = ACTIONS(1595), - [anon_sym_DOLLARvaconst] = ACTIONS(1595), - [anon_sym_DOLLARvaarg] = ACTIONS(1595), - [anon_sym_DOLLARvaref] = ACTIONS(1595), - [anon_sym_DOLLARvaexpr] = ACTIONS(1595), - [anon_sym_true] = ACTIONS(1595), - [anon_sym_false] = ACTIONS(1595), - [anon_sym_null] = ACTIONS(1595), - [anon_sym_DOLLARvacount] = ACTIONS(1595), - [anon_sym_DOLLARfeature] = ACTIONS(1595), - [anon_sym_DOLLARand] = ACTIONS(1595), - [anon_sym_DOLLARor] = ACTIONS(1595), - [anon_sym_DOLLARassignable] = ACTIONS(1595), - [anon_sym_DOLLARembed] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1597), - [anon_sym_TILDE] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_DASH_DASH] = ACTIONS(1597), - [anon_sym_typeid] = ACTIONS(1595), - [anon_sym_LBRACE_PIPE] = ACTIONS(1597), - [anon_sym_void] = ACTIONS(1595), - [anon_sym_bool] = ACTIONS(1595), - [anon_sym_char] = ACTIONS(1595), - [anon_sym_ichar] = ACTIONS(1595), - [anon_sym_short] = ACTIONS(1595), - [anon_sym_ushort] = ACTIONS(1595), - [anon_sym_uint] = ACTIONS(1595), - [anon_sym_long] = ACTIONS(1595), - [anon_sym_ulong] = ACTIONS(1595), - [anon_sym_int128] = ACTIONS(1595), - [anon_sym_uint128] = ACTIONS(1595), - [anon_sym_float] = ACTIONS(1595), - [anon_sym_double] = ACTIONS(1595), - [anon_sym_float16] = ACTIONS(1595), - [anon_sym_bfloat16] = ACTIONS(1595), - [anon_sym_float128] = ACTIONS(1595), - [anon_sym_iptr] = ACTIONS(1595), - [anon_sym_uptr] = ACTIONS(1595), - [anon_sym_isz] = ACTIONS(1595), - [anon_sym_usz] = ACTIONS(1595), - [anon_sym_anyfault] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_DOLLARtypeof] = ACTIONS(1595), - [anon_sym_DOLLARtypefrom] = ACTIONS(1595), - [anon_sym_DOLLARvatype] = ACTIONS(1595), - [anon_sym_DOLLARevaltype] = ACTIONS(1595), - [sym_real_literal] = ACTIONS(1597), + [491] = { + [sym_line_comment] = STATE(491), + [sym_doc_comment] = STATE(491), + [sym_block_comment] = STATE(491), + [sym_ident] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [anon_sym_BQUOTE] = ACTIONS(1587), + [sym_bytes_literal] = ACTIONS(1587), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1585), + [sym_at_ident] = ACTIONS(1587), + [sym_hash_ident] = ACTIONS(1587), + [sym_type_ident] = ACTIONS(1587), + [sym_ct_type_ident] = ACTIONS(1587), + [sym_const_ident] = ACTIONS(1585), + [sym_builtin] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_tlocal] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_fn] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_var] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_defer] = ACTIONS(1585), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_nextcase] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_foreach] = ACTIONS(1585), + [anon_sym_foreach_r] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_int] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_asm] = ACTIONS(1585), + [anon_sym_DOLLARassert] = ACTIONS(1585), + [anon_sym_DOLLARerror] = ACTIONS(1585), + [anon_sym_DOLLARecho] = ACTIONS(1585), + [anon_sym_DOLLARif] = ACTIONS(1585), + [anon_sym_DOLLARcase] = ACTIONS(1585), + [anon_sym_DOLLARdefault] = ACTIONS(1585), + [anon_sym_DOLLARswitch] = ACTIONS(1585), + [anon_sym_DOLLARendswitch] = ACTIONS(1585), + [anon_sym_DOLLARfor] = ACTIONS(1585), + [anon_sym_DOLLARforeach] = ACTIONS(1585), + [anon_sym_DOLLARalignof] = ACTIONS(1585), + [anon_sym_DOLLARextnameof] = ACTIONS(1585), + [anon_sym_DOLLARnameof] = ACTIONS(1585), + [anon_sym_DOLLARoffsetof] = ACTIONS(1585), + [anon_sym_DOLLARqnameof] = ACTIONS(1585), + [anon_sym_DOLLARvaconst] = ACTIONS(1585), + [anon_sym_DOLLARvaarg] = ACTIONS(1585), + [anon_sym_DOLLARvaref] = ACTIONS(1585), + [anon_sym_DOLLARvaexpr] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_DOLLARvacount] = ACTIONS(1585), + [anon_sym_DOLLAReval] = ACTIONS(1585), + [anon_sym_DOLLARis_const] = ACTIONS(1585), + [anon_sym_DOLLARsizeof] = ACTIONS(1585), + [anon_sym_DOLLARstringify] = ACTIONS(1585), + [anon_sym_DOLLARappend] = ACTIONS(1585), + [anon_sym_DOLLARconcat] = ACTIONS(1585), + [anon_sym_DOLLARdefined] = ACTIONS(1585), + [anon_sym_DOLLARembed] = ACTIONS(1585), + [anon_sym_DOLLARand] = ACTIONS(1585), + [anon_sym_DOLLARor] = ACTIONS(1585), + [anon_sym_DOLLARfeature] = ACTIONS(1585), + [anon_sym_DOLLARassignable] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_typeid] = ACTIONS(1585), + [anon_sym_LBRACE_PIPE] = ACTIONS(1587), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_ichar] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [anon_sym_ushort] = ACTIONS(1585), + [anon_sym_uint] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_ulong] = ACTIONS(1585), + [anon_sym_int128] = ACTIONS(1585), + [anon_sym_uint128] = ACTIONS(1585), + [anon_sym_float] = ACTIONS(1585), + [anon_sym_double] = ACTIONS(1585), + [anon_sym_float16] = ACTIONS(1585), + [anon_sym_bfloat16] = ACTIONS(1585), + [anon_sym_float128] = ACTIONS(1585), + [anon_sym_iptr] = ACTIONS(1585), + [anon_sym_uptr] = ACTIONS(1585), + [anon_sym_isz] = ACTIONS(1585), + [anon_sym_usz] = ACTIONS(1585), + [anon_sym_anyfault] = ACTIONS(1585), + [anon_sym_any] = ACTIONS(1585), + [anon_sym_DOLLARtypeof] = ACTIONS(1585), + [anon_sym_DOLLARtypefrom] = ACTIONS(1585), + [anon_sym_DOLLARevaltype] = ACTIONS(1585), + [anon_sym_DOLLARvatype] = ACTIONS(1585), + [sym_real_literal] = ACTIONS(1587), }, - [529] = { - [sym_line_comment] = STATE(529), - [sym_doc_comment] = STATE(529), - [sym_block_comment] = STATE(529), - [sym_ident] = ACTIONS(1599), - [sym_integer_literal] = ACTIONS(1601), - [anon_sym_SQUOTE] = ACTIONS(1601), - [anon_sym_DQUOTE] = ACTIONS(1601), - [anon_sym_BQUOTE] = ACTIONS(1601), - [sym_bytes_literal] = ACTIONS(1601), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1599), - [sym_at_ident] = ACTIONS(1601), - [sym_hash_ident] = ACTIONS(1601), - [sym_type_ident] = ACTIONS(1601), - [sym_ct_type_ident] = ACTIONS(1601), - [sym_const_ident] = ACTIONS(1599), - [sym_builtin] = ACTIONS(1601), - [anon_sym_LPAREN] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_static] = ACTIONS(1599), - [anon_sym_tlocal] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_const] = ACTIONS(1599), - [anon_sym_var] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_break] = ACTIONS(1599), - [anon_sym_defer] = ACTIONS(1599), - [anon_sym_assert] = ACTIONS(1599), - [anon_sym_nextcase] = ACTIONS(1599), - [anon_sym_switch] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_foreach] = ACTIONS(1599), - [anon_sym_foreach_r] = ACTIONS(1599), - [anon_sym_while] = ACTIONS(1599), - [anon_sym_do] = ACTIONS(1599), - [anon_sym_int] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_asm] = ACTIONS(1599), - [anon_sym_DOLLARassert] = ACTIONS(1599), - [anon_sym_DOLLARerror] = ACTIONS(1599), - [anon_sym_DOLLARecho] = ACTIONS(1599), - [anon_sym_DOLLARif] = ACTIONS(1599), - [anon_sym_DOLLARendif] = ACTIONS(1599), - [anon_sym_DOLLARelse] = ACTIONS(1599), - [anon_sym_DOLLARswitch] = ACTIONS(1599), - [anon_sym_DOLLARfor] = ACTIONS(1599), - [anon_sym_DOLLARforeach] = ACTIONS(1599), - [anon_sym_DOLLARalignof] = ACTIONS(1599), - [anon_sym_DOLLARextnameof] = ACTIONS(1599), - [anon_sym_DOLLARnameof] = ACTIONS(1599), - [anon_sym_DOLLARoffsetof] = ACTIONS(1599), - [anon_sym_DOLLARqnameof] = ACTIONS(1599), - [anon_sym_DOLLAReval] = ACTIONS(1599), - [anon_sym_DOLLARdefined] = ACTIONS(1599), - [anon_sym_DOLLARsizeof] = ACTIONS(1599), - [anon_sym_DOLLARstringify] = ACTIONS(1599), - [anon_sym_DOLLARis_const] = ACTIONS(1599), - [anon_sym_DOLLARvaconst] = ACTIONS(1599), - [anon_sym_DOLLARvaarg] = ACTIONS(1599), - [anon_sym_DOLLARvaref] = ACTIONS(1599), - [anon_sym_DOLLARvaexpr] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1599), - [anon_sym_false] = ACTIONS(1599), - [anon_sym_null] = ACTIONS(1599), - [anon_sym_DOLLARvacount] = ACTIONS(1599), - [anon_sym_DOLLARfeature] = ACTIONS(1599), - [anon_sym_DOLLARand] = ACTIONS(1599), - [anon_sym_DOLLARor] = ACTIONS(1599), - [anon_sym_DOLLARassignable] = ACTIONS(1599), - [anon_sym_DOLLARembed] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1601), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_PLUS_PLUS] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1601), - [anon_sym_typeid] = ACTIONS(1599), - [anon_sym_LBRACE_PIPE] = ACTIONS(1601), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_bool] = ACTIONS(1599), - [anon_sym_char] = ACTIONS(1599), - [anon_sym_ichar] = ACTIONS(1599), - [anon_sym_short] = ACTIONS(1599), - [anon_sym_ushort] = ACTIONS(1599), - [anon_sym_uint] = ACTIONS(1599), - [anon_sym_long] = ACTIONS(1599), - [anon_sym_ulong] = ACTIONS(1599), - [anon_sym_int128] = ACTIONS(1599), - [anon_sym_uint128] = ACTIONS(1599), - [anon_sym_float] = ACTIONS(1599), - [anon_sym_double] = ACTIONS(1599), - [anon_sym_float16] = ACTIONS(1599), - [anon_sym_bfloat16] = ACTIONS(1599), - [anon_sym_float128] = ACTIONS(1599), - [anon_sym_iptr] = ACTIONS(1599), - [anon_sym_uptr] = ACTIONS(1599), - [anon_sym_isz] = ACTIONS(1599), - [anon_sym_usz] = ACTIONS(1599), - [anon_sym_anyfault] = ACTIONS(1599), - [anon_sym_any] = ACTIONS(1599), - [anon_sym_DOLLARtypeof] = ACTIONS(1599), - [anon_sym_DOLLARtypefrom] = ACTIONS(1599), - [anon_sym_DOLLARvatype] = ACTIONS(1599), - [anon_sym_DOLLARevaltype] = ACTIONS(1599), - [sym_real_literal] = ACTIONS(1601), + [492] = { + [sym_line_comment] = STATE(492), + [sym_doc_comment] = STATE(492), + [sym_block_comment] = STATE(492), + [sym_ident] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [anon_sym_BQUOTE] = ACTIONS(1591), + [sym_bytes_literal] = ACTIONS(1591), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1589), + [sym_at_ident] = ACTIONS(1591), + [sym_hash_ident] = ACTIONS(1591), + [sym_type_ident] = ACTIONS(1591), + [sym_ct_type_ident] = ACTIONS(1591), + [sym_const_ident] = ACTIONS(1589), + [sym_builtin] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_tlocal] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_fn] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_var] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_defer] = ACTIONS(1589), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_nextcase] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_foreach] = ACTIONS(1589), + [anon_sym_foreach_r] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_int] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_asm] = ACTIONS(1589), + [anon_sym_DOLLARassert] = ACTIONS(1589), + [anon_sym_DOLLARerror] = ACTIONS(1589), + [anon_sym_DOLLARecho] = ACTIONS(1589), + [anon_sym_DOLLARif] = ACTIONS(1589), + [anon_sym_DOLLARcase] = ACTIONS(1589), + [anon_sym_DOLLARdefault] = ACTIONS(1589), + [anon_sym_DOLLARswitch] = ACTIONS(1589), + [anon_sym_DOLLARendswitch] = ACTIONS(1589), + [anon_sym_DOLLARfor] = ACTIONS(1589), + [anon_sym_DOLLARforeach] = ACTIONS(1589), + [anon_sym_DOLLARalignof] = ACTIONS(1589), + [anon_sym_DOLLARextnameof] = ACTIONS(1589), + [anon_sym_DOLLARnameof] = ACTIONS(1589), + [anon_sym_DOLLARoffsetof] = ACTIONS(1589), + [anon_sym_DOLLARqnameof] = ACTIONS(1589), + [anon_sym_DOLLARvaconst] = ACTIONS(1589), + [anon_sym_DOLLARvaarg] = ACTIONS(1589), + [anon_sym_DOLLARvaref] = ACTIONS(1589), + [anon_sym_DOLLARvaexpr] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [anon_sym_DOLLARvacount] = ACTIONS(1589), + [anon_sym_DOLLAReval] = ACTIONS(1589), + [anon_sym_DOLLARis_const] = ACTIONS(1589), + [anon_sym_DOLLARsizeof] = ACTIONS(1589), + [anon_sym_DOLLARstringify] = ACTIONS(1589), + [anon_sym_DOLLARappend] = ACTIONS(1589), + [anon_sym_DOLLARconcat] = ACTIONS(1589), + [anon_sym_DOLLARdefined] = ACTIONS(1589), + [anon_sym_DOLLARembed] = ACTIONS(1589), + [anon_sym_DOLLARand] = ACTIONS(1589), + [anon_sym_DOLLARor] = ACTIONS(1589), + [anon_sym_DOLLARfeature] = ACTIONS(1589), + [anon_sym_DOLLARassignable] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_typeid] = ACTIONS(1589), + [anon_sym_LBRACE_PIPE] = ACTIONS(1591), + [anon_sym_void] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_ichar] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [anon_sym_ushort] = ACTIONS(1589), + [anon_sym_uint] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_ulong] = ACTIONS(1589), + [anon_sym_int128] = ACTIONS(1589), + [anon_sym_uint128] = ACTIONS(1589), + [anon_sym_float] = ACTIONS(1589), + [anon_sym_double] = ACTIONS(1589), + [anon_sym_float16] = ACTIONS(1589), + [anon_sym_bfloat16] = ACTIONS(1589), + [anon_sym_float128] = ACTIONS(1589), + [anon_sym_iptr] = ACTIONS(1589), + [anon_sym_uptr] = ACTIONS(1589), + [anon_sym_isz] = ACTIONS(1589), + [anon_sym_usz] = ACTIONS(1589), + [anon_sym_anyfault] = ACTIONS(1589), + [anon_sym_any] = ACTIONS(1589), + [anon_sym_DOLLARtypeof] = ACTIONS(1589), + [anon_sym_DOLLARtypefrom] = ACTIONS(1589), + [anon_sym_DOLLARevaltype] = ACTIONS(1589), + [anon_sym_DOLLARvatype] = ACTIONS(1589), + [sym_real_literal] = ACTIONS(1591), }, - [530] = { - [sym_line_comment] = STATE(530), - [sym_doc_comment] = STATE(530), - [sym_block_comment] = STATE(530), - [sym_ident] = ACTIONS(1603), - [sym_integer_literal] = ACTIONS(1605), - [anon_sym_SQUOTE] = ACTIONS(1605), - [anon_sym_DQUOTE] = ACTIONS(1605), - [anon_sym_BQUOTE] = ACTIONS(1605), - [sym_bytes_literal] = ACTIONS(1605), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1603), - [sym_at_ident] = ACTIONS(1605), - [sym_hash_ident] = ACTIONS(1605), - [sym_type_ident] = ACTIONS(1605), - [sym_ct_type_ident] = ACTIONS(1605), - [sym_const_ident] = ACTIONS(1603), - [sym_builtin] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1605), - [anon_sym_AMP] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1603), - [anon_sym_tlocal] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1605), - [anon_sym_fn] = ACTIONS(1603), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_const] = ACTIONS(1603), - [anon_sym_var] = ACTIONS(1603), - [anon_sym_return] = ACTIONS(1603), - [anon_sym_continue] = ACTIONS(1603), - [anon_sym_break] = ACTIONS(1603), - [anon_sym_defer] = ACTIONS(1603), - [anon_sym_assert] = ACTIONS(1603), - [anon_sym_nextcase] = ACTIONS(1603), - [anon_sym_switch] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1603), - [anon_sym_for] = ACTIONS(1603), - [anon_sym_foreach] = ACTIONS(1603), - [anon_sym_foreach_r] = ACTIONS(1603), - [anon_sym_while] = ACTIONS(1603), - [anon_sym_do] = ACTIONS(1603), - [anon_sym_int] = ACTIONS(1603), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_asm] = ACTIONS(1603), - [anon_sym_DOLLARassert] = ACTIONS(1603), - [anon_sym_DOLLARerror] = ACTIONS(1603), - [anon_sym_DOLLARecho] = ACTIONS(1603), - [anon_sym_DOLLARif] = ACTIONS(1603), - [anon_sym_DOLLARendif] = ACTIONS(1603), - [anon_sym_DOLLARelse] = ACTIONS(1603), - [anon_sym_DOLLARswitch] = ACTIONS(1603), - [anon_sym_DOLLARfor] = ACTIONS(1603), - [anon_sym_DOLLARforeach] = ACTIONS(1603), - [anon_sym_DOLLARalignof] = ACTIONS(1603), - [anon_sym_DOLLARextnameof] = ACTIONS(1603), - [anon_sym_DOLLARnameof] = ACTIONS(1603), - [anon_sym_DOLLARoffsetof] = ACTIONS(1603), - [anon_sym_DOLLARqnameof] = ACTIONS(1603), - [anon_sym_DOLLAReval] = ACTIONS(1603), - [anon_sym_DOLLARdefined] = ACTIONS(1603), - [anon_sym_DOLLARsizeof] = ACTIONS(1603), - [anon_sym_DOLLARstringify] = ACTIONS(1603), - [anon_sym_DOLLARis_const] = ACTIONS(1603), - [anon_sym_DOLLARvaconst] = ACTIONS(1603), - [anon_sym_DOLLARvaarg] = ACTIONS(1603), - [anon_sym_DOLLARvaref] = ACTIONS(1603), - [anon_sym_DOLLARvaexpr] = ACTIONS(1603), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [anon_sym_null] = ACTIONS(1603), - [anon_sym_DOLLARvacount] = ACTIONS(1603), - [anon_sym_DOLLARfeature] = ACTIONS(1603), - [anon_sym_DOLLARand] = ACTIONS(1603), - [anon_sym_DOLLARor] = ACTIONS(1603), - [anon_sym_DOLLARassignable] = ACTIONS(1603), - [anon_sym_DOLLARembed] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1605), - [anon_sym_DASH_DASH] = ACTIONS(1605), - [anon_sym_typeid] = ACTIONS(1603), - [anon_sym_LBRACE_PIPE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_ichar] = ACTIONS(1603), - [anon_sym_short] = ACTIONS(1603), - [anon_sym_ushort] = ACTIONS(1603), - [anon_sym_uint] = ACTIONS(1603), - [anon_sym_long] = ACTIONS(1603), - [anon_sym_ulong] = ACTIONS(1603), - [anon_sym_int128] = ACTIONS(1603), - [anon_sym_uint128] = ACTIONS(1603), - [anon_sym_float] = ACTIONS(1603), - [anon_sym_double] = ACTIONS(1603), - [anon_sym_float16] = ACTIONS(1603), - [anon_sym_bfloat16] = ACTIONS(1603), - [anon_sym_float128] = ACTIONS(1603), - [anon_sym_iptr] = ACTIONS(1603), - [anon_sym_uptr] = ACTIONS(1603), - [anon_sym_isz] = ACTIONS(1603), - [anon_sym_usz] = ACTIONS(1603), - [anon_sym_anyfault] = ACTIONS(1603), - [anon_sym_any] = ACTIONS(1603), - [anon_sym_DOLLARtypeof] = ACTIONS(1603), - [anon_sym_DOLLARtypefrom] = ACTIONS(1603), - [anon_sym_DOLLARvatype] = ACTIONS(1603), - [anon_sym_DOLLARevaltype] = ACTIONS(1603), - [sym_real_literal] = ACTIONS(1605), + [493] = { + [sym_line_comment] = STATE(493), + [sym_doc_comment] = STATE(493), + [sym_block_comment] = STATE(493), + [sym_ident] = ACTIONS(1533), + [sym_integer_literal] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1535), + [anon_sym_BQUOTE] = ACTIONS(1535), + [sym_bytes_literal] = ACTIONS(1535), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1533), + [sym_at_ident] = ACTIONS(1535), + [sym_hash_ident] = ACTIONS(1535), + [sym_type_ident] = ACTIONS(1535), + [sym_ct_type_ident] = ACTIONS(1535), + [sym_const_ident] = ACTIONS(1533), + [sym_builtin] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_tlocal] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_var] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_defer] = ACTIONS(1533), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_nextcase] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_foreach] = ACTIONS(1533), + [anon_sym_foreach_r] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_int] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_asm] = ACTIONS(1533), + [anon_sym_DOLLARassert] = ACTIONS(1533), + [anon_sym_DOLLARerror] = ACTIONS(1533), + [anon_sym_DOLLARecho] = ACTIONS(1533), + [anon_sym_DOLLARif] = ACTIONS(1533), + [anon_sym_DOLLARcase] = ACTIONS(1533), + [anon_sym_DOLLARdefault] = ACTIONS(1533), + [anon_sym_DOLLARswitch] = ACTIONS(1533), + [anon_sym_DOLLARendswitch] = ACTIONS(1533), + [anon_sym_DOLLARfor] = ACTIONS(1533), + [anon_sym_DOLLARforeach] = ACTIONS(1533), + [anon_sym_DOLLARalignof] = ACTIONS(1533), + [anon_sym_DOLLARextnameof] = ACTIONS(1533), + [anon_sym_DOLLARnameof] = ACTIONS(1533), + [anon_sym_DOLLARoffsetof] = ACTIONS(1533), + [anon_sym_DOLLARqnameof] = ACTIONS(1533), + [anon_sym_DOLLARvaconst] = ACTIONS(1533), + [anon_sym_DOLLARvaarg] = ACTIONS(1533), + [anon_sym_DOLLARvaref] = ACTIONS(1533), + [anon_sym_DOLLARvaexpr] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_null] = ACTIONS(1533), + [anon_sym_DOLLARvacount] = ACTIONS(1533), + [anon_sym_DOLLAReval] = ACTIONS(1533), + [anon_sym_DOLLARis_const] = ACTIONS(1533), + [anon_sym_DOLLARsizeof] = ACTIONS(1533), + [anon_sym_DOLLARstringify] = ACTIONS(1533), + [anon_sym_DOLLARappend] = ACTIONS(1533), + [anon_sym_DOLLARconcat] = ACTIONS(1533), + [anon_sym_DOLLARdefined] = ACTIONS(1533), + [anon_sym_DOLLARembed] = ACTIONS(1533), + [anon_sym_DOLLARand] = ACTIONS(1533), + [anon_sym_DOLLARor] = ACTIONS(1533), + [anon_sym_DOLLARfeature] = ACTIONS(1533), + [anon_sym_DOLLARassignable] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_typeid] = ACTIONS(1533), + [anon_sym_LBRACE_PIPE] = ACTIONS(1535), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_bool] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_ichar] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_ushort] = ACTIONS(1533), + [anon_sym_uint] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_ulong] = ACTIONS(1533), + [anon_sym_int128] = ACTIONS(1533), + [anon_sym_uint128] = ACTIONS(1533), + [anon_sym_float] = ACTIONS(1533), + [anon_sym_double] = ACTIONS(1533), + [anon_sym_float16] = ACTIONS(1533), + [anon_sym_bfloat16] = ACTIONS(1533), + [anon_sym_float128] = ACTIONS(1533), + [anon_sym_iptr] = ACTIONS(1533), + [anon_sym_uptr] = ACTIONS(1533), + [anon_sym_isz] = ACTIONS(1533), + [anon_sym_usz] = ACTIONS(1533), + [anon_sym_anyfault] = ACTIONS(1533), + [anon_sym_any] = ACTIONS(1533), + [anon_sym_DOLLARtypeof] = ACTIONS(1533), + [anon_sym_DOLLARtypefrom] = ACTIONS(1533), + [anon_sym_DOLLARevaltype] = ACTIONS(1533), + [anon_sym_DOLLARvatype] = ACTIONS(1533), + [sym_real_literal] = ACTIONS(1535), }, - [531] = { - [sym_line_comment] = STATE(531), - [sym_doc_comment] = STATE(531), - [sym_block_comment] = STATE(531), - [sym_ident] = ACTIONS(1611), - [sym_integer_literal] = ACTIONS(1613), - [anon_sym_SQUOTE] = ACTIONS(1613), - [anon_sym_DQUOTE] = ACTIONS(1613), - [anon_sym_BQUOTE] = ACTIONS(1613), - [sym_bytes_literal] = ACTIONS(1613), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1611), - [sym_at_ident] = ACTIONS(1613), - [sym_hash_ident] = ACTIONS(1613), - [sym_type_ident] = ACTIONS(1613), - [sym_ct_type_ident] = ACTIONS(1613), - [sym_const_ident] = ACTIONS(1611), - [sym_builtin] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(1611), - [anon_sym_tlocal] = ACTIONS(1611), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_const] = ACTIONS(1611), - [anon_sym_var] = ACTIONS(1611), - [anon_sym_return] = ACTIONS(1611), - [anon_sym_continue] = ACTIONS(1611), - [anon_sym_break] = ACTIONS(1611), - [anon_sym_defer] = ACTIONS(1611), - [anon_sym_assert] = ACTIONS(1611), - [anon_sym_nextcase] = ACTIONS(1611), - [anon_sym_switch] = ACTIONS(1611), - [anon_sym_AMP_AMP] = ACTIONS(1613), - [anon_sym_if] = ACTIONS(1611), - [anon_sym_for] = ACTIONS(1611), - [anon_sym_foreach] = ACTIONS(1611), - [anon_sym_foreach_r] = ACTIONS(1611), - [anon_sym_while] = ACTIONS(1611), - [anon_sym_do] = ACTIONS(1611), - [anon_sym_int] = ACTIONS(1611), - [anon_sym_PLUS] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1611), - [anon_sym_STAR] = ACTIONS(1613), - [anon_sym_asm] = ACTIONS(1611), - [anon_sym_DOLLARassert] = ACTIONS(1611), - [anon_sym_DOLLARerror] = ACTIONS(1611), - [anon_sym_DOLLARecho] = ACTIONS(1611), - [anon_sym_DOLLARif] = ACTIONS(1611), - [anon_sym_DOLLARendif] = ACTIONS(1611), - [anon_sym_DOLLARelse] = ACTIONS(1611), - [anon_sym_DOLLARswitch] = ACTIONS(1611), - [anon_sym_DOLLARfor] = ACTIONS(1611), - [anon_sym_DOLLARforeach] = ACTIONS(1611), - [anon_sym_DOLLARalignof] = ACTIONS(1611), - [anon_sym_DOLLARextnameof] = ACTIONS(1611), - [anon_sym_DOLLARnameof] = ACTIONS(1611), - [anon_sym_DOLLARoffsetof] = ACTIONS(1611), - [anon_sym_DOLLARqnameof] = ACTIONS(1611), - [anon_sym_DOLLAReval] = ACTIONS(1611), - [anon_sym_DOLLARdefined] = ACTIONS(1611), - [anon_sym_DOLLARsizeof] = ACTIONS(1611), - [anon_sym_DOLLARstringify] = ACTIONS(1611), - [anon_sym_DOLLARis_const] = ACTIONS(1611), - [anon_sym_DOLLARvaconst] = ACTIONS(1611), - [anon_sym_DOLLARvaarg] = ACTIONS(1611), - [anon_sym_DOLLARvaref] = ACTIONS(1611), - [anon_sym_DOLLARvaexpr] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1611), - [anon_sym_false] = ACTIONS(1611), - [anon_sym_null] = ACTIONS(1611), - [anon_sym_DOLLARvacount] = ACTIONS(1611), - [anon_sym_DOLLARfeature] = ACTIONS(1611), - [anon_sym_DOLLARand] = ACTIONS(1611), - [anon_sym_DOLLARor] = ACTIONS(1611), - [anon_sym_DOLLARassignable] = ACTIONS(1611), - [anon_sym_DOLLARembed] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1613), - [anon_sym_TILDE] = ACTIONS(1613), - [anon_sym_PLUS_PLUS] = ACTIONS(1613), - [anon_sym_DASH_DASH] = ACTIONS(1613), - [anon_sym_typeid] = ACTIONS(1611), - [anon_sym_LBRACE_PIPE] = ACTIONS(1613), - [anon_sym_void] = ACTIONS(1611), - [anon_sym_bool] = ACTIONS(1611), - [anon_sym_char] = ACTIONS(1611), - [anon_sym_ichar] = ACTIONS(1611), - [anon_sym_short] = ACTIONS(1611), - [anon_sym_ushort] = ACTIONS(1611), - [anon_sym_uint] = ACTIONS(1611), - [anon_sym_long] = ACTIONS(1611), - [anon_sym_ulong] = ACTIONS(1611), - [anon_sym_int128] = ACTIONS(1611), - [anon_sym_uint128] = ACTIONS(1611), - [anon_sym_float] = ACTIONS(1611), - [anon_sym_double] = ACTIONS(1611), - [anon_sym_float16] = ACTIONS(1611), - [anon_sym_bfloat16] = ACTIONS(1611), - [anon_sym_float128] = ACTIONS(1611), - [anon_sym_iptr] = ACTIONS(1611), - [anon_sym_uptr] = ACTIONS(1611), - [anon_sym_isz] = ACTIONS(1611), - [anon_sym_usz] = ACTIONS(1611), - [anon_sym_anyfault] = ACTIONS(1611), - [anon_sym_any] = ACTIONS(1611), - [anon_sym_DOLLARtypeof] = ACTIONS(1611), - [anon_sym_DOLLARtypefrom] = ACTIONS(1611), - [anon_sym_DOLLARvatype] = ACTIONS(1611), - [anon_sym_DOLLARevaltype] = ACTIONS(1611), - [sym_real_literal] = ACTIONS(1613), + [494] = { + [sym_line_comment] = STATE(494), + [sym_doc_comment] = STATE(494), + [sym_block_comment] = STATE(494), + [sym_ident] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1539), + [anon_sym_BQUOTE] = ACTIONS(1539), + [sym_bytes_literal] = ACTIONS(1539), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1537), + [sym_at_ident] = ACTIONS(1539), + [sym_hash_ident] = ACTIONS(1539), + [sym_type_ident] = ACTIONS(1539), + [sym_ct_type_ident] = ACTIONS(1539), + [sym_const_ident] = ACTIONS(1537), + [sym_builtin] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_tlocal] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_defer] = ACTIONS(1537), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_nextcase] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_foreach] = ACTIONS(1537), + [anon_sym_foreach_r] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_int] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym_DOLLARassert] = ACTIONS(1537), + [anon_sym_DOLLARerror] = ACTIONS(1537), + [anon_sym_DOLLARecho] = ACTIONS(1537), + [anon_sym_DOLLARif] = ACTIONS(1537), + [anon_sym_DOLLARcase] = ACTIONS(1537), + [anon_sym_DOLLARdefault] = ACTIONS(1537), + [anon_sym_DOLLARswitch] = ACTIONS(1537), + [anon_sym_DOLLARendswitch] = ACTIONS(1537), + [anon_sym_DOLLARfor] = ACTIONS(1537), + [anon_sym_DOLLARforeach] = ACTIONS(1537), + [anon_sym_DOLLARalignof] = ACTIONS(1537), + [anon_sym_DOLLARextnameof] = ACTIONS(1537), + [anon_sym_DOLLARnameof] = ACTIONS(1537), + [anon_sym_DOLLARoffsetof] = ACTIONS(1537), + [anon_sym_DOLLARqnameof] = ACTIONS(1537), + [anon_sym_DOLLARvaconst] = ACTIONS(1537), + [anon_sym_DOLLARvaarg] = ACTIONS(1537), + [anon_sym_DOLLARvaref] = ACTIONS(1537), + [anon_sym_DOLLARvaexpr] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [anon_sym_DOLLARvacount] = ACTIONS(1537), + [anon_sym_DOLLAReval] = ACTIONS(1537), + [anon_sym_DOLLARis_const] = ACTIONS(1537), + [anon_sym_DOLLARsizeof] = ACTIONS(1537), + [anon_sym_DOLLARstringify] = ACTIONS(1537), + [anon_sym_DOLLARappend] = ACTIONS(1537), + [anon_sym_DOLLARconcat] = ACTIONS(1537), + [anon_sym_DOLLARdefined] = ACTIONS(1537), + [anon_sym_DOLLARembed] = ACTIONS(1537), + [anon_sym_DOLLARand] = ACTIONS(1537), + [anon_sym_DOLLARor] = ACTIONS(1537), + [anon_sym_DOLLARfeature] = ACTIONS(1537), + [anon_sym_DOLLARassignable] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_typeid] = ACTIONS(1537), + [anon_sym_LBRACE_PIPE] = ACTIONS(1539), + [anon_sym_void] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_ichar] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [anon_sym_ushort] = ACTIONS(1537), + [anon_sym_uint] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_ulong] = ACTIONS(1537), + [anon_sym_int128] = ACTIONS(1537), + [anon_sym_uint128] = ACTIONS(1537), + [anon_sym_float] = ACTIONS(1537), + [anon_sym_double] = ACTIONS(1537), + [anon_sym_float16] = ACTIONS(1537), + [anon_sym_bfloat16] = ACTIONS(1537), + [anon_sym_float128] = ACTIONS(1537), + [anon_sym_iptr] = ACTIONS(1537), + [anon_sym_uptr] = ACTIONS(1537), + [anon_sym_isz] = ACTIONS(1537), + [anon_sym_usz] = ACTIONS(1537), + [anon_sym_anyfault] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_DOLLARtypeof] = ACTIONS(1537), + [anon_sym_DOLLARtypefrom] = ACTIONS(1537), + [anon_sym_DOLLARevaltype] = ACTIONS(1537), + [anon_sym_DOLLARvatype] = ACTIONS(1537), + [sym_real_literal] = ACTIONS(1539), }, - [532] = { - [sym_line_comment] = STATE(532), - [sym_doc_comment] = STATE(532), - [sym_block_comment] = STATE(532), - [sym_ident] = ACTIONS(1623), - [sym_integer_literal] = ACTIONS(1625), - [anon_sym_SQUOTE] = ACTIONS(1625), - [anon_sym_DQUOTE] = ACTIONS(1625), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_bytes_literal] = ACTIONS(1625), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1623), - [sym_at_ident] = ACTIONS(1625), - [sym_hash_ident] = ACTIONS(1625), - [sym_type_ident] = ACTIONS(1625), - [sym_ct_type_ident] = ACTIONS(1625), - [sym_const_ident] = ACTIONS(1623), - [sym_builtin] = ACTIONS(1625), - [anon_sym_LPAREN] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_static] = ACTIONS(1623), - [anon_sym_tlocal] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1625), - [anon_sym_fn] = ACTIONS(1623), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_const] = ACTIONS(1623), - [anon_sym_var] = ACTIONS(1623), - [anon_sym_return] = ACTIONS(1623), - [anon_sym_continue] = ACTIONS(1623), - [anon_sym_break] = ACTIONS(1623), - [anon_sym_defer] = ACTIONS(1623), - [anon_sym_assert] = ACTIONS(1623), - [anon_sym_nextcase] = ACTIONS(1623), - [anon_sym_switch] = ACTIONS(1623), - [anon_sym_AMP_AMP] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1623), - [anon_sym_for] = ACTIONS(1623), - [anon_sym_foreach] = ACTIONS(1623), - [anon_sym_foreach_r] = ACTIONS(1623), - [anon_sym_while] = ACTIONS(1623), - [anon_sym_do] = ACTIONS(1623), - [anon_sym_int] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_asm] = ACTIONS(1623), - [anon_sym_DOLLARassert] = ACTIONS(1623), - [anon_sym_DOLLARerror] = ACTIONS(1623), - [anon_sym_DOLLARecho] = ACTIONS(1623), - [anon_sym_DOLLARif] = ACTIONS(1623), - [anon_sym_DOLLARendif] = ACTIONS(1623), - [anon_sym_DOLLARelse] = ACTIONS(1623), - [anon_sym_DOLLARswitch] = ACTIONS(1623), - [anon_sym_DOLLARfor] = ACTIONS(1623), - [anon_sym_DOLLARforeach] = ACTIONS(1623), - [anon_sym_DOLLARalignof] = ACTIONS(1623), - [anon_sym_DOLLARextnameof] = ACTIONS(1623), - [anon_sym_DOLLARnameof] = ACTIONS(1623), - [anon_sym_DOLLARoffsetof] = ACTIONS(1623), - [anon_sym_DOLLARqnameof] = ACTIONS(1623), - [anon_sym_DOLLAReval] = ACTIONS(1623), - [anon_sym_DOLLARdefined] = ACTIONS(1623), - [anon_sym_DOLLARsizeof] = ACTIONS(1623), - [anon_sym_DOLLARstringify] = ACTIONS(1623), - [anon_sym_DOLLARis_const] = ACTIONS(1623), - [anon_sym_DOLLARvaconst] = ACTIONS(1623), - [anon_sym_DOLLARvaarg] = ACTIONS(1623), - [anon_sym_DOLLARvaref] = ACTIONS(1623), - [anon_sym_DOLLARvaexpr] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_null] = ACTIONS(1623), - [anon_sym_DOLLARvacount] = ACTIONS(1623), - [anon_sym_DOLLARfeature] = ACTIONS(1623), - [anon_sym_DOLLARand] = ACTIONS(1623), - [anon_sym_DOLLARor] = ACTIONS(1623), - [anon_sym_DOLLARassignable] = ACTIONS(1623), - [anon_sym_DOLLARembed] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1625), - [anon_sym_TILDE] = ACTIONS(1625), - [anon_sym_PLUS_PLUS] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1625), - [anon_sym_typeid] = ACTIONS(1623), - [anon_sym_LBRACE_PIPE] = ACTIONS(1625), - [anon_sym_void] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_ichar] = ACTIONS(1623), - [anon_sym_short] = ACTIONS(1623), - [anon_sym_ushort] = ACTIONS(1623), - [anon_sym_uint] = ACTIONS(1623), - [anon_sym_long] = ACTIONS(1623), - [anon_sym_ulong] = ACTIONS(1623), - [anon_sym_int128] = ACTIONS(1623), - [anon_sym_uint128] = ACTIONS(1623), - [anon_sym_float] = ACTIONS(1623), - [anon_sym_double] = ACTIONS(1623), - [anon_sym_float16] = ACTIONS(1623), - [anon_sym_bfloat16] = ACTIONS(1623), - [anon_sym_float128] = ACTIONS(1623), - [anon_sym_iptr] = ACTIONS(1623), - [anon_sym_uptr] = ACTIONS(1623), - [anon_sym_isz] = ACTIONS(1623), - [anon_sym_usz] = ACTIONS(1623), - [anon_sym_anyfault] = ACTIONS(1623), - [anon_sym_any] = ACTIONS(1623), - [anon_sym_DOLLARtypeof] = ACTIONS(1623), - [anon_sym_DOLLARtypefrom] = ACTIONS(1623), - [anon_sym_DOLLARvatype] = ACTIONS(1623), - [anon_sym_DOLLARevaltype] = ACTIONS(1623), - [sym_real_literal] = ACTIONS(1625), + [495] = { + [sym_line_comment] = STATE(495), + [sym_doc_comment] = STATE(495), + [sym_block_comment] = STATE(495), + [sym_ident] = ACTIONS(1617), + [sym_integer_literal] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [anon_sym_BQUOTE] = ACTIONS(1619), + [sym_bytes_literal] = ACTIONS(1619), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1617), + [sym_at_ident] = ACTIONS(1619), + [sym_hash_ident] = ACTIONS(1619), + [sym_type_ident] = ACTIONS(1619), + [sym_ct_type_ident] = ACTIONS(1619), + [sym_const_ident] = ACTIONS(1617), + [sym_builtin] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_tlocal] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [anon_sym_var] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_defer] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_nextcase] = ACTIONS(1617), + [anon_sym_switch] = ACTIONS(1617), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_foreach] = ACTIONS(1617), + [anon_sym_foreach_r] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_int] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym_DOLLARassert] = ACTIONS(1617), + [anon_sym_DOLLARerror] = ACTIONS(1617), + [anon_sym_DOLLARecho] = ACTIONS(1617), + [anon_sym_DOLLARif] = ACTIONS(1617), + [anon_sym_DOLLARcase] = ACTIONS(1617), + [anon_sym_DOLLARdefault] = ACTIONS(1617), + [anon_sym_DOLLARswitch] = ACTIONS(1617), + [anon_sym_DOLLARendswitch] = ACTIONS(1617), + [anon_sym_DOLLARfor] = ACTIONS(1617), + [anon_sym_DOLLARforeach] = ACTIONS(1617), + [anon_sym_DOLLARalignof] = ACTIONS(1617), + [anon_sym_DOLLARextnameof] = ACTIONS(1617), + [anon_sym_DOLLARnameof] = ACTIONS(1617), + [anon_sym_DOLLARoffsetof] = ACTIONS(1617), + [anon_sym_DOLLARqnameof] = ACTIONS(1617), + [anon_sym_DOLLARvaconst] = ACTIONS(1617), + [anon_sym_DOLLARvaarg] = ACTIONS(1617), + [anon_sym_DOLLARvaref] = ACTIONS(1617), + [anon_sym_DOLLARvaexpr] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [anon_sym_DOLLARvacount] = ACTIONS(1617), + [anon_sym_DOLLAReval] = ACTIONS(1617), + [anon_sym_DOLLARis_const] = ACTIONS(1617), + [anon_sym_DOLLARsizeof] = ACTIONS(1617), + [anon_sym_DOLLARstringify] = ACTIONS(1617), + [anon_sym_DOLLARappend] = ACTIONS(1617), + [anon_sym_DOLLARconcat] = ACTIONS(1617), + [anon_sym_DOLLARdefined] = ACTIONS(1617), + [anon_sym_DOLLARembed] = ACTIONS(1617), + [anon_sym_DOLLARand] = ACTIONS(1617), + [anon_sym_DOLLARor] = ACTIONS(1617), + [anon_sym_DOLLARfeature] = ACTIONS(1617), + [anon_sym_DOLLARassignable] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_typeid] = ACTIONS(1617), + [anon_sym_LBRACE_PIPE] = ACTIONS(1619), + [anon_sym_void] = ACTIONS(1617), + [anon_sym_bool] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_ichar] = ACTIONS(1617), + [anon_sym_short] = ACTIONS(1617), + [anon_sym_ushort] = ACTIONS(1617), + [anon_sym_uint] = ACTIONS(1617), + [anon_sym_long] = ACTIONS(1617), + [anon_sym_ulong] = ACTIONS(1617), + [anon_sym_int128] = ACTIONS(1617), + [anon_sym_uint128] = ACTIONS(1617), + [anon_sym_float] = ACTIONS(1617), + [anon_sym_double] = ACTIONS(1617), + [anon_sym_float16] = ACTIONS(1617), + [anon_sym_bfloat16] = ACTIONS(1617), + [anon_sym_float128] = ACTIONS(1617), + [anon_sym_iptr] = ACTIONS(1617), + [anon_sym_uptr] = ACTIONS(1617), + [anon_sym_isz] = ACTIONS(1617), + [anon_sym_usz] = ACTIONS(1617), + [anon_sym_anyfault] = ACTIONS(1617), + [anon_sym_any] = ACTIONS(1617), + [anon_sym_DOLLARtypeof] = ACTIONS(1617), + [anon_sym_DOLLARtypefrom] = ACTIONS(1617), + [anon_sym_DOLLARevaltype] = ACTIONS(1617), + [anon_sym_DOLLARvatype] = ACTIONS(1617), + [sym_real_literal] = ACTIONS(1619), }, - [533] = { - [sym_line_comment] = STATE(533), - [sym_doc_comment] = STATE(533), - [sym_block_comment] = STATE(533), - [sym_ident] = ACTIONS(1381), - [sym_integer_literal] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1383), - [anon_sym_BQUOTE] = ACTIONS(1383), - [sym_bytes_literal] = ACTIONS(1383), + [496] = { + [sym_line_comment] = STATE(496), + [sym_doc_comment] = STATE(496), + [sym_block_comment] = STATE(496), + [sym_ident] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [sym_bytes_literal] = ACTIONS(1419), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1381), - [sym_at_ident] = ACTIONS(1383), - [sym_hash_ident] = ACTIONS(1383), - [sym_type_ident] = ACTIONS(1383), - [sym_ct_type_ident] = ACTIONS(1383), - [sym_const_ident] = ACTIONS(1381), - [sym_builtin] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_tlocal] = ACTIONS(1381), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_fn] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_const] = ACTIONS(1381), - [anon_sym_var] = ACTIONS(1381), - [anon_sym_return] = ACTIONS(1381), - [anon_sym_continue] = ACTIONS(1381), - [anon_sym_break] = ACTIONS(1381), - [anon_sym_defer] = ACTIONS(1381), - [anon_sym_assert] = ACTIONS(1381), - [anon_sym_nextcase] = ACTIONS(1381), - [anon_sym_switch] = ACTIONS(1381), - [anon_sym_AMP_AMP] = ACTIONS(1383), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_for] = ACTIONS(1381), - [anon_sym_foreach] = ACTIONS(1381), - [anon_sym_foreach_r] = ACTIONS(1381), - [anon_sym_while] = ACTIONS(1381), - [anon_sym_do] = ACTIONS(1381), - [anon_sym_int] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1381), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_asm] = ACTIONS(1381), - [anon_sym_DOLLARassert] = ACTIONS(1381), - [anon_sym_DOLLARerror] = ACTIONS(1381), - [anon_sym_DOLLARecho] = ACTIONS(1381), - [anon_sym_DOLLARif] = ACTIONS(1381), - [anon_sym_DOLLARendif] = ACTIONS(1381), - [anon_sym_DOLLARelse] = ACTIONS(1381), - [anon_sym_DOLLARswitch] = ACTIONS(1381), - [anon_sym_DOLLARfor] = ACTIONS(1381), - [anon_sym_DOLLARforeach] = ACTIONS(1381), - [anon_sym_DOLLARalignof] = ACTIONS(1381), - [anon_sym_DOLLARextnameof] = ACTIONS(1381), - [anon_sym_DOLLARnameof] = ACTIONS(1381), - [anon_sym_DOLLARoffsetof] = ACTIONS(1381), - [anon_sym_DOLLARqnameof] = ACTIONS(1381), - [anon_sym_DOLLAReval] = ACTIONS(1381), - [anon_sym_DOLLARdefined] = ACTIONS(1381), - [anon_sym_DOLLARsizeof] = ACTIONS(1381), - [anon_sym_DOLLARstringify] = ACTIONS(1381), - [anon_sym_DOLLARis_const] = ACTIONS(1381), - [anon_sym_DOLLARvaconst] = ACTIONS(1381), - [anon_sym_DOLLARvaarg] = ACTIONS(1381), - [anon_sym_DOLLARvaref] = ACTIONS(1381), - [anon_sym_DOLLARvaexpr] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1381), - [anon_sym_false] = ACTIONS(1381), - [anon_sym_null] = ACTIONS(1381), - [anon_sym_DOLLARvacount] = ACTIONS(1381), - [anon_sym_DOLLARfeature] = ACTIONS(1381), - [anon_sym_DOLLARand] = ACTIONS(1381), - [anon_sym_DOLLARor] = ACTIONS(1381), - [anon_sym_DOLLARassignable] = ACTIONS(1381), - [anon_sym_DOLLARembed] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_TILDE] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1383), - [anon_sym_DASH_DASH] = ACTIONS(1383), - [anon_sym_typeid] = ACTIONS(1381), - [anon_sym_LBRACE_PIPE] = ACTIONS(1383), - [anon_sym_void] = ACTIONS(1381), - [anon_sym_bool] = ACTIONS(1381), - [anon_sym_char] = ACTIONS(1381), - [anon_sym_ichar] = ACTIONS(1381), - [anon_sym_short] = ACTIONS(1381), - [anon_sym_ushort] = ACTIONS(1381), - [anon_sym_uint] = ACTIONS(1381), - [anon_sym_long] = ACTIONS(1381), - [anon_sym_ulong] = ACTIONS(1381), - [anon_sym_int128] = ACTIONS(1381), - [anon_sym_uint128] = ACTIONS(1381), - [anon_sym_float] = ACTIONS(1381), - [anon_sym_double] = ACTIONS(1381), - [anon_sym_float16] = ACTIONS(1381), - [anon_sym_bfloat16] = ACTIONS(1381), - [anon_sym_float128] = ACTIONS(1381), - [anon_sym_iptr] = ACTIONS(1381), - [anon_sym_uptr] = ACTIONS(1381), - [anon_sym_isz] = ACTIONS(1381), - [anon_sym_usz] = ACTIONS(1381), - [anon_sym_anyfault] = ACTIONS(1381), - [anon_sym_any] = ACTIONS(1381), - [anon_sym_DOLLARtypeof] = ACTIONS(1381), - [anon_sym_DOLLARtypefrom] = ACTIONS(1381), - [anon_sym_DOLLARvatype] = ACTIONS(1381), - [anon_sym_DOLLARevaltype] = ACTIONS(1381), - [sym_real_literal] = ACTIONS(1383), - }, - [534] = { - [sym_line_comment] = STATE(534), - [sym_doc_comment] = STATE(534), - [sym_block_comment] = STATE(534), - [sym_ident] = ACTIONS(1587), - [sym_integer_literal] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [anon_sym_BQUOTE] = ACTIONS(1589), - [sym_bytes_literal] = ACTIONS(1589), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1587), - [sym_at_ident] = ACTIONS(1589), - [sym_hash_ident] = ACTIONS(1589), - [sym_type_ident] = ACTIONS(1589), - [sym_ct_type_ident] = ACTIONS(1589), - [sym_const_ident] = ACTIONS(1587), - [sym_builtin] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_static] = ACTIONS(1587), - [anon_sym_tlocal] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_fn] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [anon_sym_var] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_defer] = ACTIONS(1587), - [anon_sym_assert] = ACTIONS(1587), - [anon_sym_nextcase] = ACTIONS(1587), - [anon_sym_switch] = ACTIONS(1587), - [anon_sym_AMP_AMP] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_foreach] = ACTIONS(1587), - [anon_sym_foreach_r] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_int] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_asm] = ACTIONS(1587), - [anon_sym_DOLLARassert] = ACTIONS(1587), - [anon_sym_DOLLARerror] = ACTIONS(1587), - [anon_sym_DOLLARecho] = ACTIONS(1587), - [anon_sym_DOLLARif] = ACTIONS(1587), - [anon_sym_DOLLARendif] = ACTIONS(1587), - [anon_sym_DOLLARelse] = ACTIONS(1587), - [anon_sym_DOLLARswitch] = ACTIONS(1587), - [anon_sym_DOLLARfor] = ACTIONS(1587), - [anon_sym_DOLLARforeach] = ACTIONS(1587), - [anon_sym_DOLLARalignof] = ACTIONS(1587), - [anon_sym_DOLLARextnameof] = ACTIONS(1587), - [anon_sym_DOLLARnameof] = ACTIONS(1587), - [anon_sym_DOLLARoffsetof] = ACTIONS(1587), - [anon_sym_DOLLARqnameof] = ACTIONS(1587), - [anon_sym_DOLLAReval] = ACTIONS(1587), - [anon_sym_DOLLARdefined] = ACTIONS(1587), - [anon_sym_DOLLARsizeof] = ACTIONS(1587), - [anon_sym_DOLLARstringify] = ACTIONS(1587), - [anon_sym_DOLLARis_const] = ACTIONS(1587), - [anon_sym_DOLLARvaconst] = ACTIONS(1587), - [anon_sym_DOLLARvaarg] = ACTIONS(1587), - [anon_sym_DOLLARvaref] = ACTIONS(1587), - [anon_sym_DOLLARvaexpr] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [anon_sym_DOLLARvacount] = ACTIONS(1587), - [anon_sym_DOLLARfeature] = ACTIONS(1587), - [anon_sym_DOLLARand] = ACTIONS(1587), - [anon_sym_DOLLARor] = ACTIONS(1587), - [anon_sym_DOLLARassignable] = ACTIONS(1587), - [anon_sym_DOLLARembed] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_typeid] = ACTIONS(1587), - [anon_sym_LBRACE_PIPE] = ACTIONS(1589), - [anon_sym_void] = ACTIONS(1587), - [anon_sym_bool] = ACTIONS(1587), - [anon_sym_char] = ACTIONS(1587), - [anon_sym_ichar] = ACTIONS(1587), - [anon_sym_short] = ACTIONS(1587), - [anon_sym_ushort] = ACTIONS(1587), - [anon_sym_uint] = ACTIONS(1587), - [anon_sym_long] = ACTIONS(1587), - [anon_sym_ulong] = ACTIONS(1587), - [anon_sym_int128] = ACTIONS(1587), - [anon_sym_uint128] = ACTIONS(1587), - [anon_sym_float] = ACTIONS(1587), - [anon_sym_double] = ACTIONS(1587), - [anon_sym_float16] = ACTIONS(1587), - [anon_sym_bfloat16] = ACTIONS(1587), - [anon_sym_float128] = ACTIONS(1587), - [anon_sym_iptr] = ACTIONS(1587), - [anon_sym_uptr] = ACTIONS(1587), - [anon_sym_isz] = ACTIONS(1587), - [anon_sym_usz] = ACTIONS(1587), - [anon_sym_anyfault] = ACTIONS(1587), - [anon_sym_any] = ACTIONS(1587), - [anon_sym_DOLLARtypeof] = ACTIONS(1587), - [anon_sym_DOLLARtypefrom] = ACTIONS(1587), - [anon_sym_DOLLARvatype] = ACTIONS(1587), - [anon_sym_DOLLARevaltype] = ACTIONS(1587), - [sym_real_literal] = ACTIONS(1589), - }, - [535] = { - [sym_line_comment] = STATE(535), - [sym_doc_comment] = STATE(535), - [sym_block_comment] = STATE(535), - [sym_ident] = ACTIONS(1579), - [sym_integer_literal] = ACTIONS(1581), - [anon_sym_SQUOTE] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1581), - [anon_sym_BQUOTE] = ACTIONS(1581), - [sym_bytes_literal] = ACTIONS(1581), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1579), - [sym_at_ident] = ACTIONS(1581), - [sym_hash_ident] = ACTIONS(1581), - [sym_type_ident] = ACTIONS(1581), - [sym_ct_type_ident] = ACTIONS(1581), - [sym_const_ident] = ACTIONS(1579), - [sym_builtin] = ACTIONS(1581), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_tlocal] = ACTIONS(1579), - [anon_sym_SEMI] = ACTIONS(1581), - [anon_sym_fn] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_var] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_defer] = ACTIONS(1579), - [anon_sym_assert] = ACTIONS(1579), - [anon_sym_nextcase] = ACTIONS(1579), - [anon_sym_switch] = ACTIONS(1579), - [anon_sym_AMP_AMP] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_foreach] = ACTIONS(1579), - [anon_sym_foreach_r] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_int] = ACTIONS(1579), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_STAR] = ACTIONS(1581), - [anon_sym_asm] = ACTIONS(1579), - [anon_sym_DOLLARassert] = ACTIONS(1579), - [anon_sym_DOLLARerror] = ACTIONS(1579), - [anon_sym_DOLLARecho] = ACTIONS(1579), - [anon_sym_DOLLARif] = ACTIONS(1579), - [anon_sym_DOLLARendif] = ACTIONS(1579), - [anon_sym_DOLLARelse] = ACTIONS(1579), - [anon_sym_DOLLARswitch] = ACTIONS(1579), - [anon_sym_DOLLARfor] = ACTIONS(1579), - [anon_sym_DOLLARforeach] = ACTIONS(1579), - [anon_sym_DOLLARalignof] = ACTIONS(1579), - [anon_sym_DOLLARextnameof] = ACTIONS(1579), - [anon_sym_DOLLARnameof] = ACTIONS(1579), - [anon_sym_DOLLARoffsetof] = ACTIONS(1579), - [anon_sym_DOLLARqnameof] = ACTIONS(1579), - [anon_sym_DOLLAReval] = ACTIONS(1579), - [anon_sym_DOLLARdefined] = ACTIONS(1579), - [anon_sym_DOLLARsizeof] = ACTIONS(1579), - [anon_sym_DOLLARstringify] = ACTIONS(1579), - [anon_sym_DOLLARis_const] = ACTIONS(1579), - [anon_sym_DOLLARvaconst] = ACTIONS(1579), - [anon_sym_DOLLARvaarg] = ACTIONS(1579), - [anon_sym_DOLLARvaref] = ACTIONS(1579), - [anon_sym_DOLLARvaexpr] = ACTIONS(1579), - [anon_sym_true] = ACTIONS(1579), - [anon_sym_false] = ACTIONS(1579), - [anon_sym_null] = ACTIONS(1579), - [anon_sym_DOLLARvacount] = ACTIONS(1579), - [anon_sym_DOLLARfeature] = ACTIONS(1579), - [anon_sym_DOLLARand] = ACTIONS(1579), - [anon_sym_DOLLARor] = ACTIONS(1579), - [anon_sym_DOLLARassignable] = ACTIONS(1579), - [anon_sym_DOLLARembed] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1581), - [anon_sym_TILDE] = ACTIONS(1581), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [anon_sym_typeid] = ACTIONS(1579), - [anon_sym_LBRACE_PIPE] = ACTIONS(1581), - [anon_sym_void] = ACTIONS(1579), - [anon_sym_bool] = ACTIONS(1579), - [anon_sym_char] = ACTIONS(1579), - [anon_sym_ichar] = ACTIONS(1579), - [anon_sym_short] = ACTIONS(1579), - [anon_sym_ushort] = ACTIONS(1579), - [anon_sym_uint] = ACTIONS(1579), - [anon_sym_long] = ACTIONS(1579), - [anon_sym_ulong] = ACTIONS(1579), - [anon_sym_int128] = ACTIONS(1579), - [anon_sym_uint128] = ACTIONS(1579), - [anon_sym_float] = ACTIONS(1579), - [anon_sym_double] = ACTIONS(1579), - [anon_sym_float16] = ACTIONS(1579), - [anon_sym_bfloat16] = ACTIONS(1579), - [anon_sym_float128] = ACTIONS(1579), - [anon_sym_iptr] = ACTIONS(1579), - [anon_sym_uptr] = ACTIONS(1579), - [anon_sym_isz] = ACTIONS(1579), - [anon_sym_usz] = ACTIONS(1579), - [anon_sym_anyfault] = ACTIONS(1579), - [anon_sym_any] = ACTIONS(1579), - [anon_sym_DOLLARtypeof] = ACTIONS(1579), - [anon_sym_DOLLARtypefrom] = ACTIONS(1579), - [anon_sym_DOLLARvatype] = ACTIONS(1579), - [anon_sym_DOLLARevaltype] = ACTIONS(1579), - [sym_real_literal] = ACTIONS(1581), - }, - [536] = { - [sym_line_comment] = STATE(536), - [sym_doc_comment] = STATE(536), - [sym_block_comment] = STATE(536), - [sym_ident] = ACTIONS(1575), - [sym_integer_literal] = ACTIONS(1577), - [anon_sym_SQUOTE] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1577), - [anon_sym_BQUOTE] = ACTIONS(1577), - [sym_bytes_literal] = ACTIONS(1577), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1575), - [sym_at_ident] = ACTIONS(1577), - [sym_hash_ident] = ACTIONS(1577), - [sym_type_ident] = ACTIONS(1577), - [sym_ct_type_ident] = ACTIONS(1577), - [sym_const_ident] = ACTIONS(1575), - [sym_builtin] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1575), - [anon_sym_static] = ACTIONS(1575), - [anon_sym_tlocal] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_fn] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [anon_sym_var] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_defer] = ACTIONS(1575), - [anon_sym_assert] = ACTIONS(1575), - [anon_sym_nextcase] = ACTIONS(1575), - [anon_sym_switch] = ACTIONS(1575), - [anon_sym_AMP_AMP] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_foreach] = ACTIONS(1575), - [anon_sym_foreach_r] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_do] = ACTIONS(1575), - [anon_sym_int] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_asm] = ACTIONS(1575), - [anon_sym_DOLLARassert] = ACTIONS(1575), - [anon_sym_DOLLARerror] = ACTIONS(1575), - [anon_sym_DOLLARecho] = ACTIONS(1575), - [anon_sym_DOLLARif] = ACTIONS(1575), - [anon_sym_DOLLARendif] = ACTIONS(1575), - [anon_sym_DOLLARelse] = ACTIONS(1575), - [anon_sym_DOLLARswitch] = ACTIONS(1575), - [anon_sym_DOLLARfor] = ACTIONS(1575), - [anon_sym_DOLLARforeach] = ACTIONS(1575), - [anon_sym_DOLLARalignof] = ACTIONS(1575), - [anon_sym_DOLLARextnameof] = ACTIONS(1575), - [anon_sym_DOLLARnameof] = ACTIONS(1575), - [anon_sym_DOLLARoffsetof] = ACTIONS(1575), - [anon_sym_DOLLARqnameof] = ACTIONS(1575), - [anon_sym_DOLLAReval] = ACTIONS(1575), - [anon_sym_DOLLARdefined] = ACTIONS(1575), - [anon_sym_DOLLARsizeof] = ACTIONS(1575), - [anon_sym_DOLLARstringify] = ACTIONS(1575), - [anon_sym_DOLLARis_const] = ACTIONS(1575), - [anon_sym_DOLLARvaconst] = ACTIONS(1575), - [anon_sym_DOLLARvaarg] = ACTIONS(1575), - [anon_sym_DOLLARvaref] = ACTIONS(1575), - [anon_sym_DOLLARvaexpr] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_DOLLARvacount] = ACTIONS(1575), - [anon_sym_DOLLARfeature] = ACTIONS(1575), - [anon_sym_DOLLARand] = ACTIONS(1575), - [anon_sym_DOLLARor] = ACTIONS(1575), - [anon_sym_DOLLARassignable] = ACTIONS(1575), - [anon_sym_DOLLARembed] = ACTIONS(1575), - [anon_sym_BANG] = ACTIONS(1577), - [anon_sym_TILDE] = ACTIONS(1577), - [anon_sym_PLUS_PLUS] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1577), - [anon_sym_typeid] = ACTIONS(1575), - [anon_sym_LBRACE_PIPE] = ACTIONS(1577), - [anon_sym_void] = ACTIONS(1575), - [anon_sym_bool] = ACTIONS(1575), - [anon_sym_char] = ACTIONS(1575), - [anon_sym_ichar] = ACTIONS(1575), - [anon_sym_short] = ACTIONS(1575), - [anon_sym_ushort] = ACTIONS(1575), - [anon_sym_uint] = ACTIONS(1575), - [anon_sym_long] = ACTIONS(1575), - [anon_sym_ulong] = ACTIONS(1575), - [anon_sym_int128] = ACTIONS(1575), - [anon_sym_uint128] = ACTIONS(1575), - [anon_sym_float] = ACTIONS(1575), - [anon_sym_double] = ACTIONS(1575), - [anon_sym_float16] = ACTIONS(1575), - [anon_sym_bfloat16] = ACTIONS(1575), - [anon_sym_float128] = ACTIONS(1575), - [anon_sym_iptr] = ACTIONS(1575), - [anon_sym_uptr] = ACTIONS(1575), - [anon_sym_isz] = ACTIONS(1575), - [anon_sym_usz] = ACTIONS(1575), - [anon_sym_anyfault] = ACTIONS(1575), - [anon_sym_any] = ACTIONS(1575), - [anon_sym_DOLLARtypeof] = ACTIONS(1575), - [anon_sym_DOLLARtypefrom] = ACTIONS(1575), - [anon_sym_DOLLARvatype] = ACTIONS(1575), - [anon_sym_DOLLARevaltype] = ACTIONS(1575), - [sym_real_literal] = ACTIONS(1577), + [sym_ct_ident] = ACTIONS(1417), + [sym_at_ident] = ACTIONS(1419), + [sym_hash_ident] = ACTIONS(1419), + [sym_type_ident] = ACTIONS(1419), + [sym_ct_type_ident] = ACTIONS(1419), + [sym_const_ident] = ACTIONS(1417), + [sym_builtin] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_static] = ACTIONS(1417), + [anon_sym_tlocal] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_fn] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_var] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1417), + [anon_sym_continue] = ACTIONS(1417), + [anon_sym_break] = ACTIONS(1417), + [anon_sym_defer] = ACTIONS(1417), + [anon_sym_assert] = ACTIONS(1417), + [anon_sym_nextcase] = ACTIONS(1417), + [anon_sym_switch] = ACTIONS(1417), + [anon_sym_AMP_AMP] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1417), + [anon_sym_for] = ACTIONS(1417), + [anon_sym_foreach] = ACTIONS(1417), + [anon_sym_foreach_r] = ACTIONS(1417), + [anon_sym_while] = ACTIONS(1417), + [anon_sym_do] = ACTIONS(1417), + [anon_sym_int] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_asm] = ACTIONS(1417), + [anon_sym_DOLLARassert] = ACTIONS(1417), + [anon_sym_DOLLARerror] = ACTIONS(1417), + [anon_sym_DOLLARecho] = ACTIONS(1417), + [anon_sym_DOLLARif] = ACTIONS(1417), + [anon_sym_DOLLARendif] = ACTIONS(1417), + [anon_sym_DOLLARelse] = ACTIONS(1417), + [anon_sym_DOLLARswitch] = ACTIONS(1417), + [anon_sym_DOLLARfor] = ACTIONS(1417), + [anon_sym_DOLLARforeach] = ACTIONS(1417), + [anon_sym_DOLLARalignof] = ACTIONS(1417), + [anon_sym_DOLLARextnameof] = ACTIONS(1417), + [anon_sym_DOLLARnameof] = ACTIONS(1417), + [anon_sym_DOLLARoffsetof] = ACTIONS(1417), + [anon_sym_DOLLARqnameof] = ACTIONS(1417), + [anon_sym_DOLLARvaconst] = ACTIONS(1417), + [anon_sym_DOLLARvaarg] = ACTIONS(1417), + [anon_sym_DOLLARvaref] = ACTIONS(1417), + [anon_sym_DOLLARvaexpr] = ACTIONS(1417), + [anon_sym_true] = ACTIONS(1417), + [anon_sym_false] = ACTIONS(1417), + [anon_sym_null] = ACTIONS(1417), + [anon_sym_DOLLARvacount] = ACTIONS(1417), + [anon_sym_DOLLAReval] = ACTIONS(1417), + [anon_sym_DOLLARis_const] = ACTIONS(1417), + [anon_sym_DOLLARsizeof] = ACTIONS(1417), + [anon_sym_DOLLARstringify] = ACTIONS(1417), + [anon_sym_DOLLARappend] = ACTIONS(1417), + [anon_sym_DOLLARconcat] = ACTIONS(1417), + [anon_sym_DOLLARdefined] = ACTIONS(1417), + [anon_sym_DOLLARembed] = ACTIONS(1417), + [anon_sym_DOLLARand] = ACTIONS(1417), + [anon_sym_DOLLARor] = ACTIONS(1417), + [anon_sym_DOLLARfeature] = ACTIONS(1417), + [anon_sym_DOLLARassignable] = ACTIONS(1417), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [anon_sym_typeid] = ACTIONS(1417), + [anon_sym_LBRACE_PIPE] = ACTIONS(1419), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_bool] = ACTIONS(1417), + [anon_sym_char] = ACTIONS(1417), + [anon_sym_ichar] = ACTIONS(1417), + [anon_sym_short] = ACTIONS(1417), + [anon_sym_ushort] = ACTIONS(1417), + [anon_sym_uint] = ACTIONS(1417), + [anon_sym_long] = ACTIONS(1417), + [anon_sym_ulong] = ACTIONS(1417), + [anon_sym_int128] = ACTIONS(1417), + [anon_sym_uint128] = ACTIONS(1417), + [anon_sym_float] = ACTIONS(1417), + [anon_sym_double] = ACTIONS(1417), + [anon_sym_float16] = ACTIONS(1417), + [anon_sym_bfloat16] = ACTIONS(1417), + [anon_sym_float128] = ACTIONS(1417), + [anon_sym_iptr] = ACTIONS(1417), + [anon_sym_uptr] = ACTIONS(1417), + [anon_sym_isz] = ACTIONS(1417), + [anon_sym_usz] = ACTIONS(1417), + [anon_sym_anyfault] = ACTIONS(1417), + [anon_sym_any] = ACTIONS(1417), + [anon_sym_DOLLARtypeof] = ACTIONS(1417), + [anon_sym_DOLLARtypefrom] = ACTIONS(1417), + [anon_sym_DOLLARevaltype] = ACTIONS(1417), + [anon_sym_DOLLARvatype] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1419), }, - [537] = { - [sym_line_comment] = STATE(537), - [sym_doc_comment] = STATE(537), - [sym_block_comment] = STATE(537), - [sym_ident] = ACTIONS(1563), - [sym_integer_literal] = ACTIONS(1565), - [anon_sym_SQUOTE] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1565), - [anon_sym_BQUOTE] = ACTIONS(1565), - [sym_bytes_literal] = ACTIONS(1565), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1563), - [sym_at_ident] = ACTIONS(1565), - [sym_hash_ident] = ACTIONS(1565), - [sym_type_ident] = ACTIONS(1565), - [sym_ct_type_ident] = ACTIONS(1565), - [sym_const_ident] = ACTIONS(1563), - [sym_builtin] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_static] = ACTIONS(1563), - [anon_sym_tlocal] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_fn] = ACTIONS(1563), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_const] = ACTIONS(1563), - [anon_sym_var] = ACTIONS(1563), - [anon_sym_return] = ACTIONS(1563), - [anon_sym_continue] = ACTIONS(1563), - [anon_sym_break] = ACTIONS(1563), - [anon_sym_defer] = ACTIONS(1563), - [anon_sym_assert] = ACTIONS(1563), - [anon_sym_nextcase] = ACTIONS(1563), - [anon_sym_switch] = ACTIONS(1563), - [anon_sym_AMP_AMP] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1563), - [anon_sym_for] = ACTIONS(1563), - [anon_sym_foreach] = ACTIONS(1563), - [anon_sym_foreach_r] = ACTIONS(1563), - [anon_sym_while] = ACTIONS(1563), - [anon_sym_do] = ACTIONS(1563), - [anon_sym_int] = ACTIONS(1563), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_asm] = ACTIONS(1563), - [anon_sym_DOLLARassert] = ACTIONS(1563), - [anon_sym_DOLLARerror] = ACTIONS(1563), - [anon_sym_DOLLARecho] = ACTIONS(1563), - [anon_sym_DOLLARif] = ACTIONS(1563), - [anon_sym_DOLLARendif] = ACTIONS(1563), - [anon_sym_DOLLARelse] = ACTIONS(1563), - [anon_sym_DOLLARswitch] = ACTIONS(1563), - [anon_sym_DOLLARfor] = ACTIONS(1563), - [anon_sym_DOLLARforeach] = ACTIONS(1563), - [anon_sym_DOLLARalignof] = ACTIONS(1563), - [anon_sym_DOLLARextnameof] = ACTIONS(1563), - [anon_sym_DOLLARnameof] = ACTIONS(1563), - [anon_sym_DOLLARoffsetof] = ACTIONS(1563), - [anon_sym_DOLLARqnameof] = ACTIONS(1563), - [anon_sym_DOLLAReval] = ACTIONS(1563), - [anon_sym_DOLLARdefined] = ACTIONS(1563), - [anon_sym_DOLLARsizeof] = ACTIONS(1563), - [anon_sym_DOLLARstringify] = ACTIONS(1563), - [anon_sym_DOLLARis_const] = ACTIONS(1563), - [anon_sym_DOLLARvaconst] = ACTIONS(1563), - [anon_sym_DOLLARvaarg] = ACTIONS(1563), - [anon_sym_DOLLARvaref] = ACTIONS(1563), - [anon_sym_DOLLARvaexpr] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1563), - [anon_sym_false] = ACTIONS(1563), - [anon_sym_null] = ACTIONS(1563), - [anon_sym_DOLLARvacount] = ACTIONS(1563), - [anon_sym_DOLLARfeature] = ACTIONS(1563), - [anon_sym_DOLLARand] = ACTIONS(1563), - [anon_sym_DOLLARor] = ACTIONS(1563), - [anon_sym_DOLLARassignable] = ACTIONS(1563), - [anon_sym_DOLLARembed] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_typeid] = ACTIONS(1563), - [anon_sym_LBRACE_PIPE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1563), - [anon_sym_bool] = ACTIONS(1563), - [anon_sym_char] = ACTIONS(1563), - [anon_sym_ichar] = ACTIONS(1563), - [anon_sym_short] = ACTIONS(1563), - [anon_sym_ushort] = ACTIONS(1563), - [anon_sym_uint] = ACTIONS(1563), - [anon_sym_long] = ACTIONS(1563), - [anon_sym_ulong] = ACTIONS(1563), - [anon_sym_int128] = ACTIONS(1563), - [anon_sym_uint128] = ACTIONS(1563), - [anon_sym_float] = ACTIONS(1563), - [anon_sym_double] = ACTIONS(1563), - [anon_sym_float16] = ACTIONS(1563), - [anon_sym_bfloat16] = ACTIONS(1563), - [anon_sym_float128] = ACTIONS(1563), - [anon_sym_iptr] = ACTIONS(1563), - [anon_sym_uptr] = ACTIONS(1563), - [anon_sym_isz] = ACTIONS(1563), - [anon_sym_usz] = ACTIONS(1563), - [anon_sym_anyfault] = ACTIONS(1563), - [anon_sym_any] = ACTIONS(1563), - [anon_sym_DOLLARtypeof] = ACTIONS(1563), - [anon_sym_DOLLARtypefrom] = ACTIONS(1563), - [anon_sym_DOLLARvatype] = ACTIONS(1563), - [anon_sym_DOLLARevaltype] = ACTIONS(1563), - [sym_real_literal] = ACTIONS(1565), + [497] = { + [sym_line_comment] = STATE(497), + [sym_doc_comment] = STATE(497), + [sym_block_comment] = STATE(497), + [sym_ident] = ACTIONS(1363), + [sym_integer_literal] = ACTIONS(1365), + [anon_sym_SQUOTE] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(1365), + [anon_sym_BQUOTE] = ACTIONS(1365), + [sym_bytes_literal] = ACTIONS(1365), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1363), + [sym_at_ident] = ACTIONS(1365), + [sym_hash_ident] = ACTIONS(1365), + [sym_type_ident] = ACTIONS(1365), + [sym_ct_type_ident] = ACTIONS(1365), + [sym_const_ident] = ACTIONS(1363), + [sym_builtin] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_tlocal] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_var] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_defer] = ACTIONS(1363), + [anon_sym_assert] = ACTIONS(1363), + [anon_sym_nextcase] = ACTIONS(1363), + [anon_sym_switch] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_else] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_foreach] = ACTIONS(1363), + [anon_sym_foreach_r] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_int] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1363), + [anon_sym_DOLLARassert] = ACTIONS(1363), + [anon_sym_DOLLARerror] = ACTIONS(1363), + [anon_sym_DOLLARecho] = ACTIONS(1363), + [anon_sym_DOLLARif] = ACTIONS(1363), + [anon_sym_DOLLARswitch] = ACTIONS(1363), + [anon_sym_DOLLARfor] = ACTIONS(1363), + [anon_sym_DOLLARforeach] = ACTIONS(1363), + [anon_sym_DOLLARendforeach] = ACTIONS(1363), + [anon_sym_DOLLARalignof] = ACTIONS(1363), + [anon_sym_DOLLARextnameof] = ACTIONS(1363), + [anon_sym_DOLLARnameof] = ACTIONS(1363), + [anon_sym_DOLLARoffsetof] = ACTIONS(1363), + [anon_sym_DOLLARqnameof] = ACTIONS(1363), + [anon_sym_DOLLARvaconst] = ACTIONS(1363), + [anon_sym_DOLLARvaarg] = ACTIONS(1363), + [anon_sym_DOLLARvaref] = ACTIONS(1363), + [anon_sym_DOLLARvaexpr] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_null] = ACTIONS(1363), + [anon_sym_DOLLARvacount] = ACTIONS(1363), + [anon_sym_DOLLAReval] = ACTIONS(1363), + [anon_sym_DOLLARis_const] = ACTIONS(1363), + [anon_sym_DOLLARsizeof] = ACTIONS(1363), + [anon_sym_DOLLARstringify] = ACTIONS(1363), + [anon_sym_DOLLARappend] = ACTIONS(1363), + [anon_sym_DOLLARconcat] = ACTIONS(1363), + [anon_sym_DOLLARdefined] = ACTIONS(1363), + [anon_sym_DOLLARembed] = ACTIONS(1363), + [anon_sym_DOLLARand] = ACTIONS(1363), + [anon_sym_DOLLARor] = ACTIONS(1363), + [anon_sym_DOLLARfeature] = ACTIONS(1363), + [anon_sym_DOLLARassignable] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_typeid] = ACTIONS(1363), + [anon_sym_LBRACE_PIPE] = ACTIONS(1365), + [anon_sym_void] = ACTIONS(1363), + [anon_sym_bool] = ACTIONS(1363), + [anon_sym_char] = ACTIONS(1363), + [anon_sym_ichar] = ACTIONS(1363), + [anon_sym_short] = ACTIONS(1363), + [anon_sym_ushort] = ACTIONS(1363), + [anon_sym_uint] = ACTIONS(1363), + [anon_sym_long] = ACTIONS(1363), + [anon_sym_ulong] = ACTIONS(1363), + [anon_sym_int128] = ACTIONS(1363), + [anon_sym_uint128] = ACTIONS(1363), + [anon_sym_float] = ACTIONS(1363), + [anon_sym_double] = ACTIONS(1363), + [anon_sym_float16] = ACTIONS(1363), + [anon_sym_bfloat16] = ACTIONS(1363), + [anon_sym_float128] = ACTIONS(1363), + [anon_sym_iptr] = ACTIONS(1363), + [anon_sym_uptr] = ACTIONS(1363), + [anon_sym_isz] = ACTIONS(1363), + [anon_sym_usz] = ACTIONS(1363), + [anon_sym_anyfault] = ACTIONS(1363), + [anon_sym_any] = ACTIONS(1363), + [anon_sym_DOLLARtypeof] = ACTIONS(1363), + [anon_sym_DOLLARtypefrom] = ACTIONS(1363), + [anon_sym_DOLLARevaltype] = ACTIONS(1363), + [anon_sym_DOLLARvatype] = ACTIONS(1363), + [sym_real_literal] = ACTIONS(1365), }, - [538] = { - [sym_line_comment] = STATE(538), - [sym_doc_comment] = STATE(538), - [sym_block_comment] = STATE(538), - [sym_ident] = ACTIONS(1551), - [sym_integer_literal] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1553), - [anon_sym_BQUOTE] = ACTIONS(1553), - [sym_bytes_literal] = ACTIONS(1553), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1551), - [sym_at_ident] = ACTIONS(1553), - [sym_hash_ident] = ACTIONS(1553), - [sym_type_ident] = ACTIONS(1553), - [sym_ct_type_ident] = ACTIONS(1553), - [sym_const_ident] = ACTIONS(1551), - [sym_builtin] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1551), - [anon_sym_tlocal] = ACTIONS(1551), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_fn] = ACTIONS(1551), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_const] = ACTIONS(1551), - [anon_sym_var] = ACTIONS(1551), - [anon_sym_return] = ACTIONS(1551), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_break] = ACTIONS(1551), - [anon_sym_defer] = ACTIONS(1551), - [anon_sym_assert] = ACTIONS(1551), - [anon_sym_nextcase] = ACTIONS(1551), - [anon_sym_switch] = ACTIONS(1551), - [anon_sym_AMP_AMP] = ACTIONS(1553), - [anon_sym_if] = ACTIONS(1551), - [anon_sym_for] = ACTIONS(1551), - [anon_sym_foreach] = ACTIONS(1551), - [anon_sym_foreach_r] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1551), - [anon_sym_do] = ACTIONS(1551), - [anon_sym_int] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(1553), - [anon_sym_asm] = ACTIONS(1551), - [anon_sym_DOLLARassert] = ACTIONS(1551), - [anon_sym_DOLLARerror] = ACTIONS(1551), - [anon_sym_DOLLARecho] = ACTIONS(1551), - [anon_sym_DOLLARif] = ACTIONS(1551), - [anon_sym_DOLLARendif] = ACTIONS(1551), - [anon_sym_DOLLARelse] = ACTIONS(1551), - [anon_sym_DOLLARswitch] = ACTIONS(1551), - [anon_sym_DOLLARfor] = ACTIONS(1551), - [anon_sym_DOLLARforeach] = ACTIONS(1551), - [anon_sym_DOLLARalignof] = ACTIONS(1551), - [anon_sym_DOLLARextnameof] = ACTIONS(1551), - [anon_sym_DOLLARnameof] = ACTIONS(1551), - [anon_sym_DOLLARoffsetof] = ACTIONS(1551), - [anon_sym_DOLLARqnameof] = ACTIONS(1551), - [anon_sym_DOLLAReval] = ACTIONS(1551), - [anon_sym_DOLLARdefined] = ACTIONS(1551), - [anon_sym_DOLLARsizeof] = ACTIONS(1551), - [anon_sym_DOLLARstringify] = ACTIONS(1551), - [anon_sym_DOLLARis_const] = ACTIONS(1551), - [anon_sym_DOLLARvaconst] = ACTIONS(1551), - [anon_sym_DOLLARvaarg] = ACTIONS(1551), - [anon_sym_DOLLARvaref] = ACTIONS(1551), - [anon_sym_DOLLARvaexpr] = ACTIONS(1551), - [anon_sym_true] = ACTIONS(1551), - [anon_sym_false] = ACTIONS(1551), - [anon_sym_null] = ACTIONS(1551), - [anon_sym_DOLLARvacount] = ACTIONS(1551), - [anon_sym_DOLLARfeature] = ACTIONS(1551), - [anon_sym_DOLLARand] = ACTIONS(1551), - [anon_sym_DOLLARor] = ACTIONS(1551), - [anon_sym_DOLLARassignable] = ACTIONS(1551), - [anon_sym_DOLLARembed] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1553), - [anon_sym_TILDE] = ACTIONS(1553), - [anon_sym_PLUS_PLUS] = ACTIONS(1553), - [anon_sym_DASH_DASH] = ACTIONS(1553), - [anon_sym_typeid] = ACTIONS(1551), - [anon_sym_LBRACE_PIPE] = ACTIONS(1553), - [anon_sym_void] = ACTIONS(1551), - [anon_sym_bool] = ACTIONS(1551), - [anon_sym_char] = ACTIONS(1551), - [anon_sym_ichar] = ACTIONS(1551), - [anon_sym_short] = ACTIONS(1551), - [anon_sym_ushort] = ACTIONS(1551), - [anon_sym_uint] = ACTIONS(1551), - [anon_sym_long] = ACTIONS(1551), - [anon_sym_ulong] = ACTIONS(1551), - [anon_sym_int128] = ACTIONS(1551), - [anon_sym_uint128] = ACTIONS(1551), - [anon_sym_float] = ACTIONS(1551), - [anon_sym_double] = ACTIONS(1551), - [anon_sym_float16] = ACTIONS(1551), - [anon_sym_bfloat16] = ACTIONS(1551), - [anon_sym_float128] = ACTIONS(1551), - [anon_sym_iptr] = ACTIONS(1551), - [anon_sym_uptr] = ACTIONS(1551), - [anon_sym_isz] = ACTIONS(1551), - [anon_sym_usz] = ACTIONS(1551), - [anon_sym_anyfault] = ACTIONS(1551), - [anon_sym_any] = ACTIONS(1551), - [anon_sym_DOLLARtypeof] = ACTIONS(1551), - [anon_sym_DOLLARtypefrom] = ACTIONS(1551), - [anon_sym_DOLLARvatype] = ACTIONS(1551), - [anon_sym_DOLLARevaltype] = ACTIONS(1551), - [sym_real_literal] = ACTIONS(1553), + [498] = { + [sym_line_comment] = STATE(498), + [sym_doc_comment] = STATE(498), + [sym_block_comment] = STATE(498), + [sym_ident] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_BQUOTE] = ACTIONS(1495), + [sym_bytes_literal] = ACTIONS(1495), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1493), + [sym_at_ident] = ACTIONS(1495), + [sym_hash_ident] = ACTIONS(1495), + [sym_type_ident] = ACTIONS(1495), + [sym_ct_type_ident] = ACTIONS(1495), + [sym_const_ident] = ACTIONS(1493), + [sym_builtin] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_tlocal] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_var] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_defer] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_nextcase] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_foreach] = ACTIONS(1493), + [anon_sym_foreach_r] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_asm] = ACTIONS(1493), + [anon_sym_DOLLARassert] = ACTIONS(1493), + [anon_sym_DOLLARerror] = ACTIONS(1493), + [anon_sym_DOLLARecho] = ACTIONS(1493), + [anon_sym_DOLLARif] = ACTIONS(1493), + [anon_sym_DOLLARendif] = ACTIONS(1493), + [anon_sym_DOLLARelse] = ACTIONS(1493), + [anon_sym_DOLLARswitch] = ACTIONS(1493), + [anon_sym_DOLLARfor] = ACTIONS(1493), + [anon_sym_DOLLARforeach] = ACTIONS(1493), + [anon_sym_DOLLARalignof] = ACTIONS(1493), + [anon_sym_DOLLARextnameof] = ACTIONS(1493), + [anon_sym_DOLLARnameof] = ACTIONS(1493), + [anon_sym_DOLLARoffsetof] = ACTIONS(1493), + [anon_sym_DOLLARqnameof] = ACTIONS(1493), + [anon_sym_DOLLARvaconst] = ACTIONS(1493), + [anon_sym_DOLLARvaarg] = ACTIONS(1493), + [anon_sym_DOLLARvaref] = ACTIONS(1493), + [anon_sym_DOLLARvaexpr] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_DOLLARvacount] = ACTIONS(1493), + [anon_sym_DOLLAReval] = ACTIONS(1493), + [anon_sym_DOLLARis_const] = ACTIONS(1493), + [anon_sym_DOLLARsizeof] = ACTIONS(1493), + [anon_sym_DOLLARstringify] = ACTIONS(1493), + [anon_sym_DOLLARappend] = ACTIONS(1493), + [anon_sym_DOLLARconcat] = ACTIONS(1493), + [anon_sym_DOLLARdefined] = ACTIONS(1493), + [anon_sym_DOLLARembed] = ACTIONS(1493), + [anon_sym_DOLLARand] = ACTIONS(1493), + [anon_sym_DOLLARor] = ACTIONS(1493), + [anon_sym_DOLLARfeature] = ACTIONS(1493), + [anon_sym_DOLLARassignable] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_typeid] = ACTIONS(1493), + [anon_sym_LBRACE_PIPE] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_ichar] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_ushort] = ACTIONS(1493), + [anon_sym_uint] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_ulong] = ACTIONS(1493), + [anon_sym_int128] = ACTIONS(1493), + [anon_sym_uint128] = ACTIONS(1493), + [anon_sym_float] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_float16] = ACTIONS(1493), + [anon_sym_bfloat16] = ACTIONS(1493), + [anon_sym_float128] = ACTIONS(1493), + [anon_sym_iptr] = ACTIONS(1493), + [anon_sym_uptr] = ACTIONS(1493), + [anon_sym_isz] = ACTIONS(1493), + [anon_sym_usz] = ACTIONS(1493), + [anon_sym_anyfault] = ACTIONS(1493), + [anon_sym_any] = ACTIONS(1493), + [anon_sym_DOLLARtypeof] = ACTIONS(1493), + [anon_sym_DOLLARtypefrom] = ACTIONS(1493), + [anon_sym_DOLLARevaltype] = ACTIONS(1493), + [anon_sym_DOLLARvatype] = ACTIONS(1493), + [sym_real_literal] = ACTIONS(1495), }, - [539] = { - [sym_line_comment] = STATE(539), - [sym_doc_comment] = STATE(539), - [sym_block_comment] = STATE(539), - [sym_ident] = ACTIONS(1547), - [sym_integer_literal] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1549), - [anon_sym_BQUOTE] = ACTIONS(1549), - [sym_bytes_literal] = ACTIONS(1549), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1547), - [sym_at_ident] = ACTIONS(1549), - [sym_hash_ident] = ACTIONS(1549), - [sym_type_ident] = ACTIONS(1549), - [sym_ct_type_ident] = ACTIONS(1549), - [sym_const_ident] = ACTIONS(1547), - [sym_builtin] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1547), - [anon_sym_static] = ACTIONS(1547), - [anon_sym_tlocal] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_fn] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_const] = ACTIONS(1547), - [anon_sym_var] = ACTIONS(1547), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_continue] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1547), - [anon_sym_defer] = ACTIONS(1547), - [anon_sym_assert] = ACTIONS(1547), - [anon_sym_nextcase] = ACTIONS(1547), - [anon_sym_switch] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1547), - [anon_sym_for] = ACTIONS(1547), - [anon_sym_foreach] = ACTIONS(1547), - [anon_sym_foreach_r] = ACTIONS(1547), - [anon_sym_while] = ACTIONS(1547), - [anon_sym_do] = ACTIONS(1547), - [anon_sym_int] = ACTIONS(1547), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1549), - [anon_sym_asm] = ACTIONS(1547), - [anon_sym_DOLLARassert] = ACTIONS(1547), - [anon_sym_DOLLARerror] = ACTIONS(1547), - [anon_sym_DOLLARecho] = ACTIONS(1547), - [anon_sym_DOLLARif] = ACTIONS(1547), - [anon_sym_DOLLARendif] = ACTIONS(1547), - [anon_sym_DOLLARelse] = ACTIONS(1547), - [anon_sym_DOLLARswitch] = ACTIONS(1547), - [anon_sym_DOLLARfor] = ACTIONS(1547), - [anon_sym_DOLLARforeach] = ACTIONS(1547), - [anon_sym_DOLLARalignof] = ACTIONS(1547), - [anon_sym_DOLLARextnameof] = ACTIONS(1547), - [anon_sym_DOLLARnameof] = ACTIONS(1547), - [anon_sym_DOLLARoffsetof] = ACTIONS(1547), - [anon_sym_DOLLARqnameof] = ACTIONS(1547), - [anon_sym_DOLLAReval] = ACTIONS(1547), - [anon_sym_DOLLARdefined] = ACTIONS(1547), - [anon_sym_DOLLARsizeof] = ACTIONS(1547), - [anon_sym_DOLLARstringify] = ACTIONS(1547), - [anon_sym_DOLLARis_const] = ACTIONS(1547), - [anon_sym_DOLLARvaconst] = ACTIONS(1547), - [anon_sym_DOLLARvaarg] = ACTIONS(1547), - [anon_sym_DOLLARvaref] = ACTIONS(1547), - [anon_sym_DOLLARvaexpr] = ACTIONS(1547), - [anon_sym_true] = ACTIONS(1547), - [anon_sym_false] = ACTIONS(1547), - [anon_sym_null] = ACTIONS(1547), - [anon_sym_DOLLARvacount] = ACTIONS(1547), - [anon_sym_DOLLARfeature] = ACTIONS(1547), - [anon_sym_DOLLARand] = ACTIONS(1547), - [anon_sym_DOLLARor] = ACTIONS(1547), - [anon_sym_DOLLARassignable] = ACTIONS(1547), - [anon_sym_DOLLARembed] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_typeid] = ACTIONS(1547), - [anon_sym_LBRACE_PIPE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1547), - [anon_sym_bool] = ACTIONS(1547), - [anon_sym_char] = ACTIONS(1547), - [anon_sym_ichar] = ACTIONS(1547), - [anon_sym_short] = ACTIONS(1547), - [anon_sym_ushort] = ACTIONS(1547), - [anon_sym_uint] = ACTIONS(1547), - [anon_sym_long] = ACTIONS(1547), - [anon_sym_ulong] = ACTIONS(1547), - [anon_sym_int128] = ACTIONS(1547), - [anon_sym_uint128] = ACTIONS(1547), - [anon_sym_float] = ACTIONS(1547), - [anon_sym_double] = ACTIONS(1547), - [anon_sym_float16] = ACTIONS(1547), - [anon_sym_bfloat16] = ACTIONS(1547), - [anon_sym_float128] = ACTIONS(1547), - [anon_sym_iptr] = ACTIONS(1547), - [anon_sym_uptr] = ACTIONS(1547), - [anon_sym_isz] = ACTIONS(1547), - [anon_sym_usz] = ACTIONS(1547), - [anon_sym_anyfault] = ACTIONS(1547), - [anon_sym_any] = ACTIONS(1547), - [anon_sym_DOLLARtypeof] = ACTIONS(1547), - [anon_sym_DOLLARtypefrom] = ACTIONS(1547), - [anon_sym_DOLLARvatype] = ACTIONS(1547), - [anon_sym_DOLLARevaltype] = ACTIONS(1547), - [sym_real_literal] = ACTIONS(1549), + [499] = { + [sym_line_comment] = STATE(499), + [sym_doc_comment] = STATE(499), + [sym_block_comment] = STATE(499), + [sym_ident] = ACTIONS(1625), + [sym_integer_literal] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [sym_bytes_literal] = ACTIONS(1627), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1625), + [sym_at_ident] = ACTIONS(1627), + [sym_hash_ident] = ACTIONS(1627), + [sym_type_ident] = ACTIONS(1627), + [sym_ct_type_ident] = ACTIONS(1627), + [sym_const_ident] = ACTIONS(1625), + [sym_builtin] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_tlocal] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_defer] = ACTIONS(1625), + [anon_sym_assert] = ACTIONS(1625), + [anon_sym_nextcase] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_foreach] = ACTIONS(1625), + [anon_sym_foreach_r] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_int] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_asm] = ACTIONS(1625), + [anon_sym_DOLLARassert] = ACTIONS(1625), + [anon_sym_DOLLARerror] = ACTIONS(1625), + [anon_sym_DOLLARecho] = ACTIONS(1625), + [anon_sym_DOLLARif] = ACTIONS(1625), + [anon_sym_DOLLARendif] = ACTIONS(1625), + [anon_sym_DOLLARelse] = ACTIONS(1625), + [anon_sym_DOLLARswitch] = ACTIONS(1625), + [anon_sym_DOLLARfor] = ACTIONS(1625), + [anon_sym_DOLLARforeach] = ACTIONS(1625), + [anon_sym_DOLLARalignof] = ACTIONS(1625), + [anon_sym_DOLLARextnameof] = ACTIONS(1625), + [anon_sym_DOLLARnameof] = ACTIONS(1625), + [anon_sym_DOLLARoffsetof] = ACTIONS(1625), + [anon_sym_DOLLARqnameof] = ACTIONS(1625), + [anon_sym_DOLLARvaconst] = ACTIONS(1625), + [anon_sym_DOLLARvaarg] = ACTIONS(1625), + [anon_sym_DOLLARvaref] = ACTIONS(1625), + [anon_sym_DOLLARvaexpr] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_DOLLARvacount] = ACTIONS(1625), + [anon_sym_DOLLAReval] = ACTIONS(1625), + [anon_sym_DOLLARis_const] = ACTIONS(1625), + [anon_sym_DOLLARsizeof] = ACTIONS(1625), + [anon_sym_DOLLARstringify] = ACTIONS(1625), + [anon_sym_DOLLARappend] = ACTIONS(1625), + [anon_sym_DOLLARconcat] = ACTIONS(1625), + [anon_sym_DOLLARdefined] = ACTIONS(1625), + [anon_sym_DOLLARembed] = ACTIONS(1625), + [anon_sym_DOLLARand] = ACTIONS(1625), + [anon_sym_DOLLARor] = ACTIONS(1625), + [anon_sym_DOLLARfeature] = ACTIONS(1625), + [anon_sym_DOLLARassignable] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_typeid] = ACTIONS(1625), + [anon_sym_LBRACE_PIPE] = ACTIONS(1627), + [anon_sym_void] = ACTIONS(1625), + [anon_sym_bool] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_ichar] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_ushort] = ACTIONS(1625), + [anon_sym_uint] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_ulong] = ACTIONS(1625), + [anon_sym_int128] = ACTIONS(1625), + [anon_sym_uint128] = ACTIONS(1625), + [anon_sym_float] = ACTIONS(1625), + [anon_sym_double] = ACTIONS(1625), + [anon_sym_float16] = ACTIONS(1625), + [anon_sym_bfloat16] = ACTIONS(1625), + [anon_sym_float128] = ACTIONS(1625), + [anon_sym_iptr] = ACTIONS(1625), + [anon_sym_uptr] = ACTIONS(1625), + [anon_sym_isz] = ACTIONS(1625), + [anon_sym_usz] = ACTIONS(1625), + [anon_sym_anyfault] = ACTIONS(1625), + [anon_sym_any] = ACTIONS(1625), + [anon_sym_DOLLARtypeof] = ACTIONS(1625), + [anon_sym_DOLLARtypefrom] = ACTIONS(1625), + [anon_sym_DOLLARevaltype] = ACTIONS(1625), + [anon_sym_DOLLARvatype] = ACTIONS(1625), + [sym_real_literal] = ACTIONS(1627), }, - [540] = { - [sym_line_comment] = STATE(540), - [sym_doc_comment] = STATE(540), - [sym_block_comment] = STATE(540), - [sym_ident] = ACTIONS(1543), - [sym_integer_literal] = ACTIONS(1545), - [anon_sym_SQUOTE] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1545), - [anon_sym_BQUOTE] = ACTIONS(1545), - [sym_bytes_literal] = ACTIONS(1545), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1543), - [sym_at_ident] = ACTIONS(1545), - [sym_hash_ident] = ACTIONS(1545), - [sym_type_ident] = ACTIONS(1545), - [sym_ct_type_ident] = ACTIONS(1545), - [sym_const_ident] = ACTIONS(1543), - [sym_builtin] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_tlocal] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_fn] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1543), - [anon_sym_var] = ACTIONS(1543), - [anon_sym_return] = ACTIONS(1543), - [anon_sym_continue] = ACTIONS(1543), - [anon_sym_break] = ACTIONS(1543), - [anon_sym_defer] = ACTIONS(1543), - [anon_sym_assert] = ACTIONS(1543), - [anon_sym_nextcase] = ACTIONS(1543), - [anon_sym_switch] = ACTIONS(1543), - [anon_sym_AMP_AMP] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1543), - [anon_sym_foreach] = ACTIONS(1543), - [anon_sym_foreach_r] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1543), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_int] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1543), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_asm] = ACTIONS(1543), - [anon_sym_DOLLARassert] = ACTIONS(1543), - [anon_sym_DOLLARerror] = ACTIONS(1543), - [anon_sym_DOLLARecho] = ACTIONS(1543), - [anon_sym_DOLLARif] = ACTIONS(1543), - [anon_sym_DOLLARendif] = ACTIONS(1543), - [anon_sym_DOLLARelse] = ACTIONS(1543), - [anon_sym_DOLLARswitch] = ACTIONS(1543), - [anon_sym_DOLLARfor] = ACTIONS(1543), - [anon_sym_DOLLARforeach] = ACTIONS(1543), - [anon_sym_DOLLARalignof] = ACTIONS(1543), - [anon_sym_DOLLARextnameof] = ACTIONS(1543), - [anon_sym_DOLLARnameof] = ACTIONS(1543), - [anon_sym_DOLLARoffsetof] = ACTIONS(1543), - [anon_sym_DOLLARqnameof] = ACTIONS(1543), - [anon_sym_DOLLAReval] = ACTIONS(1543), - [anon_sym_DOLLARdefined] = ACTIONS(1543), - [anon_sym_DOLLARsizeof] = ACTIONS(1543), - [anon_sym_DOLLARstringify] = ACTIONS(1543), - [anon_sym_DOLLARis_const] = ACTIONS(1543), - [anon_sym_DOLLARvaconst] = ACTIONS(1543), - [anon_sym_DOLLARvaarg] = ACTIONS(1543), - [anon_sym_DOLLARvaref] = ACTIONS(1543), - [anon_sym_DOLLARvaexpr] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(1543), - [anon_sym_false] = ACTIONS(1543), - [anon_sym_null] = ACTIONS(1543), - [anon_sym_DOLLARvacount] = ACTIONS(1543), - [anon_sym_DOLLARfeature] = ACTIONS(1543), - [anon_sym_DOLLARand] = ACTIONS(1543), - [anon_sym_DOLLARor] = ACTIONS(1543), - [anon_sym_DOLLARassignable] = ACTIONS(1543), - [anon_sym_DOLLARembed] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1545), - [anon_sym_TILDE] = ACTIONS(1545), - [anon_sym_PLUS_PLUS] = ACTIONS(1545), - [anon_sym_DASH_DASH] = ACTIONS(1545), - [anon_sym_typeid] = ACTIONS(1543), - [anon_sym_LBRACE_PIPE] = ACTIONS(1545), - [anon_sym_void] = ACTIONS(1543), - [anon_sym_bool] = ACTIONS(1543), - [anon_sym_char] = ACTIONS(1543), - [anon_sym_ichar] = ACTIONS(1543), - [anon_sym_short] = ACTIONS(1543), - [anon_sym_ushort] = ACTIONS(1543), - [anon_sym_uint] = ACTIONS(1543), - [anon_sym_long] = ACTIONS(1543), - [anon_sym_ulong] = ACTIONS(1543), - [anon_sym_int128] = ACTIONS(1543), - [anon_sym_uint128] = ACTIONS(1543), - [anon_sym_float] = ACTIONS(1543), - [anon_sym_double] = ACTIONS(1543), - [anon_sym_float16] = ACTIONS(1543), - [anon_sym_bfloat16] = ACTIONS(1543), - [anon_sym_float128] = ACTIONS(1543), - [anon_sym_iptr] = ACTIONS(1543), - [anon_sym_uptr] = ACTIONS(1543), - [anon_sym_isz] = ACTIONS(1543), - [anon_sym_usz] = ACTIONS(1543), - [anon_sym_anyfault] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_DOLLARtypeof] = ACTIONS(1543), - [anon_sym_DOLLARtypefrom] = ACTIONS(1543), - [anon_sym_DOLLARvatype] = ACTIONS(1543), - [anon_sym_DOLLARevaltype] = ACTIONS(1543), - [sym_real_literal] = ACTIONS(1545), + [500] = { + [sym_line_comment] = STATE(500), + [sym_doc_comment] = STATE(500), + [sym_block_comment] = STATE(500), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARendif] = ACTIONS(1561), + [anon_sym_DOLLARelse] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), }, - [541] = { - [sym_line_comment] = STATE(541), - [sym_doc_comment] = STATE(541), - [sym_block_comment] = STATE(541), - [sym_ident] = ACTIONS(1535), - [sym_integer_literal] = ACTIONS(1537), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [anon_sym_BQUOTE] = ACTIONS(1537), - [sym_bytes_literal] = ACTIONS(1537), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1535), - [sym_at_ident] = ACTIONS(1537), - [sym_hash_ident] = ACTIONS(1537), - [sym_type_ident] = ACTIONS(1537), - [sym_ct_type_ident] = ACTIONS(1537), - [sym_const_ident] = ACTIONS(1535), - [sym_builtin] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_tlocal] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_fn] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [anon_sym_var] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_defer] = ACTIONS(1535), - [anon_sym_assert] = ACTIONS(1535), - [anon_sym_nextcase] = ACTIONS(1535), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_foreach] = ACTIONS(1535), - [anon_sym_foreach_r] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_int] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_asm] = ACTIONS(1535), - [anon_sym_DOLLARassert] = ACTIONS(1535), - [anon_sym_DOLLARerror] = ACTIONS(1535), - [anon_sym_DOLLARecho] = ACTIONS(1535), - [anon_sym_DOLLARif] = ACTIONS(1535), - [anon_sym_DOLLARendif] = ACTIONS(1535), - [anon_sym_DOLLARelse] = ACTIONS(1535), - [anon_sym_DOLLARswitch] = ACTIONS(1535), - [anon_sym_DOLLARfor] = ACTIONS(1535), - [anon_sym_DOLLARforeach] = ACTIONS(1535), - [anon_sym_DOLLARalignof] = ACTIONS(1535), - [anon_sym_DOLLARextnameof] = ACTIONS(1535), - [anon_sym_DOLLARnameof] = ACTIONS(1535), - [anon_sym_DOLLARoffsetof] = ACTIONS(1535), - [anon_sym_DOLLARqnameof] = ACTIONS(1535), - [anon_sym_DOLLAReval] = ACTIONS(1535), - [anon_sym_DOLLARdefined] = ACTIONS(1535), - [anon_sym_DOLLARsizeof] = ACTIONS(1535), - [anon_sym_DOLLARstringify] = ACTIONS(1535), - [anon_sym_DOLLARis_const] = ACTIONS(1535), - [anon_sym_DOLLARvaconst] = ACTIONS(1535), - [anon_sym_DOLLARvaarg] = ACTIONS(1535), - [anon_sym_DOLLARvaref] = ACTIONS(1535), - [anon_sym_DOLLARvaexpr] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1535), - [anon_sym_false] = ACTIONS(1535), - [anon_sym_null] = ACTIONS(1535), - [anon_sym_DOLLARvacount] = ACTIONS(1535), - [anon_sym_DOLLARfeature] = ACTIONS(1535), - [anon_sym_DOLLARand] = ACTIONS(1535), - [anon_sym_DOLLARor] = ACTIONS(1535), - [anon_sym_DOLLARassignable] = ACTIONS(1535), - [anon_sym_DOLLARembed] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_typeid] = ACTIONS(1535), - [anon_sym_LBRACE_PIPE] = ACTIONS(1537), - [anon_sym_void] = ACTIONS(1535), - [anon_sym_bool] = ACTIONS(1535), - [anon_sym_char] = ACTIONS(1535), - [anon_sym_ichar] = ACTIONS(1535), - [anon_sym_short] = ACTIONS(1535), - [anon_sym_ushort] = ACTIONS(1535), - [anon_sym_uint] = ACTIONS(1535), - [anon_sym_long] = ACTIONS(1535), - [anon_sym_ulong] = ACTIONS(1535), - [anon_sym_int128] = ACTIONS(1535), - [anon_sym_uint128] = ACTIONS(1535), - [anon_sym_float] = ACTIONS(1535), - [anon_sym_double] = ACTIONS(1535), - [anon_sym_float16] = ACTIONS(1535), - [anon_sym_bfloat16] = ACTIONS(1535), - [anon_sym_float128] = ACTIONS(1535), - [anon_sym_iptr] = ACTIONS(1535), - [anon_sym_uptr] = ACTIONS(1535), - [anon_sym_isz] = ACTIONS(1535), - [anon_sym_usz] = ACTIONS(1535), - [anon_sym_anyfault] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_DOLLARtypeof] = ACTIONS(1535), - [anon_sym_DOLLARtypefrom] = ACTIONS(1535), - [anon_sym_DOLLARvatype] = ACTIONS(1535), - [anon_sym_DOLLARevaltype] = ACTIONS(1535), - [sym_real_literal] = ACTIONS(1537), + [501] = { + [sym_line_comment] = STATE(501), + [sym_doc_comment] = STATE(501), + [sym_block_comment] = STATE(501), + [sym_ident] = ACTIONS(1373), + [sym_integer_literal] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [anon_sym_BQUOTE] = ACTIONS(1375), + [sym_bytes_literal] = ACTIONS(1375), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1373), + [sym_at_ident] = ACTIONS(1375), + [sym_hash_ident] = ACTIONS(1375), + [sym_type_ident] = ACTIONS(1375), + [sym_ct_type_ident] = ACTIONS(1375), + [sym_const_ident] = ACTIONS(1373), + [sym_builtin] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_tlocal] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_fn] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_var] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [anon_sym_defer] = ACTIONS(1373), + [anon_sym_assert] = ACTIONS(1373), + [anon_sym_nextcase] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1373), + [anon_sym_AMP_AMP] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_foreach] = ACTIONS(1373), + [anon_sym_foreach_r] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(1373), + [anon_sym_int] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_asm] = ACTIONS(1373), + [anon_sym_DOLLARassert] = ACTIONS(1373), + [anon_sym_DOLLARerror] = ACTIONS(1373), + [anon_sym_DOLLARecho] = ACTIONS(1373), + [anon_sym_DOLLARif] = ACTIONS(1373), + [anon_sym_DOLLARendif] = ACTIONS(1373), + [anon_sym_DOLLARelse] = ACTIONS(1373), + [anon_sym_DOLLARswitch] = ACTIONS(1373), + [anon_sym_DOLLARfor] = ACTIONS(1373), + [anon_sym_DOLLARforeach] = ACTIONS(1373), + [anon_sym_DOLLARalignof] = ACTIONS(1373), + [anon_sym_DOLLARextnameof] = ACTIONS(1373), + [anon_sym_DOLLARnameof] = ACTIONS(1373), + [anon_sym_DOLLARoffsetof] = ACTIONS(1373), + [anon_sym_DOLLARqnameof] = ACTIONS(1373), + [anon_sym_DOLLARvaconst] = ACTIONS(1373), + [anon_sym_DOLLARvaarg] = ACTIONS(1373), + [anon_sym_DOLLARvaref] = ACTIONS(1373), + [anon_sym_DOLLARvaexpr] = ACTIONS(1373), + [anon_sym_true] = ACTIONS(1373), + [anon_sym_false] = ACTIONS(1373), + [anon_sym_null] = ACTIONS(1373), + [anon_sym_DOLLARvacount] = ACTIONS(1373), + [anon_sym_DOLLAReval] = ACTIONS(1373), + [anon_sym_DOLLARis_const] = ACTIONS(1373), + [anon_sym_DOLLARsizeof] = ACTIONS(1373), + [anon_sym_DOLLARstringify] = ACTIONS(1373), + [anon_sym_DOLLARappend] = ACTIONS(1373), + [anon_sym_DOLLARconcat] = ACTIONS(1373), + [anon_sym_DOLLARdefined] = ACTIONS(1373), + [anon_sym_DOLLARembed] = ACTIONS(1373), + [anon_sym_DOLLARand] = ACTIONS(1373), + [anon_sym_DOLLARor] = ACTIONS(1373), + [anon_sym_DOLLARfeature] = ACTIONS(1373), + [anon_sym_DOLLARassignable] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_typeid] = ACTIONS(1373), + [anon_sym_LBRACE_PIPE] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1373), + [anon_sym_bool] = ACTIONS(1373), + [anon_sym_char] = ACTIONS(1373), + [anon_sym_ichar] = ACTIONS(1373), + [anon_sym_short] = ACTIONS(1373), + [anon_sym_ushort] = ACTIONS(1373), + [anon_sym_uint] = ACTIONS(1373), + [anon_sym_long] = ACTIONS(1373), + [anon_sym_ulong] = ACTIONS(1373), + [anon_sym_int128] = ACTIONS(1373), + [anon_sym_uint128] = ACTIONS(1373), + [anon_sym_float] = ACTIONS(1373), + [anon_sym_double] = ACTIONS(1373), + [anon_sym_float16] = ACTIONS(1373), + [anon_sym_bfloat16] = ACTIONS(1373), + [anon_sym_float128] = ACTIONS(1373), + [anon_sym_iptr] = ACTIONS(1373), + [anon_sym_uptr] = ACTIONS(1373), + [anon_sym_isz] = ACTIONS(1373), + [anon_sym_usz] = ACTIONS(1373), + [anon_sym_anyfault] = ACTIONS(1373), + [anon_sym_any] = ACTIONS(1373), + [anon_sym_DOLLARtypeof] = ACTIONS(1373), + [anon_sym_DOLLARtypefrom] = ACTIONS(1373), + [anon_sym_DOLLARevaltype] = ACTIONS(1373), + [anon_sym_DOLLARvatype] = ACTIONS(1373), + [sym_real_literal] = ACTIONS(1375), }, - [542] = { - [sym_line_comment] = STATE(542), - [sym_doc_comment] = STATE(542), - [sym_block_comment] = STATE(542), - [sym_ident] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_DQUOTE] = ACTIONS(1529), - [anon_sym_BQUOTE] = ACTIONS(1529), - [sym_bytes_literal] = ACTIONS(1529), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1527), - [sym_at_ident] = ACTIONS(1529), - [sym_hash_ident] = ACTIONS(1529), - [sym_type_ident] = ACTIONS(1529), - [sym_ct_type_ident] = ACTIONS(1529), - [sym_const_ident] = ACTIONS(1527), - [sym_builtin] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(1527), - [anon_sym_tlocal] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1529), - [anon_sym_fn] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_const] = ACTIONS(1527), - [anon_sym_var] = ACTIONS(1527), - [anon_sym_return] = ACTIONS(1527), - [anon_sym_continue] = ACTIONS(1527), - [anon_sym_break] = ACTIONS(1527), - [anon_sym_defer] = ACTIONS(1527), - [anon_sym_assert] = ACTIONS(1527), - [anon_sym_nextcase] = ACTIONS(1527), - [anon_sym_switch] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1527), - [anon_sym_for] = ACTIONS(1527), - [anon_sym_foreach] = ACTIONS(1527), - [anon_sym_foreach_r] = ACTIONS(1527), - [anon_sym_while] = ACTIONS(1527), - [anon_sym_do] = ACTIONS(1527), - [anon_sym_int] = ACTIONS(1527), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1529), - [anon_sym_asm] = ACTIONS(1527), - [anon_sym_DOLLARassert] = ACTIONS(1527), - [anon_sym_DOLLARerror] = ACTIONS(1527), - [anon_sym_DOLLARecho] = ACTIONS(1527), - [anon_sym_DOLLARif] = ACTIONS(1527), - [anon_sym_DOLLARendif] = ACTIONS(1527), - [anon_sym_DOLLARelse] = ACTIONS(1527), - [anon_sym_DOLLARswitch] = ACTIONS(1527), - [anon_sym_DOLLARfor] = ACTIONS(1527), - [anon_sym_DOLLARforeach] = ACTIONS(1527), - [anon_sym_DOLLARalignof] = ACTIONS(1527), - [anon_sym_DOLLARextnameof] = ACTIONS(1527), - [anon_sym_DOLLARnameof] = ACTIONS(1527), - [anon_sym_DOLLARoffsetof] = ACTIONS(1527), - [anon_sym_DOLLARqnameof] = ACTIONS(1527), - [anon_sym_DOLLAReval] = ACTIONS(1527), - [anon_sym_DOLLARdefined] = ACTIONS(1527), - [anon_sym_DOLLARsizeof] = ACTIONS(1527), - [anon_sym_DOLLARstringify] = ACTIONS(1527), - [anon_sym_DOLLARis_const] = ACTIONS(1527), - [anon_sym_DOLLARvaconst] = ACTIONS(1527), - [anon_sym_DOLLARvaarg] = ACTIONS(1527), - [anon_sym_DOLLARvaref] = ACTIONS(1527), - [anon_sym_DOLLARvaexpr] = ACTIONS(1527), - [anon_sym_true] = ACTIONS(1527), - [anon_sym_false] = ACTIONS(1527), - [anon_sym_null] = ACTIONS(1527), - [anon_sym_DOLLARvacount] = ACTIONS(1527), - [anon_sym_DOLLARfeature] = ACTIONS(1527), - [anon_sym_DOLLARand] = ACTIONS(1527), - [anon_sym_DOLLARor] = ACTIONS(1527), - [anon_sym_DOLLARassignable] = ACTIONS(1527), - [anon_sym_DOLLARembed] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), - [anon_sym_typeid] = ACTIONS(1527), - [anon_sym_LBRACE_PIPE] = ACTIONS(1529), - [anon_sym_void] = ACTIONS(1527), - [anon_sym_bool] = ACTIONS(1527), - [anon_sym_char] = ACTIONS(1527), - [anon_sym_ichar] = ACTIONS(1527), - [anon_sym_short] = ACTIONS(1527), - [anon_sym_ushort] = ACTIONS(1527), - [anon_sym_uint] = ACTIONS(1527), - [anon_sym_long] = ACTIONS(1527), - [anon_sym_ulong] = ACTIONS(1527), - [anon_sym_int128] = ACTIONS(1527), - [anon_sym_uint128] = ACTIONS(1527), - [anon_sym_float] = ACTIONS(1527), - [anon_sym_double] = ACTIONS(1527), - [anon_sym_float16] = ACTIONS(1527), - [anon_sym_bfloat16] = ACTIONS(1527), - [anon_sym_float128] = ACTIONS(1527), - [anon_sym_iptr] = ACTIONS(1527), - [anon_sym_uptr] = ACTIONS(1527), - [anon_sym_isz] = ACTIONS(1527), - [anon_sym_usz] = ACTIONS(1527), - [anon_sym_anyfault] = ACTIONS(1527), - [anon_sym_any] = ACTIONS(1527), - [anon_sym_DOLLARtypeof] = ACTIONS(1527), - [anon_sym_DOLLARtypefrom] = ACTIONS(1527), - [anon_sym_DOLLARvatype] = ACTIONS(1527), - [anon_sym_DOLLARevaltype] = ACTIONS(1527), - [sym_real_literal] = ACTIONS(1529), + [502] = { + [sym_line_comment] = STATE(502), + [sym_doc_comment] = STATE(502), + [sym_block_comment] = STATE(502), + [sym_ident] = ACTIONS(1629), + [sym_integer_literal] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1631), + [sym_bytes_literal] = ACTIONS(1631), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1629), + [sym_at_ident] = ACTIONS(1631), + [sym_hash_ident] = ACTIONS(1631), + [sym_type_ident] = ACTIONS(1631), + [sym_ct_type_ident] = ACTIONS(1631), + [sym_const_ident] = ACTIONS(1629), + [sym_builtin] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_tlocal] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_fn] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_var] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_defer] = ACTIONS(1629), + [anon_sym_assert] = ACTIONS(1629), + [anon_sym_nextcase] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_foreach] = ACTIONS(1629), + [anon_sym_foreach_r] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_int] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_asm] = ACTIONS(1629), + [anon_sym_DOLLARassert] = ACTIONS(1629), + [anon_sym_DOLLARerror] = ACTIONS(1629), + [anon_sym_DOLLARecho] = ACTIONS(1629), + [anon_sym_DOLLARif] = ACTIONS(1629), + [anon_sym_DOLLARendif] = ACTIONS(1629), + [anon_sym_DOLLARelse] = ACTIONS(1629), + [anon_sym_DOLLARswitch] = ACTIONS(1629), + [anon_sym_DOLLARfor] = ACTIONS(1629), + [anon_sym_DOLLARforeach] = ACTIONS(1629), + [anon_sym_DOLLARalignof] = ACTIONS(1629), + [anon_sym_DOLLARextnameof] = ACTIONS(1629), + [anon_sym_DOLLARnameof] = ACTIONS(1629), + [anon_sym_DOLLARoffsetof] = ACTIONS(1629), + [anon_sym_DOLLARqnameof] = ACTIONS(1629), + [anon_sym_DOLLARvaconst] = ACTIONS(1629), + [anon_sym_DOLLARvaarg] = ACTIONS(1629), + [anon_sym_DOLLARvaref] = ACTIONS(1629), + [anon_sym_DOLLARvaexpr] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_DOLLARvacount] = ACTIONS(1629), + [anon_sym_DOLLAReval] = ACTIONS(1629), + [anon_sym_DOLLARis_const] = ACTIONS(1629), + [anon_sym_DOLLARsizeof] = ACTIONS(1629), + [anon_sym_DOLLARstringify] = ACTIONS(1629), + [anon_sym_DOLLARappend] = ACTIONS(1629), + [anon_sym_DOLLARconcat] = ACTIONS(1629), + [anon_sym_DOLLARdefined] = ACTIONS(1629), + [anon_sym_DOLLARembed] = ACTIONS(1629), + [anon_sym_DOLLARand] = ACTIONS(1629), + [anon_sym_DOLLARor] = ACTIONS(1629), + [anon_sym_DOLLARfeature] = ACTIONS(1629), + [anon_sym_DOLLARassignable] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_typeid] = ACTIONS(1629), + [anon_sym_LBRACE_PIPE] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_ichar] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_ushort] = ACTIONS(1629), + [anon_sym_uint] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_ulong] = ACTIONS(1629), + [anon_sym_int128] = ACTIONS(1629), + [anon_sym_uint128] = ACTIONS(1629), + [anon_sym_float] = ACTIONS(1629), + [anon_sym_double] = ACTIONS(1629), + [anon_sym_float16] = ACTIONS(1629), + [anon_sym_bfloat16] = ACTIONS(1629), + [anon_sym_float128] = ACTIONS(1629), + [anon_sym_iptr] = ACTIONS(1629), + [anon_sym_uptr] = ACTIONS(1629), + [anon_sym_isz] = ACTIONS(1629), + [anon_sym_usz] = ACTIONS(1629), + [anon_sym_anyfault] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_DOLLARtypeof] = ACTIONS(1629), + [anon_sym_DOLLARtypefrom] = ACTIONS(1629), + [anon_sym_DOLLARevaltype] = ACTIONS(1629), + [anon_sym_DOLLARvatype] = ACTIONS(1629), + [sym_real_literal] = ACTIONS(1631), }, - [543] = { - [sym_line_comment] = STATE(543), - [sym_doc_comment] = STATE(543), - [sym_block_comment] = STATE(543), - [sym_ident] = ACTIONS(1519), - [sym_integer_literal] = ACTIONS(1521), - [anon_sym_SQUOTE] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1521), - [anon_sym_BQUOTE] = ACTIONS(1521), - [sym_bytes_literal] = ACTIONS(1521), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1519), - [sym_at_ident] = ACTIONS(1521), - [sym_hash_ident] = ACTIONS(1521), - [sym_type_ident] = ACTIONS(1521), - [sym_ct_type_ident] = ACTIONS(1521), - [sym_const_ident] = ACTIONS(1519), - [sym_builtin] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_static] = ACTIONS(1519), - [anon_sym_tlocal] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_fn] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(1519), - [anon_sym_var] = ACTIONS(1519), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_defer] = ACTIONS(1519), - [anon_sym_assert] = ACTIONS(1519), - [anon_sym_nextcase] = ACTIONS(1519), - [anon_sym_switch] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_foreach] = ACTIONS(1519), - [anon_sym_foreach_r] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_do] = ACTIONS(1519), - [anon_sym_int] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1521), - [anon_sym_asm] = ACTIONS(1519), - [anon_sym_DOLLARassert] = ACTIONS(1519), - [anon_sym_DOLLARerror] = ACTIONS(1519), - [anon_sym_DOLLARecho] = ACTIONS(1519), - [anon_sym_DOLLARif] = ACTIONS(1519), - [anon_sym_DOLLARendif] = ACTIONS(1519), - [anon_sym_DOLLARelse] = ACTIONS(1519), - [anon_sym_DOLLARswitch] = ACTIONS(1519), - [anon_sym_DOLLARfor] = ACTIONS(1519), - [anon_sym_DOLLARforeach] = ACTIONS(1519), - [anon_sym_DOLLARalignof] = ACTIONS(1519), - [anon_sym_DOLLARextnameof] = ACTIONS(1519), - [anon_sym_DOLLARnameof] = ACTIONS(1519), - [anon_sym_DOLLARoffsetof] = ACTIONS(1519), - [anon_sym_DOLLARqnameof] = ACTIONS(1519), - [anon_sym_DOLLAReval] = ACTIONS(1519), - [anon_sym_DOLLARdefined] = ACTIONS(1519), - [anon_sym_DOLLARsizeof] = ACTIONS(1519), - [anon_sym_DOLLARstringify] = ACTIONS(1519), - [anon_sym_DOLLARis_const] = ACTIONS(1519), - [anon_sym_DOLLARvaconst] = ACTIONS(1519), - [anon_sym_DOLLARvaarg] = ACTIONS(1519), - [anon_sym_DOLLARvaref] = ACTIONS(1519), - [anon_sym_DOLLARvaexpr] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1519), - [anon_sym_DOLLARvacount] = ACTIONS(1519), - [anon_sym_DOLLARfeature] = ACTIONS(1519), - [anon_sym_DOLLARand] = ACTIONS(1519), - [anon_sym_DOLLARor] = ACTIONS(1519), - [anon_sym_DOLLARassignable] = ACTIONS(1519), - [anon_sym_DOLLARembed] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1521), - [anon_sym_TILDE] = ACTIONS(1521), - [anon_sym_PLUS_PLUS] = ACTIONS(1521), - [anon_sym_DASH_DASH] = ACTIONS(1521), - [anon_sym_typeid] = ACTIONS(1519), - [anon_sym_LBRACE_PIPE] = ACTIONS(1521), - [anon_sym_void] = ACTIONS(1519), - [anon_sym_bool] = ACTIONS(1519), - [anon_sym_char] = ACTIONS(1519), - [anon_sym_ichar] = ACTIONS(1519), - [anon_sym_short] = ACTIONS(1519), - [anon_sym_ushort] = ACTIONS(1519), - [anon_sym_uint] = ACTIONS(1519), - [anon_sym_long] = ACTIONS(1519), - [anon_sym_ulong] = ACTIONS(1519), - [anon_sym_int128] = ACTIONS(1519), - [anon_sym_uint128] = ACTIONS(1519), - [anon_sym_float] = ACTIONS(1519), - [anon_sym_double] = ACTIONS(1519), - [anon_sym_float16] = ACTIONS(1519), - [anon_sym_bfloat16] = ACTIONS(1519), - [anon_sym_float128] = ACTIONS(1519), - [anon_sym_iptr] = ACTIONS(1519), - [anon_sym_uptr] = ACTIONS(1519), - [anon_sym_isz] = ACTIONS(1519), - [anon_sym_usz] = ACTIONS(1519), - [anon_sym_anyfault] = ACTIONS(1519), - [anon_sym_any] = ACTIONS(1519), - [anon_sym_DOLLARtypeof] = ACTIONS(1519), - [anon_sym_DOLLARtypefrom] = ACTIONS(1519), - [anon_sym_DOLLARvatype] = ACTIONS(1519), - [anon_sym_DOLLARevaltype] = ACTIONS(1519), - [sym_real_literal] = ACTIONS(1521), + [503] = { + [sym_line_comment] = STATE(503), + [sym_doc_comment] = STATE(503), + [sym_block_comment] = STATE(503), + [sym_ident] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1523), + [sym_bytes_literal] = ACTIONS(1523), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1521), + [sym_at_ident] = ACTIONS(1523), + [sym_hash_ident] = ACTIONS(1523), + [sym_type_ident] = ACTIONS(1523), + [sym_ct_type_ident] = ACTIONS(1523), + [sym_const_ident] = ACTIONS(1521), + [sym_builtin] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_tlocal] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_var] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_defer] = ACTIONS(1521), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_nextcase] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_foreach] = ACTIONS(1521), + [anon_sym_foreach_r] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_int] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_asm] = ACTIONS(1521), + [anon_sym_DOLLARassert] = ACTIONS(1521), + [anon_sym_DOLLARerror] = ACTIONS(1521), + [anon_sym_DOLLARecho] = ACTIONS(1521), + [anon_sym_DOLLARif] = ACTIONS(1521), + [anon_sym_DOLLARendif] = ACTIONS(1521), + [anon_sym_DOLLARelse] = ACTIONS(1521), + [anon_sym_DOLLARswitch] = ACTIONS(1521), + [anon_sym_DOLLARfor] = ACTIONS(1521), + [anon_sym_DOLLARforeach] = ACTIONS(1521), + [anon_sym_DOLLARalignof] = ACTIONS(1521), + [anon_sym_DOLLARextnameof] = ACTIONS(1521), + [anon_sym_DOLLARnameof] = ACTIONS(1521), + [anon_sym_DOLLARoffsetof] = ACTIONS(1521), + [anon_sym_DOLLARqnameof] = ACTIONS(1521), + [anon_sym_DOLLARvaconst] = ACTIONS(1521), + [anon_sym_DOLLARvaarg] = ACTIONS(1521), + [anon_sym_DOLLARvaref] = ACTIONS(1521), + [anon_sym_DOLLARvaexpr] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [anon_sym_DOLLARvacount] = ACTIONS(1521), + [anon_sym_DOLLAReval] = ACTIONS(1521), + [anon_sym_DOLLARis_const] = ACTIONS(1521), + [anon_sym_DOLLARsizeof] = ACTIONS(1521), + [anon_sym_DOLLARstringify] = ACTIONS(1521), + [anon_sym_DOLLARappend] = ACTIONS(1521), + [anon_sym_DOLLARconcat] = ACTIONS(1521), + [anon_sym_DOLLARdefined] = ACTIONS(1521), + [anon_sym_DOLLARembed] = ACTIONS(1521), + [anon_sym_DOLLARand] = ACTIONS(1521), + [anon_sym_DOLLARor] = ACTIONS(1521), + [anon_sym_DOLLARfeature] = ACTIONS(1521), + [anon_sym_DOLLARassignable] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_typeid] = ACTIONS(1521), + [anon_sym_LBRACE_PIPE] = ACTIONS(1523), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_ichar] = ACTIONS(1521), + [anon_sym_short] = ACTIONS(1521), + [anon_sym_ushort] = ACTIONS(1521), + [anon_sym_uint] = ACTIONS(1521), + [anon_sym_long] = ACTIONS(1521), + [anon_sym_ulong] = ACTIONS(1521), + [anon_sym_int128] = ACTIONS(1521), + [anon_sym_uint128] = ACTIONS(1521), + [anon_sym_float] = ACTIONS(1521), + [anon_sym_double] = ACTIONS(1521), + [anon_sym_float16] = ACTIONS(1521), + [anon_sym_bfloat16] = ACTIONS(1521), + [anon_sym_float128] = ACTIONS(1521), + [anon_sym_iptr] = ACTIONS(1521), + [anon_sym_uptr] = ACTIONS(1521), + [anon_sym_isz] = ACTIONS(1521), + [anon_sym_usz] = ACTIONS(1521), + [anon_sym_anyfault] = ACTIONS(1521), + [anon_sym_any] = ACTIONS(1521), + [anon_sym_DOLLARtypeof] = ACTIONS(1521), + [anon_sym_DOLLARtypefrom] = ACTIONS(1521), + [anon_sym_DOLLARevaltype] = ACTIONS(1521), + [anon_sym_DOLLARvatype] = ACTIONS(1521), + [sym_real_literal] = ACTIONS(1523), }, - [544] = { - [sym_line_comment] = STATE(544), - [sym_doc_comment] = STATE(544), - [sym_block_comment] = STATE(544), - [sym_ident] = ACTIONS(1515), - [sym_integer_literal] = ACTIONS(1517), - [anon_sym_SQUOTE] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(1517), - [anon_sym_BQUOTE] = ACTIONS(1517), - [sym_bytes_literal] = ACTIONS(1517), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1515), - [sym_at_ident] = ACTIONS(1517), - [sym_hash_ident] = ACTIONS(1517), - [sym_type_ident] = ACTIONS(1517), - [sym_ct_type_ident] = ACTIONS(1517), - [sym_const_ident] = ACTIONS(1515), - [sym_builtin] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_static] = ACTIONS(1515), - [anon_sym_tlocal] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1517), - [anon_sym_fn] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_var] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_defer] = ACTIONS(1515), - [anon_sym_assert] = ACTIONS(1515), - [anon_sym_nextcase] = ACTIONS(1515), - [anon_sym_switch] = ACTIONS(1515), - [anon_sym_AMP_AMP] = ACTIONS(1517), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_foreach] = ACTIONS(1515), - [anon_sym_foreach_r] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_int] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_asm] = ACTIONS(1515), - [anon_sym_DOLLARassert] = ACTIONS(1515), - [anon_sym_DOLLARerror] = ACTIONS(1515), - [anon_sym_DOLLARecho] = ACTIONS(1515), - [anon_sym_DOLLARif] = ACTIONS(1515), - [anon_sym_DOLLARendif] = ACTIONS(1515), - [anon_sym_DOLLARelse] = ACTIONS(1515), - [anon_sym_DOLLARswitch] = ACTIONS(1515), - [anon_sym_DOLLARfor] = ACTIONS(1515), - [anon_sym_DOLLARforeach] = ACTIONS(1515), - [anon_sym_DOLLARalignof] = ACTIONS(1515), - [anon_sym_DOLLARextnameof] = ACTIONS(1515), - [anon_sym_DOLLARnameof] = ACTIONS(1515), - [anon_sym_DOLLARoffsetof] = ACTIONS(1515), - [anon_sym_DOLLARqnameof] = ACTIONS(1515), - [anon_sym_DOLLAReval] = ACTIONS(1515), - [anon_sym_DOLLARdefined] = ACTIONS(1515), - [anon_sym_DOLLARsizeof] = ACTIONS(1515), - [anon_sym_DOLLARstringify] = ACTIONS(1515), - [anon_sym_DOLLARis_const] = ACTIONS(1515), - [anon_sym_DOLLARvaconst] = ACTIONS(1515), - [anon_sym_DOLLARvaarg] = ACTIONS(1515), - [anon_sym_DOLLARvaref] = ACTIONS(1515), - [anon_sym_DOLLARvaexpr] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [anon_sym_null] = ACTIONS(1515), - [anon_sym_DOLLARvacount] = ACTIONS(1515), - [anon_sym_DOLLARfeature] = ACTIONS(1515), - [anon_sym_DOLLARand] = ACTIONS(1515), - [anon_sym_DOLLARor] = ACTIONS(1515), - [anon_sym_DOLLARassignable] = ACTIONS(1515), - [anon_sym_DOLLARembed] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [anon_sym_typeid] = ACTIONS(1515), - [anon_sym_LBRACE_PIPE] = ACTIONS(1517), - [anon_sym_void] = ACTIONS(1515), - [anon_sym_bool] = ACTIONS(1515), - [anon_sym_char] = ACTIONS(1515), - [anon_sym_ichar] = ACTIONS(1515), - [anon_sym_short] = ACTIONS(1515), - [anon_sym_ushort] = ACTIONS(1515), - [anon_sym_uint] = ACTIONS(1515), - [anon_sym_long] = ACTIONS(1515), - [anon_sym_ulong] = ACTIONS(1515), - [anon_sym_int128] = ACTIONS(1515), - [anon_sym_uint128] = ACTIONS(1515), - [anon_sym_float] = ACTIONS(1515), - [anon_sym_double] = ACTIONS(1515), - [anon_sym_float16] = ACTIONS(1515), - [anon_sym_bfloat16] = ACTIONS(1515), - [anon_sym_float128] = ACTIONS(1515), - [anon_sym_iptr] = ACTIONS(1515), - [anon_sym_uptr] = ACTIONS(1515), - [anon_sym_isz] = ACTIONS(1515), - [anon_sym_usz] = ACTIONS(1515), - [anon_sym_anyfault] = ACTIONS(1515), - [anon_sym_any] = ACTIONS(1515), - [anon_sym_DOLLARtypeof] = ACTIONS(1515), - [anon_sym_DOLLARtypefrom] = ACTIONS(1515), - [anon_sym_DOLLARvatype] = ACTIONS(1515), - [anon_sym_DOLLARevaltype] = ACTIONS(1515), - [sym_real_literal] = ACTIONS(1517), + [504] = { + [sym_line_comment] = STATE(504), + [sym_doc_comment] = STATE(504), + [sym_block_comment] = STATE(504), + [sym_ident] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_BQUOTE] = ACTIONS(1483), + [sym_bytes_literal] = ACTIONS(1483), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1481), + [sym_at_ident] = ACTIONS(1483), + [sym_hash_ident] = ACTIONS(1483), + [sym_type_ident] = ACTIONS(1483), + [sym_ct_type_ident] = ACTIONS(1483), + [sym_const_ident] = ACTIONS(1481), + [sym_builtin] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_tlocal] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_defer] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1481), + [anon_sym_nextcase] = ACTIONS(1481), + [anon_sym_switch] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_foreach] = ACTIONS(1481), + [anon_sym_foreach_r] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_int] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_asm] = ACTIONS(1481), + [anon_sym_DOLLARassert] = ACTIONS(1481), + [anon_sym_DOLLARerror] = ACTIONS(1481), + [anon_sym_DOLLARecho] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1481), + [anon_sym_DOLLARendif] = ACTIONS(1481), + [anon_sym_DOLLARelse] = ACTIONS(1481), + [anon_sym_DOLLARswitch] = ACTIONS(1481), + [anon_sym_DOLLARfor] = ACTIONS(1481), + [anon_sym_DOLLARforeach] = ACTIONS(1481), + [anon_sym_DOLLARalignof] = ACTIONS(1481), + [anon_sym_DOLLARextnameof] = ACTIONS(1481), + [anon_sym_DOLLARnameof] = ACTIONS(1481), + [anon_sym_DOLLARoffsetof] = ACTIONS(1481), + [anon_sym_DOLLARqnameof] = ACTIONS(1481), + [anon_sym_DOLLARvaconst] = ACTIONS(1481), + [anon_sym_DOLLARvaarg] = ACTIONS(1481), + [anon_sym_DOLLARvaref] = ACTIONS(1481), + [anon_sym_DOLLARvaexpr] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_DOLLARvacount] = ACTIONS(1481), + [anon_sym_DOLLAReval] = ACTIONS(1481), + [anon_sym_DOLLARis_const] = ACTIONS(1481), + [anon_sym_DOLLARsizeof] = ACTIONS(1481), + [anon_sym_DOLLARstringify] = ACTIONS(1481), + [anon_sym_DOLLARappend] = ACTIONS(1481), + [anon_sym_DOLLARconcat] = ACTIONS(1481), + [anon_sym_DOLLARdefined] = ACTIONS(1481), + [anon_sym_DOLLARembed] = ACTIONS(1481), + [anon_sym_DOLLARand] = ACTIONS(1481), + [anon_sym_DOLLARor] = ACTIONS(1481), + [anon_sym_DOLLARfeature] = ACTIONS(1481), + [anon_sym_DOLLARassignable] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_typeid] = ACTIONS(1481), + [anon_sym_LBRACE_PIPE] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_ichar] = ACTIONS(1481), + [anon_sym_short] = ACTIONS(1481), + [anon_sym_ushort] = ACTIONS(1481), + [anon_sym_uint] = ACTIONS(1481), + [anon_sym_long] = ACTIONS(1481), + [anon_sym_ulong] = ACTIONS(1481), + [anon_sym_int128] = ACTIONS(1481), + [anon_sym_uint128] = ACTIONS(1481), + [anon_sym_float] = ACTIONS(1481), + [anon_sym_double] = ACTIONS(1481), + [anon_sym_float16] = ACTIONS(1481), + [anon_sym_bfloat16] = ACTIONS(1481), + [anon_sym_float128] = ACTIONS(1481), + [anon_sym_iptr] = ACTIONS(1481), + [anon_sym_uptr] = ACTIONS(1481), + [anon_sym_isz] = ACTIONS(1481), + [anon_sym_usz] = ACTIONS(1481), + [anon_sym_anyfault] = ACTIONS(1481), + [anon_sym_any] = ACTIONS(1481), + [anon_sym_DOLLARtypeof] = ACTIONS(1481), + [anon_sym_DOLLARtypefrom] = ACTIONS(1481), + [anon_sym_DOLLARevaltype] = ACTIONS(1481), + [anon_sym_DOLLARvatype] = ACTIONS(1481), + [sym_real_literal] = ACTIONS(1483), }, - [545] = { - [sym_line_comment] = STATE(545), - [sym_doc_comment] = STATE(545), - [sym_block_comment] = STATE(545), - [sym_ident] = ACTIONS(1511), - [sym_integer_literal] = ACTIONS(1513), - [anon_sym_SQUOTE] = ACTIONS(1513), - [anon_sym_DQUOTE] = ACTIONS(1513), - [anon_sym_BQUOTE] = ACTIONS(1513), - [sym_bytes_literal] = ACTIONS(1513), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1511), - [sym_at_ident] = ACTIONS(1513), - [sym_hash_ident] = ACTIONS(1513), - [sym_type_ident] = ACTIONS(1513), - [sym_ct_type_ident] = ACTIONS(1513), - [sym_const_ident] = ACTIONS(1511), - [sym_builtin] = ACTIONS(1513), - [anon_sym_LPAREN] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_tlocal] = ACTIONS(1511), - [anon_sym_SEMI] = ACTIONS(1513), - [anon_sym_fn] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_var] = ACTIONS(1511), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_defer] = ACTIONS(1511), - [anon_sym_assert] = ACTIONS(1511), - [anon_sym_nextcase] = ACTIONS(1511), - [anon_sym_switch] = ACTIONS(1511), - [anon_sym_AMP_AMP] = ACTIONS(1513), - [anon_sym_if] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_foreach] = ACTIONS(1511), - [anon_sym_foreach_r] = ACTIONS(1511), - [anon_sym_while] = ACTIONS(1511), - [anon_sym_do] = ACTIONS(1511), - [anon_sym_int] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_asm] = ACTIONS(1511), - [anon_sym_DOLLARassert] = ACTIONS(1511), - [anon_sym_DOLLARerror] = ACTIONS(1511), - [anon_sym_DOLLARecho] = ACTIONS(1511), - [anon_sym_DOLLARif] = ACTIONS(1511), - [anon_sym_DOLLARendif] = ACTIONS(1511), - [anon_sym_DOLLARelse] = ACTIONS(1511), - [anon_sym_DOLLARswitch] = ACTIONS(1511), - [anon_sym_DOLLARfor] = ACTIONS(1511), - [anon_sym_DOLLARforeach] = ACTIONS(1511), - [anon_sym_DOLLARalignof] = ACTIONS(1511), - [anon_sym_DOLLARextnameof] = ACTIONS(1511), - [anon_sym_DOLLARnameof] = ACTIONS(1511), - [anon_sym_DOLLARoffsetof] = ACTIONS(1511), - [anon_sym_DOLLARqnameof] = ACTIONS(1511), - [anon_sym_DOLLAReval] = ACTIONS(1511), - [anon_sym_DOLLARdefined] = ACTIONS(1511), - [anon_sym_DOLLARsizeof] = ACTIONS(1511), - [anon_sym_DOLLARstringify] = ACTIONS(1511), - [anon_sym_DOLLARis_const] = ACTIONS(1511), - [anon_sym_DOLLARvaconst] = ACTIONS(1511), - [anon_sym_DOLLARvaarg] = ACTIONS(1511), - [anon_sym_DOLLARvaref] = ACTIONS(1511), - [anon_sym_DOLLARvaexpr] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1511), - [anon_sym_false] = ACTIONS(1511), - [anon_sym_null] = ACTIONS(1511), - [anon_sym_DOLLARvacount] = ACTIONS(1511), - [anon_sym_DOLLARfeature] = ACTIONS(1511), - [anon_sym_DOLLARand] = ACTIONS(1511), - [anon_sym_DOLLARor] = ACTIONS(1511), - [anon_sym_DOLLARassignable] = ACTIONS(1511), - [anon_sym_DOLLARembed] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_TILDE] = ACTIONS(1513), - [anon_sym_PLUS_PLUS] = ACTIONS(1513), - [anon_sym_DASH_DASH] = ACTIONS(1513), - [anon_sym_typeid] = ACTIONS(1511), - [anon_sym_LBRACE_PIPE] = ACTIONS(1513), - [anon_sym_void] = ACTIONS(1511), - [anon_sym_bool] = ACTIONS(1511), - [anon_sym_char] = ACTIONS(1511), - [anon_sym_ichar] = ACTIONS(1511), - [anon_sym_short] = ACTIONS(1511), - [anon_sym_ushort] = ACTIONS(1511), - [anon_sym_uint] = ACTIONS(1511), - [anon_sym_long] = ACTIONS(1511), - [anon_sym_ulong] = ACTIONS(1511), - [anon_sym_int128] = ACTIONS(1511), - [anon_sym_uint128] = ACTIONS(1511), - [anon_sym_float] = ACTIONS(1511), - [anon_sym_double] = ACTIONS(1511), - [anon_sym_float16] = ACTIONS(1511), - [anon_sym_bfloat16] = ACTIONS(1511), - [anon_sym_float128] = ACTIONS(1511), - [anon_sym_iptr] = ACTIONS(1511), - [anon_sym_uptr] = ACTIONS(1511), - [anon_sym_isz] = ACTIONS(1511), - [anon_sym_usz] = ACTIONS(1511), - [anon_sym_anyfault] = ACTIONS(1511), - [anon_sym_any] = ACTIONS(1511), - [anon_sym_DOLLARtypeof] = ACTIONS(1511), - [anon_sym_DOLLARtypefrom] = ACTIONS(1511), - [anon_sym_DOLLARvatype] = ACTIONS(1511), - [anon_sym_DOLLARevaltype] = ACTIONS(1511), - [sym_real_literal] = ACTIONS(1513), + [505] = { + [sym_line_comment] = STATE(505), + [sym_doc_comment] = STATE(505), + [sym_block_comment] = STATE(505), + [sym_ident] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_bytes_literal] = ACTIONS(1653), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1651), + [sym_at_ident] = ACTIONS(1653), + [sym_hash_ident] = ACTIONS(1653), + [sym_type_ident] = ACTIONS(1653), + [sym_ct_type_ident] = ACTIONS(1653), + [sym_const_ident] = ACTIONS(1651), + [sym_builtin] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_static] = ACTIONS(1651), + [anon_sym_tlocal] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [anon_sym_var] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_defer] = ACTIONS(1651), + [anon_sym_assert] = ACTIONS(1651), + [anon_sym_nextcase] = ACTIONS(1651), + [anon_sym_switch] = ACTIONS(1651), + [anon_sym_AMP_AMP] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_foreach] = ACTIONS(1651), + [anon_sym_foreach_r] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_int] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1653), + [anon_sym_asm] = ACTIONS(1651), + [anon_sym_DOLLARassert] = ACTIONS(1651), + [anon_sym_DOLLARerror] = ACTIONS(1651), + [anon_sym_DOLLARecho] = ACTIONS(1651), + [anon_sym_DOLLARif] = ACTIONS(1651), + [anon_sym_DOLLARendif] = ACTIONS(1651), + [anon_sym_DOLLARelse] = ACTIONS(1651), + [anon_sym_DOLLARswitch] = ACTIONS(1651), + [anon_sym_DOLLARfor] = ACTIONS(1651), + [anon_sym_DOLLARforeach] = ACTIONS(1651), + [anon_sym_DOLLARalignof] = ACTIONS(1651), + [anon_sym_DOLLARextnameof] = ACTIONS(1651), + [anon_sym_DOLLARnameof] = ACTIONS(1651), + [anon_sym_DOLLARoffsetof] = ACTIONS(1651), + [anon_sym_DOLLARqnameof] = ACTIONS(1651), + [anon_sym_DOLLARvaconst] = ACTIONS(1651), + [anon_sym_DOLLARvaarg] = ACTIONS(1651), + [anon_sym_DOLLARvaref] = ACTIONS(1651), + [anon_sym_DOLLARvaexpr] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_DOLLARvacount] = ACTIONS(1651), + [anon_sym_DOLLAReval] = ACTIONS(1651), + [anon_sym_DOLLARis_const] = ACTIONS(1651), + [anon_sym_DOLLARsizeof] = ACTIONS(1651), + [anon_sym_DOLLARstringify] = ACTIONS(1651), + [anon_sym_DOLLARappend] = ACTIONS(1651), + [anon_sym_DOLLARconcat] = ACTIONS(1651), + [anon_sym_DOLLARdefined] = ACTIONS(1651), + [anon_sym_DOLLARembed] = ACTIONS(1651), + [anon_sym_DOLLARand] = ACTIONS(1651), + [anon_sym_DOLLARor] = ACTIONS(1651), + [anon_sym_DOLLARfeature] = ACTIONS(1651), + [anon_sym_DOLLARassignable] = ACTIONS(1651), + [anon_sym_BANG] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_typeid] = ACTIONS(1651), + [anon_sym_LBRACE_PIPE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1651), + [anon_sym_bool] = ACTIONS(1651), + [anon_sym_char] = ACTIONS(1651), + [anon_sym_ichar] = ACTIONS(1651), + [anon_sym_short] = ACTIONS(1651), + [anon_sym_ushort] = ACTIONS(1651), + [anon_sym_uint] = ACTIONS(1651), + [anon_sym_long] = ACTIONS(1651), + [anon_sym_ulong] = ACTIONS(1651), + [anon_sym_int128] = ACTIONS(1651), + [anon_sym_uint128] = ACTIONS(1651), + [anon_sym_float] = ACTIONS(1651), + [anon_sym_double] = ACTIONS(1651), + [anon_sym_float16] = ACTIONS(1651), + [anon_sym_bfloat16] = ACTIONS(1651), + [anon_sym_float128] = ACTIONS(1651), + [anon_sym_iptr] = ACTIONS(1651), + [anon_sym_uptr] = ACTIONS(1651), + [anon_sym_isz] = ACTIONS(1651), + [anon_sym_usz] = ACTIONS(1651), + [anon_sym_anyfault] = ACTIONS(1651), + [anon_sym_any] = ACTIONS(1651), + [anon_sym_DOLLARtypeof] = ACTIONS(1651), + [anon_sym_DOLLARtypefrom] = ACTIONS(1651), + [anon_sym_DOLLARevaltype] = ACTIONS(1651), + [anon_sym_DOLLARvatype] = ACTIONS(1651), + [sym_real_literal] = ACTIONS(1653), }, - [546] = { - [sym_line_comment] = STATE(546), - [sym_doc_comment] = STATE(546), - [sym_block_comment] = STATE(546), - [sym_ident] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1497), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [anon_sym_BQUOTE] = ACTIONS(1497), - [sym_bytes_literal] = ACTIONS(1497), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1495), - [sym_at_ident] = ACTIONS(1497), - [sym_hash_ident] = ACTIONS(1497), - [sym_type_ident] = ACTIONS(1497), - [sym_ct_type_ident] = ACTIONS(1497), - [sym_const_ident] = ACTIONS(1495), - [sym_builtin] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_tlocal] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1497), - [anon_sym_fn] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_var] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_defer] = ACTIONS(1495), - [anon_sym_assert] = ACTIONS(1495), - [anon_sym_nextcase] = ACTIONS(1495), - [anon_sym_switch] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_foreach] = ACTIONS(1495), - [anon_sym_foreach_r] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_int] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_asm] = ACTIONS(1495), - [anon_sym_DOLLARassert] = ACTIONS(1495), - [anon_sym_DOLLARerror] = ACTIONS(1495), - [anon_sym_DOLLARecho] = ACTIONS(1495), - [anon_sym_DOLLARif] = ACTIONS(1495), - [anon_sym_DOLLARendif] = ACTIONS(1495), - [anon_sym_DOLLARelse] = ACTIONS(1495), - [anon_sym_DOLLARswitch] = ACTIONS(1495), - [anon_sym_DOLLARfor] = ACTIONS(1495), - [anon_sym_DOLLARforeach] = ACTIONS(1495), - [anon_sym_DOLLARalignof] = ACTIONS(1495), - [anon_sym_DOLLARextnameof] = ACTIONS(1495), - [anon_sym_DOLLARnameof] = ACTIONS(1495), - [anon_sym_DOLLARoffsetof] = ACTIONS(1495), - [anon_sym_DOLLARqnameof] = ACTIONS(1495), - [anon_sym_DOLLAReval] = ACTIONS(1495), - [anon_sym_DOLLARdefined] = ACTIONS(1495), - [anon_sym_DOLLARsizeof] = ACTIONS(1495), - [anon_sym_DOLLARstringify] = ACTIONS(1495), - [anon_sym_DOLLARis_const] = ACTIONS(1495), - [anon_sym_DOLLARvaconst] = ACTIONS(1495), - [anon_sym_DOLLARvaarg] = ACTIONS(1495), - [anon_sym_DOLLARvaref] = ACTIONS(1495), - [anon_sym_DOLLARvaexpr] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_DOLLARvacount] = ACTIONS(1495), - [anon_sym_DOLLARfeature] = ACTIONS(1495), - [anon_sym_DOLLARand] = ACTIONS(1495), - [anon_sym_DOLLARor] = ACTIONS(1495), - [anon_sym_DOLLARassignable] = ACTIONS(1495), - [anon_sym_DOLLARembed] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_TILDE] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [anon_sym_typeid] = ACTIONS(1495), - [anon_sym_LBRACE_PIPE] = ACTIONS(1497), - [anon_sym_void] = ACTIONS(1495), - [anon_sym_bool] = ACTIONS(1495), - [anon_sym_char] = ACTIONS(1495), - [anon_sym_ichar] = ACTIONS(1495), - [anon_sym_short] = ACTIONS(1495), - [anon_sym_ushort] = ACTIONS(1495), - [anon_sym_uint] = ACTIONS(1495), - [anon_sym_long] = ACTIONS(1495), - [anon_sym_ulong] = ACTIONS(1495), - [anon_sym_int128] = ACTIONS(1495), - [anon_sym_uint128] = ACTIONS(1495), - [anon_sym_float] = ACTIONS(1495), - [anon_sym_double] = ACTIONS(1495), - [anon_sym_float16] = ACTIONS(1495), - [anon_sym_bfloat16] = ACTIONS(1495), - [anon_sym_float128] = ACTIONS(1495), - [anon_sym_iptr] = ACTIONS(1495), - [anon_sym_uptr] = ACTIONS(1495), - [anon_sym_isz] = ACTIONS(1495), - [anon_sym_usz] = ACTIONS(1495), - [anon_sym_anyfault] = ACTIONS(1495), - [anon_sym_any] = ACTIONS(1495), - [anon_sym_DOLLARtypeof] = ACTIONS(1495), - [anon_sym_DOLLARtypefrom] = ACTIONS(1495), - [anon_sym_DOLLARvatype] = ACTIONS(1495), - [anon_sym_DOLLARevaltype] = ACTIONS(1495), - [sym_real_literal] = ACTIONS(1497), + [506] = { + [sym_line_comment] = STATE(506), + [sym_doc_comment] = STATE(506), + [sym_block_comment] = STATE(506), + [sym_ident] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [sym_bytes_literal] = ACTIONS(1369), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1367), + [sym_at_ident] = ACTIONS(1369), + [sym_hash_ident] = ACTIONS(1369), + [sym_type_ident] = ACTIONS(1369), + [sym_ct_type_ident] = ACTIONS(1369), + [sym_const_ident] = ACTIONS(1367), + [sym_builtin] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_tlocal] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_var] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_defer] = ACTIONS(1367), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_nextcase] = ACTIONS(1367), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_else] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_foreach] = ACTIONS(1367), + [anon_sym_foreach_r] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1367), + [anon_sym_DOLLARassert] = ACTIONS(1367), + [anon_sym_DOLLARerror] = ACTIONS(1367), + [anon_sym_DOLLARecho] = ACTIONS(1367), + [anon_sym_DOLLARif] = ACTIONS(1367), + [anon_sym_DOLLARendif] = ACTIONS(1367), + [anon_sym_DOLLARswitch] = ACTIONS(1367), + [anon_sym_DOLLARfor] = ACTIONS(1367), + [anon_sym_DOLLARforeach] = ACTIONS(1367), + [anon_sym_DOLLARalignof] = ACTIONS(1367), + [anon_sym_DOLLARextnameof] = ACTIONS(1367), + [anon_sym_DOLLARnameof] = ACTIONS(1367), + [anon_sym_DOLLARoffsetof] = ACTIONS(1367), + [anon_sym_DOLLARqnameof] = ACTIONS(1367), + [anon_sym_DOLLARvaconst] = ACTIONS(1367), + [anon_sym_DOLLARvaarg] = ACTIONS(1367), + [anon_sym_DOLLARvaref] = ACTIONS(1367), + [anon_sym_DOLLARvaexpr] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_null] = ACTIONS(1367), + [anon_sym_DOLLARvacount] = ACTIONS(1367), + [anon_sym_DOLLAReval] = ACTIONS(1367), + [anon_sym_DOLLARis_const] = ACTIONS(1367), + [anon_sym_DOLLARsizeof] = ACTIONS(1367), + [anon_sym_DOLLARstringify] = ACTIONS(1367), + [anon_sym_DOLLARappend] = ACTIONS(1367), + [anon_sym_DOLLARconcat] = ACTIONS(1367), + [anon_sym_DOLLARdefined] = ACTIONS(1367), + [anon_sym_DOLLARembed] = ACTIONS(1367), + [anon_sym_DOLLARand] = ACTIONS(1367), + [anon_sym_DOLLARor] = ACTIONS(1367), + [anon_sym_DOLLARfeature] = ACTIONS(1367), + [anon_sym_DOLLARassignable] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1369), + [anon_sym_typeid] = ACTIONS(1367), + [anon_sym_LBRACE_PIPE] = ACTIONS(1369), + [anon_sym_void] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_ichar] = ACTIONS(1367), + [anon_sym_short] = ACTIONS(1367), + [anon_sym_ushort] = ACTIONS(1367), + [anon_sym_uint] = ACTIONS(1367), + [anon_sym_long] = ACTIONS(1367), + [anon_sym_ulong] = ACTIONS(1367), + [anon_sym_int128] = ACTIONS(1367), + [anon_sym_uint128] = ACTIONS(1367), + [anon_sym_float] = ACTIONS(1367), + [anon_sym_double] = ACTIONS(1367), + [anon_sym_float16] = ACTIONS(1367), + [anon_sym_bfloat16] = ACTIONS(1367), + [anon_sym_float128] = ACTIONS(1367), + [anon_sym_iptr] = ACTIONS(1367), + [anon_sym_uptr] = ACTIONS(1367), + [anon_sym_isz] = ACTIONS(1367), + [anon_sym_usz] = ACTIONS(1367), + [anon_sym_anyfault] = ACTIONS(1367), + [anon_sym_any] = ACTIONS(1367), + [anon_sym_DOLLARtypeof] = ACTIONS(1367), + [anon_sym_DOLLARtypefrom] = ACTIONS(1367), + [anon_sym_DOLLARevaltype] = ACTIONS(1367), + [anon_sym_DOLLARvatype] = ACTIONS(1367), + [sym_real_literal] = ACTIONS(1369), }, - [547] = { - [sym_line_comment] = STATE(547), - [sym_doc_comment] = STATE(547), - [sym_block_comment] = STATE(547), - [sym_ident] = ACTIONS(1491), - [sym_integer_literal] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_BQUOTE] = ACTIONS(1493), - [sym_bytes_literal] = ACTIONS(1493), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1491), - [sym_at_ident] = ACTIONS(1493), - [sym_hash_ident] = ACTIONS(1493), - [sym_type_ident] = ACTIONS(1493), - [sym_ct_type_ident] = ACTIONS(1493), - [sym_const_ident] = ACTIONS(1491), - [sym_builtin] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_tlocal] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_fn] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_var] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_defer] = ACTIONS(1491), - [anon_sym_assert] = ACTIONS(1491), - [anon_sym_nextcase] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_foreach] = ACTIONS(1491), - [anon_sym_foreach_r] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_int] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_asm] = ACTIONS(1491), - [anon_sym_DOLLARassert] = ACTIONS(1491), - [anon_sym_DOLLARerror] = ACTIONS(1491), - [anon_sym_DOLLARecho] = ACTIONS(1491), - [anon_sym_DOLLARif] = ACTIONS(1491), - [anon_sym_DOLLARendif] = ACTIONS(1491), - [anon_sym_DOLLARelse] = ACTIONS(1491), - [anon_sym_DOLLARswitch] = ACTIONS(1491), - [anon_sym_DOLLARfor] = ACTIONS(1491), - [anon_sym_DOLLARforeach] = ACTIONS(1491), - [anon_sym_DOLLARalignof] = ACTIONS(1491), - [anon_sym_DOLLARextnameof] = ACTIONS(1491), - [anon_sym_DOLLARnameof] = ACTIONS(1491), - [anon_sym_DOLLARoffsetof] = ACTIONS(1491), - [anon_sym_DOLLARqnameof] = ACTIONS(1491), - [anon_sym_DOLLAReval] = ACTIONS(1491), - [anon_sym_DOLLARdefined] = ACTIONS(1491), - [anon_sym_DOLLARsizeof] = ACTIONS(1491), - [anon_sym_DOLLARstringify] = ACTIONS(1491), - [anon_sym_DOLLARis_const] = ACTIONS(1491), - [anon_sym_DOLLARvaconst] = ACTIONS(1491), - [anon_sym_DOLLARvaarg] = ACTIONS(1491), - [anon_sym_DOLLARvaref] = ACTIONS(1491), - [anon_sym_DOLLARvaexpr] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1491), - [anon_sym_DOLLARvacount] = ACTIONS(1491), - [anon_sym_DOLLARfeature] = ACTIONS(1491), - [anon_sym_DOLLARand] = ACTIONS(1491), - [anon_sym_DOLLARor] = ACTIONS(1491), - [anon_sym_DOLLARassignable] = ACTIONS(1491), - [anon_sym_DOLLARembed] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_typeid] = ACTIONS(1491), - [anon_sym_LBRACE_PIPE] = ACTIONS(1493), - [anon_sym_void] = ACTIONS(1491), - [anon_sym_bool] = ACTIONS(1491), - [anon_sym_char] = ACTIONS(1491), - [anon_sym_ichar] = ACTIONS(1491), - [anon_sym_short] = ACTIONS(1491), - [anon_sym_ushort] = ACTIONS(1491), - [anon_sym_uint] = ACTIONS(1491), - [anon_sym_long] = ACTIONS(1491), - [anon_sym_ulong] = ACTIONS(1491), - [anon_sym_int128] = ACTIONS(1491), - [anon_sym_uint128] = ACTIONS(1491), - [anon_sym_float] = ACTIONS(1491), - [anon_sym_double] = ACTIONS(1491), - [anon_sym_float16] = ACTIONS(1491), - [anon_sym_bfloat16] = ACTIONS(1491), - [anon_sym_float128] = ACTIONS(1491), - [anon_sym_iptr] = ACTIONS(1491), - [anon_sym_uptr] = ACTIONS(1491), - [anon_sym_isz] = ACTIONS(1491), - [anon_sym_usz] = ACTIONS(1491), - [anon_sym_anyfault] = ACTIONS(1491), - [anon_sym_any] = ACTIONS(1491), - [anon_sym_DOLLARtypeof] = ACTIONS(1491), - [anon_sym_DOLLARtypefrom] = ACTIONS(1491), - [anon_sym_DOLLARvatype] = ACTIONS(1491), - [anon_sym_DOLLARevaltype] = ACTIONS(1491), - [sym_real_literal] = ACTIONS(1493), + [507] = { + [sym_line_comment] = STATE(507), + [sym_doc_comment] = STATE(507), + [sym_block_comment] = STATE(507), + [sym_ident] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_BQUOTE] = ACTIONS(1487), + [sym_bytes_literal] = ACTIONS(1487), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1485), + [sym_at_ident] = ACTIONS(1487), + [sym_hash_ident] = ACTIONS(1487), + [sym_type_ident] = ACTIONS(1487), + [sym_ct_type_ident] = ACTIONS(1487), + [sym_const_ident] = ACTIONS(1485), + [sym_builtin] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_tlocal] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_var] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_defer] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1485), + [anon_sym_nextcase] = ACTIONS(1485), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_foreach] = ACTIONS(1485), + [anon_sym_foreach_r] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_int] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_asm] = ACTIONS(1485), + [anon_sym_DOLLARassert] = ACTIONS(1485), + [anon_sym_DOLLARerror] = ACTIONS(1485), + [anon_sym_DOLLARecho] = ACTIONS(1485), + [anon_sym_DOLLARif] = ACTIONS(1485), + [anon_sym_DOLLARendif] = ACTIONS(1485), + [anon_sym_DOLLARelse] = ACTIONS(1485), + [anon_sym_DOLLARswitch] = ACTIONS(1485), + [anon_sym_DOLLARfor] = ACTIONS(1485), + [anon_sym_DOLLARforeach] = ACTIONS(1485), + [anon_sym_DOLLARalignof] = ACTIONS(1485), + [anon_sym_DOLLARextnameof] = ACTIONS(1485), + [anon_sym_DOLLARnameof] = ACTIONS(1485), + [anon_sym_DOLLARoffsetof] = ACTIONS(1485), + [anon_sym_DOLLARqnameof] = ACTIONS(1485), + [anon_sym_DOLLARvaconst] = ACTIONS(1485), + [anon_sym_DOLLARvaarg] = ACTIONS(1485), + [anon_sym_DOLLARvaref] = ACTIONS(1485), + [anon_sym_DOLLARvaexpr] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_DOLLARvacount] = ACTIONS(1485), + [anon_sym_DOLLAReval] = ACTIONS(1485), + [anon_sym_DOLLARis_const] = ACTIONS(1485), + [anon_sym_DOLLARsizeof] = ACTIONS(1485), + [anon_sym_DOLLARstringify] = ACTIONS(1485), + [anon_sym_DOLLARappend] = ACTIONS(1485), + [anon_sym_DOLLARconcat] = ACTIONS(1485), + [anon_sym_DOLLARdefined] = ACTIONS(1485), + [anon_sym_DOLLARembed] = ACTIONS(1485), + [anon_sym_DOLLARand] = ACTIONS(1485), + [anon_sym_DOLLARor] = ACTIONS(1485), + [anon_sym_DOLLARfeature] = ACTIONS(1485), + [anon_sym_DOLLARassignable] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_typeid] = ACTIONS(1485), + [anon_sym_LBRACE_PIPE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_ichar] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_ushort] = ACTIONS(1485), + [anon_sym_uint] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_ulong] = ACTIONS(1485), + [anon_sym_int128] = ACTIONS(1485), + [anon_sym_uint128] = ACTIONS(1485), + [anon_sym_float] = ACTIONS(1485), + [anon_sym_double] = ACTIONS(1485), + [anon_sym_float16] = ACTIONS(1485), + [anon_sym_bfloat16] = ACTIONS(1485), + [anon_sym_float128] = ACTIONS(1485), + [anon_sym_iptr] = ACTIONS(1485), + [anon_sym_uptr] = ACTIONS(1485), + [anon_sym_isz] = ACTIONS(1485), + [anon_sym_usz] = ACTIONS(1485), + [anon_sym_anyfault] = ACTIONS(1485), + [anon_sym_any] = ACTIONS(1485), + [anon_sym_DOLLARtypeof] = ACTIONS(1485), + [anon_sym_DOLLARtypefrom] = ACTIONS(1485), + [anon_sym_DOLLARevaltype] = ACTIONS(1485), + [anon_sym_DOLLARvatype] = ACTIONS(1485), + [sym_real_literal] = ACTIONS(1487), }, - [548] = { - [sym_line_comment] = STATE(548), - [sym_doc_comment] = STATE(548), - [sym_block_comment] = STATE(548), - [sym_ident] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1459), - [anon_sym_DQUOTE] = ACTIONS(1459), - [anon_sym_BQUOTE] = ACTIONS(1459), - [sym_bytes_literal] = ACTIONS(1459), + [508] = { + [sym_line_comment] = STATE(508), + [sym_doc_comment] = STATE(508), + [sym_block_comment] = STATE(508), + [sym_ident] = ACTIONS(1433), + [sym_integer_literal] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_DQUOTE] = ACTIONS(1435), + [anon_sym_BQUOTE] = ACTIONS(1435), + [sym_bytes_literal] = ACTIONS(1435), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1457), - [sym_at_ident] = ACTIONS(1459), - [sym_hash_ident] = ACTIONS(1459), - [sym_type_ident] = ACTIONS(1459), - [sym_ct_type_ident] = ACTIONS(1459), - [sym_const_ident] = ACTIONS(1457), - [sym_builtin] = ACTIONS(1459), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1457), - [anon_sym_static] = ACTIONS(1457), - [anon_sym_tlocal] = ACTIONS(1457), - [anon_sym_SEMI] = ACTIONS(1459), - [anon_sym_fn] = ACTIONS(1457), - [anon_sym_LBRACE] = ACTIONS(1457), - [anon_sym_const] = ACTIONS(1457), - [anon_sym_var] = ACTIONS(1457), - [anon_sym_return] = ACTIONS(1457), - [anon_sym_continue] = ACTIONS(1457), - [anon_sym_break] = ACTIONS(1457), - [anon_sym_defer] = ACTIONS(1457), - [anon_sym_assert] = ACTIONS(1457), - [anon_sym_nextcase] = ACTIONS(1457), - [anon_sym_switch] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(1459), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_for] = ACTIONS(1457), - [anon_sym_foreach] = ACTIONS(1457), - [anon_sym_foreach_r] = ACTIONS(1457), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_do] = ACTIONS(1457), - [anon_sym_int] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1457), - [anon_sym_DASH] = ACTIONS(1457), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_asm] = ACTIONS(1457), - [anon_sym_DOLLARassert] = ACTIONS(1457), - [anon_sym_DOLLARerror] = ACTIONS(1457), - [anon_sym_DOLLARecho] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1457), - [anon_sym_DOLLARendif] = ACTIONS(1457), - [anon_sym_DOLLARelse] = ACTIONS(1457), - [anon_sym_DOLLARswitch] = ACTIONS(1457), - [anon_sym_DOLLARfor] = ACTIONS(1457), - [anon_sym_DOLLARforeach] = ACTIONS(1457), - [anon_sym_DOLLARalignof] = ACTIONS(1457), - [anon_sym_DOLLARextnameof] = ACTIONS(1457), - [anon_sym_DOLLARnameof] = ACTIONS(1457), - [anon_sym_DOLLARoffsetof] = ACTIONS(1457), - [anon_sym_DOLLARqnameof] = ACTIONS(1457), - [anon_sym_DOLLAReval] = ACTIONS(1457), - [anon_sym_DOLLARdefined] = ACTIONS(1457), - [anon_sym_DOLLARsizeof] = ACTIONS(1457), - [anon_sym_DOLLARstringify] = ACTIONS(1457), - [anon_sym_DOLLARis_const] = ACTIONS(1457), - [anon_sym_DOLLARvaconst] = ACTIONS(1457), - [anon_sym_DOLLARvaarg] = ACTIONS(1457), - [anon_sym_DOLLARvaref] = ACTIONS(1457), - [anon_sym_DOLLARvaexpr] = ACTIONS(1457), - [anon_sym_true] = ACTIONS(1457), - [anon_sym_false] = ACTIONS(1457), - [anon_sym_null] = ACTIONS(1457), - [anon_sym_DOLLARvacount] = ACTIONS(1457), - [anon_sym_DOLLARfeature] = ACTIONS(1457), - [anon_sym_DOLLARand] = ACTIONS(1457), - [anon_sym_DOLLARor] = ACTIONS(1457), - [anon_sym_DOLLARassignable] = ACTIONS(1457), - [anon_sym_DOLLARembed] = ACTIONS(1457), - [anon_sym_BANG] = ACTIONS(1459), - [anon_sym_TILDE] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_typeid] = ACTIONS(1457), - [anon_sym_LBRACE_PIPE] = ACTIONS(1459), - [anon_sym_void] = ACTIONS(1457), - [anon_sym_bool] = ACTIONS(1457), - [anon_sym_char] = ACTIONS(1457), - [anon_sym_ichar] = ACTIONS(1457), - [anon_sym_short] = ACTIONS(1457), - [anon_sym_ushort] = ACTIONS(1457), - [anon_sym_uint] = ACTIONS(1457), - [anon_sym_long] = ACTIONS(1457), - [anon_sym_ulong] = ACTIONS(1457), - [anon_sym_int128] = ACTIONS(1457), - [anon_sym_uint128] = ACTIONS(1457), - [anon_sym_float] = ACTIONS(1457), - [anon_sym_double] = ACTIONS(1457), - [anon_sym_float16] = ACTIONS(1457), - [anon_sym_bfloat16] = ACTIONS(1457), - [anon_sym_float128] = ACTIONS(1457), - [anon_sym_iptr] = ACTIONS(1457), - [anon_sym_uptr] = ACTIONS(1457), - [anon_sym_isz] = ACTIONS(1457), - [anon_sym_usz] = ACTIONS(1457), - [anon_sym_anyfault] = ACTIONS(1457), - [anon_sym_any] = ACTIONS(1457), - [anon_sym_DOLLARtypeof] = ACTIONS(1457), - [anon_sym_DOLLARtypefrom] = ACTIONS(1457), - [anon_sym_DOLLARvatype] = ACTIONS(1457), - [anon_sym_DOLLARevaltype] = ACTIONS(1457), - [sym_real_literal] = ACTIONS(1459), + [sym_ct_ident] = ACTIONS(1433), + [sym_at_ident] = ACTIONS(1435), + [sym_hash_ident] = ACTIONS(1435), + [sym_type_ident] = ACTIONS(1435), + [sym_ct_type_ident] = ACTIONS(1435), + [sym_const_ident] = ACTIONS(1433), + [sym_builtin] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_tlocal] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_fn] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_var] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_defer] = ACTIONS(1433), + [anon_sym_assert] = ACTIONS(1433), + [anon_sym_nextcase] = ACTIONS(1433), + [anon_sym_switch] = ACTIONS(1433), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_foreach] = ACTIONS(1433), + [anon_sym_foreach_r] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_do] = ACTIONS(1433), + [anon_sym_int] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_asm] = ACTIONS(1433), + [anon_sym_DOLLARassert] = ACTIONS(1433), + [anon_sym_DOLLARerror] = ACTIONS(1433), + [anon_sym_DOLLARecho] = ACTIONS(1433), + [anon_sym_DOLLARif] = ACTIONS(1433), + [anon_sym_DOLLARendif] = ACTIONS(1433), + [anon_sym_DOLLARelse] = ACTIONS(1433), + [anon_sym_DOLLARswitch] = ACTIONS(1433), + [anon_sym_DOLLARfor] = ACTIONS(1433), + [anon_sym_DOLLARforeach] = ACTIONS(1433), + [anon_sym_DOLLARalignof] = ACTIONS(1433), + [anon_sym_DOLLARextnameof] = ACTIONS(1433), + [anon_sym_DOLLARnameof] = ACTIONS(1433), + [anon_sym_DOLLARoffsetof] = ACTIONS(1433), + [anon_sym_DOLLARqnameof] = ACTIONS(1433), + [anon_sym_DOLLARvaconst] = ACTIONS(1433), + [anon_sym_DOLLARvaarg] = ACTIONS(1433), + [anon_sym_DOLLARvaref] = ACTIONS(1433), + [anon_sym_DOLLARvaexpr] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1433), + [anon_sym_DOLLARvacount] = ACTIONS(1433), + [anon_sym_DOLLAReval] = ACTIONS(1433), + [anon_sym_DOLLARis_const] = ACTIONS(1433), + [anon_sym_DOLLARsizeof] = ACTIONS(1433), + [anon_sym_DOLLARstringify] = ACTIONS(1433), + [anon_sym_DOLLARappend] = ACTIONS(1433), + [anon_sym_DOLLARconcat] = ACTIONS(1433), + [anon_sym_DOLLARdefined] = ACTIONS(1433), + [anon_sym_DOLLARembed] = ACTIONS(1433), + [anon_sym_DOLLARand] = ACTIONS(1433), + [anon_sym_DOLLARor] = ACTIONS(1433), + [anon_sym_DOLLARfeature] = ACTIONS(1433), + [anon_sym_DOLLARassignable] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_PLUS_PLUS] = ACTIONS(1435), + [anon_sym_DASH_DASH] = ACTIONS(1435), + [anon_sym_typeid] = ACTIONS(1433), + [anon_sym_LBRACE_PIPE] = ACTIONS(1435), + [anon_sym_void] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_ichar] = ACTIONS(1433), + [anon_sym_short] = ACTIONS(1433), + [anon_sym_ushort] = ACTIONS(1433), + [anon_sym_uint] = ACTIONS(1433), + [anon_sym_long] = ACTIONS(1433), + [anon_sym_ulong] = ACTIONS(1433), + [anon_sym_int128] = ACTIONS(1433), + [anon_sym_uint128] = ACTIONS(1433), + [anon_sym_float] = ACTIONS(1433), + [anon_sym_double] = ACTIONS(1433), + [anon_sym_float16] = ACTIONS(1433), + [anon_sym_bfloat16] = ACTIONS(1433), + [anon_sym_float128] = ACTIONS(1433), + [anon_sym_iptr] = ACTIONS(1433), + [anon_sym_uptr] = ACTIONS(1433), + [anon_sym_isz] = ACTIONS(1433), + [anon_sym_usz] = ACTIONS(1433), + [anon_sym_anyfault] = ACTIONS(1433), + [anon_sym_any] = ACTIONS(1433), + [anon_sym_DOLLARtypeof] = ACTIONS(1433), + [anon_sym_DOLLARtypefrom] = ACTIONS(1433), + [anon_sym_DOLLARevaltype] = ACTIONS(1433), + [anon_sym_DOLLARvatype] = ACTIONS(1433), + [sym_real_literal] = ACTIONS(1435), }, - [549] = { - [sym_line_comment] = STATE(549), - [sym_doc_comment] = STATE(549), - [sym_block_comment] = STATE(549), - [sym_ident] = ACTIONS(1453), - [sym_integer_literal] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [anon_sym_BQUOTE] = ACTIONS(1455), - [sym_bytes_literal] = ACTIONS(1455), + [509] = { + [sym_line_comment] = STATE(509), + [sym_doc_comment] = STATE(509), + [sym_block_comment] = STATE(509), + [sym_ident] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [sym_bytes_literal] = ACTIONS(1531), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1529), + [sym_at_ident] = ACTIONS(1531), + [sym_hash_ident] = ACTIONS(1531), + [sym_type_ident] = ACTIONS(1531), + [sym_ct_type_ident] = ACTIONS(1531), + [sym_const_ident] = ACTIONS(1529), + [sym_builtin] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_tlocal] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_defer] = ACTIONS(1529), + [anon_sym_assert] = ACTIONS(1529), + [anon_sym_nextcase] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_foreach] = ACTIONS(1529), + [anon_sym_foreach_r] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_int] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_asm] = ACTIONS(1529), + [anon_sym_DOLLARassert] = ACTIONS(1529), + [anon_sym_DOLLARerror] = ACTIONS(1529), + [anon_sym_DOLLARecho] = ACTIONS(1529), + [anon_sym_DOLLARif] = ACTIONS(1529), + [anon_sym_DOLLARendif] = ACTIONS(1529), + [anon_sym_DOLLARelse] = ACTIONS(1529), + [anon_sym_DOLLARswitch] = ACTIONS(1529), + [anon_sym_DOLLARfor] = ACTIONS(1529), + [anon_sym_DOLLARforeach] = ACTIONS(1529), + [anon_sym_DOLLARalignof] = ACTIONS(1529), + [anon_sym_DOLLARextnameof] = ACTIONS(1529), + [anon_sym_DOLLARnameof] = ACTIONS(1529), + [anon_sym_DOLLARoffsetof] = ACTIONS(1529), + [anon_sym_DOLLARqnameof] = ACTIONS(1529), + [anon_sym_DOLLARvaconst] = ACTIONS(1529), + [anon_sym_DOLLARvaarg] = ACTIONS(1529), + [anon_sym_DOLLARvaref] = ACTIONS(1529), + [anon_sym_DOLLARvaexpr] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_null] = ACTIONS(1529), + [anon_sym_DOLLARvacount] = ACTIONS(1529), + [anon_sym_DOLLAReval] = ACTIONS(1529), + [anon_sym_DOLLARis_const] = ACTIONS(1529), + [anon_sym_DOLLARsizeof] = ACTIONS(1529), + [anon_sym_DOLLARstringify] = ACTIONS(1529), + [anon_sym_DOLLARappend] = ACTIONS(1529), + [anon_sym_DOLLARconcat] = ACTIONS(1529), + [anon_sym_DOLLARdefined] = ACTIONS(1529), + [anon_sym_DOLLARembed] = ACTIONS(1529), + [anon_sym_DOLLARand] = ACTIONS(1529), + [anon_sym_DOLLARor] = ACTIONS(1529), + [anon_sym_DOLLARfeature] = ACTIONS(1529), + [anon_sym_DOLLARassignable] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1531), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_typeid] = ACTIONS(1529), + [anon_sym_LBRACE_PIPE] = ACTIONS(1531), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_ichar] = ACTIONS(1529), + [anon_sym_short] = ACTIONS(1529), + [anon_sym_ushort] = ACTIONS(1529), + [anon_sym_uint] = ACTIONS(1529), + [anon_sym_long] = ACTIONS(1529), + [anon_sym_ulong] = ACTIONS(1529), + [anon_sym_int128] = ACTIONS(1529), + [anon_sym_uint128] = ACTIONS(1529), + [anon_sym_float] = ACTIONS(1529), + [anon_sym_double] = ACTIONS(1529), + [anon_sym_float16] = ACTIONS(1529), + [anon_sym_bfloat16] = ACTIONS(1529), + [anon_sym_float128] = ACTIONS(1529), + [anon_sym_iptr] = ACTIONS(1529), + [anon_sym_uptr] = ACTIONS(1529), + [anon_sym_isz] = ACTIONS(1529), + [anon_sym_usz] = ACTIONS(1529), + [anon_sym_anyfault] = ACTIONS(1529), + [anon_sym_any] = ACTIONS(1529), + [anon_sym_DOLLARtypeof] = ACTIONS(1529), + [anon_sym_DOLLARtypefrom] = ACTIONS(1529), + [anon_sym_DOLLARevaltype] = ACTIONS(1529), + [anon_sym_DOLLARvatype] = ACTIONS(1529), + [sym_real_literal] = ACTIONS(1531), + }, + [510] = { + [sym_line_comment] = STATE(510), + [sym_doc_comment] = STATE(510), + [sym_block_comment] = STATE(510), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARendif] = ACTIONS(1189), + [anon_sym_DOLLARelse] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), + }, + [511] = { + [sym_line_comment] = STATE(511), + [sym_doc_comment] = STATE(511), + [sym_block_comment] = STATE(511), + [sym_ident] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [sym_bytes_literal] = ACTIONS(1369), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1367), + [sym_at_ident] = ACTIONS(1369), + [sym_hash_ident] = ACTIONS(1369), + [sym_type_ident] = ACTIONS(1369), + [sym_ct_type_ident] = ACTIONS(1369), + [sym_const_ident] = ACTIONS(1367), + [sym_builtin] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_tlocal] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_var] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_defer] = ACTIONS(1367), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_nextcase] = ACTIONS(1367), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_else] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_foreach] = ACTIONS(1367), + [anon_sym_foreach_r] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1367), + [anon_sym_DOLLARassert] = ACTIONS(1367), + [anon_sym_DOLLARerror] = ACTIONS(1367), + [anon_sym_DOLLARecho] = ACTIONS(1367), + [anon_sym_DOLLARif] = ACTIONS(1367), + [anon_sym_DOLLARswitch] = ACTIONS(1367), + [anon_sym_DOLLARfor] = ACTIONS(1367), + [anon_sym_DOLLARendfor] = ACTIONS(1367), + [anon_sym_DOLLARforeach] = ACTIONS(1367), + [anon_sym_DOLLARalignof] = ACTIONS(1367), + [anon_sym_DOLLARextnameof] = ACTIONS(1367), + [anon_sym_DOLLARnameof] = ACTIONS(1367), + [anon_sym_DOLLARoffsetof] = ACTIONS(1367), + [anon_sym_DOLLARqnameof] = ACTIONS(1367), + [anon_sym_DOLLARvaconst] = ACTIONS(1367), + [anon_sym_DOLLARvaarg] = ACTIONS(1367), + [anon_sym_DOLLARvaref] = ACTIONS(1367), + [anon_sym_DOLLARvaexpr] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_null] = ACTIONS(1367), + [anon_sym_DOLLARvacount] = ACTIONS(1367), + [anon_sym_DOLLAReval] = ACTIONS(1367), + [anon_sym_DOLLARis_const] = ACTIONS(1367), + [anon_sym_DOLLARsizeof] = ACTIONS(1367), + [anon_sym_DOLLARstringify] = ACTIONS(1367), + [anon_sym_DOLLARappend] = ACTIONS(1367), + [anon_sym_DOLLARconcat] = ACTIONS(1367), + [anon_sym_DOLLARdefined] = ACTIONS(1367), + [anon_sym_DOLLARembed] = ACTIONS(1367), + [anon_sym_DOLLARand] = ACTIONS(1367), + [anon_sym_DOLLARor] = ACTIONS(1367), + [anon_sym_DOLLARfeature] = ACTIONS(1367), + [anon_sym_DOLLARassignable] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1369), + [anon_sym_typeid] = ACTIONS(1367), + [anon_sym_LBRACE_PIPE] = ACTIONS(1369), + [anon_sym_void] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_ichar] = ACTIONS(1367), + [anon_sym_short] = ACTIONS(1367), + [anon_sym_ushort] = ACTIONS(1367), + [anon_sym_uint] = ACTIONS(1367), + [anon_sym_long] = ACTIONS(1367), + [anon_sym_ulong] = ACTIONS(1367), + [anon_sym_int128] = ACTIONS(1367), + [anon_sym_uint128] = ACTIONS(1367), + [anon_sym_float] = ACTIONS(1367), + [anon_sym_double] = ACTIONS(1367), + [anon_sym_float16] = ACTIONS(1367), + [anon_sym_bfloat16] = ACTIONS(1367), + [anon_sym_float128] = ACTIONS(1367), + [anon_sym_iptr] = ACTIONS(1367), + [anon_sym_uptr] = ACTIONS(1367), + [anon_sym_isz] = ACTIONS(1367), + [anon_sym_usz] = ACTIONS(1367), + [anon_sym_anyfault] = ACTIONS(1367), + [anon_sym_any] = ACTIONS(1367), + [anon_sym_DOLLARtypeof] = ACTIONS(1367), + [anon_sym_DOLLARtypefrom] = ACTIONS(1367), + [anon_sym_DOLLARevaltype] = ACTIONS(1367), + [anon_sym_DOLLARvatype] = ACTIONS(1367), + [sym_real_literal] = ACTIONS(1369), + }, + [512] = { + [sym_line_comment] = STATE(512), + [sym_doc_comment] = STATE(512), + [sym_block_comment] = STATE(512), + [sym_ident] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1499), + [sym_bytes_literal] = ACTIONS(1499), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1497), + [sym_at_ident] = ACTIONS(1499), + [sym_hash_ident] = ACTIONS(1499), + [sym_type_ident] = ACTIONS(1499), + [sym_ct_type_ident] = ACTIONS(1499), + [sym_const_ident] = ACTIONS(1497), + [sym_builtin] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_tlocal] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_var] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_defer] = ACTIONS(1497), + [anon_sym_assert] = ACTIONS(1497), + [anon_sym_nextcase] = ACTIONS(1497), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_foreach] = ACTIONS(1497), + [anon_sym_foreach_r] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_int] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_asm] = ACTIONS(1497), + [anon_sym_DOLLARassert] = ACTIONS(1497), + [anon_sym_DOLLARerror] = ACTIONS(1497), + [anon_sym_DOLLARecho] = ACTIONS(1497), + [anon_sym_DOLLARif] = ACTIONS(1497), + [anon_sym_DOLLARendif] = ACTIONS(1497), + [anon_sym_DOLLARelse] = ACTIONS(1497), + [anon_sym_DOLLARswitch] = ACTIONS(1497), + [anon_sym_DOLLARfor] = ACTIONS(1497), + [anon_sym_DOLLARforeach] = ACTIONS(1497), + [anon_sym_DOLLARalignof] = ACTIONS(1497), + [anon_sym_DOLLARextnameof] = ACTIONS(1497), + [anon_sym_DOLLARnameof] = ACTIONS(1497), + [anon_sym_DOLLARoffsetof] = ACTIONS(1497), + [anon_sym_DOLLARqnameof] = ACTIONS(1497), + [anon_sym_DOLLARvaconst] = ACTIONS(1497), + [anon_sym_DOLLARvaarg] = ACTIONS(1497), + [anon_sym_DOLLARvaref] = ACTIONS(1497), + [anon_sym_DOLLARvaexpr] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_DOLLARvacount] = ACTIONS(1497), + [anon_sym_DOLLAReval] = ACTIONS(1497), + [anon_sym_DOLLARis_const] = ACTIONS(1497), + [anon_sym_DOLLARsizeof] = ACTIONS(1497), + [anon_sym_DOLLARstringify] = ACTIONS(1497), + [anon_sym_DOLLARappend] = ACTIONS(1497), + [anon_sym_DOLLARconcat] = ACTIONS(1497), + [anon_sym_DOLLARdefined] = ACTIONS(1497), + [anon_sym_DOLLARembed] = ACTIONS(1497), + [anon_sym_DOLLARand] = ACTIONS(1497), + [anon_sym_DOLLARor] = ACTIONS(1497), + [anon_sym_DOLLARfeature] = ACTIONS(1497), + [anon_sym_DOLLARassignable] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_typeid] = ACTIONS(1497), + [anon_sym_LBRACE_PIPE] = ACTIONS(1499), + [anon_sym_void] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_ichar] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [anon_sym_ushort] = ACTIONS(1497), + [anon_sym_uint] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_ulong] = ACTIONS(1497), + [anon_sym_int128] = ACTIONS(1497), + [anon_sym_uint128] = ACTIONS(1497), + [anon_sym_float] = ACTIONS(1497), + [anon_sym_double] = ACTIONS(1497), + [anon_sym_float16] = ACTIONS(1497), + [anon_sym_bfloat16] = ACTIONS(1497), + [anon_sym_float128] = ACTIONS(1497), + [anon_sym_iptr] = ACTIONS(1497), + [anon_sym_uptr] = ACTIONS(1497), + [anon_sym_isz] = ACTIONS(1497), + [anon_sym_usz] = ACTIONS(1497), + [anon_sym_anyfault] = ACTIONS(1497), + [anon_sym_any] = ACTIONS(1497), + [anon_sym_DOLLARtypeof] = ACTIONS(1497), + [anon_sym_DOLLARtypefrom] = ACTIONS(1497), + [anon_sym_DOLLARevaltype] = ACTIONS(1497), + [anon_sym_DOLLARvatype] = ACTIONS(1497), + [sym_real_literal] = ACTIONS(1499), + }, + [513] = { + [sym_line_comment] = STATE(513), + [sym_doc_comment] = STATE(513), + [sym_block_comment] = STATE(513), + [sym_ident] = ACTIONS(1637), + [sym_integer_literal] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_BQUOTE] = ACTIONS(1639), + [sym_bytes_literal] = ACTIONS(1639), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1637), + [sym_at_ident] = ACTIONS(1639), + [sym_hash_ident] = ACTIONS(1639), + [sym_type_ident] = ACTIONS(1639), + [sym_ct_type_ident] = ACTIONS(1639), + [sym_const_ident] = ACTIONS(1637), + [sym_builtin] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_tlocal] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_fn] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_var] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_defer] = ACTIONS(1637), + [anon_sym_assert] = ACTIONS(1637), + [anon_sym_nextcase] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_foreach] = ACTIONS(1637), + [anon_sym_foreach_r] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_int] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_asm] = ACTIONS(1637), + [anon_sym_DOLLARassert] = ACTIONS(1637), + [anon_sym_DOLLARerror] = ACTIONS(1637), + [anon_sym_DOLLARecho] = ACTIONS(1637), + [anon_sym_DOLLARif] = ACTIONS(1637), + [anon_sym_DOLLARendif] = ACTIONS(1637), + [anon_sym_DOLLARelse] = ACTIONS(1637), + [anon_sym_DOLLARswitch] = ACTIONS(1637), + [anon_sym_DOLLARfor] = ACTIONS(1637), + [anon_sym_DOLLARforeach] = ACTIONS(1637), + [anon_sym_DOLLARalignof] = ACTIONS(1637), + [anon_sym_DOLLARextnameof] = ACTIONS(1637), + [anon_sym_DOLLARnameof] = ACTIONS(1637), + [anon_sym_DOLLARoffsetof] = ACTIONS(1637), + [anon_sym_DOLLARqnameof] = ACTIONS(1637), + [anon_sym_DOLLARvaconst] = ACTIONS(1637), + [anon_sym_DOLLARvaarg] = ACTIONS(1637), + [anon_sym_DOLLARvaref] = ACTIONS(1637), + [anon_sym_DOLLARvaexpr] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_DOLLARvacount] = ACTIONS(1637), + [anon_sym_DOLLAReval] = ACTIONS(1637), + [anon_sym_DOLLARis_const] = ACTIONS(1637), + [anon_sym_DOLLARsizeof] = ACTIONS(1637), + [anon_sym_DOLLARstringify] = ACTIONS(1637), + [anon_sym_DOLLARappend] = ACTIONS(1637), + [anon_sym_DOLLARconcat] = ACTIONS(1637), + [anon_sym_DOLLARdefined] = ACTIONS(1637), + [anon_sym_DOLLARembed] = ACTIONS(1637), + [anon_sym_DOLLARand] = ACTIONS(1637), + [anon_sym_DOLLARor] = ACTIONS(1637), + [anon_sym_DOLLARfeature] = ACTIONS(1637), + [anon_sym_DOLLARassignable] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_typeid] = ACTIONS(1637), + [anon_sym_LBRACE_PIPE] = ACTIONS(1639), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_bool] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_ichar] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_ushort] = ACTIONS(1637), + [anon_sym_uint] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_ulong] = ACTIONS(1637), + [anon_sym_int128] = ACTIONS(1637), + [anon_sym_uint128] = ACTIONS(1637), + [anon_sym_float] = ACTIONS(1637), + [anon_sym_double] = ACTIONS(1637), + [anon_sym_float16] = ACTIONS(1637), + [anon_sym_bfloat16] = ACTIONS(1637), + [anon_sym_float128] = ACTIONS(1637), + [anon_sym_iptr] = ACTIONS(1637), + [anon_sym_uptr] = ACTIONS(1637), + [anon_sym_isz] = ACTIONS(1637), + [anon_sym_usz] = ACTIONS(1637), + [anon_sym_anyfault] = ACTIONS(1637), + [anon_sym_any] = ACTIONS(1637), + [anon_sym_DOLLARtypeof] = ACTIONS(1637), + [anon_sym_DOLLARtypefrom] = ACTIONS(1637), + [anon_sym_DOLLARevaltype] = ACTIONS(1637), + [anon_sym_DOLLARvatype] = ACTIONS(1637), + [sym_real_literal] = ACTIONS(1639), + }, + [514] = { + [sym_line_comment] = STATE(514), + [sym_doc_comment] = STATE(514), + [sym_block_comment] = STATE(514), + [sym_ident] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_bytes_literal] = ACTIONS(1643), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1453), - [sym_at_ident] = ACTIONS(1455), - [sym_hash_ident] = ACTIONS(1455), - [sym_type_ident] = ACTIONS(1455), - [sym_ct_type_ident] = ACTIONS(1455), - [sym_const_ident] = ACTIONS(1453), - [sym_builtin] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1453), - [anon_sym_tlocal] = ACTIONS(1453), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym_fn] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [anon_sym_var] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_defer] = ACTIONS(1453), - [anon_sym_assert] = ACTIONS(1453), - [anon_sym_nextcase] = ACTIONS(1453), - [anon_sym_switch] = ACTIONS(1453), - [anon_sym_AMP_AMP] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_foreach] = ACTIONS(1453), - [anon_sym_foreach_r] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_int] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_asm] = ACTIONS(1453), - [anon_sym_DOLLARassert] = ACTIONS(1453), - [anon_sym_DOLLARerror] = ACTIONS(1453), - [anon_sym_DOLLARecho] = ACTIONS(1453), - [anon_sym_DOLLARif] = ACTIONS(1453), - [anon_sym_DOLLARendif] = ACTIONS(1453), - [anon_sym_DOLLARelse] = ACTIONS(1453), - [anon_sym_DOLLARswitch] = ACTIONS(1453), - [anon_sym_DOLLARfor] = ACTIONS(1453), - [anon_sym_DOLLARforeach] = ACTIONS(1453), - [anon_sym_DOLLARalignof] = ACTIONS(1453), - [anon_sym_DOLLARextnameof] = ACTIONS(1453), - [anon_sym_DOLLARnameof] = ACTIONS(1453), - [anon_sym_DOLLARoffsetof] = ACTIONS(1453), - [anon_sym_DOLLARqnameof] = ACTIONS(1453), - [anon_sym_DOLLAReval] = ACTIONS(1453), - [anon_sym_DOLLARdefined] = ACTIONS(1453), - [anon_sym_DOLLARsizeof] = ACTIONS(1453), - [anon_sym_DOLLARstringify] = ACTIONS(1453), - [anon_sym_DOLLARis_const] = ACTIONS(1453), - [anon_sym_DOLLARvaconst] = ACTIONS(1453), - [anon_sym_DOLLARvaarg] = ACTIONS(1453), - [anon_sym_DOLLARvaref] = ACTIONS(1453), - [anon_sym_DOLLARvaexpr] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_DOLLARvacount] = ACTIONS(1453), - [anon_sym_DOLLARfeature] = ACTIONS(1453), - [anon_sym_DOLLARand] = ACTIONS(1453), - [anon_sym_DOLLARor] = ACTIONS(1453), - [anon_sym_DOLLARassignable] = ACTIONS(1453), - [anon_sym_DOLLARembed] = ACTIONS(1453), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_TILDE] = ACTIONS(1455), - [anon_sym_PLUS_PLUS] = ACTIONS(1455), - [anon_sym_DASH_DASH] = ACTIONS(1455), - [anon_sym_typeid] = ACTIONS(1453), - [anon_sym_LBRACE_PIPE] = ACTIONS(1455), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_bool] = ACTIONS(1453), - [anon_sym_char] = ACTIONS(1453), - [anon_sym_ichar] = ACTIONS(1453), - [anon_sym_short] = ACTIONS(1453), - [anon_sym_ushort] = ACTIONS(1453), - [anon_sym_uint] = ACTIONS(1453), - [anon_sym_long] = ACTIONS(1453), - [anon_sym_ulong] = ACTIONS(1453), - [anon_sym_int128] = ACTIONS(1453), - [anon_sym_uint128] = ACTIONS(1453), - [anon_sym_float] = ACTIONS(1453), - [anon_sym_double] = ACTIONS(1453), - [anon_sym_float16] = ACTIONS(1453), - [anon_sym_bfloat16] = ACTIONS(1453), - [anon_sym_float128] = ACTIONS(1453), - [anon_sym_iptr] = ACTIONS(1453), - [anon_sym_uptr] = ACTIONS(1453), - [anon_sym_isz] = ACTIONS(1453), - [anon_sym_usz] = ACTIONS(1453), - [anon_sym_anyfault] = ACTIONS(1453), - [anon_sym_any] = ACTIONS(1453), - [anon_sym_DOLLARtypeof] = ACTIONS(1453), - [anon_sym_DOLLARtypefrom] = ACTIONS(1453), - [anon_sym_DOLLARvatype] = ACTIONS(1453), - [anon_sym_DOLLARevaltype] = ACTIONS(1453), - [sym_real_literal] = ACTIONS(1455), + [sym_ct_ident] = ACTIONS(1641), + [sym_at_ident] = ACTIONS(1643), + [sym_hash_ident] = ACTIONS(1643), + [sym_type_ident] = ACTIONS(1643), + [sym_ct_type_ident] = ACTIONS(1643), + [sym_const_ident] = ACTIONS(1641), + [sym_builtin] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_tlocal] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_fn] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [anon_sym_var] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_defer] = ACTIONS(1641), + [anon_sym_assert] = ACTIONS(1641), + [anon_sym_nextcase] = ACTIONS(1641), + [anon_sym_switch] = ACTIONS(1641), + [anon_sym_AMP_AMP] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_foreach] = ACTIONS(1641), + [anon_sym_foreach_r] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_int] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_asm] = ACTIONS(1641), + [anon_sym_DOLLARassert] = ACTIONS(1641), + [anon_sym_DOLLARerror] = ACTIONS(1641), + [anon_sym_DOLLARecho] = ACTIONS(1641), + [anon_sym_DOLLARif] = ACTIONS(1641), + [anon_sym_DOLLARendif] = ACTIONS(1641), + [anon_sym_DOLLARelse] = ACTIONS(1641), + [anon_sym_DOLLARswitch] = ACTIONS(1641), + [anon_sym_DOLLARfor] = ACTIONS(1641), + [anon_sym_DOLLARforeach] = ACTIONS(1641), + [anon_sym_DOLLARalignof] = ACTIONS(1641), + [anon_sym_DOLLARextnameof] = ACTIONS(1641), + [anon_sym_DOLLARnameof] = ACTIONS(1641), + [anon_sym_DOLLARoffsetof] = ACTIONS(1641), + [anon_sym_DOLLARqnameof] = ACTIONS(1641), + [anon_sym_DOLLARvaconst] = ACTIONS(1641), + [anon_sym_DOLLARvaarg] = ACTIONS(1641), + [anon_sym_DOLLARvaref] = ACTIONS(1641), + [anon_sym_DOLLARvaexpr] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [anon_sym_DOLLARvacount] = ACTIONS(1641), + [anon_sym_DOLLAReval] = ACTIONS(1641), + [anon_sym_DOLLARis_const] = ACTIONS(1641), + [anon_sym_DOLLARsizeof] = ACTIONS(1641), + [anon_sym_DOLLARstringify] = ACTIONS(1641), + [anon_sym_DOLLARappend] = ACTIONS(1641), + [anon_sym_DOLLARconcat] = ACTIONS(1641), + [anon_sym_DOLLARdefined] = ACTIONS(1641), + [anon_sym_DOLLARembed] = ACTIONS(1641), + [anon_sym_DOLLARand] = ACTIONS(1641), + [anon_sym_DOLLARor] = ACTIONS(1641), + [anon_sym_DOLLARfeature] = ACTIONS(1641), + [anon_sym_DOLLARassignable] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1643), + [anon_sym_TILDE] = ACTIONS(1643), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_typeid] = ACTIONS(1641), + [anon_sym_LBRACE_PIPE] = ACTIONS(1643), + [anon_sym_void] = ACTIONS(1641), + [anon_sym_bool] = ACTIONS(1641), + [anon_sym_char] = ACTIONS(1641), + [anon_sym_ichar] = ACTIONS(1641), + [anon_sym_short] = ACTIONS(1641), + [anon_sym_ushort] = ACTIONS(1641), + [anon_sym_uint] = ACTIONS(1641), + [anon_sym_long] = ACTIONS(1641), + [anon_sym_ulong] = ACTIONS(1641), + [anon_sym_int128] = ACTIONS(1641), + [anon_sym_uint128] = ACTIONS(1641), + [anon_sym_float] = ACTIONS(1641), + [anon_sym_double] = ACTIONS(1641), + [anon_sym_float16] = ACTIONS(1641), + [anon_sym_bfloat16] = ACTIONS(1641), + [anon_sym_float128] = ACTIONS(1641), + [anon_sym_iptr] = ACTIONS(1641), + [anon_sym_uptr] = ACTIONS(1641), + [anon_sym_isz] = ACTIONS(1641), + [anon_sym_usz] = ACTIONS(1641), + [anon_sym_anyfault] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_DOLLARtypeof] = ACTIONS(1641), + [anon_sym_DOLLARtypefrom] = ACTIONS(1641), + [anon_sym_DOLLARevaltype] = ACTIONS(1641), + [anon_sym_DOLLARvatype] = ACTIONS(1641), + [sym_real_literal] = ACTIONS(1643), }, - [550] = { - [sym_line_comment] = STATE(550), - [sym_doc_comment] = STATE(550), - [sym_block_comment] = STATE(550), - [sym_ident] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(1443), - [anon_sym_SQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [anon_sym_BQUOTE] = ACTIONS(1443), - [sym_bytes_literal] = ACTIONS(1443), + [515] = { + [sym_line_comment] = STATE(515), + [sym_doc_comment] = STATE(515), + [sym_block_comment] = STATE(515), + [sym_ident] = ACTIONS(1645), + [sym_integer_literal] = ACTIONS(1647), + [anon_sym_SQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), + [sym_bytes_literal] = ACTIONS(1647), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1441), - [sym_at_ident] = ACTIONS(1443), - [sym_hash_ident] = ACTIONS(1443), - [sym_type_ident] = ACTIONS(1443), - [sym_ct_type_ident] = ACTIONS(1443), - [sym_const_ident] = ACTIONS(1441), - [sym_builtin] = ACTIONS(1443), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1441), - [anon_sym_static] = ACTIONS(1441), - [anon_sym_tlocal] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1443), - [anon_sym_fn] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_const] = ACTIONS(1441), - [anon_sym_var] = ACTIONS(1441), - [anon_sym_return] = ACTIONS(1441), - [anon_sym_continue] = ACTIONS(1441), - [anon_sym_break] = ACTIONS(1441), - [anon_sym_defer] = ACTIONS(1441), - [anon_sym_assert] = ACTIONS(1441), - [anon_sym_nextcase] = ACTIONS(1441), - [anon_sym_switch] = ACTIONS(1441), - [anon_sym_AMP_AMP] = ACTIONS(1443), - [anon_sym_if] = ACTIONS(1441), - [anon_sym_for] = ACTIONS(1441), - [anon_sym_foreach] = ACTIONS(1441), - [anon_sym_foreach_r] = ACTIONS(1441), - [anon_sym_while] = ACTIONS(1441), - [anon_sym_do] = ACTIONS(1441), - [anon_sym_int] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_asm] = ACTIONS(1441), - [anon_sym_DOLLARassert] = ACTIONS(1441), - [anon_sym_DOLLARerror] = ACTIONS(1441), - [anon_sym_DOLLARecho] = ACTIONS(1441), - [anon_sym_DOLLARif] = ACTIONS(1441), - [anon_sym_DOLLARendif] = ACTIONS(1441), - [anon_sym_DOLLARelse] = ACTIONS(1441), - [anon_sym_DOLLARswitch] = ACTIONS(1441), - [anon_sym_DOLLARfor] = ACTIONS(1441), - [anon_sym_DOLLARforeach] = ACTIONS(1441), - [anon_sym_DOLLARalignof] = ACTIONS(1441), - [anon_sym_DOLLARextnameof] = ACTIONS(1441), - [anon_sym_DOLLARnameof] = ACTIONS(1441), - [anon_sym_DOLLARoffsetof] = ACTIONS(1441), - [anon_sym_DOLLARqnameof] = ACTIONS(1441), - [anon_sym_DOLLAReval] = ACTIONS(1441), - [anon_sym_DOLLARdefined] = ACTIONS(1441), - [anon_sym_DOLLARsizeof] = ACTIONS(1441), - [anon_sym_DOLLARstringify] = ACTIONS(1441), - [anon_sym_DOLLARis_const] = ACTIONS(1441), - [anon_sym_DOLLARvaconst] = ACTIONS(1441), - [anon_sym_DOLLARvaarg] = ACTIONS(1441), - [anon_sym_DOLLARvaref] = ACTIONS(1441), - [anon_sym_DOLLARvaexpr] = ACTIONS(1441), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), - [anon_sym_null] = ACTIONS(1441), - [anon_sym_DOLLARvacount] = ACTIONS(1441), - [anon_sym_DOLLARfeature] = ACTIONS(1441), - [anon_sym_DOLLARand] = ACTIONS(1441), - [anon_sym_DOLLARor] = ACTIONS(1441), - [anon_sym_DOLLARassignable] = ACTIONS(1441), - [anon_sym_DOLLARembed] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1443), - [anon_sym_TILDE] = ACTIONS(1443), - [anon_sym_PLUS_PLUS] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1443), - [anon_sym_typeid] = ACTIONS(1441), - [anon_sym_LBRACE_PIPE] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1441), - [anon_sym_bool] = ACTIONS(1441), - [anon_sym_char] = ACTIONS(1441), - [anon_sym_ichar] = ACTIONS(1441), - [anon_sym_short] = ACTIONS(1441), - [anon_sym_ushort] = ACTIONS(1441), - [anon_sym_uint] = ACTIONS(1441), - [anon_sym_long] = ACTIONS(1441), - [anon_sym_ulong] = ACTIONS(1441), - [anon_sym_int128] = ACTIONS(1441), - [anon_sym_uint128] = ACTIONS(1441), - [anon_sym_float] = ACTIONS(1441), - [anon_sym_double] = ACTIONS(1441), - [anon_sym_float16] = ACTIONS(1441), - [anon_sym_bfloat16] = ACTIONS(1441), - [anon_sym_float128] = ACTIONS(1441), - [anon_sym_iptr] = ACTIONS(1441), - [anon_sym_uptr] = ACTIONS(1441), - [anon_sym_isz] = ACTIONS(1441), - [anon_sym_usz] = ACTIONS(1441), - [anon_sym_anyfault] = ACTIONS(1441), - [anon_sym_any] = ACTIONS(1441), - [anon_sym_DOLLARtypeof] = ACTIONS(1441), - [anon_sym_DOLLARtypefrom] = ACTIONS(1441), - [anon_sym_DOLLARvatype] = ACTIONS(1441), - [anon_sym_DOLLARevaltype] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1443), + [sym_ct_ident] = ACTIONS(1645), + [sym_at_ident] = ACTIONS(1647), + [sym_hash_ident] = ACTIONS(1647), + [sym_type_ident] = ACTIONS(1647), + [sym_ct_type_ident] = ACTIONS(1647), + [sym_const_ident] = ACTIONS(1645), + [sym_builtin] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_static] = ACTIONS(1645), + [anon_sym_tlocal] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_fn] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_var] = ACTIONS(1645), + [anon_sym_return] = ACTIONS(1645), + [anon_sym_continue] = ACTIONS(1645), + [anon_sym_break] = ACTIONS(1645), + [anon_sym_defer] = ACTIONS(1645), + [anon_sym_assert] = ACTIONS(1645), + [anon_sym_nextcase] = ACTIONS(1645), + [anon_sym_switch] = ACTIONS(1645), + [anon_sym_AMP_AMP] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1645), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_foreach] = ACTIONS(1645), + [anon_sym_foreach_r] = ACTIONS(1645), + [anon_sym_while] = ACTIONS(1645), + [anon_sym_do] = ACTIONS(1645), + [anon_sym_int] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_asm] = ACTIONS(1645), + [anon_sym_DOLLARassert] = ACTIONS(1645), + [anon_sym_DOLLARerror] = ACTIONS(1645), + [anon_sym_DOLLARecho] = ACTIONS(1645), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_DOLLARendif] = ACTIONS(1645), + [anon_sym_DOLLARelse] = ACTIONS(1645), + [anon_sym_DOLLARswitch] = ACTIONS(1645), + [anon_sym_DOLLARfor] = ACTIONS(1645), + [anon_sym_DOLLARforeach] = ACTIONS(1645), + [anon_sym_DOLLARalignof] = ACTIONS(1645), + [anon_sym_DOLLARextnameof] = ACTIONS(1645), + [anon_sym_DOLLARnameof] = ACTIONS(1645), + [anon_sym_DOLLARoffsetof] = ACTIONS(1645), + [anon_sym_DOLLARqnameof] = ACTIONS(1645), + [anon_sym_DOLLARvaconst] = ACTIONS(1645), + [anon_sym_DOLLARvaarg] = ACTIONS(1645), + [anon_sym_DOLLARvaref] = ACTIONS(1645), + [anon_sym_DOLLARvaexpr] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [anon_sym_DOLLARvacount] = ACTIONS(1645), + [anon_sym_DOLLAReval] = ACTIONS(1645), + [anon_sym_DOLLARis_const] = ACTIONS(1645), + [anon_sym_DOLLARsizeof] = ACTIONS(1645), + [anon_sym_DOLLARstringify] = ACTIONS(1645), + [anon_sym_DOLLARappend] = ACTIONS(1645), + [anon_sym_DOLLARconcat] = ACTIONS(1645), + [anon_sym_DOLLARdefined] = ACTIONS(1645), + [anon_sym_DOLLARembed] = ACTIONS(1645), + [anon_sym_DOLLARand] = ACTIONS(1645), + [anon_sym_DOLLARor] = ACTIONS(1645), + [anon_sym_DOLLARfeature] = ACTIONS(1645), + [anon_sym_DOLLARassignable] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1647), + [anon_sym_DASH_DASH] = ACTIONS(1647), + [anon_sym_typeid] = ACTIONS(1645), + [anon_sym_LBRACE_PIPE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_ichar] = ACTIONS(1645), + [anon_sym_short] = ACTIONS(1645), + [anon_sym_ushort] = ACTIONS(1645), + [anon_sym_uint] = ACTIONS(1645), + [anon_sym_long] = ACTIONS(1645), + [anon_sym_ulong] = ACTIONS(1645), + [anon_sym_int128] = ACTIONS(1645), + [anon_sym_uint128] = ACTIONS(1645), + [anon_sym_float] = ACTIONS(1645), + [anon_sym_double] = ACTIONS(1645), + [anon_sym_float16] = ACTIONS(1645), + [anon_sym_bfloat16] = ACTIONS(1645), + [anon_sym_float128] = ACTIONS(1645), + [anon_sym_iptr] = ACTIONS(1645), + [anon_sym_uptr] = ACTIONS(1645), + [anon_sym_isz] = ACTIONS(1645), + [anon_sym_usz] = ACTIONS(1645), + [anon_sym_anyfault] = ACTIONS(1645), + [anon_sym_any] = ACTIONS(1645), + [anon_sym_DOLLARtypeof] = ACTIONS(1645), + [anon_sym_DOLLARtypefrom] = ACTIONS(1645), + [anon_sym_DOLLARevaltype] = ACTIONS(1645), + [anon_sym_DOLLARvatype] = ACTIONS(1645), + [sym_real_literal] = ACTIONS(1647), + }, + [516] = { + [sym_line_comment] = STATE(516), + [sym_doc_comment] = STATE(516), + [sym_block_comment] = STATE(516), + [sym_ident] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), + [anon_sym_BQUOTE] = ACTIONS(1527), + [sym_bytes_literal] = ACTIONS(1527), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1525), + [sym_at_ident] = ACTIONS(1527), + [sym_hash_ident] = ACTIONS(1527), + [sym_type_ident] = ACTIONS(1527), + [sym_ct_type_ident] = ACTIONS(1527), + [sym_const_ident] = ACTIONS(1525), + [sym_builtin] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_tlocal] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_fn] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_var] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_defer] = ACTIONS(1525), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_nextcase] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_foreach] = ACTIONS(1525), + [anon_sym_foreach_r] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_int] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym_DOLLARassert] = ACTIONS(1525), + [anon_sym_DOLLARerror] = ACTIONS(1525), + [anon_sym_DOLLARecho] = ACTIONS(1525), + [anon_sym_DOLLARif] = ACTIONS(1525), + [anon_sym_DOLLARendif] = ACTIONS(1525), + [anon_sym_DOLLARelse] = ACTIONS(1525), + [anon_sym_DOLLARswitch] = ACTIONS(1525), + [anon_sym_DOLLARfor] = ACTIONS(1525), + [anon_sym_DOLLARforeach] = ACTIONS(1525), + [anon_sym_DOLLARalignof] = ACTIONS(1525), + [anon_sym_DOLLARextnameof] = ACTIONS(1525), + [anon_sym_DOLLARnameof] = ACTIONS(1525), + [anon_sym_DOLLARoffsetof] = ACTIONS(1525), + [anon_sym_DOLLARqnameof] = ACTIONS(1525), + [anon_sym_DOLLARvaconst] = ACTIONS(1525), + [anon_sym_DOLLARvaarg] = ACTIONS(1525), + [anon_sym_DOLLARvaref] = ACTIONS(1525), + [anon_sym_DOLLARvaexpr] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_DOLLARvacount] = ACTIONS(1525), + [anon_sym_DOLLAReval] = ACTIONS(1525), + [anon_sym_DOLLARis_const] = ACTIONS(1525), + [anon_sym_DOLLARsizeof] = ACTIONS(1525), + [anon_sym_DOLLARstringify] = ACTIONS(1525), + [anon_sym_DOLLARappend] = ACTIONS(1525), + [anon_sym_DOLLARconcat] = ACTIONS(1525), + [anon_sym_DOLLARdefined] = ACTIONS(1525), + [anon_sym_DOLLARembed] = ACTIONS(1525), + [anon_sym_DOLLARand] = ACTIONS(1525), + [anon_sym_DOLLARor] = ACTIONS(1525), + [anon_sym_DOLLARfeature] = ACTIONS(1525), + [anon_sym_DOLLARassignable] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_typeid] = ACTIONS(1525), + [anon_sym_LBRACE_PIPE] = ACTIONS(1527), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_bool] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_ichar] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [anon_sym_ushort] = ACTIONS(1525), + [anon_sym_uint] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_ulong] = ACTIONS(1525), + [anon_sym_int128] = ACTIONS(1525), + [anon_sym_uint128] = ACTIONS(1525), + [anon_sym_float] = ACTIONS(1525), + [anon_sym_double] = ACTIONS(1525), + [anon_sym_float16] = ACTIONS(1525), + [anon_sym_bfloat16] = ACTIONS(1525), + [anon_sym_float128] = ACTIONS(1525), + [anon_sym_iptr] = ACTIONS(1525), + [anon_sym_uptr] = ACTIONS(1525), + [anon_sym_isz] = ACTIONS(1525), + [anon_sym_usz] = ACTIONS(1525), + [anon_sym_anyfault] = ACTIONS(1525), + [anon_sym_any] = ACTIONS(1525), + [anon_sym_DOLLARtypeof] = ACTIONS(1525), + [anon_sym_DOLLARtypefrom] = ACTIONS(1525), + [anon_sym_DOLLARevaltype] = ACTIONS(1525), + [anon_sym_DOLLARvatype] = ACTIONS(1525), + [sym_real_literal] = ACTIONS(1527), }, - [551] = { - [sym_line_comment] = STATE(551), - [sym_doc_comment] = STATE(551), - [sym_block_comment] = STATE(551), + [517] = { + [sym_line_comment] = STATE(517), + [sym_doc_comment] = STATE(517), + [sym_block_comment] = STATE(517), [sym_ident] = ACTIONS(1437), [sym_integer_literal] = ACTIONS(1439), [anon_sym_SQUOTE] = ACTIONS(1439), @@ -88912,7 +84971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1439), [sym_bytes_literal] = ACTIONS(1439), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1437), [sym_at_ident] = ACTIONS(1439), @@ -88963,11 +85022,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1437), [anon_sym_DOLLARoffsetof] = ACTIONS(1437), [anon_sym_DOLLARqnameof] = ACTIONS(1437), - [anon_sym_DOLLAReval] = ACTIONS(1437), - [anon_sym_DOLLARdefined] = ACTIONS(1437), - [anon_sym_DOLLARsizeof] = ACTIONS(1437), - [anon_sym_DOLLARstringify] = ACTIONS(1437), - [anon_sym_DOLLARis_const] = ACTIONS(1437), [anon_sym_DOLLARvaconst] = ACTIONS(1437), [anon_sym_DOLLARvaarg] = ACTIONS(1437), [anon_sym_DOLLARvaref] = ACTIONS(1437), @@ -88976,11 +85030,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1437), [anon_sym_null] = ACTIONS(1437), [anon_sym_DOLLARvacount] = ACTIONS(1437), - [anon_sym_DOLLARfeature] = ACTIONS(1437), + [anon_sym_DOLLAReval] = ACTIONS(1437), + [anon_sym_DOLLARis_const] = ACTIONS(1437), + [anon_sym_DOLLARsizeof] = ACTIONS(1437), + [anon_sym_DOLLARstringify] = ACTIONS(1437), + [anon_sym_DOLLARappend] = ACTIONS(1437), + [anon_sym_DOLLARconcat] = ACTIONS(1437), + [anon_sym_DOLLARdefined] = ACTIONS(1437), + [anon_sym_DOLLARembed] = ACTIONS(1437), [anon_sym_DOLLARand] = ACTIONS(1437), [anon_sym_DOLLARor] = ACTIONS(1437), + [anon_sym_DOLLARfeature] = ACTIONS(1437), [anon_sym_DOLLARassignable] = ACTIONS(1437), - [anon_sym_DOLLARembed] = ACTIONS(1437), [anon_sym_BANG] = ACTIONS(1439), [anon_sym_TILDE] = ACTIONS(1439), [anon_sym_PLUS_PLUS] = ACTIONS(1439), @@ -89011,698 +85072,3958 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1437), [anon_sym_DOLLARtypeof] = ACTIONS(1437), [anon_sym_DOLLARtypefrom] = ACTIONS(1437), - [anon_sym_DOLLARvatype] = ACTIONS(1437), [anon_sym_DOLLARevaltype] = ACTIONS(1437), + [anon_sym_DOLLARvatype] = ACTIONS(1437), [sym_real_literal] = ACTIONS(1439), }, - [552] = { - [sym_line_comment] = STATE(552), - [sym_doc_comment] = STATE(552), - [sym_block_comment] = STATE(552), - [sym_ident] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1435), - [anon_sym_DQUOTE] = ACTIONS(1435), - [anon_sym_BQUOTE] = ACTIONS(1435), - [sym_bytes_literal] = ACTIONS(1435), + [518] = { + [sym_line_comment] = STATE(518), + [sym_doc_comment] = STATE(518), + [sym_block_comment] = STATE(518), + [sym_ident] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_BQUOTE] = ACTIONS(1455), + [sym_bytes_literal] = ACTIONS(1455), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1433), - [sym_at_ident] = ACTIONS(1435), - [sym_hash_ident] = ACTIONS(1435), - [sym_type_ident] = ACTIONS(1435), - [sym_ct_type_ident] = ACTIONS(1435), - [sym_const_ident] = ACTIONS(1433), - [sym_builtin] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_tlocal] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_var] = ACTIONS(1433), - [anon_sym_return] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_defer] = ACTIONS(1433), - [anon_sym_assert] = ACTIONS(1433), - [anon_sym_nextcase] = ACTIONS(1433), - [anon_sym_switch] = ACTIONS(1433), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_foreach] = ACTIONS(1433), - [anon_sym_foreach_r] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_do] = ACTIONS(1433), - [anon_sym_int] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_asm] = ACTIONS(1433), - [anon_sym_DOLLARassert] = ACTIONS(1433), - [anon_sym_DOLLARerror] = ACTIONS(1433), - [anon_sym_DOLLARecho] = ACTIONS(1433), - [anon_sym_DOLLARif] = ACTIONS(1433), - [anon_sym_DOLLARendif] = ACTIONS(1433), - [anon_sym_DOLLARelse] = ACTIONS(1433), - [anon_sym_DOLLARswitch] = ACTIONS(1433), - [anon_sym_DOLLARfor] = ACTIONS(1433), - [anon_sym_DOLLARforeach] = ACTIONS(1433), - [anon_sym_DOLLARalignof] = ACTIONS(1433), - [anon_sym_DOLLARextnameof] = ACTIONS(1433), - [anon_sym_DOLLARnameof] = ACTIONS(1433), - [anon_sym_DOLLARoffsetof] = ACTIONS(1433), - [anon_sym_DOLLARqnameof] = ACTIONS(1433), - [anon_sym_DOLLAReval] = ACTIONS(1433), - [anon_sym_DOLLARdefined] = ACTIONS(1433), - [anon_sym_DOLLARsizeof] = ACTIONS(1433), - [anon_sym_DOLLARstringify] = ACTIONS(1433), - [anon_sym_DOLLARis_const] = ACTIONS(1433), - [anon_sym_DOLLARvaconst] = ACTIONS(1433), - [anon_sym_DOLLARvaarg] = ACTIONS(1433), - [anon_sym_DOLLARvaref] = ACTIONS(1433), - [anon_sym_DOLLARvaexpr] = ACTIONS(1433), - [anon_sym_true] = ACTIONS(1433), - [anon_sym_false] = ACTIONS(1433), - [anon_sym_null] = ACTIONS(1433), - [anon_sym_DOLLARvacount] = ACTIONS(1433), - [anon_sym_DOLLARfeature] = ACTIONS(1433), - [anon_sym_DOLLARand] = ACTIONS(1433), - [anon_sym_DOLLARor] = ACTIONS(1433), - [anon_sym_DOLLARassignable] = ACTIONS(1433), - [anon_sym_DOLLARembed] = ACTIONS(1433), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_typeid] = ACTIONS(1433), - [anon_sym_LBRACE_PIPE] = ACTIONS(1435), - [anon_sym_void] = ACTIONS(1433), - [anon_sym_bool] = ACTIONS(1433), - [anon_sym_char] = ACTIONS(1433), - [anon_sym_ichar] = ACTIONS(1433), - [anon_sym_short] = ACTIONS(1433), - [anon_sym_ushort] = ACTIONS(1433), - [anon_sym_uint] = ACTIONS(1433), - [anon_sym_long] = ACTIONS(1433), - [anon_sym_ulong] = ACTIONS(1433), - [anon_sym_int128] = ACTIONS(1433), - [anon_sym_uint128] = ACTIONS(1433), - [anon_sym_float] = ACTIONS(1433), - [anon_sym_double] = ACTIONS(1433), - [anon_sym_float16] = ACTIONS(1433), - [anon_sym_bfloat16] = ACTIONS(1433), - [anon_sym_float128] = ACTIONS(1433), - [anon_sym_iptr] = ACTIONS(1433), - [anon_sym_uptr] = ACTIONS(1433), - [anon_sym_isz] = ACTIONS(1433), - [anon_sym_usz] = ACTIONS(1433), - [anon_sym_anyfault] = ACTIONS(1433), - [anon_sym_any] = ACTIONS(1433), - [anon_sym_DOLLARtypeof] = ACTIONS(1433), - [anon_sym_DOLLARtypefrom] = ACTIONS(1433), - [anon_sym_DOLLARvatype] = ACTIONS(1433), - [anon_sym_DOLLARevaltype] = ACTIONS(1433), - [sym_real_literal] = ACTIONS(1435), + [sym_ct_ident] = ACTIONS(1453), + [sym_at_ident] = ACTIONS(1455), + [sym_hash_ident] = ACTIONS(1455), + [sym_type_ident] = ACTIONS(1455), + [sym_ct_type_ident] = ACTIONS(1455), + [sym_const_ident] = ACTIONS(1453), + [sym_builtin] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_tlocal] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_defer] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_nextcase] = ACTIONS(1453), + [anon_sym_switch] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_foreach] = ACTIONS(1453), + [anon_sym_foreach_r] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_asm] = ACTIONS(1453), + [anon_sym_DOLLARassert] = ACTIONS(1453), + [anon_sym_DOLLARerror] = ACTIONS(1453), + [anon_sym_DOLLARecho] = ACTIONS(1453), + [anon_sym_DOLLARif] = ACTIONS(1453), + [anon_sym_DOLLARendif] = ACTIONS(1453), + [anon_sym_DOLLARelse] = ACTIONS(1453), + [anon_sym_DOLLARswitch] = ACTIONS(1453), + [anon_sym_DOLLARfor] = ACTIONS(1453), + [anon_sym_DOLLARforeach] = ACTIONS(1453), + [anon_sym_DOLLARalignof] = ACTIONS(1453), + [anon_sym_DOLLARextnameof] = ACTIONS(1453), + [anon_sym_DOLLARnameof] = ACTIONS(1453), + [anon_sym_DOLLARoffsetof] = ACTIONS(1453), + [anon_sym_DOLLARqnameof] = ACTIONS(1453), + [anon_sym_DOLLARvaconst] = ACTIONS(1453), + [anon_sym_DOLLARvaarg] = ACTIONS(1453), + [anon_sym_DOLLARvaref] = ACTIONS(1453), + [anon_sym_DOLLARvaexpr] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_DOLLARvacount] = ACTIONS(1453), + [anon_sym_DOLLAReval] = ACTIONS(1453), + [anon_sym_DOLLARis_const] = ACTIONS(1453), + [anon_sym_DOLLARsizeof] = ACTIONS(1453), + [anon_sym_DOLLARstringify] = ACTIONS(1453), + [anon_sym_DOLLARappend] = ACTIONS(1453), + [anon_sym_DOLLARconcat] = ACTIONS(1453), + [anon_sym_DOLLARdefined] = ACTIONS(1453), + [anon_sym_DOLLARembed] = ACTIONS(1453), + [anon_sym_DOLLARand] = ACTIONS(1453), + [anon_sym_DOLLARor] = ACTIONS(1453), + [anon_sym_DOLLARfeature] = ACTIONS(1453), + [anon_sym_DOLLARassignable] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_typeid] = ACTIONS(1453), + [anon_sym_LBRACE_PIPE] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1453), + [anon_sym_bool] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_ichar] = ACTIONS(1453), + [anon_sym_short] = ACTIONS(1453), + [anon_sym_ushort] = ACTIONS(1453), + [anon_sym_uint] = ACTIONS(1453), + [anon_sym_long] = ACTIONS(1453), + [anon_sym_ulong] = ACTIONS(1453), + [anon_sym_int128] = ACTIONS(1453), + [anon_sym_uint128] = ACTIONS(1453), + [anon_sym_float] = ACTIONS(1453), + [anon_sym_double] = ACTIONS(1453), + [anon_sym_float16] = ACTIONS(1453), + [anon_sym_bfloat16] = ACTIONS(1453), + [anon_sym_float128] = ACTIONS(1453), + [anon_sym_iptr] = ACTIONS(1453), + [anon_sym_uptr] = ACTIONS(1453), + [anon_sym_isz] = ACTIONS(1453), + [anon_sym_usz] = ACTIONS(1453), + [anon_sym_anyfault] = ACTIONS(1453), + [anon_sym_any] = ACTIONS(1453), + [anon_sym_DOLLARtypeof] = ACTIONS(1453), + [anon_sym_DOLLARtypefrom] = ACTIONS(1453), + [anon_sym_DOLLARevaltype] = ACTIONS(1453), + [anon_sym_DOLLARvatype] = ACTIONS(1453), + [sym_real_literal] = ACTIONS(1455), + }, + [519] = { + [sym_line_comment] = STATE(519), + [sym_doc_comment] = STATE(519), + [sym_block_comment] = STATE(519), + [sym_ident] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_BQUOTE] = ACTIONS(1467), + [sym_bytes_literal] = ACTIONS(1467), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1465), + [sym_at_ident] = ACTIONS(1467), + [sym_hash_ident] = ACTIONS(1467), + [sym_type_ident] = ACTIONS(1467), + [sym_ct_type_ident] = ACTIONS(1467), + [sym_const_ident] = ACTIONS(1465), + [sym_builtin] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_tlocal] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_defer] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1465), + [anon_sym_nextcase] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_foreach] = ACTIONS(1465), + [anon_sym_foreach_r] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_int] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_asm] = ACTIONS(1465), + [anon_sym_DOLLARassert] = ACTIONS(1465), + [anon_sym_DOLLARerror] = ACTIONS(1465), + [anon_sym_DOLLARecho] = ACTIONS(1465), + [anon_sym_DOLLARif] = ACTIONS(1465), + [anon_sym_DOLLARendif] = ACTIONS(1465), + [anon_sym_DOLLARelse] = ACTIONS(1465), + [anon_sym_DOLLARswitch] = ACTIONS(1465), + [anon_sym_DOLLARfor] = ACTIONS(1465), + [anon_sym_DOLLARforeach] = ACTIONS(1465), + [anon_sym_DOLLARalignof] = ACTIONS(1465), + [anon_sym_DOLLARextnameof] = ACTIONS(1465), + [anon_sym_DOLLARnameof] = ACTIONS(1465), + [anon_sym_DOLLARoffsetof] = ACTIONS(1465), + [anon_sym_DOLLARqnameof] = ACTIONS(1465), + [anon_sym_DOLLARvaconst] = ACTIONS(1465), + [anon_sym_DOLLARvaarg] = ACTIONS(1465), + [anon_sym_DOLLARvaref] = ACTIONS(1465), + [anon_sym_DOLLARvaexpr] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1465), + [anon_sym_DOLLARvacount] = ACTIONS(1465), + [anon_sym_DOLLAReval] = ACTIONS(1465), + [anon_sym_DOLLARis_const] = ACTIONS(1465), + [anon_sym_DOLLARsizeof] = ACTIONS(1465), + [anon_sym_DOLLARstringify] = ACTIONS(1465), + [anon_sym_DOLLARappend] = ACTIONS(1465), + [anon_sym_DOLLARconcat] = ACTIONS(1465), + [anon_sym_DOLLARdefined] = ACTIONS(1465), + [anon_sym_DOLLARembed] = ACTIONS(1465), + [anon_sym_DOLLARand] = ACTIONS(1465), + [anon_sym_DOLLARor] = ACTIONS(1465), + [anon_sym_DOLLARfeature] = ACTIONS(1465), + [anon_sym_DOLLARassignable] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_typeid] = ACTIONS(1465), + [anon_sym_LBRACE_PIPE] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_ichar] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [anon_sym_ushort] = ACTIONS(1465), + [anon_sym_uint] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_ulong] = ACTIONS(1465), + [anon_sym_int128] = ACTIONS(1465), + [anon_sym_uint128] = ACTIONS(1465), + [anon_sym_float] = ACTIONS(1465), + [anon_sym_double] = ACTIONS(1465), + [anon_sym_float16] = ACTIONS(1465), + [anon_sym_bfloat16] = ACTIONS(1465), + [anon_sym_float128] = ACTIONS(1465), + [anon_sym_iptr] = ACTIONS(1465), + [anon_sym_uptr] = ACTIONS(1465), + [anon_sym_isz] = ACTIONS(1465), + [anon_sym_usz] = ACTIONS(1465), + [anon_sym_anyfault] = ACTIONS(1465), + [anon_sym_any] = ACTIONS(1465), + [anon_sym_DOLLARtypeof] = ACTIONS(1465), + [anon_sym_DOLLARtypefrom] = ACTIONS(1465), + [anon_sym_DOLLARevaltype] = ACTIONS(1465), + [anon_sym_DOLLARvatype] = ACTIONS(1465), + [sym_real_literal] = ACTIONS(1467), + }, + [520] = { + [sym_line_comment] = STATE(520), + [sym_doc_comment] = STATE(520), + [sym_block_comment] = STATE(520), + [sym_ident] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1471), + [sym_bytes_literal] = ACTIONS(1471), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1469), + [sym_at_ident] = ACTIONS(1471), + [sym_hash_ident] = ACTIONS(1471), + [sym_type_ident] = ACTIONS(1471), + [sym_ct_type_ident] = ACTIONS(1471), + [sym_const_ident] = ACTIONS(1469), + [sym_builtin] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_tlocal] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_defer] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1469), + [anon_sym_nextcase] = ACTIONS(1469), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_foreach] = ACTIONS(1469), + [anon_sym_foreach_r] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_int] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1469), + [anon_sym_DOLLARassert] = ACTIONS(1469), + [anon_sym_DOLLARerror] = ACTIONS(1469), + [anon_sym_DOLLARecho] = ACTIONS(1469), + [anon_sym_DOLLARif] = ACTIONS(1469), + [anon_sym_DOLLARendif] = ACTIONS(1469), + [anon_sym_DOLLARelse] = ACTIONS(1469), + [anon_sym_DOLLARswitch] = ACTIONS(1469), + [anon_sym_DOLLARfor] = ACTIONS(1469), + [anon_sym_DOLLARforeach] = ACTIONS(1469), + [anon_sym_DOLLARalignof] = ACTIONS(1469), + [anon_sym_DOLLARextnameof] = ACTIONS(1469), + [anon_sym_DOLLARnameof] = ACTIONS(1469), + [anon_sym_DOLLARoffsetof] = ACTIONS(1469), + [anon_sym_DOLLARqnameof] = ACTIONS(1469), + [anon_sym_DOLLARvaconst] = ACTIONS(1469), + [anon_sym_DOLLARvaarg] = ACTIONS(1469), + [anon_sym_DOLLARvaref] = ACTIONS(1469), + [anon_sym_DOLLARvaexpr] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_DOLLARvacount] = ACTIONS(1469), + [anon_sym_DOLLAReval] = ACTIONS(1469), + [anon_sym_DOLLARis_const] = ACTIONS(1469), + [anon_sym_DOLLARsizeof] = ACTIONS(1469), + [anon_sym_DOLLARstringify] = ACTIONS(1469), + [anon_sym_DOLLARappend] = ACTIONS(1469), + [anon_sym_DOLLARconcat] = ACTIONS(1469), + [anon_sym_DOLLARdefined] = ACTIONS(1469), + [anon_sym_DOLLARembed] = ACTIONS(1469), + [anon_sym_DOLLARand] = ACTIONS(1469), + [anon_sym_DOLLARor] = ACTIONS(1469), + [anon_sym_DOLLARfeature] = ACTIONS(1469), + [anon_sym_DOLLARassignable] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_typeid] = ACTIONS(1469), + [anon_sym_LBRACE_PIPE] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_ichar] = ACTIONS(1469), + [anon_sym_short] = ACTIONS(1469), + [anon_sym_ushort] = ACTIONS(1469), + [anon_sym_uint] = ACTIONS(1469), + [anon_sym_long] = ACTIONS(1469), + [anon_sym_ulong] = ACTIONS(1469), + [anon_sym_int128] = ACTIONS(1469), + [anon_sym_uint128] = ACTIONS(1469), + [anon_sym_float] = ACTIONS(1469), + [anon_sym_double] = ACTIONS(1469), + [anon_sym_float16] = ACTIONS(1469), + [anon_sym_bfloat16] = ACTIONS(1469), + [anon_sym_float128] = ACTIONS(1469), + [anon_sym_iptr] = ACTIONS(1469), + [anon_sym_uptr] = ACTIONS(1469), + [anon_sym_isz] = ACTIONS(1469), + [anon_sym_usz] = ACTIONS(1469), + [anon_sym_anyfault] = ACTIONS(1469), + [anon_sym_any] = ACTIONS(1469), + [anon_sym_DOLLARtypeof] = ACTIONS(1469), + [anon_sym_DOLLARtypefrom] = ACTIONS(1469), + [anon_sym_DOLLARevaltype] = ACTIONS(1469), + [anon_sym_DOLLARvatype] = ACTIONS(1469), + [sym_real_literal] = ACTIONS(1471), + }, + [521] = { + [sym_line_comment] = STATE(521), + [sym_doc_comment] = STATE(521), + [sym_block_comment] = STATE(521), + [sym_ident] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1511), + [anon_sym_BQUOTE] = ACTIONS(1511), + [sym_bytes_literal] = ACTIONS(1511), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1509), + [sym_at_ident] = ACTIONS(1511), + [sym_hash_ident] = ACTIONS(1511), + [sym_type_ident] = ACTIONS(1511), + [sym_ct_type_ident] = ACTIONS(1511), + [sym_const_ident] = ACTIONS(1509), + [sym_builtin] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_tlocal] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_fn] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_defer] = ACTIONS(1509), + [anon_sym_assert] = ACTIONS(1509), + [anon_sym_nextcase] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_foreach] = ACTIONS(1509), + [anon_sym_foreach_r] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_int] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_asm] = ACTIONS(1509), + [anon_sym_DOLLARassert] = ACTIONS(1509), + [anon_sym_DOLLARerror] = ACTIONS(1509), + [anon_sym_DOLLARecho] = ACTIONS(1509), + [anon_sym_DOLLARif] = ACTIONS(1509), + [anon_sym_DOLLARendif] = ACTIONS(1509), + [anon_sym_DOLLARelse] = ACTIONS(1509), + [anon_sym_DOLLARswitch] = ACTIONS(1509), + [anon_sym_DOLLARfor] = ACTIONS(1509), + [anon_sym_DOLLARforeach] = ACTIONS(1509), + [anon_sym_DOLLARalignof] = ACTIONS(1509), + [anon_sym_DOLLARextnameof] = ACTIONS(1509), + [anon_sym_DOLLARnameof] = ACTIONS(1509), + [anon_sym_DOLLARoffsetof] = ACTIONS(1509), + [anon_sym_DOLLARqnameof] = ACTIONS(1509), + [anon_sym_DOLLARvaconst] = ACTIONS(1509), + [anon_sym_DOLLARvaarg] = ACTIONS(1509), + [anon_sym_DOLLARvaref] = ACTIONS(1509), + [anon_sym_DOLLARvaexpr] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_DOLLARvacount] = ACTIONS(1509), + [anon_sym_DOLLAReval] = ACTIONS(1509), + [anon_sym_DOLLARis_const] = ACTIONS(1509), + [anon_sym_DOLLARsizeof] = ACTIONS(1509), + [anon_sym_DOLLARstringify] = ACTIONS(1509), + [anon_sym_DOLLARappend] = ACTIONS(1509), + [anon_sym_DOLLARconcat] = ACTIONS(1509), + [anon_sym_DOLLARdefined] = ACTIONS(1509), + [anon_sym_DOLLARembed] = ACTIONS(1509), + [anon_sym_DOLLARand] = ACTIONS(1509), + [anon_sym_DOLLARor] = ACTIONS(1509), + [anon_sym_DOLLARfeature] = ACTIONS(1509), + [anon_sym_DOLLARassignable] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_typeid] = ACTIONS(1509), + [anon_sym_LBRACE_PIPE] = ACTIONS(1511), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_ichar] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [anon_sym_ushort] = ACTIONS(1509), + [anon_sym_uint] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_ulong] = ACTIONS(1509), + [anon_sym_int128] = ACTIONS(1509), + [anon_sym_uint128] = ACTIONS(1509), + [anon_sym_float] = ACTIONS(1509), + [anon_sym_double] = ACTIONS(1509), + [anon_sym_float16] = ACTIONS(1509), + [anon_sym_bfloat16] = ACTIONS(1509), + [anon_sym_float128] = ACTIONS(1509), + [anon_sym_iptr] = ACTIONS(1509), + [anon_sym_uptr] = ACTIONS(1509), + [anon_sym_isz] = ACTIONS(1509), + [anon_sym_usz] = ACTIONS(1509), + [anon_sym_anyfault] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_DOLLARtypeof] = ACTIONS(1509), + [anon_sym_DOLLARtypefrom] = ACTIONS(1509), + [anon_sym_DOLLARevaltype] = ACTIONS(1509), + [anon_sym_DOLLARvatype] = ACTIONS(1509), + [sym_real_literal] = ACTIONS(1511), + }, + [522] = { + [sym_line_comment] = STATE(522), + [sym_doc_comment] = STATE(522), + [sym_block_comment] = STATE(522), + [sym_ident] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_bytes_literal] = ACTIONS(1515), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1513), + [sym_at_ident] = ACTIONS(1515), + [sym_hash_ident] = ACTIONS(1515), + [sym_type_ident] = ACTIONS(1515), + [sym_ct_type_ident] = ACTIONS(1515), + [sym_const_ident] = ACTIONS(1513), + [sym_builtin] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_tlocal] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_var] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_defer] = ACTIONS(1513), + [anon_sym_assert] = ACTIONS(1513), + [anon_sym_nextcase] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_foreach] = ACTIONS(1513), + [anon_sym_foreach_r] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_int] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_asm] = ACTIONS(1513), + [anon_sym_DOLLARassert] = ACTIONS(1513), + [anon_sym_DOLLARerror] = ACTIONS(1513), + [anon_sym_DOLLARecho] = ACTIONS(1513), + [anon_sym_DOLLARif] = ACTIONS(1513), + [anon_sym_DOLLARendif] = ACTIONS(1513), + [anon_sym_DOLLARelse] = ACTIONS(1513), + [anon_sym_DOLLARswitch] = ACTIONS(1513), + [anon_sym_DOLLARfor] = ACTIONS(1513), + [anon_sym_DOLLARforeach] = ACTIONS(1513), + [anon_sym_DOLLARalignof] = ACTIONS(1513), + [anon_sym_DOLLARextnameof] = ACTIONS(1513), + [anon_sym_DOLLARnameof] = ACTIONS(1513), + [anon_sym_DOLLARoffsetof] = ACTIONS(1513), + [anon_sym_DOLLARqnameof] = ACTIONS(1513), + [anon_sym_DOLLARvaconst] = ACTIONS(1513), + [anon_sym_DOLLARvaarg] = ACTIONS(1513), + [anon_sym_DOLLARvaref] = ACTIONS(1513), + [anon_sym_DOLLARvaexpr] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_DOLLARvacount] = ACTIONS(1513), + [anon_sym_DOLLAReval] = ACTIONS(1513), + [anon_sym_DOLLARis_const] = ACTIONS(1513), + [anon_sym_DOLLARsizeof] = ACTIONS(1513), + [anon_sym_DOLLARstringify] = ACTIONS(1513), + [anon_sym_DOLLARappend] = ACTIONS(1513), + [anon_sym_DOLLARconcat] = ACTIONS(1513), + [anon_sym_DOLLARdefined] = ACTIONS(1513), + [anon_sym_DOLLARembed] = ACTIONS(1513), + [anon_sym_DOLLARand] = ACTIONS(1513), + [anon_sym_DOLLARor] = ACTIONS(1513), + [anon_sym_DOLLARfeature] = ACTIONS(1513), + [anon_sym_DOLLARassignable] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_typeid] = ACTIONS(1513), + [anon_sym_LBRACE_PIPE] = ACTIONS(1515), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_ichar] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_ushort] = ACTIONS(1513), + [anon_sym_uint] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_ulong] = ACTIONS(1513), + [anon_sym_int128] = ACTIONS(1513), + [anon_sym_uint128] = ACTIONS(1513), + [anon_sym_float] = ACTIONS(1513), + [anon_sym_double] = ACTIONS(1513), + [anon_sym_float16] = ACTIONS(1513), + [anon_sym_bfloat16] = ACTIONS(1513), + [anon_sym_float128] = ACTIONS(1513), + [anon_sym_iptr] = ACTIONS(1513), + [anon_sym_uptr] = ACTIONS(1513), + [anon_sym_isz] = ACTIONS(1513), + [anon_sym_usz] = ACTIONS(1513), + [anon_sym_anyfault] = ACTIONS(1513), + [anon_sym_any] = ACTIONS(1513), + [anon_sym_DOLLARtypeof] = ACTIONS(1513), + [anon_sym_DOLLARtypefrom] = ACTIONS(1513), + [anon_sym_DOLLARevaltype] = ACTIONS(1513), + [anon_sym_DOLLARvatype] = ACTIONS(1513), + [sym_real_literal] = ACTIONS(1515), + }, + [523] = { + [sym_line_comment] = STATE(523), + [sym_doc_comment] = STATE(523), + [sym_block_comment] = STATE(523), + [sym_ident] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [anon_sym_BQUOTE] = ACTIONS(1587), + [sym_bytes_literal] = ACTIONS(1587), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1585), + [sym_at_ident] = ACTIONS(1587), + [sym_hash_ident] = ACTIONS(1587), + [sym_type_ident] = ACTIONS(1587), + [sym_ct_type_ident] = ACTIONS(1587), + [sym_const_ident] = ACTIONS(1585), + [sym_builtin] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_tlocal] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_fn] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_var] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_defer] = ACTIONS(1585), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_nextcase] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_foreach] = ACTIONS(1585), + [anon_sym_foreach_r] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_int] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_asm] = ACTIONS(1585), + [anon_sym_DOLLARassert] = ACTIONS(1585), + [anon_sym_DOLLARerror] = ACTIONS(1585), + [anon_sym_DOLLARecho] = ACTIONS(1585), + [anon_sym_DOLLARif] = ACTIONS(1585), + [anon_sym_DOLLARendif] = ACTIONS(1585), + [anon_sym_DOLLARelse] = ACTIONS(1585), + [anon_sym_DOLLARswitch] = ACTIONS(1585), + [anon_sym_DOLLARfor] = ACTIONS(1585), + [anon_sym_DOLLARforeach] = ACTIONS(1585), + [anon_sym_DOLLARalignof] = ACTIONS(1585), + [anon_sym_DOLLARextnameof] = ACTIONS(1585), + [anon_sym_DOLLARnameof] = ACTIONS(1585), + [anon_sym_DOLLARoffsetof] = ACTIONS(1585), + [anon_sym_DOLLARqnameof] = ACTIONS(1585), + [anon_sym_DOLLARvaconst] = ACTIONS(1585), + [anon_sym_DOLLARvaarg] = ACTIONS(1585), + [anon_sym_DOLLARvaref] = ACTIONS(1585), + [anon_sym_DOLLARvaexpr] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_DOLLARvacount] = ACTIONS(1585), + [anon_sym_DOLLAReval] = ACTIONS(1585), + [anon_sym_DOLLARis_const] = ACTIONS(1585), + [anon_sym_DOLLARsizeof] = ACTIONS(1585), + [anon_sym_DOLLARstringify] = ACTIONS(1585), + [anon_sym_DOLLARappend] = ACTIONS(1585), + [anon_sym_DOLLARconcat] = ACTIONS(1585), + [anon_sym_DOLLARdefined] = ACTIONS(1585), + [anon_sym_DOLLARembed] = ACTIONS(1585), + [anon_sym_DOLLARand] = ACTIONS(1585), + [anon_sym_DOLLARor] = ACTIONS(1585), + [anon_sym_DOLLARfeature] = ACTIONS(1585), + [anon_sym_DOLLARassignable] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_typeid] = ACTIONS(1585), + [anon_sym_LBRACE_PIPE] = ACTIONS(1587), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_ichar] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [anon_sym_ushort] = ACTIONS(1585), + [anon_sym_uint] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_ulong] = ACTIONS(1585), + [anon_sym_int128] = ACTIONS(1585), + [anon_sym_uint128] = ACTIONS(1585), + [anon_sym_float] = ACTIONS(1585), + [anon_sym_double] = ACTIONS(1585), + [anon_sym_float16] = ACTIONS(1585), + [anon_sym_bfloat16] = ACTIONS(1585), + [anon_sym_float128] = ACTIONS(1585), + [anon_sym_iptr] = ACTIONS(1585), + [anon_sym_uptr] = ACTIONS(1585), + [anon_sym_isz] = ACTIONS(1585), + [anon_sym_usz] = ACTIONS(1585), + [anon_sym_anyfault] = ACTIONS(1585), + [anon_sym_any] = ACTIONS(1585), + [anon_sym_DOLLARtypeof] = ACTIONS(1585), + [anon_sym_DOLLARtypefrom] = ACTIONS(1585), + [anon_sym_DOLLARevaltype] = ACTIONS(1585), + [anon_sym_DOLLARvatype] = ACTIONS(1585), + [sym_real_literal] = ACTIONS(1587), + }, + [524] = { + [sym_line_comment] = STATE(524), + [sym_doc_comment] = STATE(524), + [sym_block_comment] = STATE(524), + [sym_ident] = ACTIONS(1601), + [sym_integer_literal] = ACTIONS(1603), + [anon_sym_SQUOTE] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [anon_sym_BQUOTE] = ACTIONS(1603), + [sym_bytes_literal] = ACTIONS(1603), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1601), + [sym_at_ident] = ACTIONS(1603), + [sym_hash_ident] = ACTIONS(1603), + [sym_type_ident] = ACTIONS(1603), + [sym_ct_type_ident] = ACTIONS(1603), + [sym_const_ident] = ACTIONS(1601), + [sym_builtin] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_static] = ACTIONS(1601), + [anon_sym_tlocal] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_fn] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1601), + [anon_sym_var] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_continue] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1601), + [anon_sym_defer] = ACTIONS(1601), + [anon_sym_assert] = ACTIONS(1601), + [anon_sym_nextcase] = ACTIONS(1601), + [anon_sym_switch] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_for] = ACTIONS(1601), + [anon_sym_foreach] = ACTIONS(1601), + [anon_sym_foreach_r] = ACTIONS(1601), + [anon_sym_while] = ACTIONS(1601), + [anon_sym_do] = ACTIONS(1601), + [anon_sym_int] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_asm] = ACTIONS(1601), + [anon_sym_DOLLARassert] = ACTIONS(1601), + [anon_sym_DOLLARerror] = ACTIONS(1601), + [anon_sym_DOLLARecho] = ACTIONS(1601), + [anon_sym_DOLLARif] = ACTIONS(1601), + [anon_sym_DOLLARendif] = ACTIONS(1601), + [anon_sym_DOLLARelse] = ACTIONS(1601), + [anon_sym_DOLLARswitch] = ACTIONS(1601), + [anon_sym_DOLLARfor] = ACTIONS(1601), + [anon_sym_DOLLARforeach] = ACTIONS(1601), + [anon_sym_DOLLARalignof] = ACTIONS(1601), + [anon_sym_DOLLARextnameof] = ACTIONS(1601), + [anon_sym_DOLLARnameof] = ACTIONS(1601), + [anon_sym_DOLLARoffsetof] = ACTIONS(1601), + [anon_sym_DOLLARqnameof] = ACTIONS(1601), + [anon_sym_DOLLARvaconst] = ACTIONS(1601), + [anon_sym_DOLLARvaarg] = ACTIONS(1601), + [anon_sym_DOLLARvaref] = ACTIONS(1601), + [anon_sym_DOLLARvaexpr] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_DOLLARvacount] = ACTIONS(1601), + [anon_sym_DOLLAReval] = ACTIONS(1601), + [anon_sym_DOLLARis_const] = ACTIONS(1601), + [anon_sym_DOLLARsizeof] = ACTIONS(1601), + [anon_sym_DOLLARstringify] = ACTIONS(1601), + [anon_sym_DOLLARappend] = ACTIONS(1601), + [anon_sym_DOLLARconcat] = ACTIONS(1601), + [anon_sym_DOLLARdefined] = ACTIONS(1601), + [anon_sym_DOLLARembed] = ACTIONS(1601), + [anon_sym_DOLLARand] = ACTIONS(1601), + [anon_sym_DOLLARor] = ACTIONS(1601), + [anon_sym_DOLLARfeature] = ACTIONS(1601), + [anon_sym_DOLLARassignable] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_typeid] = ACTIONS(1601), + [anon_sym_LBRACE_PIPE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_bool] = ACTIONS(1601), + [anon_sym_char] = ACTIONS(1601), + [anon_sym_ichar] = ACTIONS(1601), + [anon_sym_short] = ACTIONS(1601), + [anon_sym_ushort] = ACTIONS(1601), + [anon_sym_uint] = ACTIONS(1601), + [anon_sym_long] = ACTIONS(1601), + [anon_sym_ulong] = ACTIONS(1601), + [anon_sym_int128] = ACTIONS(1601), + [anon_sym_uint128] = ACTIONS(1601), + [anon_sym_float] = ACTIONS(1601), + [anon_sym_double] = ACTIONS(1601), + [anon_sym_float16] = ACTIONS(1601), + [anon_sym_bfloat16] = ACTIONS(1601), + [anon_sym_float128] = ACTIONS(1601), + [anon_sym_iptr] = ACTIONS(1601), + [anon_sym_uptr] = ACTIONS(1601), + [anon_sym_isz] = ACTIONS(1601), + [anon_sym_usz] = ACTIONS(1601), + [anon_sym_anyfault] = ACTIONS(1601), + [anon_sym_any] = ACTIONS(1601), + [anon_sym_DOLLARtypeof] = ACTIONS(1601), + [anon_sym_DOLLARtypefrom] = ACTIONS(1601), + [anon_sym_DOLLARevaltype] = ACTIONS(1601), + [anon_sym_DOLLARvatype] = ACTIONS(1601), + [sym_real_literal] = ACTIONS(1603), + }, + [525] = { + [sym_line_comment] = STATE(525), + [sym_doc_comment] = STATE(525), + [sym_block_comment] = STATE(525), + [sym_ident] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1503), + [anon_sym_BQUOTE] = ACTIONS(1503), + [sym_bytes_literal] = ACTIONS(1503), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1501), + [sym_at_ident] = ACTIONS(1503), + [sym_hash_ident] = ACTIONS(1503), + [sym_type_ident] = ACTIONS(1503), + [sym_ct_type_ident] = ACTIONS(1503), + [sym_const_ident] = ACTIONS(1501), + [sym_builtin] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_tlocal] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_var] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_defer] = ACTIONS(1501), + [anon_sym_assert] = ACTIONS(1501), + [anon_sym_nextcase] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_foreach] = ACTIONS(1501), + [anon_sym_foreach_r] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_int] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym_DOLLARassert] = ACTIONS(1501), + [anon_sym_DOLLARerror] = ACTIONS(1501), + [anon_sym_DOLLARecho] = ACTIONS(1501), + [anon_sym_DOLLARif] = ACTIONS(1501), + [anon_sym_DOLLARendif] = ACTIONS(1501), + [anon_sym_DOLLARelse] = ACTIONS(1501), + [anon_sym_DOLLARswitch] = ACTIONS(1501), + [anon_sym_DOLLARfor] = ACTIONS(1501), + [anon_sym_DOLLARforeach] = ACTIONS(1501), + [anon_sym_DOLLARalignof] = ACTIONS(1501), + [anon_sym_DOLLARextnameof] = ACTIONS(1501), + [anon_sym_DOLLARnameof] = ACTIONS(1501), + [anon_sym_DOLLARoffsetof] = ACTIONS(1501), + [anon_sym_DOLLARqnameof] = ACTIONS(1501), + [anon_sym_DOLLARvaconst] = ACTIONS(1501), + [anon_sym_DOLLARvaarg] = ACTIONS(1501), + [anon_sym_DOLLARvaref] = ACTIONS(1501), + [anon_sym_DOLLARvaexpr] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_DOLLARvacount] = ACTIONS(1501), + [anon_sym_DOLLAReval] = ACTIONS(1501), + [anon_sym_DOLLARis_const] = ACTIONS(1501), + [anon_sym_DOLLARsizeof] = ACTIONS(1501), + [anon_sym_DOLLARstringify] = ACTIONS(1501), + [anon_sym_DOLLARappend] = ACTIONS(1501), + [anon_sym_DOLLARconcat] = ACTIONS(1501), + [anon_sym_DOLLARdefined] = ACTIONS(1501), + [anon_sym_DOLLARembed] = ACTIONS(1501), + [anon_sym_DOLLARand] = ACTIONS(1501), + [anon_sym_DOLLARor] = ACTIONS(1501), + [anon_sym_DOLLARfeature] = ACTIONS(1501), + [anon_sym_DOLLARassignable] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_typeid] = ACTIONS(1501), + [anon_sym_LBRACE_PIPE] = ACTIONS(1503), + [anon_sym_void] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_ichar] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_ushort] = ACTIONS(1501), + [anon_sym_uint] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_ulong] = ACTIONS(1501), + [anon_sym_int128] = ACTIONS(1501), + [anon_sym_uint128] = ACTIONS(1501), + [anon_sym_float] = ACTIONS(1501), + [anon_sym_double] = ACTIONS(1501), + [anon_sym_float16] = ACTIONS(1501), + [anon_sym_bfloat16] = ACTIONS(1501), + [anon_sym_float128] = ACTIONS(1501), + [anon_sym_iptr] = ACTIONS(1501), + [anon_sym_uptr] = ACTIONS(1501), + [anon_sym_isz] = ACTIONS(1501), + [anon_sym_usz] = ACTIONS(1501), + [anon_sym_anyfault] = ACTIONS(1501), + [anon_sym_any] = ACTIONS(1501), + [anon_sym_DOLLARtypeof] = ACTIONS(1501), + [anon_sym_DOLLARtypefrom] = ACTIONS(1501), + [anon_sym_DOLLARevaltype] = ACTIONS(1501), + [anon_sym_DOLLARvatype] = ACTIONS(1501), + [sym_real_literal] = ACTIONS(1503), + }, + [526] = { + [sym_line_comment] = STATE(526), + [sym_doc_comment] = STATE(526), + [sym_block_comment] = STATE(526), + [sym_ident] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [anon_sym_BQUOTE] = ACTIONS(1551), + [sym_bytes_literal] = ACTIONS(1551), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1549), + [sym_at_ident] = ACTIONS(1551), + [sym_hash_ident] = ACTIONS(1551), + [sym_type_ident] = ACTIONS(1551), + [sym_ct_type_ident] = ACTIONS(1551), + [sym_const_ident] = ACTIONS(1549), + [sym_builtin] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_tlocal] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_defer] = ACTIONS(1549), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_nextcase] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_foreach] = ACTIONS(1549), + [anon_sym_foreach_r] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_int] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_asm] = ACTIONS(1549), + [anon_sym_DOLLARassert] = ACTIONS(1549), + [anon_sym_DOLLARerror] = ACTIONS(1549), + [anon_sym_DOLLARecho] = ACTIONS(1549), + [anon_sym_DOLLARif] = ACTIONS(1549), + [anon_sym_DOLLARendif] = ACTIONS(1549), + [anon_sym_DOLLARelse] = ACTIONS(1549), + [anon_sym_DOLLARswitch] = ACTIONS(1549), + [anon_sym_DOLLARfor] = ACTIONS(1549), + [anon_sym_DOLLARforeach] = ACTIONS(1549), + [anon_sym_DOLLARalignof] = ACTIONS(1549), + [anon_sym_DOLLARextnameof] = ACTIONS(1549), + [anon_sym_DOLLARnameof] = ACTIONS(1549), + [anon_sym_DOLLARoffsetof] = ACTIONS(1549), + [anon_sym_DOLLARqnameof] = ACTIONS(1549), + [anon_sym_DOLLARvaconst] = ACTIONS(1549), + [anon_sym_DOLLARvaarg] = ACTIONS(1549), + [anon_sym_DOLLARvaref] = ACTIONS(1549), + [anon_sym_DOLLARvaexpr] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_null] = ACTIONS(1549), + [anon_sym_DOLLARvacount] = ACTIONS(1549), + [anon_sym_DOLLAReval] = ACTIONS(1549), + [anon_sym_DOLLARis_const] = ACTIONS(1549), + [anon_sym_DOLLARsizeof] = ACTIONS(1549), + [anon_sym_DOLLARstringify] = ACTIONS(1549), + [anon_sym_DOLLARappend] = ACTIONS(1549), + [anon_sym_DOLLARconcat] = ACTIONS(1549), + [anon_sym_DOLLARdefined] = ACTIONS(1549), + [anon_sym_DOLLARembed] = ACTIONS(1549), + [anon_sym_DOLLARand] = ACTIONS(1549), + [anon_sym_DOLLARor] = ACTIONS(1549), + [anon_sym_DOLLARfeature] = ACTIONS(1549), + [anon_sym_DOLLARassignable] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_typeid] = ACTIONS(1549), + [anon_sym_LBRACE_PIPE] = ACTIONS(1551), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_ichar] = ACTIONS(1549), + [anon_sym_short] = ACTIONS(1549), + [anon_sym_ushort] = ACTIONS(1549), + [anon_sym_uint] = ACTIONS(1549), + [anon_sym_long] = ACTIONS(1549), + [anon_sym_ulong] = ACTIONS(1549), + [anon_sym_int128] = ACTIONS(1549), + [anon_sym_uint128] = ACTIONS(1549), + [anon_sym_float] = ACTIONS(1549), + [anon_sym_double] = ACTIONS(1549), + [anon_sym_float16] = ACTIONS(1549), + [anon_sym_bfloat16] = ACTIONS(1549), + [anon_sym_float128] = ACTIONS(1549), + [anon_sym_iptr] = ACTIONS(1549), + [anon_sym_uptr] = ACTIONS(1549), + [anon_sym_isz] = ACTIONS(1549), + [anon_sym_usz] = ACTIONS(1549), + [anon_sym_anyfault] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_DOLLARtypeof] = ACTIONS(1549), + [anon_sym_DOLLARtypefrom] = ACTIONS(1549), + [anon_sym_DOLLARevaltype] = ACTIONS(1549), + [anon_sym_DOLLARvatype] = ACTIONS(1549), + [sym_real_literal] = ACTIONS(1551), + }, + [527] = { + [sym_line_comment] = STATE(527), + [sym_doc_comment] = STATE(527), + [sym_block_comment] = STATE(527), + [sym_ident] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [anon_sym_BQUOTE] = ACTIONS(1591), + [sym_bytes_literal] = ACTIONS(1591), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1589), + [sym_at_ident] = ACTIONS(1591), + [sym_hash_ident] = ACTIONS(1591), + [sym_type_ident] = ACTIONS(1591), + [sym_ct_type_ident] = ACTIONS(1591), + [sym_const_ident] = ACTIONS(1589), + [sym_builtin] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_tlocal] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_fn] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_var] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_defer] = ACTIONS(1589), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_nextcase] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_foreach] = ACTIONS(1589), + [anon_sym_foreach_r] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_int] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_asm] = ACTIONS(1589), + [anon_sym_DOLLARassert] = ACTIONS(1589), + [anon_sym_DOLLARerror] = ACTIONS(1589), + [anon_sym_DOLLARecho] = ACTIONS(1589), + [anon_sym_DOLLARif] = ACTIONS(1589), + [anon_sym_DOLLARendif] = ACTIONS(1589), + [anon_sym_DOLLARelse] = ACTIONS(1589), + [anon_sym_DOLLARswitch] = ACTIONS(1589), + [anon_sym_DOLLARfor] = ACTIONS(1589), + [anon_sym_DOLLARforeach] = ACTIONS(1589), + [anon_sym_DOLLARalignof] = ACTIONS(1589), + [anon_sym_DOLLARextnameof] = ACTIONS(1589), + [anon_sym_DOLLARnameof] = ACTIONS(1589), + [anon_sym_DOLLARoffsetof] = ACTIONS(1589), + [anon_sym_DOLLARqnameof] = ACTIONS(1589), + [anon_sym_DOLLARvaconst] = ACTIONS(1589), + [anon_sym_DOLLARvaarg] = ACTIONS(1589), + [anon_sym_DOLLARvaref] = ACTIONS(1589), + [anon_sym_DOLLARvaexpr] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [anon_sym_DOLLARvacount] = ACTIONS(1589), + [anon_sym_DOLLAReval] = ACTIONS(1589), + [anon_sym_DOLLARis_const] = ACTIONS(1589), + [anon_sym_DOLLARsizeof] = ACTIONS(1589), + [anon_sym_DOLLARstringify] = ACTIONS(1589), + [anon_sym_DOLLARappend] = ACTIONS(1589), + [anon_sym_DOLLARconcat] = ACTIONS(1589), + [anon_sym_DOLLARdefined] = ACTIONS(1589), + [anon_sym_DOLLARembed] = ACTIONS(1589), + [anon_sym_DOLLARand] = ACTIONS(1589), + [anon_sym_DOLLARor] = ACTIONS(1589), + [anon_sym_DOLLARfeature] = ACTIONS(1589), + [anon_sym_DOLLARassignable] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_typeid] = ACTIONS(1589), + [anon_sym_LBRACE_PIPE] = ACTIONS(1591), + [anon_sym_void] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_ichar] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [anon_sym_ushort] = ACTIONS(1589), + [anon_sym_uint] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_ulong] = ACTIONS(1589), + [anon_sym_int128] = ACTIONS(1589), + [anon_sym_uint128] = ACTIONS(1589), + [anon_sym_float] = ACTIONS(1589), + [anon_sym_double] = ACTIONS(1589), + [anon_sym_float16] = ACTIONS(1589), + [anon_sym_bfloat16] = ACTIONS(1589), + [anon_sym_float128] = ACTIONS(1589), + [anon_sym_iptr] = ACTIONS(1589), + [anon_sym_uptr] = ACTIONS(1589), + [anon_sym_isz] = ACTIONS(1589), + [anon_sym_usz] = ACTIONS(1589), + [anon_sym_anyfault] = ACTIONS(1589), + [anon_sym_any] = ACTIONS(1589), + [anon_sym_DOLLARtypeof] = ACTIONS(1589), + [anon_sym_DOLLARtypefrom] = ACTIONS(1589), + [anon_sym_DOLLARevaltype] = ACTIONS(1589), + [anon_sym_DOLLARvatype] = ACTIONS(1589), + [sym_real_literal] = ACTIONS(1591), + }, + [528] = { + [sym_line_comment] = STATE(528), + [sym_doc_comment] = STATE(528), + [sym_block_comment] = STATE(528), + [sym_ident] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_bytes_literal] = ACTIONS(1507), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1505), + [sym_at_ident] = ACTIONS(1507), + [sym_hash_ident] = ACTIONS(1507), + [sym_type_ident] = ACTIONS(1507), + [sym_ct_type_ident] = ACTIONS(1507), + [sym_const_ident] = ACTIONS(1505), + [sym_builtin] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_tlocal] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_defer] = ACTIONS(1505), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_nextcase] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(1505), + [anon_sym_foreach_r] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_int] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_asm] = ACTIONS(1505), + [anon_sym_DOLLARassert] = ACTIONS(1505), + [anon_sym_DOLLARerror] = ACTIONS(1505), + [anon_sym_DOLLARecho] = ACTIONS(1505), + [anon_sym_DOLLARif] = ACTIONS(1505), + [anon_sym_DOLLARendif] = ACTIONS(1505), + [anon_sym_DOLLARelse] = ACTIONS(1505), + [anon_sym_DOLLARswitch] = ACTIONS(1505), + [anon_sym_DOLLARfor] = ACTIONS(1505), + [anon_sym_DOLLARforeach] = ACTIONS(1505), + [anon_sym_DOLLARalignof] = ACTIONS(1505), + [anon_sym_DOLLARextnameof] = ACTIONS(1505), + [anon_sym_DOLLARnameof] = ACTIONS(1505), + [anon_sym_DOLLARoffsetof] = ACTIONS(1505), + [anon_sym_DOLLARqnameof] = ACTIONS(1505), + [anon_sym_DOLLARvaconst] = ACTIONS(1505), + [anon_sym_DOLLARvaarg] = ACTIONS(1505), + [anon_sym_DOLLARvaref] = ACTIONS(1505), + [anon_sym_DOLLARvaexpr] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_DOLLARvacount] = ACTIONS(1505), + [anon_sym_DOLLAReval] = ACTIONS(1505), + [anon_sym_DOLLARis_const] = ACTIONS(1505), + [anon_sym_DOLLARsizeof] = ACTIONS(1505), + [anon_sym_DOLLARstringify] = ACTIONS(1505), + [anon_sym_DOLLARappend] = ACTIONS(1505), + [anon_sym_DOLLARconcat] = ACTIONS(1505), + [anon_sym_DOLLARdefined] = ACTIONS(1505), + [anon_sym_DOLLARembed] = ACTIONS(1505), + [anon_sym_DOLLARand] = ACTIONS(1505), + [anon_sym_DOLLARor] = ACTIONS(1505), + [anon_sym_DOLLARfeature] = ACTIONS(1505), + [anon_sym_DOLLARassignable] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_typeid] = ACTIONS(1505), + [anon_sym_LBRACE_PIPE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_ichar] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [anon_sym_ushort] = ACTIONS(1505), + [anon_sym_uint] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_ulong] = ACTIONS(1505), + [anon_sym_int128] = ACTIONS(1505), + [anon_sym_uint128] = ACTIONS(1505), + [anon_sym_float] = ACTIONS(1505), + [anon_sym_double] = ACTIONS(1505), + [anon_sym_float16] = ACTIONS(1505), + [anon_sym_bfloat16] = ACTIONS(1505), + [anon_sym_float128] = ACTIONS(1505), + [anon_sym_iptr] = ACTIONS(1505), + [anon_sym_uptr] = ACTIONS(1505), + [anon_sym_isz] = ACTIONS(1505), + [anon_sym_usz] = ACTIONS(1505), + [anon_sym_anyfault] = ACTIONS(1505), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_DOLLARtypeof] = ACTIONS(1505), + [anon_sym_DOLLARtypefrom] = ACTIONS(1505), + [anon_sym_DOLLARevaltype] = ACTIONS(1505), + [anon_sym_DOLLARvatype] = ACTIONS(1505), + [sym_real_literal] = ACTIONS(1507), + }, + [529] = { + [sym_line_comment] = STATE(529), + [sym_doc_comment] = STATE(529), + [sym_block_comment] = STATE(529), + [sym_ident] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [anon_sym_BQUOTE] = ACTIONS(1567), + [sym_bytes_literal] = ACTIONS(1567), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1565), + [sym_at_ident] = ACTIONS(1567), + [sym_hash_ident] = ACTIONS(1567), + [sym_type_ident] = ACTIONS(1567), + [sym_ct_type_ident] = ACTIONS(1567), + [sym_const_ident] = ACTIONS(1565), + [sym_builtin] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_tlocal] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_fn] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_var] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_defer] = ACTIONS(1565), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_nextcase] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_foreach] = ACTIONS(1565), + [anon_sym_foreach_r] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_int] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_asm] = ACTIONS(1565), + [anon_sym_DOLLARassert] = ACTIONS(1565), + [anon_sym_DOLLARerror] = ACTIONS(1565), + [anon_sym_DOLLARecho] = ACTIONS(1565), + [anon_sym_DOLLARif] = ACTIONS(1565), + [anon_sym_DOLLARendif] = ACTIONS(1565), + [anon_sym_DOLLARelse] = ACTIONS(1565), + [anon_sym_DOLLARswitch] = ACTIONS(1565), + [anon_sym_DOLLARfor] = ACTIONS(1565), + [anon_sym_DOLLARforeach] = ACTIONS(1565), + [anon_sym_DOLLARalignof] = ACTIONS(1565), + [anon_sym_DOLLARextnameof] = ACTIONS(1565), + [anon_sym_DOLLARnameof] = ACTIONS(1565), + [anon_sym_DOLLARoffsetof] = ACTIONS(1565), + [anon_sym_DOLLARqnameof] = ACTIONS(1565), + [anon_sym_DOLLARvaconst] = ACTIONS(1565), + [anon_sym_DOLLARvaarg] = ACTIONS(1565), + [anon_sym_DOLLARvaref] = ACTIONS(1565), + [anon_sym_DOLLARvaexpr] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_DOLLARvacount] = ACTIONS(1565), + [anon_sym_DOLLAReval] = ACTIONS(1565), + [anon_sym_DOLLARis_const] = ACTIONS(1565), + [anon_sym_DOLLARsizeof] = ACTIONS(1565), + [anon_sym_DOLLARstringify] = ACTIONS(1565), + [anon_sym_DOLLARappend] = ACTIONS(1565), + [anon_sym_DOLLARconcat] = ACTIONS(1565), + [anon_sym_DOLLARdefined] = ACTIONS(1565), + [anon_sym_DOLLARembed] = ACTIONS(1565), + [anon_sym_DOLLARand] = ACTIONS(1565), + [anon_sym_DOLLARor] = ACTIONS(1565), + [anon_sym_DOLLARfeature] = ACTIONS(1565), + [anon_sym_DOLLARassignable] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_typeid] = ACTIONS(1565), + [anon_sym_LBRACE_PIPE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_bool] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_ichar] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [anon_sym_ushort] = ACTIONS(1565), + [anon_sym_uint] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_ulong] = ACTIONS(1565), + [anon_sym_int128] = ACTIONS(1565), + [anon_sym_uint128] = ACTIONS(1565), + [anon_sym_float] = ACTIONS(1565), + [anon_sym_double] = ACTIONS(1565), + [anon_sym_float16] = ACTIONS(1565), + [anon_sym_bfloat16] = ACTIONS(1565), + [anon_sym_float128] = ACTIONS(1565), + [anon_sym_iptr] = ACTIONS(1565), + [anon_sym_uptr] = ACTIONS(1565), + [anon_sym_isz] = ACTIONS(1565), + [anon_sym_usz] = ACTIONS(1565), + [anon_sym_anyfault] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1565), + [anon_sym_DOLLARtypeof] = ACTIONS(1565), + [anon_sym_DOLLARtypefrom] = ACTIONS(1565), + [anon_sym_DOLLARevaltype] = ACTIONS(1565), + [anon_sym_DOLLARvatype] = ACTIONS(1565), + [sym_real_literal] = ACTIONS(1567), + }, + [530] = { + [sym_line_comment] = STATE(530), + [sym_doc_comment] = STATE(530), + [sym_block_comment] = STATE(530), + [sym_ident] = ACTIONS(1363), + [sym_integer_literal] = ACTIONS(1365), + [anon_sym_SQUOTE] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(1365), + [anon_sym_BQUOTE] = ACTIONS(1365), + [sym_bytes_literal] = ACTIONS(1365), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1363), + [sym_at_ident] = ACTIONS(1365), + [sym_hash_ident] = ACTIONS(1365), + [sym_type_ident] = ACTIONS(1365), + [sym_ct_type_ident] = ACTIONS(1365), + [sym_const_ident] = ACTIONS(1363), + [sym_builtin] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_tlocal] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_var] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_defer] = ACTIONS(1363), + [anon_sym_assert] = ACTIONS(1363), + [anon_sym_nextcase] = ACTIONS(1363), + [anon_sym_switch] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_else] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_foreach] = ACTIONS(1363), + [anon_sym_foreach_r] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_int] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1363), + [anon_sym_DOLLARassert] = ACTIONS(1363), + [anon_sym_DOLLARerror] = ACTIONS(1363), + [anon_sym_DOLLARecho] = ACTIONS(1363), + [anon_sym_DOLLARif] = ACTIONS(1363), + [anon_sym_DOLLARswitch] = ACTIONS(1363), + [anon_sym_DOLLARfor] = ACTIONS(1363), + [anon_sym_DOLLARendfor] = ACTIONS(1363), + [anon_sym_DOLLARforeach] = ACTIONS(1363), + [anon_sym_DOLLARalignof] = ACTIONS(1363), + [anon_sym_DOLLARextnameof] = ACTIONS(1363), + [anon_sym_DOLLARnameof] = ACTIONS(1363), + [anon_sym_DOLLARoffsetof] = ACTIONS(1363), + [anon_sym_DOLLARqnameof] = ACTIONS(1363), + [anon_sym_DOLLARvaconst] = ACTIONS(1363), + [anon_sym_DOLLARvaarg] = ACTIONS(1363), + [anon_sym_DOLLARvaref] = ACTIONS(1363), + [anon_sym_DOLLARvaexpr] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_null] = ACTIONS(1363), + [anon_sym_DOLLARvacount] = ACTIONS(1363), + [anon_sym_DOLLAReval] = ACTIONS(1363), + [anon_sym_DOLLARis_const] = ACTIONS(1363), + [anon_sym_DOLLARsizeof] = ACTIONS(1363), + [anon_sym_DOLLARstringify] = ACTIONS(1363), + [anon_sym_DOLLARappend] = ACTIONS(1363), + [anon_sym_DOLLARconcat] = ACTIONS(1363), + [anon_sym_DOLLARdefined] = ACTIONS(1363), + [anon_sym_DOLLARembed] = ACTIONS(1363), + [anon_sym_DOLLARand] = ACTIONS(1363), + [anon_sym_DOLLARor] = ACTIONS(1363), + [anon_sym_DOLLARfeature] = ACTIONS(1363), + [anon_sym_DOLLARassignable] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_typeid] = ACTIONS(1363), + [anon_sym_LBRACE_PIPE] = ACTIONS(1365), + [anon_sym_void] = ACTIONS(1363), + [anon_sym_bool] = ACTIONS(1363), + [anon_sym_char] = ACTIONS(1363), + [anon_sym_ichar] = ACTIONS(1363), + [anon_sym_short] = ACTIONS(1363), + [anon_sym_ushort] = ACTIONS(1363), + [anon_sym_uint] = ACTIONS(1363), + [anon_sym_long] = ACTIONS(1363), + [anon_sym_ulong] = ACTIONS(1363), + [anon_sym_int128] = ACTIONS(1363), + [anon_sym_uint128] = ACTIONS(1363), + [anon_sym_float] = ACTIONS(1363), + [anon_sym_double] = ACTIONS(1363), + [anon_sym_float16] = ACTIONS(1363), + [anon_sym_bfloat16] = ACTIONS(1363), + [anon_sym_float128] = ACTIONS(1363), + [anon_sym_iptr] = ACTIONS(1363), + [anon_sym_uptr] = ACTIONS(1363), + [anon_sym_isz] = ACTIONS(1363), + [anon_sym_usz] = ACTIONS(1363), + [anon_sym_anyfault] = ACTIONS(1363), + [anon_sym_any] = ACTIONS(1363), + [anon_sym_DOLLARtypeof] = ACTIONS(1363), + [anon_sym_DOLLARtypefrom] = ACTIONS(1363), + [anon_sym_DOLLARevaltype] = ACTIONS(1363), + [anon_sym_DOLLARvatype] = ACTIONS(1363), + [sym_real_literal] = ACTIONS(1365), + }, + [531] = { + [sym_line_comment] = STATE(531), + [sym_doc_comment] = STATE(531), + [sym_block_comment] = STATE(531), + [sym_ident] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [anon_sym_BQUOTE] = ACTIONS(1571), + [sym_bytes_literal] = ACTIONS(1571), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1569), + [sym_at_ident] = ACTIONS(1571), + [sym_hash_ident] = ACTIONS(1571), + [sym_type_ident] = ACTIONS(1571), + [sym_ct_type_ident] = ACTIONS(1571), + [sym_const_ident] = ACTIONS(1569), + [sym_builtin] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_tlocal] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_var] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_defer] = ACTIONS(1569), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_nextcase] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_foreach] = ACTIONS(1569), + [anon_sym_foreach_r] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_int] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_asm] = ACTIONS(1569), + [anon_sym_DOLLARassert] = ACTIONS(1569), + [anon_sym_DOLLARerror] = ACTIONS(1569), + [anon_sym_DOLLARecho] = ACTIONS(1569), + [anon_sym_DOLLARif] = ACTIONS(1569), + [anon_sym_DOLLARendif] = ACTIONS(1569), + [anon_sym_DOLLARelse] = ACTIONS(1569), + [anon_sym_DOLLARswitch] = ACTIONS(1569), + [anon_sym_DOLLARfor] = ACTIONS(1569), + [anon_sym_DOLLARforeach] = ACTIONS(1569), + [anon_sym_DOLLARalignof] = ACTIONS(1569), + [anon_sym_DOLLARextnameof] = ACTIONS(1569), + [anon_sym_DOLLARnameof] = ACTIONS(1569), + [anon_sym_DOLLARoffsetof] = ACTIONS(1569), + [anon_sym_DOLLARqnameof] = ACTIONS(1569), + [anon_sym_DOLLARvaconst] = ACTIONS(1569), + [anon_sym_DOLLARvaarg] = ACTIONS(1569), + [anon_sym_DOLLARvaref] = ACTIONS(1569), + [anon_sym_DOLLARvaexpr] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [anon_sym_DOLLARvacount] = ACTIONS(1569), + [anon_sym_DOLLAReval] = ACTIONS(1569), + [anon_sym_DOLLARis_const] = ACTIONS(1569), + [anon_sym_DOLLARsizeof] = ACTIONS(1569), + [anon_sym_DOLLARstringify] = ACTIONS(1569), + [anon_sym_DOLLARappend] = ACTIONS(1569), + [anon_sym_DOLLARconcat] = ACTIONS(1569), + [anon_sym_DOLLARdefined] = ACTIONS(1569), + [anon_sym_DOLLARembed] = ACTIONS(1569), + [anon_sym_DOLLARand] = ACTIONS(1569), + [anon_sym_DOLLARor] = ACTIONS(1569), + [anon_sym_DOLLARfeature] = ACTIONS(1569), + [anon_sym_DOLLARassignable] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_typeid] = ACTIONS(1569), + [anon_sym_LBRACE_PIPE] = ACTIONS(1571), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_bool] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_ichar] = ACTIONS(1569), + [anon_sym_short] = ACTIONS(1569), + [anon_sym_ushort] = ACTIONS(1569), + [anon_sym_uint] = ACTIONS(1569), + [anon_sym_long] = ACTIONS(1569), + [anon_sym_ulong] = ACTIONS(1569), + [anon_sym_int128] = ACTIONS(1569), + [anon_sym_uint128] = ACTIONS(1569), + [anon_sym_float] = ACTIONS(1569), + [anon_sym_double] = ACTIONS(1569), + [anon_sym_float16] = ACTIONS(1569), + [anon_sym_bfloat16] = ACTIONS(1569), + [anon_sym_float128] = ACTIONS(1569), + [anon_sym_iptr] = ACTIONS(1569), + [anon_sym_uptr] = ACTIONS(1569), + [anon_sym_isz] = ACTIONS(1569), + [anon_sym_usz] = ACTIONS(1569), + [anon_sym_anyfault] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1569), + [anon_sym_DOLLARtypeof] = ACTIONS(1569), + [anon_sym_DOLLARtypefrom] = ACTIONS(1569), + [anon_sym_DOLLARevaltype] = ACTIONS(1569), + [anon_sym_DOLLARvatype] = ACTIONS(1569), + [sym_real_literal] = ACTIONS(1571), + }, + [532] = { + [sym_line_comment] = STATE(532), + [sym_doc_comment] = STATE(532), + [sym_block_comment] = STATE(532), + [sym_ident] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1607), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [anon_sym_BQUOTE] = ACTIONS(1607), + [sym_bytes_literal] = ACTIONS(1607), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1605), + [sym_at_ident] = ACTIONS(1607), + [sym_hash_ident] = ACTIONS(1607), + [sym_type_ident] = ACTIONS(1607), + [sym_ct_type_ident] = ACTIONS(1607), + [sym_const_ident] = ACTIONS(1605), + [sym_builtin] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_tlocal] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_var] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_defer] = ACTIONS(1605), + [anon_sym_assert] = ACTIONS(1605), + [anon_sym_nextcase] = ACTIONS(1605), + [anon_sym_switch] = ACTIONS(1605), + [anon_sym_AMP_AMP] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_foreach] = ACTIONS(1605), + [anon_sym_foreach_r] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_int] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_asm] = ACTIONS(1605), + [anon_sym_DOLLARassert] = ACTIONS(1605), + [anon_sym_DOLLARerror] = ACTIONS(1605), + [anon_sym_DOLLARecho] = ACTIONS(1605), + [anon_sym_DOLLARif] = ACTIONS(1605), + [anon_sym_DOLLARendif] = ACTIONS(1605), + [anon_sym_DOLLARelse] = ACTIONS(1605), + [anon_sym_DOLLARswitch] = ACTIONS(1605), + [anon_sym_DOLLARfor] = ACTIONS(1605), + [anon_sym_DOLLARforeach] = ACTIONS(1605), + [anon_sym_DOLLARalignof] = ACTIONS(1605), + [anon_sym_DOLLARextnameof] = ACTIONS(1605), + [anon_sym_DOLLARnameof] = ACTIONS(1605), + [anon_sym_DOLLARoffsetof] = ACTIONS(1605), + [anon_sym_DOLLARqnameof] = ACTIONS(1605), + [anon_sym_DOLLARvaconst] = ACTIONS(1605), + [anon_sym_DOLLARvaarg] = ACTIONS(1605), + [anon_sym_DOLLARvaref] = ACTIONS(1605), + [anon_sym_DOLLARvaexpr] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1605), + [anon_sym_false] = ACTIONS(1605), + [anon_sym_null] = ACTIONS(1605), + [anon_sym_DOLLARvacount] = ACTIONS(1605), + [anon_sym_DOLLAReval] = ACTIONS(1605), + [anon_sym_DOLLARis_const] = ACTIONS(1605), + [anon_sym_DOLLARsizeof] = ACTIONS(1605), + [anon_sym_DOLLARstringify] = ACTIONS(1605), + [anon_sym_DOLLARappend] = ACTIONS(1605), + [anon_sym_DOLLARconcat] = ACTIONS(1605), + [anon_sym_DOLLARdefined] = ACTIONS(1605), + [anon_sym_DOLLARembed] = ACTIONS(1605), + [anon_sym_DOLLARand] = ACTIONS(1605), + [anon_sym_DOLLARor] = ACTIONS(1605), + [anon_sym_DOLLARfeature] = ACTIONS(1605), + [anon_sym_DOLLARassignable] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_typeid] = ACTIONS(1605), + [anon_sym_LBRACE_PIPE] = ACTIONS(1607), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_bool] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_ichar] = ACTIONS(1605), + [anon_sym_short] = ACTIONS(1605), + [anon_sym_ushort] = ACTIONS(1605), + [anon_sym_uint] = ACTIONS(1605), + [anon_sym_long] = ACTIONS(1605), + [anon_sym_ulong] = ACTIONS(1605), + [anon_sym_int128] = ACTIONS(1605), + [anon_sym_uint128] = ACTIONS(1605), + [anon_sym_float] = ACTIONS(1605), + [anon_sym_double] = ACTIONS(1605), + [anon_sym_float16] = ACTIONS(1605), + [anon_sym_bfloat16] = ACTIONS(1605), + [anon_sym_float128] = ACTIONS(1605), + [anon_sym_iptr] = ACTIONS(1605), + [anon_sym_uptr] = ACTIONS(1605), + [anon_sym_isz] = ACTIONS(1605), + [anon_sym_usz] = ACTIONS(1605), + [anon_sym_anyfault] = ACTIONS(1605), + [anon_sym_any] = ACTIONS(1605), + [anon_sym_DOLLARtypeof] = ACTIONS(1605), + [anon_sym_DOLLARtypefrom] = ACTIONS(1605), + [anon_sym_DOLLARevaltype] = ACTIONS(1605), + [anon_sym_DOLLARvatype] = ACTIONS(1605), + [sym_real_literal] = ACTIONS(1607), + }, + [533] = { + [sym_line_comment] = STATE(533), + [sym_doc_comment] = STATE(533), + [sym_block_comment] = STATE(533), + [sym_ident] = ACTIONS(1533), + [sym_integer_literal] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1535), + [anon_sym_BQUOTE] = ACTIONS(1535), + [sym_bytes_literal] = ACTIONS(1535), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1533), + [sym_at_ident] = ACTIONS(1535), + [sym_hash_ident] = ACTIONS(1535), + [sym_type_ident] = ACTIONS(1535), + [sym_ct_type_ident] = ACTIONS(1535), + [sym_const_ident] = ACTIONS(1533), + [sym_builtin] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_tlocal] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_var] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_defer] = ACTIONS(1533), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_nextcase] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_foreach] = ACTIONS(1533), + [anon_sym_foreach_r] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_int] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_asm] = ACTIONS(1533), + [anon_sym_DOLLARassert] = ACTIONS(1533), + [anon_sym_DOLLARerror] = ACTIONS(1533), + [anon_sym_DOLLARecho] = ACTIONS(1533), + [anon_sym_DOLLARif] = ACTIONS(1533), + [anon_sym_DOLLARendif] = ACTIONS(1533), + [anon_sym_DOLLARelse] = ACTIONS(1533), + [anon_sym_DOLLARswitch] = ACTIONS(1533), + [anon_sym_DOLLARfor] = ACTIONS(1533), + [anon_sym_DOLLARforeach] = ACTIONS(1533), + [anon_sym_DOLLARalignof] = ACTIONS(1533), + [anon_sym_DOLLARextnameof] = ACTIONS(1533), + [anon_sym_DOLLARnameof] = ACTIONS(1533), + [anon_sym_DOLLARoffsetof] = ACTIONS(1533), + [anon_sym_DOLLARqnameof] = ACTIONS(1533), + [anon_sym_DOLLARvaconst] = ACTIONS(1533), + [anon_sym_DOLLARvaarg] = ACTIONS(1533), + [anon_sym_DOLLARvaref] = ACTIONS(1533), + [anon_sym_DOLLARvaexpr] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_null] = ACTIONS(1533), + [anon_sym_DOLLARvacount] = ACTIONS(1533), + [anon_sym_DOLLAReval] = ACTIONS(1533), + [anon_sym_DOLLARis_const] = ACTIONS(1533), + [anon_sym_DOLLARsizeof] = ACTIONS(1533), + [anon_sym_DOLLARstringify] = ACTIONS(1533), + [anon_sym_DOLLARappend] = ACTIONS(1533), + [anon_sym_DOLLARconcat] = ACTIONS(1533), + [anon_sym_DOLLARdefined] = ACTIONS(1533), + [anon_sym_DOLLARembed] = ACTIONS(1533), + [anon_sym_DOLLARand] = ACTIONS(1533), + [anon_sym_DOLLARor] = ACTIONS(1533), + [anon_sym_DOLLARfeature] = ACTIONS(1533), + [anon_sym_DOLLARassignable] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_typeid] = ACTIONS(1533), + [anon_sym_LBRACE_PIPE] = ACTIONS(1535), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_bool] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_ichar] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_ushort] = ACTIONS(1533), + [anon_sym_uint] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_ulong] = ACTIONS(1533), + [anon_sym_int128] = ACTIONS(1533), + [anon_sym_uint128] = ACTIONS(1533), + [anon_sym_float] = ACTIONS(1533), + [anon_sym_double] = ACTIONS(1533), + [anon_sym_float16] = ACTIONS(1533), + [anon_sym_bfloat16] = ACTIONS(1533), + [anon_sym_float128] = ACTIONS(1533), + [anon_sym_iptr] = ACTIONS(1533), + [anon_sym_uptr] = ACTIONS(1533), + [anon_sym_isz] = ACTIONS(1533), + [anon_sym_usz] = ACTIONS(1533), + [anon_sym_anyfault] = ACTIONS(1533), + [anon_sym_any] = ACTIONS(1533), + [anon_sym_DOLLARtypeof] = ACTIONS(1533), + [anon_sym_DOLLARtypefrom] = ACTIONS(1533), + [anon_sym_DOLLARevaltype] = ACTIONS(1533), + [anon_sym_DOLLARvatype] = ACTIONS(1533), + [sym_real_literal] = ACTIONS(1535), + }, + [534] = { + [sym_line_comment] = STATE(534), + [sym_doc_comment] = STATE(534), + [sym_block_comment] = STATE(534), + [sym_ident] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1539), + [anon_sym_BQUOTE] = ACTIONS(1539), + [sym_bytes_literal] = ACTIONS(1539), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1537), + [sym_at_ident] = ACTIONS(1539), + [sym_hash_ident] = ACTIONS(1539), + [sym_type_ident] = ACTIONS(1539), + [sym_ct_type_ident] = ACTIONS(1539), + [sym_const_ident] = ACTIONS(1537), + [sym_builtin] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_tlocal] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_defer] = ACTIONS(1537), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_nextcase] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_foreach] = ACTIONS(1537), + [anon_sym_foreach_r] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_int] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym_DOLLARassert] = ACTIONS(1537), + [anon_sym_DOLLARerror] = ACTIONS(1537), + [anon_sym_DOLLARecho] = ACTIONS(1537), + [anon_sym_DOLLARif] = ACTIONS(1537), + [anon_sym_DOLLARendif] = ACTIONS(1537), + [anon_sym_DOLLARelse] = ACTIONS(1537), + [anon_sym_DOLLARswitch] = ACTIONS(1537), + [anon_sym_DOLLARfor] = ACTIONS(1537), + [anon_sym_DOLLARforeach] = ACTIONS(1537), + [anon_sym_DOLLARalignof] = ACTIONS(1537), + [anon_sym_DOLLARextnameof] = ACTIONS(1537), + [anon_sym_DOLLARnameof] = ACTIONS(1537), + [anon_sym_DOLLARoffsetof] = ACTIONS(1537), + [anon_sym_DOLLARqnameof] = ACTIONS(1537), + [anon_sym_DOLLARvaconst] = ACTIONS(1537), + [anon_sym_DOLLARvaarg] = ACTIONS(1537), + [anon_sym_DOLLARvaref] = ACTIONS(1537), + [anon_sym_DOLLARvaexpr] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [anon_sym_DOLLARvacount] = ACTIONS(1537), + [anon_sym_DOLLAReval] = ACTIONS(1537), + [anon_sym_DOLLARis_const] = ACTIONS(1537), + [anon_sym_DOLLARsizeof] = ACTIONS(1537), + [anon_sym_DOLLARstringify] = ACTIONS(1537), + [anon_sym_DOLLARappend] = ACTIONS(1537), + [anon_sym_DOLLARconcat] = ACTIONS(1537), + [anon_sym_DOLLARdefined] = ACTIONS(1537), + [anon_sym_DOLLARembed] = ACTIONS(1537), + [anon_sym_DOLLARand] = ACTIONS(1537), + [anon_sym_DOLLARor] = ACTIONS(1537), + [anon_sym_DOLLARfeature] = ACTIONS(1537), + [anon_sym_DOLLARassignable] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_typeid] = ACTIONS(1537), + [anon_sym_LBRACE_PIPE] = ACTIONS(1539), + [anon_sym_void] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_ichar] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [anon_sym_ushort] = ACTIONS(1537), + [anon_sym_uint] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_ulong] = ACTIONS(1537), + [anon_sym_int128] = ACTIONS(1537), + [anon_sym_uint128] = ACTIONS(1537), + [anon_sym_float] = ACTIONS(1537), + [anon_sym_double] = ACTIONS(1537), + [anon_sym_float16] = ACTIONS(1537), + [anon_sym_bfloat16] = ACTIONS(1537), + [anon_sym_float128] = ACTIONS(1537), + [anon_sym_iptr] = ACTIONS(1537), + [anon_sym_uptr] = ACTIONS(1537), + [anon_sym_isz] = ACTIONS(1537), + [anon_sym_usz] = ACTIONS(1537), + [anon_sym_anyfault] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_DOLLARtypeof] = ACTIONS(1537), + [anon_sym_DOLLARtypefrom] = ACTIONS(1537), + [anon_sym_DOLLARevaltype] = ACTIONS(1537), + [anon_sym_DOLLARvatype] = ACTIONS(1537), + [sym_real_literal] = ACTIONS(1539), + }, + [535] = { + [sym_line_comment] = STATE(535), + [sym_doc_comment] = STATE(535), + [sym_block_comment] = STATE(535), + [sym_ident] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1555), + [anon_sym_BQUOTE] = ACTIONS(1555), + [sym_bytes_literal] = ACTIONS(1555), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1553), + [sym_at_ident] = ACTIONS(1555), + [sym_hash_ident] = ACTIONS(1555), + [sym_type_ident] = ACTIONS(1555), + [sym_ct_type_ident] = ACTIONS(1555), + [sym_const_ident] = ACTIONS(1553), + [sym_builtin] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_tlocal] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_defer] = ACTIONS(1553), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_nextcase] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_foreach] = ACTIONS(1553), + [anon_sym_foreach_r] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_int] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_asm] = ACTIONS(1553), + [anon_sym_DOLLARassert] = ACTIONS(1553), + [anon_sym_DOLLARerror] = ACTIONS(1553), + [anon_sym_DOLLARecho] = ACTIONS(1553), + [anon_sym_DOLLARif] = ACTIONS(1553), + [anon_sym_DOLLARendif] = ACTIONS(1553), + [anon_sym_DOLLARelse] = ACTIONS(1553), + [anon_sym_DOLLARswitch] = ACTIONS(1553), + [anon_sym_DOLLARfor] = ACTIONS(1553), + [anon_sym_DOLLARforeach] = ACTIONS(1553), + [anon_sym_DOLLARalignof] = ACTIONS(1553), + [anon_sym_DOLLARextnameof] = ACTIONS(1553), + [anon_sym_DOLLARnameof] = ACTIONS(1553), + [anon_sym_DOLLARoffsetof] = ACTIONS(1553), + [anon_sym_DOLLARqnameof] = ACTIONS(1553), + [anon_sym_DOLLARvaconst] = ACTIONS(1553), + [anon_sym_DOLLARvaarg] = ACTIONS(1553), + [anon_sym_DOLLARvaref] = ACTIONS(1553), + [anon_sym_DOLLARvaexpr] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_DOLLARvacount] = ACTIONS(1553), + [anon_sym_DOLLAReval] = ACTIONS(1553), + [anon_sym_DOLLARis_const] = ACTIONS(1553), + [anon_sym_DOLLARsizeof] = ACTIONS(1553), + [anon_sym_DOLLARstringify] = ACTIONS(1553), + [anon_sym_DOLLARappend] = ACTIONS(1553), + [anon_sym_DOLLARconcat] = ACTIONS(1553), + [anon_sym_DOLLARdefined] = ACTIONS(1553), + [anon_sym_DOLLARembed] = ACTIONS(1553), + [anon_sym_DOLLARand] = ACTIONS(1553), + [anon_sym_DOLLARor] = ACTIONS(1553), + [anon_sym_DOLLARfeature] = ACTIONS(1553), + [anon_sym_DOLLARassignable] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_typeid] = ACTIONS(1553), + [anon_sym_LBRACE_PIPE] = ACTIONS(1555), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_ichar] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [anon_sym_ushort] = ACTIONS(1553), + [anon_sym_uint] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_ulong] = ACTIONS(1553), + [anon_sym_int128] = ACTIONS(1553), + [anon_sym_uint128] = ACTIONS(1553), + [anon_sym_float] = ACTIONS(1553), + [anon_sym_double] = ACTIONS(1553), + [anon_sym_float16] = ACTIONS(1553), + [anon_sym_bfloat16] = ACTIONS(1553), + [anon_sym_float128] = ACTIONS(1553), + [anon_sym_iptr] = ACTIONS(1553), + [anon_sym_uptr] = ACTIONS(1553), + [anon_sym_isz] = ACTIONS(1553), + [anon_sym_usz] = ACTIONS(1553), + [anon_sym_anyfault] = ACTIONS(1553), + [anon_sym_any] = ACTIONS(1553), + [anon_sym_DOLLARtypeof] = ACTIONS(1553), + [anon_sym_DOLLARtypefrom] = ACTIONS(1553), + [anon_sym_DOLLARevaltype] = ACTIONS(1553), + [anon_sym_DOLLARvatype] = ACTIONS(1553), + [sym_real_literal] = ACTIONS(1555), + }, + [536] = { + [sym_line_comment] = STATE(536), + [sym_doc_comment] = STATE(536), + [sym_block_comment] = STATE(536), + [sym_ident] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_BQUOTE] = ACTIONS(1519), + [sym_bytes_literal] = ACTIONS(1519), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1517), + [sym_at_ident] = ACTIONS(1519), + [sym_hash_ident] = ACTIONS(1519), + [sym_type_ident] = ACTIONS(1519), + [sym_ct_type_ident] = ACTIONS(1519), + [sym_const_ident] = ACTIONS(1517), + [sym_builtin] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_tlocal] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_defer] = ACTIONS(1517), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_nextcase] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_foreach] = ACTIONS(1517), + [anon_sym_foreach_r] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_int] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_asm] = ACTIONS(1517), + [anon_sym_DOLLARassert] = ACTIONS(1517), + [anon_sym_DOLLARerror] = ACTIONS(1517), + [anon_sym_DOLLARecho] = ACTIONS(1517), + [anon_sym_DOLLARif] = ACTIONS(1517), + [anon_sym_DOLLARendif] = ACTIONS(1517), + [anon_sym_DOLLARelse] = ACTIONS(1517), + [anon_sym_DOLLARswitch] = ACTIONS(1517), + [anon_sym_DOLLARfor] = ACTIONS(1517), + [anon_sym_DOLLARforeach] = ACTIONS(1517), + [anon_sym_DOLLARalignof] = ACTIONS(1517), + [anon_sym_DOLLARextnameof] = ACTIONS(1517), + [anon_sym_DOLLARnameof] = ACTIONS(1517), + [anon_sym_DOLLARoffsetof] = ACTIONS(1517), + [anon_sym_DOLLARqnameof] = ACTIONS(1517), + [anon_sym_DOLLARvaconst] = ACTIONS(1517), + [anon_sym_DOLLARvaarg] = ACTIONS(1517), + [anon_sym_DOLLARvaref] = ACTIONS(1517), + [anon_sym_DOLLARvaexpr] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_DOLLARvacount] = ACTIONS(1517), + [anon_sym_DOLLAReval] = ACTIONS(1517), + [anon_sym_DOLLARis_const] = ACTIONS(1517), + [anon_sym_DOLLARsizeof] = ACTIONS(1517), + [anon_sym_DOLLARstringify] = ACTIONS(1517), + [anon_sym_DOLLARappend] = ACTIONS(1517), + [anon_sym_DOLLARconcat] = ACTIONS(1517), + [anon_sym_DOLLARdefined] = ACTIONS(1517), + [anon_sym_DOLLARembed] = ACTIONS(1517), + [anon_sym_DOLLARand] = ACTIONS(1517), + [anon_sym_DOLLARor] = ACTIONS(1517), + [anon_sym_DOLLARfeature] = ACTIONS(1517), + [anon_sym_DOLLARassignable] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_typeid] = ACTIONS(1517), + [anon_sym_LBRACE_PIPE] = ACTIONS(1519), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_ichar] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [anon_sym_ushort] = ACTIONS(1517), + [anon_sym_uint] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_ulong] = ACTIONS(1517), + [anon_sym_int128] = ACTIONS(1517), + [anon_sym_uint128] = ACTIONS(1517), + [anon_sym_float] = ACTIONS(1517), + [anon_sym_double] = ACTIONS(1517), + [anon_sym_float16] = ACTIONS(1517), + [anon_sym_bfloat16] = ACTIONS(1517), + [anon_sym_float128] = ACTIONS(1517), + [anon_sym_iptr] = ACTIONS(1517), + [anon_sym_uptr] = ACTIONS(1517), + [anon_sym_isz] = ACTIONS(1517), + [anon_sym_usz] = ACTIONS(1517), + [anon_sym_anyfault] = ACTIONS(1517), + [anon_sym_any] = ACTIONS(1517), + [anon_sym_DOLLARtypeof] = ACTIONS(1517), + [anon_sym_DOLLARtypefrom] = ACTIONS(1517), + [anon_sym_DOLLARevaltype] = ACTIONS(1517), + [anon_sym_DOLLARvatype] = ACTIONS(1517), + [sym_real_literal] = ACTIONS(1519), + }, + [537] = { + [sym_line_comment] = STATE(537), + [sym_doc_comment] = STATE(537), + [sym_block_comment] = STATE(537), + [sym_ident] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [sym_bytes_literal] = ACTIONS(1611), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1609), + [sym_at_ident] = ACTIONS(1611), + [sym_hash_ident] = ACTIONS(1611), + [sym_type_ident] = ACTIONS(1611), + [sym_ct_type_ident] = ACTIONS(1611), + [sym_const_ident] = ACTIONS(1609), + [sym_builtin] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_static] = ACTIONS(1609), + [anon_sym_tlocal] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_fn] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_const] = ACTIONS(1609), + [anon_sym_var] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1609), + [anon_sym_defer] = ACTIONS(1609), + [anon_sym_assert] = ACTIONS(1609), + [anon_sym_nextcase] = ACTIONS(1609), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_for] = ACTIONS(1609), + [anon_sym_foreach] = ACTIONS(1609), + [anon_sym_foreach_r] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_do] = ACTIONS(1609), + [anon_sym_int] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1609), + [anon_sym_DOLLARassert] = ACTIONS(1609), + [anon_sym_DOLLARerror] = ACTIONS(1609), + [anon_sym_DOLLARecho] = ACTIONS(1609), + [anon_sym_DOLLARif] = ACTIONS(1609), + [anon_sym_DOLLARendif] = ACTIONS(1609), + [anon_sym_DOLLARelse] = ACTIONS(1609), + [anon_sym_DOLLARswitch] = ACTIONS(1609), + [anon_sym_DOLLARfor] = ACTIONS(1609), + [anon_sym_DOLLARforeach] = ACTIONS(1609), + [anon_sym_DOLLARalignof] = ACTIONS(1609), + [anon_sym_DOLLARextnameof] = ACTIONS(1609), + [anon_sym_DOLLARnameof] = ACTIONS(1609), + [anon_sym_DOLLARoffsetof] = ACTIONS(1609), + [anon_sym_DOLLARqnameof] = ACTIONS(1609), + [anon_sym_DOLLARvaconst] = ACTIONS(1609), + [anon_sym_DOLLARvaarg] = ACTIONS(1609), + [anon_sym_DOLLARvaref] = ACTIONS(1609), + [anon_sym_DOLLARvaexpr] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_DOLLARvacount] = ACTIONS(1609), + [anon_sym_DOLLAReval] = ACTIONS(1609), + [anon_sym_DOLLARis_const] = ACTIONS(1609), + [anon_sym_DOLLARsizeof] = ACTIONS(1609), + [anon_sym_DOLLARstringify] = ACTIONS(1609), + [anon_sym_DOLLARappend] = ACTIONS(1609), + [anon_sym_DOLLARconcat] = ACTIONS(1609), + [anon_sym_DOLLARdefined] = ACTIONS(1609), + [anon_sym_DOLLARembed] = ACTIONS(1609), + [anon_sym_DOLLARand] = ACTIONS(1609), + [anon_sym_DOLLARor] = ACTIONS(1609), + [anon_sym_DOLLARfeature] = ACTIONS(1609), + [anon_sym_DOLLARassignable] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_TILDE] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_typeid] = ACTIONS(1609), + [anon_sym_LBRACE_PIPE] = ACTIONS(1611), + [anon_sym_void] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_ichar] = ACTIONS(1609), + [anon_sym_short] = ACTIONS(1609), + [anon_sym_ushort] = ACTIONS(1609), + [anon_sym_uint] = ACTIONS(1609), + [anon_sym_long] = ACTIONS(1609), + [anon_sym_ulong] = ACTIONS(1609), + [anon_sym_int128] = ACTIONS(1609), + [anon_sym_uint128] = ACTIONS(1609), + [anon_sym_float] = ACTIONS(1609), + [anon_sym_double] = ACTIONS(1609), + [anon_sym_float16] = ACTIONS(1609), + [anon_sym_bfloat16] = ACTIONS(1609), + [anon_sym_float128] = ACTIONS(1609), + [anon_sym_iptr] = ACTIONS(1609), + [anon_sym_uptr] = ACTIONS(1609), + [anon_sym_isz] = ACTIONS(1609), + [anon_sym_usz] = ACTIONS(1609), + [anon_sym_anyfault] = ACTIONS(1609), + [anon_sym_any] = ACTIONS(1609), + [anon_sym_DOLLARtypeof] = ACTIONS(1609), + [anon_sym_DOLLARtypefrom] = ACTIONS(1609), + [anon_sym_DOLLARevaltype] = ACTIONS(1609), + [anon_sym_DOLLARvatype] = ACTIONS(1609), + [sym_real_literal] = ACTIONS(1611), + }, + [538] = { + [sym_line_comment] = STATE(538), + [sym_doc_comment] = STATE(538), + [sym_block_comment] = STATE(538), + [sym_ident] = ACTIONS(1661), + [sym_integer_literal] = ACTIONS(1663), + [anon_sym_SQUOTE] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [anon_sym_BQUOTE] = ACTIONS(1663), + [sym_bytes_literal] = ACTIONS(1663), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1661), + [sym_at_ident] = ACTIONS(1663), + [sym_hash_ident] = ACTIONS(1663), + [sym_type_ident] = ACTIONS(1663), + [sym_ct_type_ident] = ACTIONS(1663), + [sym_const_ident] = ACTIONS(1661), + [sym_builtin] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_static] = ACTIONS(1661), + [anon_sym_tlocal] = ACTIONS(1661), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_fn] = ACTIONS(1661), + [anon_sym_LBRACE] = ACTIONS(1661), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_var] = ACTIONS(1661), + [anon_sym_return] = ACTIONS(1661), + [anon_sym_continue] = ACTIONS(1661), + [anon_sym_break] = ACTIONS(1661), + [anon_sym_defer] = ACTIONS(1661), + [anon_sym_assert] = ACTIONS(1661), + [anon_sym_nextcase] = ACTIONS(1661), + [anon_sym_switch] = ACTIONS(1661), + [anon_sym_AMP_AMP] = ACTIONS(1663), + [anon_sym_if] = ACTIONS(1661), + [anon_sym_for] = ACTIONS(1661), + [anon_sym_foreach] = ACTIONS(1661), + [anon_sym_foreach_r] = ACTIONS(1661), + [anon_sym_while] = ACTIONS(1661), + [anon_sym_do] = ACTIONS(1661), + [anon_sym_int] = ACTIONS(1661), + [anon_sym_PLUS] = ACTIONS(1661), + [anon_sym_DASH] = ACTIONS(1661), + [anon_sym_STAR] = ACTIONS(1663), + [anon_sym_asm] = ACTIONS(1661), + [anon_sym_DOLLARassert] = ACTIONS(1661), + [anon_sym_DOLLARerror] = ACTIONS(1661), + [anon_sym_DOLLARecho] = ACTIONS(1661), + [anon_sym_DOLLARif] = ACTIONS(1661), + [anon_sym_DOLLARendif] = ACTIONS(1661), + [anon_sym_DOLLARelse] = ACTIONS(1661), + [anon_sym_DOLLARswitch] = ACTIONS(1661), + [anon_sym_DOLLARfor] = ACTIONS(1661), + [anon_sym_DOLLARforeach] = ACTIONS(1661), + [anon_sym_DOLLARalignof] = ACTIONS(1661), + [anon_sym_DOLLARextnameof] = ACTIONS(1661), + [anon_sym_DOLLARnameof] = ACTIONS(1661), + [anon_sym_DOLLARoffsetof] = ACTIONS(1661), + [anon_sym_DOLLARqnameof] = ACTIONS(1661), + [anon_sym_DOLLARvaconst] = ACTIONS(1661), + [anon_sym_DOLLARvaarg] = ACTIONS(1661), + [anon_sym_DOLLARvaref] = ACTIONS(1661), + [anon_sym_DOLLARvaexpr] = ACTIONS(1661), + [anon_sym_true] = ACTIONS(1661), + [anon_sym_false] = ACTIONS(1661), + [anon_sym_null] = ACTIONS(1661), + [anon_sym_DOLLARvacount] = ACTIONS(1661), + [anon_sym_DOLLAReval] = ACTIONS(1661), + [anon_sym_DOLLARis_const] = ACTIONS(1661), + [anon_sym_DOLLARsizeof] = ACTIONS(1661), + [anon_sym_DOLLARstringify] = ACTIONS(1661), + [anon_sym_DOLLARappend] = ACTIONS(1661), + [anon_sym_DOLLARconcat] = ACTIONS(1661), + [anon_sym_DOLLARdefined] = ACTIONS(1661), + [anon_sym_DOLLARembed] = ACTIONS(1661), + [anon_sym_DOLLARand] = ACTIONS(1661), + [anon_sym_DOLLARor] = ACTIONS(1661), + [anon_sym_DOLLARfeature] = ACTIONS(1661), + [anon_sym_DOLLARassignable] = ACTIONS(1661), + [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1663), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_typeid] = ACTIONS(1661), + [anon_sym_LBRACE_PIPE] = ACTIONS(1663), + [anon_sym_void] = ACTIONS(1661), + [anon_sym_bool] = ACTIONS(1661), + [anon_sym_char] = ACTIONS(1661), + [anon_sym_ichar] = ACTIONS(1661), + [anon_sym_short] = ACTIONS(1661), + [anon_sym_ushort] = ACTIONS(1661), + [anon_sym_uint] = ACTIONS(1661), + [anon_sym_long] = ACTIONS(1661), + [anon_sym_ulong] = ACTIONS(1661), + [anon_sym_int128] = ACTIONS(1661), + [anon_sym_uint128] = ACTIONS(1661), + [anon_sym_float] = ACTIONS(1661), + [anon_sym_double] = ACTIONS(1661), + [anon_sym_float16] = ACTIONS(1661), + [anon_sym_bfloat16] = ACTIONS(1661), + [anon_sym_float128] = ACTIONS(1661), + [anon_sym_iptr] = ACTIONS(1661), + [anon_sym_uptr] = ACTIONS(1661), + [anon_sym_isz] = ACTIONS(1661), + [anon_sym_usz] = ACTIONS(1661), + [anon_sym_anyfault] = ACTIONS(1661), + [anon_sym_any] = ACTIONS(1661), + [anon_sym_DOLLARtypeof] = ACTIONS(1661), + [anon_sym_DOLLARtypefrom] = ACTIONS(1661), + [anon_sym_DOLLARevaltype] = ACTIONS(1661), + [anon_sym_DOLLARvatype] = ACTIONS(1661), + [sym_real_literal] = ACTIONS(1663), + }, + [539] = { + [sym_line_comment] = STATE(539), + [sym_doc_comment] = STATE(539), + [sym_block_comment] = STATE(539), + [sym_ident] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_bytes_literal] = ACTIONS(1583), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1581), + [sym_at_ident] = ACTIONS(1583), + [sym_hash_ident] = ACTIONS(1583), + [sym_type_ident] = ACTIONS(1583), + [sym_ct_type_ident] = ACTIONS(1583), + [sym_const_ident] = ACTIONS(1581), + [sym_builtin] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_tlocal] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_fn] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_var] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_defer] = ACTIONS(1581), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_nextcase] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_AMP_AMP] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_foreach] = ACTIONS(1581), + [anon_sym_foreach_r] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_int] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_asm] = ACTIONS(1581), + [anon_sym_DOLLARassert] = ACTIONS(1581), + [anon_sym_DOLLARerror] = ACTIONS(1581), + [anon_sym_DOLLARecho] = ACTIONS(1581), + [anon_sym_DOLLARif] = ACTIONS(1581), + [anon_sym_DOLLARendif] = ACTIONS(1581), + [anon_sym_DOLLARelse] = ACTIONS(1581), + [anon_sym_DOLLARswitch] = ACTIONS(1581), + [anon_sym_DOLLARfor] = ACTIONS(1581), + [anon_sym_DOLLARforeach] = ACTIONS(1581), + [anon_sym_DOLLARalignof] = ACTIONS(1581), + [anon_sym_DOLLARextnameof] = ACTIONS(1581), + [anon_sym_DOLLARnameof] = ACTIONS(1581), + [anon_sym_DOLLARoffsetof] = ACTIONS(1581), + [anon_sym_DOLLARqnameof] = ACTIONS(1581), + [anon_sym_DOLLARvaconst] = ACTIONS(1581), + [anon_sym_DOLLARvaarg] = ACTIONS(1581), + [anon_sym_DOLLARvaref] = ACTIONS(1581), + [anon_sym_DOLLARvaexpr] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_DOLLARvacount] = ACTIONS(1581), + [anon_sym_DOLLAReval] = ACTIONS(1581), + [anon_sym_DOLLARis_const] = ACTIONS(1581), + [anon_sym_DOLLARsizeof] = ACTIONS(1581), + [anon_sym_DOLLARstringify] = ACTIONS(1581), + [anon_sym_DOLLARappend] = ACTIONS(1581), + [anon_sym_DOLLARconcat] = ACTIONS(1581), + [anon_sym_DOLLARdefined] = ACTIONS(1581), + [anon_sym_DOLLARembed] = ACTIONS(1581), + [anon_sym_DOLLARand] = ACTIONS(1581), + [anon_sym_DOLLARor] = ACTIONS(1581), + [anon_sym_DOLLARfeature] = ACTIONS(1581), + [anon_sym_DOLLARassignable] = ACTIONS(1581), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_typeid] = ACTIONS(1581), + [anon_sym_LBRACE_PIPE] = ACTIONS(1583), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_bool] = ACTIONS(1581), + [anon_sym_char] = ACTIONS(1581), + [anon_sym_ichar] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [anon_sym_ushort] = ACTIONS(1581), + [anon_sym_uint] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_ulong] = ACTIONS(1581), + [anon_sym_int128] = ACTIONS(1581), + [anon_sym_uint128] = ACTIONS(1581), + [anon_sym_float] = ACTIONS(1581), + [anon_sym_double] = ACTIONS(1581), + [anon_sym_float16] = ACTIONS(1581), + [anon_sym_bfloat16] = ACTIONS(1581), + [anon_sym_float128] = ACTIONS(1581), + [anon_sym_iptr] = ACTIONS(1581), + [anon_sym_uptr] = ACTIONS(1581), + [anon_sym_isz] = ACTIONS(1581), + [anon_sym_usz] = ACTIONS(1581), + [anon_sym_anyfault] = ACTIONS(1581), + [anon_sym_any] = ACTIONS(1581), + [anon_sym_DOLLARtypeof] = ACTIONS(1581), + [anon_sym_DOLLARtypefrom] = ACTIONS(1581), + [anon_sym_DOLLARevaltype] = ACTIONS(1581), + [anon_sym_DOLLARvatype] = ACTIONS(1581), + [sym_real_literal] = ACTIONS(1583), + }, + [540] = { + [sym_line_comment] = STATE(540), + [sym_doc_comment] = STATE(540), + [sym_block_comment] = STATE(540), + [sym_ident] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1579), + [sym_bytes_literal] = ACTIONS(1579), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1577), + [sym_at_ident] = ACTIONS(1579), + [sym_hash_ident] = ACTIONS(1579), + [sym_type_ident] = ACTIONS(1579), + [sym_ct_type_ident] = ACTIONS(1579), + [sym_const_ident] = ACTIONS(1577), + [sym_builtin] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_tlocal] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_fn] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_var] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_defer] = ACTIONS(1577), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_nextcase] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_foreach] = ACTIONS(1577), + [anon_sym_foreach_r] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_int] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_asm] = ACTIONS(1577), + [anon_sym_DOLLARassert] = ACTIONS(1577), + [anon_sym_DOLLARerror] = ACTIONS(1577), + [anon_sym_DOLLARecho] = ACTIONS(1577), + [anon_sym_DOLLARif] = ACTIONS(1577), + [anon_sym_DOLLARendif] = ACTIONS(1577), + [anon_sym_DOLLARelse] = ACTIONS(1577), + [anon_sym_DOLLARswitch] = ACTIONS(1577), + [anon_sym_DOLLARfor] = ACTIONS(1577), + [anon_sym_DOLLARforeach] = ACTIONS(1577), + [anon_sym_DOLLARalignof] = ACTIONS(1577), + [anon_sym_DOLLARextnameof] = ACTIONS(1577), + [anon_sym_DOLLARnameof] = ACTIONS(1577), + [anon_sym_DOLLARoffsetof] = ACTIONS(1577), + [anon_sym_DOLLARqnameof] = ACTIONS(1577), + [anon_sym_DOLLARvaconst] = ACTIONS(1577), + [anon_sym_DOLLARvaarg] = ACTIONS(1577), + [anon_sym_DOLLARvaref] = ACTIONS(1577), + [anon_sym_DOLLARvaexpr] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_DOLLARvacount] = ACTIONS(1577), + [anon_sym_DOLLAReval] = ACTIONS(1577), + [anon_sym_DOLLARis_const] = ACTIONS(1577), + [anon_sym_DOLLARsizeof] = ACTIONS(1577), + [anon_sym_DOLLARstringify] = ACTIONS(1577), + [anon_sym_DOLLARappend] = ACTIONS(1577), + [anon_sym_DOLLARconcat] = ACTIONS(1577), + [anon_sym_DOLLARdefined] = ACTIONS(1577), + [anon_sym_DOLLARembed] = ACTIONS(1577), + [anon_sym_DOLLARand] = ACTIONS(1577), + [anon_sym_DOLLARor] = ACTIONS(1577), + [anon_sym_DOLLARfeature] = ACTIONS(1577), + [anon_sym_DOLLARassignable] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_typeid] = ACTIONS(1577), + [anon_sym_LBRACE_PIPE] = ACTIONS(1579), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_bool] = ACTIONS(1577), + [anon_sym_char] = ACTIONS(1577), + [anon_sym_ichar] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [anon_sym_ushort] = ACTIONS(1577), + [anon_sym_uint] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_ulong] = ACTIONS(1577), + [anon_sym_int128] = ACTIONS(1577), + [anon_sym_uint128] = ACTIONS(1577), + [anon_sym_float] = ACTIONS(1577), + [anon_sym_double] = ACTIONS(1577), + [anon_sym_float16] = ACTIONS(1577), + [anon_sym_bfloat16] = ACTIONS(1577), + [anon_sym_float128] = ACTIONS(1577), + [anon_sym_iptr] = ACTIONS(1577), + [anon_sym_uptr] = ACTIONS(1577), + [anon_sym_isz] = ACTIONS(1577), + [anon_sym_usz] = ACTIONS(1577), + [anon_sym_anyfault] = ACTIONS(1577), + [anon_sym_any] = ACTIONS(1577), + [anon_sym_DOLLARtypeof] = ACTIONS(1577), + [anon_sym_DOLLARtypefrom] = ACTIONS(1577), + [anon_sym_DOLLARevaltype] = ACTIONS(1577), + [anon_sym_DOLLARvatype] = ACTIONS(1577), + [sym_real_literal] = ACTIONS(1579), + }, + [541] = { + [sym_line_comment] = STATE(541), + [sym_doc_comment] = STATE(541), + [sym_block_comment] = STATE(541), + [sym_ident] = ACTIONS(1593), + [sym_integer_literal] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_bytes_literal] = ACTIONS(1595), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1593), + [sym_at_ident] = ACTIONS(1595), + [sym_hash_ident] = ACTIONS(1595), + [sym_type_ident] = ACTIONS(1595), + [sym_ct_type_ident] = ACTIONS(1595), + [sym_const_ident] = ACTIONS(1593), + [sym_builtin] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_tlocal] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_fn] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_defer] = ACTIONS(1593), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_nextcase] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_foreach] = ACTIONS(1593), + [anon_sym_foreach_r] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_asm] = ACTIONS(1593), + [anon_sym_DOLLARassert] = ACTIONS(1593), + [anon_sym_DOLLARerror] = ACTIONS(1593), + [anon_sym_DOLLARecho] = ACTIONS(1593), + [anon_sym_DOLLARif] = ACTIONS(1593), + [anon_sym_DOLLARendif] = ACTIONS(1593), + [anon_sym_DOLLARelse] = ACTIONS(1593), + [anon_sym_DOLLARswitch] = ACTIONS(1593), + [anon_sym_DOLLARfor] = ACTIONS(1593), + [anon_sym_DOLLARforeach] = ACTIONS(1593), + [anon_sym_DOLLARalignof] = ACTIONS(1593), + [anon_sym_DOLLARextnameof] = ACTIONS(1593), + [anon_sym_DOLLARnameof] = ACTIONS(1593), + [anon_sym_DOLLARoffsetof] = ACTIONS(1593), + [anon_sym_DOLLARqnameof] = ACTIONS(1593), + [anon_sym_DOLLARvaconst] = ACTIONS(1593), + [anon_sym_DOLLARvaarg] = ACTIONS(1593), + [anon_sym_DOLLARvaref] = ACTIONS(1593), + [anon_sym_DOLLARvaexpr] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_DOLLARvacount] = ACTIONS(1593), + [anon_sym_DOLLAReval] = ACTIONS(1593), + [anon_sym_DOLLARis_const] = ACTIONS(1593), + [anon_sym_DOLLARsizeof] = ACTIONS(1593), + [anon_sym_DOLLARstringify] = ACTIONS(1593), + [anon_sym_DOLLARappend] = ACTIONS(1593), + [anon_sym_DOLLARconcat] = ACTIONS(1593), + [anon_sym_DOLLARdefined] = ACTIONS(1593), + [anon_sym_DOLLARembed] = ACTIONS(1593), + [anon_sym_DOLLARand] = ACTIONS(1593), + [anon_sym_DOLLARor] = ACTIONS(1593), + [anon_sym_DOLLARfeature] = ACTIONS(1593), + [anon_sym_DOLLARassignable] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_DASH_DASH] = ACTIONS(1595), + [anon_sym_typeid] = ACTIONS(1593), + [anon_sym_LBRACE_PIPE] = ACTIONS(1595), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_ichar] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [anon_sym_ushort] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_ulong] = ACTIONS(1593), + [anon_sym_int128] = ACTIONS(1593), + [anon_sym_uint128] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_double] = ACTIONS(1593), + [anon_sym_float16] = ACTIONS(1593), + [anon_sym_bfloat16] = ACTIONS(1593), + [anon_sym_float128] = ACTIONS(1593), + [anon_sym_iptr] = ACTIONS(1593), + [anon_sym_uptr] = ACTIONS(1593), + [anon_sym_isz] = ACTIONS(1593), + [anon_sym_usz] = ACTIONS(1593), + [anon_sym_anyfault] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_DOLLARtypeof] = ACTIONS(1593), + [anon_sym_DOLLARtypefrom] = ACTIONS(1593), + [anon_sym_DOLLARevaltype] = ACTIONS(1593), + [anon_sym_DOLLARvatype] = ACTIONS(1593), + [sym_real_literal] = ACTIONS(1595), + }, + [542] = { + [sym_line_comment] = STATE(542), + [sym_doc_comment] = STATE(542), + [sym_block_comment] = STATE(542), + [sym_ident] = ACTIONS(1633), + [sym_integer_literal] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_bytes_literal] = ACTIONS(1635), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1633), + [sym_at_ident] = ACTIONS(1635), + [sym_hash_ident] = ACTIONS(1635), + [sym_type_ident] = ACTIONS(1635), + [sym_ct_type_ident] = ACTIONS(1635), + [sym_const_ident] = ACTIONS(1633), + [sym_builtin] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_tlocal] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_fn] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_var] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_defer] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1633), + [anon_sym_nextcase] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_foreach] = ACTIONS(1633), + [anon_sym_foreach_r] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1633), + [anon_sym_DOLLARassert] = ACTIONS(1633), + [anon_sym_DOLLARerror] = ACTIONS(1633), + [anon_sym_DOLLARecho] = ACTIONS(1633), + [anon_sym_DOLLARif] = ACTIONS(1633), + [anon_sym_DOLLARendif] = ACTIONS(1633), + [anon_sym_DOLLARelse] = ACTIONS(1633), + [anon_sym_DOLLARswitch] = ACTIONS(1633), + [anon_sym_DOLLARfor] = ACTIONS(1633), + [anon_sym_DOLLARforeach] = ACTIONS(1633), + [anon_sym_DOLLARalignof] = ACTIONS(1633), + [anon_sym_DOLLARextnameof] = ACTIONS(1633), + [anon_sym_DOLLARnameof] = ACTIONS(1633), + [anon_sym_DOLLARoffsetof] = ACTIONS(1633), + [anon_sym_DOLLARqnameof] = ACTIONS(1633), + [anon_sym_DOLLARvaconst] = ACTIONS(1633), + [anon_sym_DOLLARvaarg] = ACTIONS(1633), + [anon_sym_DOLLARvaref] = ACTIONS(1633), + [anon_sym_DOLLARvaexpr] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_DOLLARvacount] = ACTIONS(1633), + [anon_sym_DOLLAReval] = ACTIONS(1633), + [anon_sym_DOLLARis_const] = ACTIONS(1633), + [anon_sym_DOLLARsizeof] = ACTIONS(1633), + [anon_sym_DOLLARstringify] = ACTIONS(1633), + [anon_sym_DOLLARappend] = ACTIONS(1633), + [anon_sym_DOLLARconcat] = ACTIONS(1633), + [anon_sym_DOLLARdefined] = ACTIONS(1633), + [anon_sym_DOLLARembed] = ACTIONS(1633), + [anon_sym_DOLLARand] = ACTIONS(1633), + [anon_sym_DOLLARor] = ACTIONS(1633), + [anon_sym_DOLLARfeature] = ACTIONS(1633), + [anon_sym_DOLLARassignable] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_typeid] = ACTIONS(1633), + [anon_sym_LBRACE_PIPE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_ichar] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_ushort] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_ulong] = ACTIONS(1633), + [anon_sym_int128] = ACTIONS(1633), + [anon_sym_uint128] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_double] = ACTIONS(1633), + [anon_sym_float16] = ACTIONS(1633), + [anon_sym_bfloat16] = ACTIONS(1633), + [anon_sym_float128] = ACTIONS(1633), + [anon_sym_iptr] = ACTIONS(1633), + [anon_sym_uptr] = ACTIONS(1633), + [anon_sym_isz] = ACTIONS(1633), + [anon_sym_usz] = ACTIONS(1633), + [anon_sym_anyfault] = ACTIONS(1633), + [anon_sym_any] = ACTIONS(1633), + [anon_sym_DOLLARtypeof] = ACTIONS(1633), + [anon_sym_DOLLARtypefrom] = ACTIONS(1633), + [anon_sym_DOLLARevaltype] = ACTIONS(1633), + [anon_sym_DOLLARvatype] = ACTIONS(1633), + [sym_real_literal] = ACTIONS(1635), + }, + [543] = { + [sym_line_comment] = STATE(543), + [sym_doc_comment] = STATE(543), + [sym_block_comment] = STATE(543), + [sym_ident] = ACTIONS(1377), + [sym_integer_literal] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_BQUOTE] = ACTIONS(1379), + [sym_bytes_literal] = ACTIONS(1379), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1377), + [sym_at_ident] = ACTIONS(1379), + [sym_hash_ident] = ACTIONS(1379), + [sym_type_ident] = ACTIONS(1379), + [sym_ct_type_ident] = ACTIONS(1379), + [sym_const_ident] = ACTIONS(1377), + [sym_builtin] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1377), + [anon_sym_tlocal] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_fn] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1377), + [anon_sym_var] = ACTIONS(1377), + [anon_sym_return] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1377), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_defer] = ACTIONS(1377), + [anon_sym_assert] = ACTIONS(1377), + [anon_sym_nextcase] = ACTIONS(1377), + [anon_sym_switch] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1377), + [anon_sym_foreach] = ACTIONS(1377), + [anon_sym_foreach_r] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_do] = ACTIONS(1377), + [anon_sym_int] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_asm] = ACTIONS(1377), + [anon_sym_DOLLARassert] = ACTIONS(1377), + [anon_sym_DOLLARerror] = ACTIONS(1377), + [anon_sym_DOLLARecho] = ACTIONS(1377), + [anon_sym_DOLLARif] = ACTIONS(1377), + [anon_sym_DOLLARendif] = ACTIONS(1377), + [anon_sym_DOLLARelse] = ACTIONS(1377), + [anon_sym_DOLLARswitch] = ACTIONS(1377), + [anon_sym_DOLLARfor] = ACTIONS(1377), + [anon_sym_DOLLARforeach] = ACTIONS(1377), + [anon_sym_DOLLARalignof] = ACTIONS(1377), + [anon_sym_DOLLARextnameof] = ACTIONS(1377), + [anon_sym_DOLLARnameof] = ACTIONS(1377), + [anon_sym_DOLLARoffsetof] = ACTIONS(1377), + [anon_sym_DOLLARqnameof] = ACTIONS(1377), + [anon_sym_DOLLARvaconst] = ACTIONS(1377), + [anon_sym_DOLLARvaarg] = ACTIONS(1377), + [anon_sym_DOLLARvaref] = ACTIONS(1377), + [anon_sym_DOLLARvaexpr] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(1377), + [anon_sym_false] = ACTIONS(1377), + [anon_sym_null] = ACTIONS(1377), + [anon_sym_DOLLARvacount] = ACTIONS(1377), + [anon_sym_DOLLAReval] = ACTIONS(1377), + [anon_sym_DOLLARis_const] = ACTIONS(1377), + [anon_sym_DOLLARsizeof] = ACTIONS(1377), + [anon_sym_DOLLARstringify] = ACTIONS(1377), + [anon_sym_DOLLARappend] = ACTIONS(1377), + [anon_sym_DOLLARconcat] = ACTIONS(1377), + [anon_sym_DOLLARdefined] = ACTIONS(1377), + [anon_sym_DOLLARembed] = ACTIONS(1377), + [anon_sym_DOLLARand] = ACTIONS(1377), + [anon_sym_DOLLARor] = ACTIONS(1377), + [anon_sym_DOLLARfeature] = ACTIONS(1377), + [anon_sym_DOLLARassignable] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_typeid] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_bool] = ACTIONS(1377), + [anon_sym_char] = ACTIONS(1377), + [anon_sym_ichar] = ACTIONS(1377), + [anon_sym_short] = ACTIONS(1377), + [anon_sym_ushort] = ACTIONS(1377), + [anon_sym_uint] = ACTIONS(1377), + [anon_sym_long] = ACTIONS(1377), + [anon_sym_ulong] = ACTIONS(1377), + [anon_sym_int128] = ACTIONS(1377), + [anon_sym_uint128] = ACTIONS(1377), + [anon_sym_float] = ACTIONS(1377), + [anon_sym_double] = ACTIONS(1377), + [anon_sym_float16] = ACTIONS(1377), + [anon_sym_bfloat16] = ACTIONS(1377), + [anon_sym_float128] = ACTIONS(1377), + [anon_sym_iptr] = ACTIONS(1377), + [anon_sym_uptr] = ACTIONS(1377), + [anon_sym_isz] = ACTIONS(1377), + [anon_sym_usz] = ACTIONS(1377), + [anon_sym_anyfault] = ACTIONS(1377), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_DOLLARtypeof] = ACTIONS(1377), + [anon_sym_DOLLARtypefrom] = ACTIONS(1377), + [anon_sym_DOLLARevaltype] = ACTIONS(1377), + [anon_sym_DOLLARvatype] = ACTIONS(1377), + [sym_real_literal] = ACTIONS(1379), }, - [553] = { - [sym_line_comment] = STATE(553), - [sym_doc_comment] = STATE(553), - [sym_block_comment] = STATE(553), - [sym_ident] = ACTIONS(1421), - [sym_integer_literal] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1423), - [anon_sym_DQUOTE] = ACTIONS(1423), - [anon_sym_BQUOTE] = ACTIONS(1423), - [sym_bytes_literal] = ACTIONS(1423), + [544] = { + [sym_line_comment] = STATE(544), + [sym_doc_comment] = STATE(544), + [sym_block_comment] = STATE(544), + [sym_ident] = ACTIONS(1381), + [sym_integer_literal] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_BQUOTE] = ACTIONS(1383), + [sym_bytes_literal] = ACTIONS(1383), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1421), - [sym_at_ident] = ACTIONS(1423), - [sym_hash_ident] = ACTIONS(1423), - [sym_type_ident] = ACTIONS(1423), - [sym_ct_type_ident] = ACTIONS(1423), - [sym_const_ident] = ACTIONS(1421), - [sym_builtin] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_static] = ACTIONS(1421), - [anon_sym_tlocal] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym_fn] = ACTIONS(1421), - [anon_sym_LBRACE] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1421), - [anon_sym_return] = ACTIONS(1421), - [anon_sym_continue] = ACTIONS(1421), - [anon_sym_break] = ACTIONS(1421), - [anon_sym_defer] = ACTIONS(1421), - [anon_sym_assert] = ACTIONS(1421), - [anon_sym_nextcase] = ACTIONS(1421), - [anon_sym_switch] = ACTIONS(1421), - [anon_sym_AMP_AMP] = ACTIONS(1423), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_for] = ACTIONS(1421), - [anon_sym_foreach] = ACTIONS(1421), - [anon_sym_foreach_r] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1421), - [anon_sym_do] = ACTIONS(1421), - [anon_sym_int] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_asm] = ACTIONS(1421), - [anon_sym_DOLLARassert] = ACTIONS(1421), - [anon_sym_DOLLARerror] = ACTIONS(1421), - [anon_sym_DOLLARecho] = ACTIONS(1421), - [anon_sym_DOLLARif] = ACTIONS(1421), - [anon_sym_DOLLARendif] = ACTIONS(1421), - [anon_sym_DOLLARelse] = ACTIONS(1421), - [anon_sym_DOLLARswitch] = ACTIONS(1421), - [anon_sym_DOLLARfor] = ACTIONS(1421), - [anon_sym_DOLLARforeach] = ACTIONS(1421), - [anon_sym_DOLLARalignof] = ACTIONS(1421), - [anon_sym_DOLLARextnameof] = ACTIONS(1421), - [anon_sym_DOLLARnameof] = ACTIONS(1421), - [anon_sym_DOLLARoffsetof] = ACTIONS(1421), - [anon_sym_DOLLARqnameof] = ACTIONS(1421), - [anon_sym_DOLLAReval] = ACTIONS(1421), - [anon_sym_DOLLARdefined] = ACTIONS(1421), - [anon_sym_DOLLARsizeof] = ACTIONS(1421), - [anon_sym_DOLLARstringify] = ACTIONS(1421), - [anon_sym_DOLLARis_const] = ACTIONS(1421), - [anon_sym_DOLLARvaconst] = ACTIONS(1421), - [anon_sym_DOLLARvaarg] = ACTIONS(1421), - [anon_sym_DOLLARvaref] = ACTIONS(1421), - [anon_sym_DOLLARvaexpr] = ACTIONS(1421), - [anon_sym_true] = ACTIONS(1421), - [anon_sym_false] = ACTIONS(1421), - [anon_sym_null] = ACTIONS(1421), - [anon_sym_DOLLARvacount] = ACTIONS(1421), - [anon_sym_DOLLARfeature] = ACTIONS(1421), - [anon_sym_DOLLARand] = ACTIONS(1421), - [anon_sym_DOLLARor] = ACTIONS(1421), - [anon_sym_DOLLARassignable] = ACTIONS(1421), - [anon_sym_DOLLARembed] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_TILDE] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1423), - [anon_sym_typeid] = ACTIONS(1421), - [anon_sym_LBRACE_PIPE] = ACTIONS(1423), - [anon_sym_void] = ACTIONS(1421), - [anon_sym_bool] = ACTIONS(1421), - [anon_sym_char] = ACTIONS(1421), - [anon_sym_ichar] = ACTIONS(1421), - [anon_sym_short] = ACTIONS(1421), - [anon_sym_ushort] = ACTIONS(1421), - [anon_sym_uint] = ACTIONS(1421), - [anon_sym_long] = ACTIONS(1421), - [anon_sym_ulong] = ACTIONS(1421), - [anon_sym_int128] = ACTIONS(1421), - [anon_sym_uint128] = ACTIONS(1421), - [anon_sym_float] = ACTIONS(1421), - [anon_sym_double] = ACTIONS(1421), - [anon_sym_float16] = ACTIONS(1421), - [anon_sym_bfloat16] = ACTIONS(1421), - [anon_sym_float128] = ACTIONS(1421), - [anon_sym_iptr] = ACTIONS(1421), - [anon_sym_uptr] = ACTIONS(1421), - [anon_sym_isz] = ACTIONS(1421), - [anon_sym_usz] = ACTIONS(1421), - [anon_sym_anyfault] = ACTIONS(1421), - [anon_sym_any] = ACTIONS(1421), - [anon_sym_DOLLARtypeof] = ACTIONS(1421), - [anon_sym_DOLLARtypefrom] = ACTIONS(1421), - [anon_sym_DOLLARvatype] = ACTIONS(1421), - [anon_sym_DOLLARevaltype] = ACTIONS(1421), - [sym_real_literal] = ACTIONS(1423), + [sym_ct_ident] = ACTIONS(1381), + [sym_at_ident] = ACTIONS(1383), + [sym_hash_ident] = ACTIONS(1383), + [sym_type_ident] = ACTIONS(1383), + [sym_ct_type_ident] = ACTIONS(1383), + [sym_const_ident] = ACTIONS(1381), + [sym_builtin] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_tlocal] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_var] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_defer] = ACTIONS(1381), + [anon_sym_assert] = ACTIONS(1381), + [anon_sym_nextcase] = ACTIONS(1381), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_foreach] = ACTIONS(1381), + [anon_sym_foreach_r] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_int] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_asm] = ACTIONS(1381), + [anon_sym_DOLLARassert] = ACTIONS(1381), + [anon_sym_DOLLARerror] = ACTIONS(1381), + [anon_sym_DOLLARecho] = ACTIONS(1381), + [anon_sym_DOLLARif] = ACTIONS(1381), + [anon_sym_DOLLARendif] = ACTIONS(1381), + [anon_sym_DOLLARelse] = ACTIONS(1381), + [anon_sym_DOLLARswitch] = ACTIONS(1381), + [anon_sym_DOLLARfor] = ACTIONS(1381), + [anon_sym_DOLLARforeach] = ACTIONS(1381), + [anon_sym_DOLLARalignof] = ACTIONS(1381), + [anon_sym_DOLLARextnameof] = ACTIONS(1381), + [anon_sym_DOLLARnameof] = ACTIONS(1381), + [anon_sym_DOLLARoffsetof] = ACTIONS(1381), + [anon_sym_DOLLARqnameof] = ACTIONS(1381), + [anon_sym_DOLLARvaconst] = ACTIONS(1381), + [anon_sym_DOLLARvaarg] = ACTIONS(1381), + [anon_sym_DOLLARvaref] = ACTIONS(1381), + [anon_sym_DOLLARvaexpr] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_DOLLARvacount] = ACTIONS(1381), + [anon_sym_DOLLAReval] = ACTIONS(1381), + [anon_sym_DOLLARis_const] = ACTIONS(1381), + [anon_sym_DOLLARsizeof] = ACTIONS(1381), + [anon_sym_DOLLARstringify] = ACTIONS(1381), + [anon_sym_DOLLARappend] = ACTIONS(1381), + [anon_sym_DOLLARconcat] = ACTIONS(1381), + [anon_sym_DOLLARdefined] = ACTIONS(1381), + [anon_sym_DOLLARembed] = ACTIONS(1381), + [anon_sym_DOLLARand] = ACTIONS(1381), + [anon_sym_DOLLARor] = ACTIONS(1381), + [anon_sym_DOLLARfeature] = ACTIONS(1381), + [anon_sym_DOLLARassignable] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_typeid] = ACTIONS(1381), + [anon_sym_LBRACE_PIPE] = ACTIONS(1383), + [anon_sym_void] = ACTIONS(1381), + [anon_sym_bool] = ACTIONS(1381), + [anon_sym_char] = ACTIONS(1381), + [anon_sym_ichar] = ACTIONS(1381), + [anon_sym_short] = ACTIONS(1381), + [anon_sym_ushort] = ACTIONS(1381), + [anon_sym_uint] = ACTIONS(1381), + [anon_sym_long] = ACTIONS(1381), + [anon_sym_ulong] = ACTIONS(1381), + [anon_sym_int128] = ACTIONS(1381), + [anon_sym_uint128] = ACTIONS(1381), + [anon_sym_float] = ACTIONS(1381), + [anon_sym_double] = ACTIONS(1381), + [anon_sym_float16] = ACTIONS(1381), + [anon_sym_bfloat16] = ACTIONS(1381), + [anon_sym_float128] = ACTIONS(1381), + [anon_sym_iptr] = ACTIONS(1381), + [anon_sym_uptr] = ACTIONS(1381), + [anon_sym_isz] = ACTIONS(1381), + [anon_sym_usz] = ACTIONS(1381), + [anon_sym_anyfault] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_DOLLARtypeof] = ACTIONS(1381), + [anon_sym_DOLLARtypefrom] = ACTIONS(1381), + [anon_sym_DOLLARevaltype] = ACTIONS(1381), + [anon_sym_DOLLARvatype] = ACTIONS(1381), + [sym_real_literal] = ACTIONS(1383), }, - [554] = { - [sym_line_comment] = STATE(554), - [sym_doc_comment] = STATE(554), - [sym_block_comment] = STATE(554), - [sym_ident] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(1419), - [anon_sym_DQUOTE] = ACTIONS(1419), - [anon_sym_BQUOTE] = ACTIONS(1419), - [sym_bytes_literal] = ACTIONS(1419), + [545] = { + [sym_line_comment] = STATE(545), + [sym_doc_comment] = STATE(545), + [sym_block_comment] = STATE(545), + [sym_ident] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1387), + [sym_bytes_literal] = ACTIONS(1387), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1417), - [sym_at_ident] = ACTIONS(1419), - [sym_hash_ident] = ACTIONS(1419), - [sym_type_ident] = ACTIONS(1419), - [sym_ct_type_ident] = ACTIONS(1419), - [sym_const_ident] = ACTIONS(1417), - [sym_builtin] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1417), - [anon_sym_static] = ACTIONS(1417), - [anon_sym_tlocal] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1419), - [anon_sym_fn] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_const] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1417), - [anon_sym_return] = ACTIONS(1417), - [anon_sym_continue] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1417), - [anon_sym_defer] = ACTIONS(1417), - [anon_sym_assert] = ACTIONS(1417), - [anon_sym_nextcase] = ACTIONS(1417), - [anon_sym_switch] = ACTIONS(1417), - [anon_sym_AMP_AMP] = ACTIONS(1419), - [anon_sym_if] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1417), - [anon_sym_foreach] = ACTIONS(1417), - [anon_sym_foreach_r] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1417), - [anon_sym_do] = ACTIONS(1417), - [anon_sym_int] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_asm] = ACTIONS(1417), - [anon_sym_DOLLARassert] = ACTIONS(1417), - [anon_sym_DOLLARerror] = ACTIONS(1417), - [anon_sym_DOLLARecho] = ACTIONS(1417), - [anon_sym_DOLLARif] = ACTIONS(1417), - [anon_sym_DOLLARendif] = ACTIONS(1417), - [anon_sym_DOLLARelse] = ACTIONS(1417), - [anon_sym_DOLLARswitch] = ACTIONS(1417), - [anon_sym_DOLLARfor] = ACTIONS(1417), - [anon_sym_DOLLARforeach] = ACTIONS(1417), - [anon_sym_DOLLARalignof] = ACTIONS(1417), - [anon_sym_DOLLARextnameof] = ACTIONS(1417), - [anon_sym_DOLLARnameof] = ACTIONS(1417), - [anon_sym_DOLLARoffsetof] = ACTIONS(1417), - [anon_sym_DOLLARqnameof] = ACTIONS(1417), - [anon_sym_DOLLAReval] = ACTIONS(1417), - [anon_sym_DOLLARdefined] = ACTIONS(1417), - [anon_sym_DOLLARsizeof] = ACTIONS(1417), - [anon_sym_DOLLARstringify] = ACTIONS(1417), - [anon_sym_DOLLARis_const] = ACTIONS(1417), - [anon_sym_DOLLARvaconst] = ACTIONS(1417), - [anon_sym_DOLLARvaarg] = ACTIONS(1417), - [anon_sym_DOLLARvaref] = ACTIONS(1417), - [anon_sym_DOLLARvaexpr] = ACTIONS(1417), - [anon_sym_true] = ACTIONS(1417), - [anon_sym_false] = ACTIONS(1417), - [anon_sym_null] = ACTIONS(1417), - [anon_sym_DOLLARvacount] = ACTIONS(1417), - [anon_sym_DOLLARfeature] = ACTIONS(1417), - [anon_sym_DOLLARand] = ACTIONS(1417), - [anon_sym_DOLLARor] = ACTIONS(1417), - [anon_sym_DOLLARassignable] = ACTIONS(1417), - [anon_sym_DOLLARembed] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_typeid] = ACTIONS(1417), - [anon_sym_LBRACE_PIPE] = ACTIONS(1419), - [anon_sym_void] = ACTIONS(1417), - [anon_sym_bool] = ACTIONS(1417), - [anon_sym_char] = ACTIONS(1417), - [anon_sym_ichar] = ACTIONS(1417), - [anon_sym_short] = ACTIONS(1417), - [anon_sym_ushort] = ACTIONS(1417), - [anon_sym_uint] = ACTIONS(1417), - [anon_sym_long] = ACTIONS(1417), - [anon_sym_ulong] = ACTIONS(1417), - [anon_sym_int128] = ACTIONS(1417), - [anon_sym_uint128] = ACTIONS(1417), - [anon_sym_float] = ACTIONS(1417), - [anon_sym_double] = ACTIONS(1417), - [anon_sym_float16] = ACTIONS(1417), - [anon_sym_bfloat16] = ACTIONS(1417), - [anon_sym_float128] = ACTIONS(1417), - [anon_sym_iptr] = ACTIONS(1417), - [anon_sym_uptr] = ACTIONS(1417), - [anon_sym_isz] = ACTIONS(1417), - [anon_sym_usz] = ACTIONS(1417), - [anon_sym_anyfault] = ACTIONS(1417), - [anon_sym_any] = ACTIONS(1417), - [anon_sym_DOLLARtypeof] = ACTIONS(1417), - [anon_sym_DOLLARtypefrom] = ACTIONS(1417), - [anon_sym_DOLLARvatype] = ACTIONS(1417), - [anon_sym_DOLLARevaltype] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1419), + [sym_ct_ident] = ACTIONS(1385), + [sym_at_ident] = ACTIONS(1387), + [sym_hash_ident] = ACTIONS(1387), + [sym_type_ident] = ACTIONS(1387), + [sym_ct_type_ident] = ACTIONS(1387), + [sym_const_ident] = ACTIONS(1385), + [sym_builtin] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_static] = ACTIONS(1385), + [anon_sym_tlocal] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_fn] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_var] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1385), + [anon_sym_continue] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1385), + [anon_sym_defer] = ACTIONS(1385), + [anon_sym_assert] = ACTIONS(1385), + [anon_sym_nextcase] = ACTIONS(1385), + [anon_sym_switch] = ACTIONS(1385), + [anon_sym_AMP_AMP] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1385), + [anon_sym_foreach] = ACTIONS(1385), + [anon_sym_foreach_r] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(1385), + [anon_sym_int] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_asm] = ACTIONS(1385), + [anon_sym_DOLLARassert] = ACTIONS(1385), + [anon_sym_DOLLARerror] = ACTIONS(1385), + [anon_sym_DOLLARecho] = ACTIONS(1385), + [anon_sym_DOLLARif] = ACTIONS(1385), + [anon_sym_DOLLARendif] = ACTIONS(1385), + [anon_sym_DOLLARelse] = ACTIONS(1385), + [anon_sym_DOLLARswitch] = ACTIONS(1385), + [anon_sym_DOLLARfor] = ACTIONS(1385), + [anon_sym_DOLLARforeach] = ACTIONS(1385), + [anon_sym_DOLLARalignof] = ACTIONS(1385), + [anon_sym_DOLLARextnameof] = ACTIONS(1385), + [anon_sym_DOLLARnameof] = ACTIONS(1385), + [anon_sym_DOLLARoffsetof] = ACTIONS(1385), + [anon_sym_DOLLARqnameof] = ACTIONS(1385), + [anon_sym_DOLLARvaconst] = ACTIONS(1385), + [anon_sym_DOLLARvaarg] = ACTIONS(1385), + [anon_sym_DOLLARvaref] = ACTIONS(1385), + [anon_sym_DOLLARvaexpr] = ACTIONS(1385), + [anon_sym_true] = ACTIONS(1385), + [anon_sym_false] = ACTIONS(1385), + [anon_sym_null] = ACTIONS(1385), + [anon_sym_DOLLARvacount] = ACTIONS(1385), + [anon_sym_DOLLAReval] = ACTIONS(1385), + [anon_sym_DOLLARis_const] = ACTIONS(1385), + [anon_sym_DOLLARsizeof] = ACTIONS(1385), + [anon_sym_DOLLARstringify] = ACTIONS(1385), + [anon_sym_DOLLARappend] = ACTIONS(1385), + [anon_sym_DOLLARconcat] = ACTIONS(1385), + [anon_sym_DOLLARdefined] = ACTIONS(1385), + [anon_sym_DOLLARembed] = ACTIONS(1385), + [anon_sym_DOLLARand] = ACTIONS(1385), + [anon_sym_DOLLARor] = ACTIONS(1385), + [anon_sym_DOLLARfeature] = ACTIONS(1385), + [anon_sym_DOLLARassignable] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_typeid] = ACTIONS(1385), + [anon_sym_LBRACE_PIPE] = ACTIONS(1387), + [anon_sym_void] = ACTIONS(1385), + [anon_sym_bool] = ACTIONS(1385), + [anon_sym_char] = ACTIONS(1385), + [anon_sym_ichar] = ACTIONS(1385), + [anon_sym_short] = ACTIONS(1385), + [anon_sym_ushort] = ACTIONS(1385), + [anon_sym_uint] = ACTIONS(1385), + [anon_sym_long] = ACTIONS(1385), + [anon_sym_ulong] = ACTIONS(1385), + [anon_sym_int128] = ACTIONS(1385), + [anon_sym_uint128] = ACTIONS(1385), + [anon_sym_float] = ACTIONS(1385), + [anon_sym_double] = ACTIONS(1385), + [anon_sym_float16] = ACTIONS(1385), + [anon_sym_bfloat16] = ACTIONS(1385), + [anon_sym_float128] = ACTIONS(1385), + [anon_sym_iptr] = ACTIONS(1385), + [anon_sym_uptr] = ACTIONS(1385), + [anon_sym_isz] = ACTIONS(1385), + [anon_sym_usz] = ACTIONS(1385), + [anon_sym_anyfault] = ACTIONS(1385), + [anon_sym_any] = ACTIONS(1385), + [anon_sym_DOLLARtypeof] = ACTIONS(1385), + [anon_sym_DOLLARtypefrom] = ACTIONS(1385), + [anon_sym_DOLLARevaltype] = ACTIONS(1385), + [anon_sym_DOLLARvatype] = ACTIONS(1385), + [sym_real_literal] = ACTIONS(1387), }, - [555] = { - [sym_line_comment] = STATE(555), - [sym_doc_comment] = STATE(555), - [sym_block_comment] = STATE(555), - [sym_ident] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1415), - [anon_sym_BQUOTE] = ACTIONS(1415), - [sym_bytes_literal] = ACTIONS(1415), + [546] = { + [sym_line_comment] = STATE(546), + [sym_doc_comment] = STATE(546), + [sym_block_comment] = STATE(546), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1413), - [sym_at_ident] = ACTIONS(1415), - [sym_hash_ident] = ACTIONS(1415), - [sym_type_ident] = ACTIONS(1415), - [sym_ct_type_ident] = ACTIONS(1415), - [sym_const_ident] = ACTIONS(1413), - [sym_builtin] = ACTIONS(1415), - [anon_sym_LPAREN] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_tlocal] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_fn] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_defer] = ACTIONS(1413), - [anon_sym_assert] = ACTIONS(1413), - [anon_sym_nextcase] = ACTIONS(1413), - [anon_sym_switch] = ACTIONS(1413), - [anon_sym_AMP_AMP] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_foreach] = ACTIONS(1413), - [anon_sym_foreach_r] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_int] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_asm] = ACTIONS(1413), - [anon_sym_DOLLARassert] = ACTIONS(1413), - [anon_sym_DOLLARerror] = ACTIONS(1413), - [anon_sym_DOLLARecho] = ACTIONS(1413), - [anon_sym_DOLLARif] = ACTIONS(1413), - [anon_sym_DOLLARendif] = ACTIONS(1413), - [anon_sym_DOLLARelse] = ACTIONS(1413), - [anon_sym_DOLLARswitch] = ACTIONS(1413), - [anon_sym_DOLLARfor] = ACTIONS(1413), - [anon_sym_DOLLARforeach] = ACTIONS(1413), - [anon_sym_DOLLARalignof] = ACTIONS(1413), - [anon_sym_DOLLARextnameof] = ACTIONS(1413), - [anon_sym_DOLLARnameof] = ACTIONS(1413), - [anon_sym_DOLLARoffsetof] = ACTIONS(1413), - [anon_sym_DOLLARqnameof] = ACTIONS(1413), - [anon_sym_DOLLAReval] = ACTIONS(1413), - [anon_sym_DOLLARdefined] = ACTIONS(1413), - [anon_sym_DOLLARsizeof] = ACTIONS(1413), - [anon_sym_DOLLARstringify] = ACTIONS(1413), - [anon_sym_DOLLARis_const] = ACTIONS(1413), - [anon_sym_DOLLARvaconst] = ACTIONS(1413), - [anon_sym_DOLLARvaarg] = ACTIONS(1413), - [anon_sym_DOLLARvaref] = ACTIONS(1413), - [anon_sym_DOLLARvaexpr] = ACTIONS(1413), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_null] = ACTIONS(1413), - [anon_sym_DOLLARvacount] = ACTIONS(1413), - [anon_sym_DOLLARfeature] = ACTIONS(1413), - [anon_sym_DOLLARand] = ACTIONS(1413), - [anon_sym_DOLLARor] = ACTIONS(1413), - [anon_sym_DOLLARassignable] = ACTIONS(1413), - [anon_sym_DOLLARembed] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_typeid] = ACTIONS(1413), - [anon_sym_LBRACE_PIPE] = ACTIONS(1415), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_bool] = ACTIONS(1413), - [anon_sym_char] = ACTIONS(1413), - [anon_sym_ichar] = ACTIONS(1413), - [anon_sym_short] = ACTIONS(1413), - [anon_sym_ushort] = ACTIONS(1413), - [anon_sym_uint] = ACTIONS(1413), - [anon_sym_long] = ACTIONS(1413), - [anon_sym_ulong] = ACTIONS(1413), - [anon_sym_int128] = ACTIONS(1413), - [anon_sym_uint128] = ACTIONS(1413), - [anon_sym_float] = ACTIONS(1413), - [anon_sym_double] = ACTIONS(1413), - [anon_sym_float16] = ACTIONS(1413), - [anon_sym_bfloat16] = ACTIONS(1413), - [anon_sym_float128] = ACTIONS(1413), - [anon_sym_iptr] = ACTIONS(1413), - [anon_sym_uptr] = ACTIONS(1413), - [anon_sym_isz] = ACTIONS(1413), - [anon_sym_usz] = ACTIONS(1413), - [anon_sym_anyfault] = ACTIONS(1413), - [anon_sym_any] = ACTIONS(1413), - [anon_sym_DOLLARtypeof] = ACTIONS(1413), - [anon_sym_DOLLARtypefrom] = ACTIONS(1413), - [anon_sym_DOLLARvatype] = ACTIONS(1413), - [anon_sym_DOLLARevaltype] = ACTIONS(1413), - [sym_real_literal] = ACTIONS(1415), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARendif] = ACTIONS(1357), + [anon_sym_DOLLARelse] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), }, - [556] = { - [sym_line_comment] = STATE(556), - [sym_doc_comment] = STATE(556), - [sym_block_comment] = STATE(556), - [sym_ident] = ACTIONS(1409), - [sym_integer_literal] = ACTIONS(1411), - [anon_sym_SQUOTE] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [anon_sym_BQUOTE] = ACTIONS(1411), - [sym_bytes_literal] = ACTIONS(1411), + [547] = { + [sym_line_comment] = STATE(547), + [sym_doc_comment] = STATE(547), + [sym_block_comment] = STATE(547), + [sym_ident] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_bytes_literal] = ACTIONS(1547), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1545), + [sym_at_ident] = ACTIONS(1547), + [sym_hash_ident] = ACTIONS(1547), + [sym_type_ident] = ACTIONS(1547), + [sym_ct_type_ident] = ACTIONS(1547), + [sym_const_ident] = ACTIONS(1545), + [sym_builtin] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_tlocal] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_fn] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_defer] = ACTIONS(1545), + [anon_sym_assert] = ACTIONS(1545), + [anon_sym_nextcase] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_foreach] = ACTIONS(1545), + [anon_sym_foreach_r] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_int] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_asm] = ACTIONS(1545), + [anon_sym_DOLLARassert] = ACTIONS(1545), + [anon_sym_DOLLARerror] = ACTIONS(1545), + [anon_sym_DOLLARecho] = ACTIONS(1545), + [anon_sym_DOLLARif] = ACTIONS(1545), + [anon_sym_DOLLARendif] = ACTIONS(1545), + [anon_sym_DOLLARelse] = ACTIONS(1545), + [anon_sym_DOLLARswitch] = ACTIONS(1545), + [anon_sym_DOLLARfor] = ACTIONS(1545), + [anon_sym_DOLLARforeach] = ACTIONS(1545), + [anon_sym_DOLLARalignof] = ACTIONS(1545), + [anon_sym_DOLLARextnameof] = ACTIONS(1545), + [anon_sym_DOLLARnameof] = ACTIONS(1545), + [anon_sym_DOLLARoffsetof] = ACTIONS(1545), + [anon_sym_DOLLARqnameof] = ACTIONS(1545), + [anon_sym_DOLLARvaconst] = ACTIONS(1545), + [anon_sym_DOLLARvaarg] = ACTIONS(1545), + [anon_sym_DOLLARvaref] = ACTIONS(1545), + [anon_sym_DOLLARvaexpr] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_DOLLARvacount] = ACTIONS(1545), + [anon_sym_DOLLAReval] = ACTIONS(1545), + [anon_sym_DOLLARis_const] = ACTIONS(1545), + [anon_sym_DOLLARsizeof] = ACTIONS(1545), + [anon_sym_DOLLARstringify] = ACTIONS(1545), + [anon_sym_DOLLARappend] = ACTIONS(1545), + [anon_sym_DOLLARconcat] = ACTIONS(1545), + [anon_sym_DOLLARdefined] = ACTIONS(1545), + [anon_sym_DOLLARembed] = ACTIONS(1545), + [anon_sym_DOLLARand] = ACTIONS(1545), + [anon_sym_DOLLARor] = ACTIONS(1545), + [anon_sym_DOLLARfeature] = ACTIONS(1545), + [anon_sym_DOLLARassignable] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1547), + [anon_sym_typeid] = ACTIONS(1545), + [anon_sym_LBRACE_PIPE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_ichar] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [anon_sym_ushort] = ACTIONS(1545), + [anon_sym_uint] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_ulong] = ACTIONS(1545), + [anon_sym_int128] = ACTIONS(1545), + [anon_sym_uint128] = ACTIONS(1545), + [anon_sym_float] = ACTIONS(1545), + [anon_sym_double] = ACTIONS(1545), + [anon_sym_float16] = ACTIONS(1545), + [anon_sym_bfloat16] = ACTIONS(1545), + [anon_sym_float128] = ACTIONS(1545), + [anon_sym_iptr] = ACTIONS(1545), + [anon_sym_uptr] = ACTIONS(1545), + [anon_sym_isz] = ACTIONS(1545), + [anon_sym_usz] = ACTIONS(1545), + [anon_sym_anyfault] = ACTIONS(1545), + [anon_sym_any] = ACTIONS(1545), + [anon_sym_DOLLARtypeof] = ACTIONS(1545), + [anon_sym_DOLLARtypefrom] = ACTIONS(1545), + [anon_sym_DOLLARevaltype] = ACTIONS(1545), + [anon_sym_DOLLARvatype] = ACTIONS(1545), + [sym_real_literal] = ACTIONS(1547), + }, + [548] = { + [sym_line_comment] = STATE(548), + [sym_doc_comment] = STATE(548), + [sym_block_comment] = STATE(548), + [sym_ident] = ACTIONS(1389), + [sym_integer_literal] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [anon_sym_BQUOTE] = ACTIONS(1391), + [sym_bytes_literal] = ACTIONS(1391), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1409), - [sym_at_ident] = ACTIONS(1411), - [sym_hash_ident] = ACTIONS(1411), - [sym_type_ident] = ACTIONS(1411), - [sym_ct_type_ident] = ACTIONS(1411), - [sym_const_ident] = ACTIONS(1409), - [sym_builtin] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_tlocal] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_fn] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_var] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_defer] = ACTIONS(1409), - [anon_sym_assert] = ACTIONS(1409), - [anon_sym_nextcase] = ACTIONS(1409), - [anon_sym_switch] = ACTIONS(1409), - [anon_sym_AMP_AMP] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_foreach] = ACTIONS(1409), - [anon_sym_foreach_r] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_do] = ACTIONS(1409), - [anon_sym_int] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_asm] = ACTIONS(1409), - [anon_sym_DOLLARassert] = ACTIONS(1409), - [anon_sym_DOLLARerror] = ACTIONS(1409), - [anon_sym_DOLLARecho] = ACTIONS(1409), - [anon_sym_DOLLARif] = ACTIONS(1409), - [anon_sym_DOLLARendif] = ACTIONS(1409), - [anon_sym_DOLLARelse] = ACTIONS(1409), - [anon_sym_DOLLARswitch] = ACTIONS(1409), - [anon_sym_DOLLARfor] = ACTIONS(1409), - [anon_sym_DOLLARforeach] = ACTIONS(1409), - [anon_sym_DOLLARalignof] = ACTIONS(1409), - [anon_sym_DOLLARextnameof] = ACTIONS(1409), - [anon_sym_DOLLARnameof] = ACTIONS(1409), - [anon_sym_DOLLARoffsetof] = ACTIONS(1409), - [anon_sym_DOLLARqnameof] = ACTIONS(1409), - [anon_sym_DOLLAReval] = ACTIONS(1409), - [anon_sym_DOLLARdefined] = ACTIONS(1409), - [anon_sym_DOLLARsizeof] = ACTIONS(1409), - [anon_sym_DOLLARstringify] = ACTIONS(1409), - [anon_sym_DOLLARis_const] = ACTIONS(1409), - [anon_sym_DOLLARvaconst] = ACTIONS(1409), - [anon_sym_DOLLARvaarg] = ACTIONS(1409), - [anon_sym_DOLLARvaref] = ACTIONS(1409), - [anon_sym_DOLLARvaexpr] = ACTIONS(1409), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_DOLLARvacount] = ACTIONS(1409), - [anon_sym_DOLLARfeature] = ACTIONS(1409), - [anon_sym_DOLLARand] = ACTIONS(1409), - [anon_sym_DOLLARor] = ACTIONS(1409), - [anon_sym_DOLLARassignable] = ACTIONS(1409), - [anon_sym_DOLLARembed] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_typeid] = ACTIONS(1409), - [anon_sym_LBRACE_PIPE] = ACTIONS(1411), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_bool] = ACTIONS(1409), - [anon_sym_char] = ACTIONS(1409), - [anon_sym_ichar] = ACTIONS(1409), - [anon_sym_short] = ACTIONS(1409), - [anon_sym_ushort] = ACTIONS(1409), - [anon_sym_uint] = ACTIONS(1409), - [anon_sym_long] = ACTIONS(1409), - [anon_sym_ulong] = ACTIONS(1409), - [anon_sym_int128] = ACTIONS(1409), - [anon_sym_uint128] = ACTIONS(1409), - [anon_sym_float] = ACTIONS(1409), - [anon_sym_double] = ACTIONS(1409), - [anon_sym_float16] = ACTIONS(1409), - [anon_sym_bfloat16] = ACTIONS(1409), - [anon_sym_float128] = ACTIONS(1409), - [anon_sym_iptr] = ACTIONS(1409), - [anon_sym_uptr] = ACTIONS(1409), - [anon_sym_isz] = ACTIONS(1409), - [anon_sym_usz] = ACTIONS(1409), - [anon_sym_anyfault] = ACTIONS(1409), - [anon_sym_any] = ACTIONS(1409), - [anon_sym_DOLLARtypeof] = ACTIONS(1409), - [anon_sym_DOLLARtypefrom] = ACTIONS(1409), - [anon_sym_DOLLARvatype] = ACTIONS(1409), - [anon_sym_DOLLARevaltype] = ACTIONS(1409), - [sym_real_literal] = ACTIONS(1411), + [sym_ct_ident] = ACTIONS(1389), + [sym_at_ident] = ACTIONS(1391), + [sym_hash_ident] = ACTIONS(1391), + [sym_type_ident] = ACTIONS(1391), + [sym_ct_type_ident] = ACTIONS(1391), + [sym_const_ident] = ACTIONS(1389), + [sym_builtin] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_tlocal] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_fn] = ACTIONS(1389), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_const] = ACTIONS(1389), + [anon_sym_var] = ACTIONS(1389), + [anon_sym_return] = ACTIONS(1389), + [anon_sym_continue] = ACTIONS(1389), + [anon_sym_break] = ACTIONS(1389), + [anon_sym_defer] = ACTIONS(1389), + [anon_sym_assert] = ACTIONS(1389), + [anon_sym_nextcase] = ACTIONS(1389), + [anon_sym_switch] = ACTIONS(1389), + [anon_sym_AMP_AMP] = ACTIONS(1391), + [anon_sym_if] = ACTIONS(1389), + [anon_sym_for] = ACTIONS(1389), + [anon_sym_foreach] = ACTIONS(1389), + [anon_sym_foreach_r] = ACTIONS(1389), + [anon_sym_while] = ACTIONS(1389), + [anon_sym_do] = ACTIONS(1389), + [anon_sym_int] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_asm] = ACTIONS(1389), + [anon_sym_DOLLARassert] = ACTIONS(1389), + [anon_sym_DOLLARerror] = ACTIONS(1389), + [anon_sym_DOLLARecho] = ACTIONS(1389), + [anon_sym_DOLLARif] = ACTIONS(1389), + [anon_sym_DOLLARendif] = ACTIONS(1389), + [anon_sym_DOLLARelse] = ACTIONS(1389), + [anon_sym_DOLLARswitch] = ACTIONS(1389), + [anon_sym_DOLLARfor] = ACTIONS(1389), + [anon_sym_DOLLARforeach] = ACTIONS(1389), + [anon_sym_DOLLARalignof] = ACTIONS(1389), + [anon_sym_DOLLARextnameof] = ACTIONS(1389), + [anon_sym_DOLLARnameof] = ACTIONS(1389), + [anon_sym_DOLLARoffsetof] = ACTIONS(1389), + [anon_sym_DOLLARqnameof] = ACTIONS(1389), + [anon_sym_DOLLARvaconst] = ACTIONS(1389), + [anon_sym_DOLLARvaarg] = ACTIONS(1389), + [anon_sym_DOLLARvaref] = ACTIONS(1389), + [anon_sym_DOLLARvaexpr] = ACTIONS(1389), + [anon_sym_true] = ACTIONS(1389), + [anon_sym_false] = ACTIONS(1389), + [anon_sym_null] = ACTIONS(1389), + [anon_sym_DOLLARvacount] = ACTIONS(1389), + [anon_sym_DOLLAReval] = ACTIONS(1389), + [anon_sym_DOLLARis_const] = ACTIONS(1389), + [anon_sym_DOLLARsizeof] = ACTIONS(1389), + [anon_sym_DOLLARstringify] = ACTIONS(1389), + [anon_sym_DOLLARappend] = ACTIONS(1389), + [anon_sym_DOLLARconcat] = ACTIONS(1389), + [anon_sym_DOLLARdefined] = ACTIONS(1389), + [anon_sym_DOLLARembed] = ACTIONS(1389), + [anon_sym_DOLLARand] = ACTIONS(1389), + [anon_sym_DOLLARor] = ACTIONS(1389), + [anon_sym_DOLLARfeature] = ACTIONS(1389), + [anon_sym_DOLLARassignable] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1391), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_DASH_DASH] = ACTIONS(1391), + [anon_sym_typeid] = ACTIONS(1389), + [anon_sym_LBRACE_PIPE] = ACTIONS(1391), + [anon_sym_void] = ACTIONS(1389), + [anon_sym_bool] = ACTIONS(1389), + [anon_sym_char] = ACTIONS(1389), + [anon_sym_ichar] = ACTIONS(1389), + [anon_sym_short] = ACTIONS(1389), + [anon_sym_ushort] = ACTIONS(1389), + [anon_sym_uint] = ACTIONS(1389), + [anon_sym_long] = ACTIONS(1389), + [anon_sym_ulong] = ACTIONS(1389), + [anon_sym_int128] = ACTIONS(1389), + [anon_sym_uint128] = ACTIONS(1389), + [anon_sym_float] = ACTIONS(1389), + [anon_sym_double] = ACTIONS(1389), + [anon_sym_float16] = ACTIONS(1389), + [anon_sym_bfloat16] = ACTIONS(1389), + [anon_sym_float128] = ACTIONS(1389), + [anon_sym_iptr] = ACTIONS(1389), + [anon_sym_uptr] = ACTIONS(1389), + [anon_sym_isz] = ACTIONS(1389), + [anon_sym_usz] = ACTIONS(1389), + [anon_sym_anyfault] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_DOLLARtypeof] = ACTIONS(1389), + [anon_sym_DOLLARtypefrom] = ACTIONS(1389), + [anon_sym_DOLLARevaltype] = ACTIONS(1389), + [anon_sym_DOLLARvatype] = ACTIONS(1389), + [sym_real_literal] = ACTIONS(1391), + }, + [549] = { + [sym_line_comment] = STATE(549), + [sym_doc_comment] = STATE(549), + [sym_block_comment] = STATE(549), + [sym_ident] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [sym_bytes_literal] = ACTIONS(1369), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1367), + [sym_at_ident] = ACTIONS(1369), + [sym_hash_ident] = ACTIONS(1369), + [sym_type_ident] = ACTIONS(1369), + [sym_ct_type_ident] = ACTIONS(1369), + [sym_const_ident] = ACTIONS(1367), + [sym_builtin] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_tlocal] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(1367), + [anon_sym_LBRACE] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_var] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_defer] = ACTIONS(1367), + [anon_sym_assert] = ACTIONS(1367), + [anon_sym_nextcase] = ACTIONS(1367), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_else] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_foreach] = ACTIONS(1367), + [anon_sym_foreach_r] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_do] = ACTIONS(1367), + [anon_sym_int] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_asm] = ACTIONS(1367), + [anon_sym_DOLLARassert] = ACTIONS(1367), + [anon_sym_DOLLARerror] = ACTIONS(1367), + [anon_sym_DOLLARecho] = ACTIONS(1367), + [anon_sym_DOLLARif] = ACTIONS(1367), + [anon_sym_DOLLARswitch] = ACTIONS(1367), + [anon_sym_DOLLARfor] = ACTIONS(1367), + [anon_sym_DOLLARforeach] = ACTIONS(1367), + [anon_sym_DOLLARendforeach] = ACTIONS(1367), + [anon_sym_DOLLARalignof] = ACTIONS(1367), + [anon_sym_DOLLARextnameof] = ACTIONS(1367), + [anon_sym_DOLLARnameof] = ACTIONS(1367), + [anon_sym_DOLLARoffsetof] = ACTIONS(1367), + [anon_sym_DOLLARqnameof] = ACTIONS(1367), + [anon_sym_DOLLARvaconst] = ACTIONS(1367), + [anon_sym_DOLLARvaarg] = ACTIONS(1367), + [anon_sym_DOLLARvaref] = ACTIONS(1367), + [anon_sym_DOLLARvaexpr] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_null] = ACTIONS(1367), + [anon_sym_DOLLARvacount] = ACTIONS(1367), + [anon_sym_DOLLAReval] = ACTIONS(1367), + [anon_sym_DOLLARis_const] = ACTIONS(1367), + [anon_sym_DOLLARsizeof] = ACTIONS(1367), + [anon_sym_DOLLARstringify] = ACTIONS(1367), + [anon_sym_DOLLARappend] = ACTIONS(1367), + [anon_sym_DOLLARconcat] = ACTIONS(1367), + [anon_sym_DOLLARdefined] = ACTIONS(1367), + [anon_sym_DOLLARembed] = ACTIONS(1367), + [anon_sym_DOLLARand] = ACTIONS(1367), + [anon_sym_DOLLARor] = ACTIONS(1367), + [anon_sym_DOLLARfeature] = ACTIONS(1367), + [anon_sym_DOLLARassignable] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [anon_sym_PLUS_PLUS] = ACTIONS(1369), + [anon_sym_DASH_DASH] = ACTIONS(1369), + [anon_sym_typeid] = ACTIONS(1367), + [anon_sym_LBRACE_PIPE] = ACTIONS(1369), + [anon_sym_void] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_ichar] = ACTIONS(1367), + [anon_sym_short] = ACTIONS(1367), + [anon_sym_ushort] = ACTIONS(1367), + [anon_sym_uint] = ACTIONS(1367), + [anon_sym_long] = ACTIONS(1367), + [anon_sym_ulong] = ACTIONS(1367), + [anon_sym_int128] = ACTIONS(1367), + [anon_sym_uint128] = ACTIONS(1367), + [anon_sym_float] = ACTIONS(1367), + [anon_sym_double] = ACTIONS(1367), + [anon_sym_float16] = ACTIONS(1367), + [anon_sym_bfloat16] = ACTIONS(1367), + [anon_sym_float128] = ACTIONS(1367), + [anon_sym_iptr] = ACTIONS(1367), + [anon_sym_uptr] = ACTIONS(1367), + [anon_sym_isz] = ACTIONS(1367), + [anon_sym_usz] = ACTIONS(1367), + [anon_sym_anyfault] = ACTIONS(1367), + [anon_sym_any] = ACTIONS(1367), + [anon_sym_DOLLARtypeof] = ACTIONS(1367), + [anon_sym_DOLLARtypefrom] = ACTIONS(1367), + [anon_sym_DOLLARevaltype] = ACTIONS(1367), + [anon_sym_DOLLARvatype] = ACTIONS(1367), + [sym_real_literal] = ACTIONS(1369), + }, + [550] = { + [sym_line_comment] = STATE(550), + [sym_doc_comment] = STATE(550), + [sym_block_comment] = STATE(550), + [sym_ident] = ACTIONS(1393), + [sym_integer_literal] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1395), + [anon_sym_BQUOTE] = ACTIONS(1395), + [sym_bytes_literal] = ACTIONS(1395), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1393), + [sym_at_ident] = ACTIONS(1395), + [sym_hash_ident] = ACTIONS(1395), + [sym_type_ident] = ACTIONS(1395), + [sym_ct_type_ident] = ACTIONS(1395), + [sym_const_ident] = ACTIONS(1393), + [sym_builtin] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1393), + [anon_sym_tlocal] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_fn] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_var] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1393), + [anon_sym_continue] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1393), + [anon_sym_defer] = ACTIONS(1393), + [anon_sym_assert] = ACTIONS(1393), + [anon_sym_nextcase] = ACTIONS(1393), + [anon_sym_switch] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_foreach] = ACTIONS(1393), + [anon_sym_foreach_r] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_do] = ACTIONS(1393), + [anon_sym_int] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_asm] = ACTIONS(1393), + [anon_sym_DOLLARassert] = ACTIONS(1393), + [anon_sym_DOLLARerror] = ACTIONS(1393), + [anon_sym_DOLLARecho] = ACTIONS(1393), + [anon_sym_DOLLARif] = ACTIONS(1393), + [anon_sym_DOLLARendif] = ACTIONS(1393), + [anon_sym_DOLLARelse] = ACTIONS(1393), + [anon_sym_DOLLARswitch] = ACTIONS(1393), + [anon_sym_DOLLARfor] = ACTIONS(1393), + [anon_sym_DOLLARforeach] = ACTIONS(1393), + [anon_sym_DOLLARalignof] = ACTIONS(1393), + [anon_sym_DOLLARextnameof] = ACTIONS(1393), + [anon_sym_DOLLARnameof] = ACTIONS(1393), + [anon_sym_DOLLARoffsetof] = ACTIONS(1393), + [anon_sym_DOLLARqnameof] = ACTIONS(1393), + [anon_sym_DOLLARvaconst] = ACTIONS(1393), + [anon_sym_DOLLARvaarg] = ACTIONS(1393), + [anon_sym_DOLLARvaref] = ACTIONS(1393), + [anon_sym_DOLLARvaexpr] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(1393), + [anon_sym_false] = ACTIONS(1393), + [anon_sym_null] = ACTIONS(1393), + [anon_sym_DOLLARvacount] = ACTIONS(1393), + [anon_sym_DOLLAReval] = ACTIONS(1393), + [anon_sym_DOLLARis_const] = ACTIONS(1393), + [anon_sym_DOLLARsizeof] = ACTIONS(1393), + [anon_sym_DOLLARstringify] = ACTIONS(1393), + [anon_sym_DOLLARappend] = ACTIONS(1393), + [anon_sym_DOLLARconcat] = ACTIONS(1393), + [anon_sym_DOLLARdefined] = ACTIONS(1393), + [anon_sym_DOLLARembed] = ACTIONS(1393), + [anon_sym_DOLLARand] = ACTIONS(1393), + [anon_sym_DOLLARor] = ACTIONS(1393), + [anon_sym_DOLLARfeature] = ACTIONS(1393), + [anon_sym_DOLLARassignable] = ACTIONS(1393), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_typeid] = ACTIONS(1393), + [anon_sym_LBRACE_PIPE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1393), + [anon_sym_bool] = ACTIONS(1393), + [anon_sym_char] = ACTIONS(1393), + [anon_sym_ichar] = ACTIONS(1393), + [anon_sym_short] = ACTIONS(1393), + [anon_sym_ushort] = ACTIONS(1393), + [anon_sym_uint] = ACTIONS(1393), + [anon_sym_long] = ACTIONS(1393), + [anon_sym_ulong] = ACTIONS(1393), + [anon_sym_int128] = ACTIONS(1393), + [anon_sym_uint128] = ACTIONS(1393), + [anon_sym_float] = ACTIONS(1393), + [anon_sym_double] = ACTIONS(1393), + [anon_sym_float16] = ACTIONS(1393), + [anon_sym_bfloat16] = ACTIONS(1393), + [anon_sym_float128] = ACTIONS(1393), + [anon_sym_iptr] = ACTIONS(1393), + [anon_sym_uptr] = ACTIONS(1393), + [anon_sym_isz] = ACTIONS(1393), + [anon_sym_usz] = ACTIONS(1393), + [anon_sym_anyfault] = ACTIONS(1393), + [anon_sym_any] = ACTIONS(1393), + [anon_sym_DOLLARtypeof] = ACTIONS(1393), + [anon_sym_DOLLARtypefrom] = ACTIONS(1393), + [anon_sym_DOLLARevaltype] = ACTIONS(1393), + [anon_sym_DOLLARvatype] = ACTIONS(1393), + [sym_real_literal] = ACTIONS(1395), }, - [557] = { - [sym_line_comment] = STATE(557), - [sym_doc_comment] = STATE(557), - [sym_block_comment] = STATE(557), - [sym_ident] = ACTIONS(1405), - [sym_integer_literal] = ACTIONS(1407), - [anon_sym_SQUOTE] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [anon_sym_BQUOTE] = ACTIONS(1407), - [sym_bytes_literal] = ACTIONS(1407), + [551] = { + [sym_line_comment] = STATE(551), + [sym_doc_comment] = STATE(551), + [sym_block_comment] = STATE(551), + [sym_ident] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [anon_sym_BQUOTE] = ACTIONS(1399), + [sym_bytes_literal] = ACTIONS(1399), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1405), - [sym_at_ident] = ACTIONS(1407), - [sym_hash_ident] = ACTIONS(1407), - [sym_type_ident] = ACTIONS(1407), - [sym_ct_type_ident] = ACTIONS(1407), - [sym_const_ident] = ACTIONS(1405), - [sym_builtin] = ACTIONS(1407), - [anon_sym_LPAREN] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_static] = ACTIONS(1405), - [anon_sym_tlocal] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_fn] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_var] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_defer] = ACTIONS(1405), - [anon_sym_assert] = ACTIONS(1405), - [anon_sym_nextcase] = ACTIONS(1405), - [anon_sym_switch] = ACTIONS(1405), - [anon_sym_AMP_AMP] = ACTIONS(1407), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_foreach] = ACTIONS(1405), - [anon_sym_foreach_r] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1405), - [anon_sym_int] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_asm] = ACTIONS(1405), - [anon_sym_DOLLARassert] = ACTIONS(1405), - [anon_sym_DOLLARerror] = ACTIONS(1405), - [anon_sym_DOLLARecho] = ACTIONS(1405), - [anon_sym_DOLLARif] = ACTIONS(1405), - [anon_sym_DOLLARendif] = ACTIONS(1405), - [anon_sym_DOLLARelse] = ACTIONS(1405), - [anon_sym_DOLLARswitch] = ACTIONS(1405), - [anon_sym_DOLLARfor] = ACTIONS(1405), - [anon_sym_DOLLARforeach] = ACTIONS(1405), - [anon_sym_DOLLARalignof] = ACTIONS(1405), - [anon_sym_DOLLARextnameof] = ACTIONS(1405), - [anon_sym_DOLLARnameof] = ACTIONS(1405), - [anon_sym_DOLLARoffsetof] = ACTIONS(1405), - [anon_sym_DOLLARqnameof] = ACTIONS(1405), - [anon_sym_DOLLAReval] = ACTIONS(1405), - [anon_sym_DOLLARdefined] = ACTIONS(1405), - [anon_sym_DOLLARsizeof] = ACTIONS(1405), - [anon_sym_DOLLARstringify] = ACTIONS(1405), - [anon_sym_DOLLARis_const] = ACTIONS(1405), - [anon_sym_DOLLARvaconst] = ACTIONS(1405), - [anon_sym_DOLLARvaarg] = ACTIONS(1405), - [anon_sym_DOLLARvaref] = ACTIONS(1405), - [anon_sym_DOLLARvaexpr] = ACTIONS(1405), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_null] = ACTIONS(1405), - [anon_sym_DOLLARvacount] = ACTIONS(1405), - [anon_sym_DOLLARfeature] = ACTIONS(1405), - [anon_sym_DOLLARand] = ACTIONS(1405), - [anon_sym_DOLLARor] = ACTIONS(1405), - [anon_sym_DOLLARassignable] = ACTIONS(1405), - [anon_sym_DOLLARembed] = ACTIONS(1405), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_typeid] = ACTIONS(1405), - [anon_sym_LBRACE_PIPE] = ACTIONS(1407), - [anon_sym_void] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_char] = ACTIONS(1405), - [anon_sym_ichar] = ACTIONS(1405), - [anon_sym_short] = ACTIONS(1405), - [anon_sym_ushort] = ACTIONS(1405), - [anon_sym_uint] = ACTIONS(1405), - [anon_sym_long] = ACTIONS(1405), - [anon_sym_ulong] = ACTIONS(1405), - [anon_sym_int128] = ACTIONS(1405), - [anon_sym_uint128] = ACTIONS(1405), - [anon_sym_float] = ACTIONS(1405), - [anon_sym_double] = ACTIONS(1405), - [anon_sym_float16] = ACTIONS(1405), - [anon_sym_bfloat16] = ACTIONS(1405), - [anon_sym_float128] = ACTIONS(1405), - [anon_sym_iptr] = ACTIONS(1405), - [anon_sym_uptr] = ACTIONS(1405), - [anon_sym_isz] = ACTIONS(1405), - [anon_sym_usz] = ACTIONS(1405), - [anon_sym_anyfault] = ACTIONS(1405), - [anon_sym_any] = ACTIONS(1405), - [anon_sym_DOLLARtypeof] = ACTIONS(1405), - [anon_sym_DOLLARtypefrom] = ACTIONS(1405), - [anon_sym_DOLLARvatype] = ACTIONS(1405), - [anon_sym_DOLLARevaltype] = ACTIONS(1405), - [sym_real_literal] = ACTIONS(1407), + [sym_ct_ident] = ACTIONS(1397), + [sym_at_ident] = ACTIONS(1399), + [sym_hash_ident] = ACTIONS(1399), + [sym_type_ident] = ACTIONS(1399), + [sym_ct_type_ident] = ACTIONS(1399), + [sym_const_ident] = ACTIONS(1397), + [sym_builtin] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_tlocal] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_fn] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_var] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_defer] = ACTIONS(1397), + [anon_sym_assert] = ACTIONS(1397), + [anon_sym_nextcase] = ACTIONS(1397), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_AMP_AMP] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_foreach] = ACTIONS(1397), + [anon_sym_foreach_r] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_do] = ACTIONS(1397), + [anon_sym_int] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_asm] = ACTIONS(1397), + [anon_sym_DOLLARassert] = ACTIONS(1397), + [anon_sym_DOLLARerror] = ACTIONS(1397), + [anon_sym_DOLLARecho] = ACTIONS(1397), + [anon_sym_DOLLARif] = ACTIONS(1397), + [anon_sym_DOLLARendif] = ACTIONS(1397), + [anon_sym_DOLLARelse] = ACTIONS(1397), + [anon_sym_DOLLARswitch] = ACTIONS(1397), + [anon_sym_DOLLARfor] = ACTIONS(1397), + [anon_sym_DOLLARforeach] = ACTIONS(1397), + [anon_sym_DOLLARalignof] = ACTIONS(1397), + [anon_sym_DOLLARextnameof] = ACTIONS(1397), + [anon_sym_DOLLARnameof] = ACTIONS(1397), + [anon_sym_DOLLARoffsetof] = ACTIONS(1397), + [anon_sym_DOLLARqnameof] = ACTIONS(1397), + [anon_sym_DOLLARvaconst] = ACTIONS(1397), + [anon_sym_DOLLARvaarg] = ACTIONS(1397), + [anon_sym_DOLLARvaref] = ACTIONS(1397), + [anon_sym_DOLLARvaexpr] = ACTIONS(1397), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_null] = ACTIONS(1397), + [anon_sym_DOLLARvacount] = ACTIONS(1397), + [anon_sym_DOLLAReval] = ACTIONS(1397), + [anon_sym_DOLLARis_const] = ACTIONS(1397), + [anon_sym_DOLLARsizeof] = ACTIONS(1397), + [anon_sym_DOLLARstringify] = ACTIONS(1397), + [anon_sym_DOLLARappend] = ACTIONS(1397), + [anon_sym_DOLLARconcat] = ACTIONS(1397), + [anon_sym_DOLLARdefined] = ACTIONS(1397), + [anon_sym_DOLLARembed] = ACTIONS(1397), + [anon_sym_DOLLARand] = ACTIONS(1397), + [anon_sym_DOLLARor] = ACTIONS(1397), + [anon_sym_DOLLARfeature] = ACTIONS(1397), + [anon_sym_DOLLARassignable] = ACTIONS(1397), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1399), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_typeid] = ACTIONS(1397), + [anon_sym_LBRACE_PIPE] = ACTIONS(1399), + [anon_sym_void] = ACTIONS(1397), + [anon_sym_bool] = ACTIONS(1397), + [anon_sym_char] = ACTIONS(1397), + [anon_sym_ichar] = ACTIONS(1397), + [anon_sym_short] = ACTIONS(1397), + [anon_sym_ushort] = ACTIONS(1397), + [anon_sym_uint] = ACTIONS(1397), + [anon_sym_long] = ACTIONS(1397), + [anon_sym_ulong] = ACTIONS(1397), + [anon_sym_int128] = ACTIONS(1397), + [anon_sym_uint128] = ACTIONS(1397), + [anon_sym_float] = ACTIONS(1397), + [anon_sym_double] = ACTIONS(1397), + [anon_sym_float16] = ACTIONS(1397), + [anon_sym_bfloat16] = ACTIONS(1397), + [anon_sym_float128] = ACTIONS(1397), + [anon_sym_iptr] = ACTIONS(1397), + [anon_sym_uptr] = ACTIONS(1397), + [anon_sym_isz] = ACTIONS(1397), + [anon_sym_usz] = ACTIONS(1397), + [anon_sym_anyfault] = ACTIONS(1397), + [anon_sym_any] = ACTIONS(1397), + [anon_sym_DOLLARtypeof] = ACTIONS(1397), + [anon_sym_DOLLARtypefrom] = ACTIONS(1397), + [anon_sym_DOLLARevaltype] = ACTIONS(1397), + [anon_sym_DOLLARvatype] = ACTIONS(1397), + [sym_real_literal] = ACTIONS(1399), }, - [558] = { - [sym_line_comment] = STATE(558), - [sym_doc_comment] = STATE(558), - [sym_block_comment] = STATE(558), + [552] = { + [sym_line_comment] = STATE(552), + [sym_doc_comment] = STATE(552), + [sym_block_comment] = STATE(552), [sym_ident] = ACTIONS(1401), [sym_integer_literal] = ACTIONS(1403), [anon_sym_SQUOTE] = ACTIONS(1403), @@ -89710,7 +89031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1403), [sym_bytes_literal] = ACTIONS(1403), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1401), [sym_at_ident] = ACTIONS(1403), @@ -89761,11 +89082,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1401), [anon_sym_DOLLARoffsetof] = ACTIONS(1401), [anon_sym_DOLLARqnameof] = ACTIONS(1401), - [anon_sym_DOLLAReval] = ACTIONS(1401), - [anon_sym_DOLLARdefined] = ACTIONS(1401), - [anon_sym_DOLLARsizeof] = ACTIONS(1401), - [anon_sym_DOLLARstringify] = ACTIONS(1401), - [anon_sym_DOLLARis_const] = ACTIONS(1401), [anon_sym_DOLLARvaconst] = ACTIONS(1401), [anon_sym_DOLLARvaarg] = ACTIONS(1401), [anon_sym_DOLLARvaref] = ACTIONS(1401), @@ -89774,11 +89090,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1401), [anon_sym_null] = ACTIONS(1401), [anon_sym_DOLLARvacount] = ACTIONS(1401), - [anon_sym_DOLLARfeature] = ACTIONS(1401), + [anon_sym_DOLLAReval] = ACTIONS(1401), + [anon_sym_DOLLARis_const] = ACTIONS(1401), + [anon_sym_DOLLARsizeof] = ACTIONS(1401), + [anon_sym_DOLLARstringify] = ACTIONS(1401), + [anon_sym_DOLLARappend] = ACTIONS(1401), + [anon_sym_DOLLARconcat] = ACTIONS(1401), + [anon_sym_DOLLARdefined] = ACTIONS(1401), + [anon_sym_DOLLARembed] = ACTIONS(1401), [anon_sym_DOLLARand] = ACTIONS(1401), [anon_sym_DOLLARor] = ACTIONS(1401), + [anon_sym_DOLLARfeature] = ACTIONS(1401), [anon_sym_DOLLARassignable] = ACTIONS(1401), - [anon_sym_DOLLARembed] = ACTIONS(1401), [anon_sym_BANG] = ACTIONS(1403), [anon_sym_TILDE] = ACTIONS(1403), [anon_sym_PLUS_PLUS] = ACTIONS(1403), @@ -89809,584 +89132,826 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1401), [anon_sym_DOLLARtypeof] = ACTIONS(1401), [anon_sym_DOLLARtypefrom] = ACTIONS(1401), - [anon_sym_DOLLARvatype] = ACTIONS(1401), [anon_sym_DOLLARevaltype] = ACTIONS(1401), + [anon_sym_DOLLARvatype] = ACTIONS(1401), [sym_real_literal] = ACTIONS(1403), }, - [559] = { - [sym_line_comment] = STATE(559), - [sym_doc_comment] = STATE(559), - [sym_block_comment] = STATE(559), - [sym_ident] = ACTIONS(1397), - [sym_integer_literal] = ACTIONS(1399), - [anon_sym_SQUOTE] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [anon_sym_BQUOTE] = ACTIONS(1399), - [sym_bytes_literal] = ACTIONS(1399), + [553] = { + [sym_line_comment] = STATE(553), + [sym_doc_comment] = STATE(553), + [sym_block_comment] = STATE(553), + [sym_ident] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_BQUOTE] = ACTIONS(1407), + [sym_bytes_literal] = ACTIONS(1407), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1397), - [sym_at_ident] = ACTIONS(1399), - [sym_hash_ident] = ACTIONS(1399), - [sym_type_ident] = ACTIONS(1399), - [sym_ct_type_ident] = ACTIONS(1399), - [sym_const_ident] = ACTIONS(1397), - [sym_builtin] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_tlocal] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_fn] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_var] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_defer] = ACTIONS(1397), - [anon_sym_assert] = ACTIONS(1397), - [anon_sym_nextcase] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1397), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_foreach] = ACTIONS(1397), - [anon_sym_foreach_r] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_int] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_asm] = ACTIONS(1397), - [anon_sym_DOLLARassert] = ACTIONS(1397), - [anon_sym_DOLLARerror] = ACTIONS(1397), - [anon_sym_DOLLARecho] = ACTIONS(1397), - [anon_sym_DOLLARif] = ACTIONS(1397), - [anon_sym_DOLLARendif] = ACTIONS(1397), - [anon_sym_DOLLARelse] = ACTIONS(1397), - [anon_sym_DOLLARswitch] = ACTIONS(1397), - [anon_sym_DOLLARfor] = ACTIONS(1397), - [anon_sym_DOLLARforeach] = ACTIONS(1397), - [anon_sym_DOLLARalignof] = ACTIONS(1397), - [anon_sym_DOLLARextnameof] = ACTIONS(1397), - [anon_sym_DOLLARnameof] = ACTIONS(1397), - [anon_sym_DOLLARoffsetof] = ACTIONS(1397), - [anon_sym_DOLLARqnameof] = ACTIONS(1397), - [anon_sym_DOLLAReval] = ACTIONS(1397), - [anon_sym_DOLLARdefined] = ACTIONS(1397), - [anon_sym_DOLLARsizeof] = ACTIONS(1397), - [anon_sym_DOLLARstringify] = ACTIONS(1397), - [anon_sym_DOLLARis_const] = ACTIONS(1397), - [anon_sym_DOLLARvaconst] = ACTIONS(1397), - [anon_sym_DOLLARvaarg] = ACTIONS(1397), - [anon_sym_DOLLARvaref] = ACTIONS(1397), - [anon_sym_DOLLARvaexpr] = ACTIONS(1397), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [anon_sym_null] = ACTIONS(1397), - [anon_sym_DOLLARvacount] = ACTIONS(1397), - [anon_sym_DOLLARfeature] = ACTIONS(1397), - [anon_sym_DOLLARand] = ACTIONS(1397), - [anon_sym_DOLLARor] = ACTIONS(1397), - [anon_sym_DOLLARassignable] = ACTIONS(1397), - [anon_sym_DOLLARembed] = ACTIONS(1397), - [anon_sym_BANG] = ACTIONS(1399), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(1399), - [anon_sym_typeid] = ACTIONS(1397), - [anon_sym_LBRACE_PIPE] = ACTIONS(1399), - [anon_sym_void] = ACTIONS(1397), - [anon_sym_bool] = ACTIONS(1397), - [anon_sym_char] = ACTIONS(1397), - [anon_sym_ichar] = ACTIONS(1397), - [anon_sym_short] = ACTIONS(1397), - [anon_sym_ushort] = ACTIONS(1397), - [anon_sym_uint] = ACTIONS(1397), - [anon_sym_long] = ACTIONS(1397), - [anon_sym_ulong] = ACTIONS(1397), - [anon_sym_int128] = ACTIONS(1397), - [anon_sym_uint128] = ACTIONS(1397), - [anon_sym_float] = ACTIONS(1397), - [anon_sym_double] = ACTIONS(1397), - [anon_sym_float16] = ACTIONS(1397), - [anon_sym_bfloat16] = ACTIONS(1397), - [anon_sym_float128] = ACTIONS(1397), - [anon_sym_iptr] = ACTIONS(1397), - [anon_sym_uptr] = ACTIONS(1397), - [anon_sym_isz] = ACTIONS(1397), - [anon_sym_usz] = ACTIONS(1397), - [anon_sym_anyfault] = ACTIONS(1397), - [anon_sym_any] = ACTIONS(1397), - [anon_sym_DOLLARtypeof] = ACTIONS(1397), - [anon_sym_DOLLARtypefrom] = ACTIONS(1397), - [anon_sym_DOLLARvatype] = ACTIONS(1397), - [anon_sym_DOLLARevaltype] = ACTIONS(1397), - [sym_real_literal] = ACTIONS(1399), + [sym_ct_ident] = ACTIONS(1405), + [sym_at_ident] = ACTIONS(1407), + [sym_hash_ident] = ACTIONS(1407), + [sym_type_ident] = ACTIONS(1407), + [sym_ct_type_ident] = ACTIONS(1407), + [sym_const_ident] = ACTIONS(1405), + [sym_builtin] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_static] = ACTIONS(1405), + [anon_sym_tlocal] = ACTIONS(1405), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_fn] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_var] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1405), + [anon_sym_continue] = ACTIONS(1405), + [anon_sym_break] = ACTIONS(1405), + [anon_sym_defer] = ACTIONS(1405), + [anon_sym_assert] = ACTIONS(1405), + [anon_sym_nextcase] = ACTIONS(1405), + [anon_sym_switch] = ACTIONS(1405), + [anon_sym_AMP_AMP] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_foreach] = ACTIONS(1405), + [anon_sym_foreach_r] = ACTIONS(1405), + [anon_sym_while] = ACTIONS(1405), + [anon_sym_do] = ACTIONS(1405), + [anon_sym_int] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_asm] = ACTIONS(1405), + [anon_sym_DOLLARassert] = ACTIONS(1405), + [anon_sym_DOLLARerror] = ACTIONS(1405), + [anon_sym_DOLLARecho] = ACTIONS(1405), + [anon_sym_DOLLARif] = ACTIONS(1405), + [anon_sym_DOLLARendif] = ACTIONS(1405), + [anon_sym_DOLLARelse] = ACTIONS(1405), + [anon_sym_DOLLARswitch] = ACTIONS(1405), + [anon_sym_DOLLARfor] = ACTIONS(1405), + [anon_sym_DOLLARforeach] = ACTIONS(1405), + [anon_sym_DOLLARalignof] = ACTIONS(1405), + [anon_sym_DOLLARextnameof] = ACTIONS(1405), + [anon_sym_DOLLARnameof] = ACTIONS(1405), + [anon_sym_DOLLARoffsetof] = ACTIONS(1405), + [anon_sym_DOLLARqnameof] = ACTIONS(1405), + [anon_sym_DOLLARvaconst] = ACTIONS(1405), + [anon_sym_DOLLARvaarg] = ACTIONS(1405), + [anon_sym_DOLLARvaref] = ACTIONS(1405), + [anon_sym_DOLLARvaexpr] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1405), + [anon_sym_false] = ACTIONS(1405), + [anon_sym_null] = ACTIONS(1405), + [anon_sym_DOLLARvacount] = ACTIONS(1405), + [anon_sym_DOLLAReval] = ACTIONS(1405), + [anon_sym_DOLLARis_const] = ACTIONS(1405), + [anon_sym_DOLLARsizeof] = ACTIONS(1405), + [anon_sym_DOLLARstringify] = ACTIONS(1405), + [anon_sym_DOLLARappend] = ACTIONS(1405), + [anon_sym_DOLLARconcat] = ACTIONS(1405), + [anon_sym_DOLLARdefined] = ACTIONS(1405), + [anon_sym_DOLLARembed] = ACTIONS(1405), + [anon_sym_DOLLARand] = ACTIONS(1405), + [anon_sym_DOLLARor] = ACTIONS(1405), + [anon_sym_DOLLARfeature] = ACTIONS(1405), + [anon_sym_DOLLARassignable] = ACTIONS(1405), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1407), + [anon_sym_typeid] = ACTIONS(1405), + [anon_sym_LBRACE_PIPE] = ACTIONS(1407), + [anon_sym_void] = ACTIONS(1405), + [anon_sym_bool] = ACTIONS(1405), + [anon_sym_char] = ACTIONS(1405), + [anon_sym_ichar] = ACTIONS(1405), + [anon_sym_short] = ACTIONS(1405), + [anon_sym_ushort] = ACTIONS(1405), + [anon_sym_uint] = ACTIONS(1405), + [anon_sym_long] = ACTIONS(1405), + [anon_sym_ulong] = ACTIONS(1405), + [anon_sym_int128] = ACTIONS(1405), + [anon_sym_uint128] = ACTIONS(1405), + [anon_sym_float] = ACTIONS(1405), + [anon_sym_double] = ACTIONS(1405), + [anon_sym_float16] = ACTIONS(1405), + [anon_sym_bfloat16] = ACTIONS(1405), + [anon_sym_float128] = ACTIONS(1405), + [anon_sym_iptr] = ACTIONS(1405), + [anon_sym_uptr] = ACTIONS(1405), + [anon_sym_isz] = ACTIONS(1405), + [anon_sym_usz] = ACTIONS(1405), + [anon_sym_anyfault] = ACTIONS(1405), + [anon_sym_any] = ACTIONS(1405), + [anon_sym_DOLLARtypeof] = ACTIONS(1405), + [anon_sym_DOLLARtypefrom] = ACTIONS(1405), + [anon_sym_DOLLARevaltype] = ACTIONS(1405), + [anon_sym_DOLLARvatype] = ACTIONS(1405), + [sym_real_literal] = ACTIONS(1407), + }, + [554] = { + [sym_line_comment] = STATE(554), + [sym_doc_comment] = STATE(554), + [sym_block_comment] = STATE(554), + [sym_ident] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [anon_sym_SQUOTE] = ACTIONS(1411), + [anon_sym_DQUOTE] = ACTIONS(1411), + [anon_sym_BQUOTE] = ACTIONS(1411), + [sym_bytes_literal] = ACTIONS(1411), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1409), + [sym_at_ident] = ACTIONS(1411), + [sym_hash_ident] = ACTIONS(1411), + [sym_type_ident] = ACTIONS(1411), + [sym_ct_type_ident] = ACTIONS(1411), + [sym_const_ident] = ACTIONS(1409), + [sym_builtin] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_tlocal] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1411), + [anon_sym_fn] = ACTIONS(1409), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_var] = ACTIONS(1409), + [anon_sym_return] = ACTIONS(1409), + [anon_sym_continue] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1409), + [anon_sym_defer] = ACTIONS(1409), + [anon_sym_assert] = ACTIONS(1409), + [anon_sym_nextcase] = ACTIONS(1409), + [anon_sym_switch] = ACTIONS(1409), + [anon_sym_AMP_AMP] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1409), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_foreach] = ACTIONS(1409), + [anon_sym_foreach_r] = ACTIONS(1409), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_do] = ACTIONS(1409), + [anon_sym_int] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_asm] = ACTIONS(1409), + [anon_sym_DOLLARassert] = ACTIONS(1409), + [anon_sym_DOLLARerror] = ACTIONS(1409), + [anon_sym_DOLLARecho] = ACTIONS(1409), + [anon_sym_DOLLARif] = ACTIONS(1409), + [anon_sym_DOLLARendif] = ACTIONS(1409), + [anon_sym_DOLLARelse] = ACTIONS(1409), + [anon_sym_DOLLARswitch] = ACTIONS(1409), + [anon_sym_DOLLARfor] = ACTIONS(1409), + [anon_sym_DOLLARforeach] = ACTIONS(1409), + [anon_sym_DOLLARalignof] = ACTIONS(1409), + [anon_sym_DOLLARextnameof] = ACTIONS(1409), + [anon_sym_DOLLARnameof] = ACTIONS(1409), + [anon_sym_DOLLARoffsetof] = ACTIONS(1409), + [anon_sym_DOLLARqnameof] = ACTIONS(1409), + [anon_sym_DOLLARvaconst] = ACTIONS(1409), + [anon_sym_DOLLARvaarg] = ACTIONS(1409), + [anon_sym_DOLLARvaref] = ACTIONS(1409), + [anon_sym_DOLLARvaexpr] = ACTIONS(1409), + [anon_sym_true] = ACTIONS(1409), + [anon_sym_false] = ACTIONS(1409), + [anon_sym_null] = ACTIONS(1409), + [anon_sym_DOLLARvacount] = ACTIONS(1409), + [anon_sym_DOLLAReval] = ACTIONS(1409), + [anon_sym_DOLLARis_const] = ACTIONS(1409), + [anon_sym_DOLLARsizeof] = ACTIONS(1409), + [anon_sym_DOLLARstringify] = ACTIONS(1409), + [anon_sym_DOLLARappend] = ACTIONS(1409), + [anon_sym_DOLLARconcat] = ACTIONS(1409), + [anon_sym_DOLLARdefined] = ACTIONS(1409), + [anon_sym_DOLLARembed] = ACTIONS(1409), + [anon_sym_DOLLARand] = ACTIONS(1409), + [anon_sym_DOLLARor] = ACTIONS(1409), + [anon_sym_DOLLARfeature] = ACTIONS(1409), + [anon_sym_DOLLARassignable] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_typeid] = ACTIONS(1409), + [anon_sym_LBRACE_PIPE] = ACTIONS(1411), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_bool] = ACTIONS(1409), + [anon_sym_char] = ACTIONS(1409), + [anon_sym_ichar] = ACTIONS(1409), + [anon_sym_short] = ACTIONS(1409), + [anon_sym_ushort] = ACTIONS(1409), + [anon_sym_uint] = ACTIONS(1409), + [anon_sym_long] = ACTIONS(1409), + [anon_sym_ulong] = ACTIONS(1409), + [anon_sym_int128] = ACTIONS(1409), + [anon_sym_uint128] = ACTIONS(1409), + [anon_sym_float] = ACTIONS(1409), + [anon_sym_double] = ACTIONS(1409), + [anon_sym_float16] = ACTIONS(1409), + [anon_sym_bfloat16] = ACTIONS(1409), + [anon_sym_float128] = ACTIONS(1409), + [anon_sym_iptr] = ACTIONS(1409), + [anon_sym_uptr] = ACTIONS(1409), + [anon_sym_isz] = ACTIONS(1409), + [anon_sym_usz] = ACTIONS(1409), + [anon_sym_anyfault] = ACTIONS(1409), + [anon_sym_any] = ACTIONS(1409), + [anon_sym_DOLLARtypeof] = ACTIONS(1409), + [anon_sym_DOLLARtypefrom] = ACTIONS(1409), + [anon_sym_DOLLARevaltype] = ACTIONS(1409), + [anon_sym_DOLLARvatype] = ACTIONS(1409), + [sym_real_literal] = ACTIONS(1411), }, - [560] = { - [sym_line_comment] = STATE(560), - [sym_doc_comment] = STATE(560), - [sym_block_comment] = STATE(560), - [sym_ident] = ACTIONS(1393), - [sym_integer_literal] = ACTIONS(1395), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [anon_sym_BQUOTE] = ACTIONS(1395), - [sym_bytes_literal] = ACTIONS(1395), + [555] = { + [sym_line_comment] = STATE(555), + [sym_doc_comment] = STATE(555), + [sym_block_comment] = STATE(555), + [sym_ident] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1415), + [anon_sym_SQUOTE] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(1415), + [anon_sym_BQUOTE] = ACTIONS(1415), + [sym_bytes_literal] = ACTIONS(1415), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1393), - [sym_at_ident] = ACTIONS(1395), - [sym_hash_ident] = ACTIONS(1395), - [sym_type_ident] = ACTIONS(1395), - [sym_ct_type_ident] = ACTIONS(1395), - [sym_const_ident] = ACTIONS(1393), - [sym_builtin] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1393), - [anon_sym_tlocal] = ACTIONS(1393), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_fn] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_const] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(1393), - [anon_sym_return] = ACTIONS(1393), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_break] = ACTIONS(1393), - [anon_sym_defer] = ACTIONS(1393), - [anon_sym_assert] = ACTIONS(1393), - [anon_sym_nextcase] = ACTIONS(1393), - [anon_sym_switch] = ACTIONS(1393), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_foreach] = ACTIONS(1393), - [anon_sym_foreach_r] = ACTIONS(1393), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_do] = ACTIONS(1393), - [anon_sym_int] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_asm] = ACTIONS(1393), - [anon_sym_DOLLARassert] = ACTIONS(1393), - [anon_sym_DOLLARerror] = ACTIONS(1393), - [anon_sym_DOLLARecho] = ACTIONS(1393), - [anon_sym_DOLLARif] = ACTIONS(1393), - [anon_sym_DOLLARendif] = ACTIONS(1393), - [anon_sym_DOLLARelse] = ACTIONS(1393), - [anon_sym_DOLLARswitch] = ACTIONS(1393), - [anon_sym_DOLLARfor] = ACTIONS(1393), - [anon_sym_DOLLARforeach] = ACTIONS(1393), - [anon_sym_DOLLARalignof] = ACTIONS(1393), - [anon_sym_DOLLARextnameof] = ACTIONS(1393), - [anon_sym_DOLLARnameof] = ACTIONS(1393), - [anon_sym_DOLLARoffsetof] = ACTIONS(1393), - [anon_sym_DOLLARqnameof] = ACTIONS(1393), - [anon_sym_DOLLAReval] = ACTIONS(1393), - [anon_sym_DOLLARdefined] = ACTIONS(1393), - [anon_sym_DOLLARsizeof] = ACTIONS(1393), - [anon_sym_DOLLARstringify] = ACTIONS(1393), - [anon_sym_DOLLARis_const] = ACTIONS(1393), - [anon_sym_DOLLARvaconst] = ACTIONS(1393), - [anon_sym_DOLLARvaarg] = ACTIONS(1393), - [anon_sym_DOLLARvaref] = ACTIONS(1393), - [anon_sym_DOLLARvaexpr] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(1393), - [anon_sym_false] = ACTIONS(1393), - [anon_sym_null] = ACTIONS(1393), - [anon_sym_DOLLARvacount] = ACTIONS(1393), - [anon_sym_DOLLARfeature] = ACTIONS(1393), - [anon_sym_DOLLARand] = ACTIONS(1393), - [anon_sym_DOLLARor] = ACTIONS(1393), - [anon_sym_DOLLARassignable] = ACTIONS(1393), - [anon_sym_DOLLARembed] = ACTIONS(1393), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_DASH_DASH] = ACTIONS(1395), - [anon_sym_typeid] = ACTIONS(1393), - [anon_sym_LBRACE_PIPE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1393), - [anon_sym_bool] = ACTIONS(1393), - [anon_sym_char] = ACTIONS(1393), - [anon_sym_ichar] = ACTIONS(1393), - [anon_sym_short] = ACTIONS(1393), - [anon_sym_ushort] = ACTIONS(1393), - [anon_sym_uint] = ACTIONS(1393), - [anon_sym_long] = ACTIONS(1393), - [anon_sym_ulong] = ACTIONS(1393), - [anon_sym_int128] = ACTIONS(1393), - [anon_sym_uint128] = ACTIONS(1393), - [anon_sym_float] = ACTIONS(1393), - [anon_sym_double] = ACTIONS(1393), - [anon_sym_float16] = ACTIONS(1393), - [anon_sym_bfloat16] = ACTIONS(1393), - [anon_sym_float128] = ACTIONS(1393), - [anon_sym_iptr] = ACTIONS(1393), - [anon_sym_uptr] = ACTIONS(1393), - [anon_sym_isz] = ACTIONS(1393), - [anon_sym_usz] = ACTIONS(1393), - [anon_sym_anyfault] = ACTIONS(1393), - [anon_sym_any] = ACTIONS(1393), - [anon_sym_DOLLARtypeof] = ACTIONS(1393), - [anon_sym_DOLLARtypefrom] = ACTIONS(1393), - [anon_sym_DOLLARvatype] = ACTIONS(1393), - [anon_sym_DOLLARevaltype] = ACTIONS(1393), - [sym_real_literal] = ACTIONS(1395), + [sym_ct_ident] = ACTIONS(1413), + [sym_at_ident] = ACTIONS(1415), + [sym_hash_ident] = ACTIONS(1415), + [sym_type_ident] = ACTIONS(1415), + [sym_ct_type_ident] = ACTIONS(1415), + [sym_const_ident] = ACTIONS(1413), + [sym_builtin] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_tlocal] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_fn] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [anon_sym_var] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_defer] = ACTIONS(1413), + [anon_sym_assert] = ACTIONS(1413), + [anon_sym_nextcase] = ACTIONS(1413), + [anon_sym_switch] = ACTIONS(1413), + [anon_sym_AMP_AMP] = ACTIONS(1415), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_foreach] = ACTIONS(1413), + [anon_sym_foreach_r] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_do] = ACTIONS(1413), + [anon_sym_int] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_asm] = ACTIONS(1413), + [anon_sym_DOLLARassert] = ACTIONS(1413), + [anon_sym_DOLLARerror] = ACTIONS(1413), + [anon_sym_DOLLARecho] = ACTIONS(1413), + [anon_sym_DOLLARif] = ACTIONS(1413), + [anon_sym_DOLLARendif] = ACTIONS(1413), + [anon_sym_DOLLARelse] = ACTIONS(1413), + [anon_sym_DOLLARswitch] = ACTIONS(1413), + [anon_sym_DOLLARfor] = ACTIONS(1413), + [anon_sym_DOLLARforeach] = ACTIONS(1413), + [anon_sym_DOLLARalignof] = ACTIONS(1413), + [anon_sym_DOLLARextnameof] = ACTIONS(1413), + [anon_sym_DOLLARnameof] = ACTIONS(1413), + [anon_sym_DOLLARoffsetof] = ACTIONS(1413), + [anon_sym_DOLLARqnameof] = ACTIONS(1413), + [anon_sym_DOLLARvaconst] = ACTIONS(1413), + [anon_sym_DOLLARvaarg] = ACTIONS(1413), + [anon_sym_DOLLARvaref] = ACTIONS(1413), + [anon_sym_DOLLARvaexpr] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_null] = ACTIONS(1413), + [anon_sym_DOLLARvacount] = ACTIONS(1413), + [anon_sym_DOLLAReval] = ACTIONS(1413), + [anon_sym_DOLLARis_const] = ACTIONS(1413), + [anon_sym_DOLLARsizeof] = ACTIONS(1413), + [anon_sym_DOLLARstringify] = ACTIONS(1413), + [anon_sym_DOLLARappend] = ACTIONS(1413), + [anon_sym_DOLLARconcat] = ACTIONS(1413), + [anon_sym_DOLLARdefined] = ACTIONS(1413), + [anon_sym_DOLLARembed] = ACTIONS(1413), + [anon_sym_DOLLARand] = ACTIONS(1413), + [anon_sym_DOLLARor] = ACTIONS(1413), + [anon_sym_DOLLARfeature] = ACTIONS(1413), + [anon_sym_DOLLARassignable] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_typeid] = ACTIONS(1413), + [anon_sym_LBRACE_PIPE] = ACTIONS(1415), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_bool] = ACTIONS(1413), + [anon_sym_char] = ACTIONS(1413), + [anon_sym_ichar] = ACTIONS(1413), + [anon_sym_short] = ACTIONS(1413), + [anon_sym_ushort] = ACTIONS(1413), + [anon_sym_uint] = ACTIONS(1413), + [anon_sym_long] = ACTIONS(1413), + [anon_sym_ulong] = ACTIONS(1413), + [anon_sym_int128] = ACTIONS(1413), + [anon_sym_uint128] = ACTIONS(1413), + [anon_sym_float] = ACTIONS(1413), + [anon_sym_double] = ACTIONS(1413), + [anon_sym_float16] = ACTIONS(1413), + [anon_sym_bfloat16] = ACTIONS(1413), + [anon_sym_float128] = ACTIONS(1413), + [anon_sym_iptr] = ACTIONS(1413), + [anon_sym_uptr] = ACTIONS(1413), + [anon_sym_isz] = ACTIONS(1413), + [anon_sym_usz] = ACTIONS(1413), + [anon_sym_anyfault] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_DOLLARtypeof] = ACTIONS(1413), + [anon_sym_DOLLARtypefrom] = ACTIONS(1413), + [anon_sym_DOLLARevaltype] = ACTIONS(1413), + [anon_sym_DOLLARvatype] = ACTIONS(1413), + [sym_real_literal] = ACTIONS(1415), }, - [561] = { - [sym_line_comment] = STATE(561), - [sym_doc_comment] = STATE(561), - [sym_block_comment] = STATE(561), - [sym_ident] = ACTIONS(1389), - [sym_integer_literal] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1391), - [anon_sym_DQUOTE] = ACTIONS(1391), - [anon_sym_BQUOTE] = ACTIONS(1391), - [sym_bytes_literal] = ACTIONS(1391), + [556] = { + [sym_line_comment] = STATE(556), + [sym_doc_comment] = STATE(556), + [sym_block_comment] = STATE(556), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARendif] = ACTIONS(1613), + [anon_sym_DOLLARelse] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), + }, + [557] = { + [sym_line_comment] = STATE(557), + [sym_doc_comment] = STATE(557), + [sym_block_comment] = STATE(557), + [sym_ident] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [sym_bytes_literal] = ACTIONS(1479), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1477), + [sym_at_ident] = ACTIONS(1479), + [sym_hash_ident] = ACTIONS(1479), + [sym_type_ident] = ACTIONS(1479), + [sym_ct_type_ident] = ACTIONS(1479), + [sym_const_ident] = ACTIONS(1477), + [sym_builtin] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_tlocal] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_var] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_defer] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1477), + [anon_sym_nextcase] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_foreach] = ACTIONS(1477), + [anon_sym_foreach_r] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_do] = ACTIONS(1477), + [anon_sym_int] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym_DOLLARassert] = ACTIONS(1477), + [anon_sym_DOLLARerror] = ACTIONS(1477), + [anon_sym_DOLLARecho] = ACTIONS(1477), + [anon_sym_DOLLARif] = ACTIONS(1477), + [anon_sym_DOLLARendif] = ACTIONS(1477), + [anon_sym_DOLLARelse] = ACTIONS(1477), + [anon_sym_DOLLARswitch] = ACTIONS(1477), + [anon_sym_DOLLARfor] = ACTIONS(1477), + [anon_sym_DOLLARforeach] = ACTIONS(1477), + [anon_sym_DOLLARalignof] = ACTIONS(1477), + [anon_sym_DOLLARextnameof] = ACTIONS(1477), + [anon_sym_DOLLARnameof] = ACTIONS(1477), + [anon_sym_DOLLARoffsetof] = ACTIONS(1477), + [anon_sym_DOLLARqnameof] = ACTIONS(1477), + [anon_sym_DOLLARvaconst] = ACTIONS(1477), + [anon_sym_DOLLARvaarg] = ACTIONS(1477), + [anon_sym_DOLLARvaref] = ACTIONS(1477), + [anon_sym_DOLLARvaexpr] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_DOLLARvacount] = ACTIONS(1477), + [anon_sym_DOLLAReval] = ACTIONS(1477), + [anon_sym_DOLLARis_const] = ACTIONS(1477), + [anon_sym_DOLLARsizeof] = ACTIONS(1477), + [anon_sym_DOLLARstringify] = ACTIONS(1477), + [anon_sym_DOLLARappend] = ACTIONS(1477), + [anon_sym_DOLLARconcat] = ACTIONS(1477), + [anon_sym_DOLLARdefined] = ACTIONS(1477), + [anon_sym_DOLLARembed] = ACTIONS(1477), + [anon_sym_DOLLARand] = ACTIONS(1477), + [anon_sym_DOLLARor] = ACTIONS(1477), + [anon_sym_DOLLARfeature] = ACTIONS(1477), + [anon_sym_DOLLARassignable] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_PLUS_PLUS] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_typeid] = ACTIONS(1477), + [anon_sym_LBRACE_PIPE] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_ichar] = ACTIONS(1477), + [anon_sym_short] = ACTIONS(1477), + [anon_sym_ushort] = ACTIONS(1477), + [anon_sym_uint] = ACTIONS(1477), + [anon_sym_long] = ACTIONS(1477), + [anon_sym_ulong] = ACTIONS(1477), + [anon_sym_int128] = ACTIONS(1477), + [anon_sym_uint128] = ACTIONS(1477), + [anon_sym_float] = ACTIONS(1477), + [anon_sym_double] = ACTIONS(1477), + [anon_sym_float16] = ACTIONS(1477), + [anon_sym_bfloat16] = ACTIONS(1477), + [anon_sym_float128] = ACTIONS(1477), + [anon_sym_iptr] = ACTIONS(1477), + [anon_sym_uptr] = ACTIONS(1477), + [anon_sym_isz] = ACTIONS(1477), + [anon_sym_usz] = ACTIONS(1477), + [anon_sym_anyfault] = ACTIONS(1477), + [anon_sym_any] = ACTIONS(1477), + [anon_sym_DOLLARtypeof] = ACTIONS(1477), + [anon_sym_DOLLARtypefrom] = ACTIONS(1477), + [anon_sym_DOLLARevaltype] = ACTIONS(1477), + [anon_sym_DOLLARvatype] = ACTIONS(1477), + [sym_real_literal] = ACTIONS(1479), + }, + [558] = { + [sym_line_comment] = STATE(558), + [sym_doc_comment] = STATE(558), + [sym_block_comment] = STATE(558), + [sym_ident] = ACTIONS(1421), + [sym_integer_literal] = ACTIONS(1423), + [anon_sym_SQUOTE] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(1423), + [anon_sym_BQUOTE] = ACTIONS(1423), + [sym_bytes_literal] = ACTIONS(1423), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1389), - [sym_at_ident] = ACTIONS(1391), - [sym_hash_ident] = ACTIONS(1391), - [sym_type_ident] = ACTIONS(1391), - [sym_ct_type_ident] = ACTIONS(1391), - [sym_const_ident] = ACTIONS(1389), - [sym_builtin] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1391), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_static] = ACTIONS(1389), - [anon_sym_tlocal] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym_fn] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_var] = ACTIONS(1389), - [anon_sym_return] = ACTIONS(1389), - [anon_sym_continue] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1389), - [anon_sym_defer] = ACTIONS(1389), - [anon_sym_assert] = ACTIONS(1389), - [anon_sym_nextcase] = ACTIONS(1389), - [anon_sym_switch] = ACTIONS(1389), - [anon_sym_AMP_AMP] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1389), - [anon_sym_for] = ACTIONS(1389), - [anon_sym_foreach] = ACTIONS(1389), - [anon_sym_foreach_r] = ACTIONS(1389), - [anon_sym_while] = ACTIONS(1389), - [anon_sym_do] = ACTIONS(1389), - [anon_sym_int] = ACTIONS(1389), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1391), - [anon_sym_asm] = ACTIONS(1389), - [anon_sym_DOLLARassert] = ACTIONS(1389), - [anon_sym_DOLLARerror] = ACTIONS(1389), - [anon_sym_DOLLARecho] = ACTIONS(1389), - [anon_sym_DOLLARif] = ACTIONS(1389), - [anon_sym_DOLLARendif] = ACTIONS(1389), - [anon_sym_DOLLARelse] = ACTIONS(1389), - [anon_sym_DOLLARswitch] = ACTIONS(1389), - [anon_sym_DOLLARfor] = ACTIONS(1389), - [anon_sym_DOLLARforeach] = ACTIONS(1389), - [anon_sym_DOLLARalignof] = ACTIONS(1389), - [anon_sym_DOLLARextnameof] = ACTIONS(1389), - [anon_sym_DOLLARnameof] = ACTIONS(1389), - [anon_sym_DOLLARoffsetof] = ACTIONS(1389), - [anon_sym_DOLLARqnameof] = ACTIONS(1389), - [anon_sym_DOLLAReval] = ACTIONS(1389), - [anon_sym_DOLLARdefined] = ACTIONS(1389), - [anon_sym_DOLLARsizeof] = ACTIONS(1389), - [anon_sym_DOLLARstringify] = ACTIONS(1389), - [anon_sym_DOLLARis_const] = ACTIONS(1389), - [anon_sym_DOLLARvaconst] = ACTIONS(1389), - [anon_sym_DOLLARvaarg] = ACTIONS(1389), - [anon_sym_DOLLARvaref] = ACTIONS(1389), - [anon_sym_DOLLARvaexpr] = ACTIONS(1389), - [anon_sym_true] = ACTIONS(1389), - [anon_sym_false] = ACTIONS(1389), - [anon_sym_null] = ACTIONS(1389), - [anon_sym_DOLLARvacount] = ACTIONS(1389), - [anon_sym_DOLLARfeature] = ACTIONS(1389), - [anon_sym_DOLLARand] = ACTIONS(1389), - [anon_sym_DOLLARor] = ACTIONS(1389), - [anon_sym_DOLLARassignable] = ACTIONS(1389), - [anon_sym_DOLLARembed] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_TILDE] = ACTIONS(1391), - [anon_sym_PLUS_PLUS] = ACTIONS(1391), - [anon_sym_DASH_DASH] = ACTIONS(1391), - [anon_sym_typeid] = ACTIONS(1389), - [anon_sym_LBRACE_PIPE] = ACTIONS(1391), - [anon_sym_void] = ACTIONS(1389), - [anon_sym_bool] = ACTIONS(1389), - [anon_sym_char] = ACTIONS(1389), - [anon_sym_ichar] = ACTIONS(1389), - [anon_sym_short] = ACTIONS(1389), - [anon_sym_ushort] = ACTIONS(1389), - [anon_sym_uint] = ACTIONS(1389), - [anon_sym_long] = ACTIONS(1389), - [anon_sym_ulong] = ACTIONS(1389), - [anon_sym_int128] = ACTIONS(1389), - [anon_sym_uint128] = ACTIONS(1389), - [anon_sym_float] = ACTIONS(1389), - [anon_sym_double] = ACTIONS(1389), - [anon_sym_float16] = ACTIONS(1389), - [anon_sym_bfloat16] = ACTIONS(1389), - [anon_sym_float128] = ACTIONS(1389), - [anon_sym_iptr] = ACTIONS(1389), - [anon_sym_uptr] = ACTIONS(1389), - [anon_sym_isz] = ACTIONS(1389), - [anon_sym_usz] = ACTIONS(1389), - [anon_sym_anyfault] = ACTIONS(1389), - [anon_sym_any] = ACTIONS(1389), - [anon_sym_DOLLARtypeof] = ACTIONS(1389), - [anon_sym_DOLLARtypefrom] = ACTIONS(1389), - [anon_sym_DOLLARvatype] = ACTIONS(1389), - [anon_sym_DOLLARevaltype] = ACTIONS(1389), - [sym_real_literal] = ACTIONS(1391), + [sym_ct_ident] = ACTIONS(1421), + [sym_at_ident] = ACTIONS(1423), + [sym_hash_ident] = ACTIONS(1423), + [sym_type_ident] = ACTIONS(1423), + [sym_ct_type_ident] = ACTIONS(1423), + [sym_const_ident] = ACTIONS(1421), + [sym_builtin] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_tlocal] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1423), + [anon_sym_fn] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_defer] = ACTIONS(1421), + [anon_sym_assert] = ACTIONS(1421), + [anon_sym_nextcase] = ACTIONS(1421), + [anon_sym_switch] = ACTIONS(1421), + [anon_sym_AMP_AMP] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_foreach] = ACTIONS(1421), + [anon_sym_foreach_r] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_int] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_asm] = ACTIONS(1421), + [anon_sym_DOLLARassert] = ACTIONS(1421), + [anon_sym_DOLLARerror] = ACTIONS(1421), + [anon_sym_DOLLARecho] = ACTIONS(1421), + [anon_sym_DOLLARif] = ACTIONS(1421), + [anon_sym_DOLLARendif] = ACTIONS(1421), + [anon_sym_DOLLARelse] = ACTIONS(1421), + [anon_sym_DOLLARswitch] = ACTIONS(1421), + [anon_sym_DOLLARfor] = ACTIONS(1421), + [anon_sym_DOLLARforeach] = ACTIONS(1421), + [anon_sym_DOLLARalignof] = ACTIONS(1421), + [anon_sym_DOLLARextnameof] = ACTIONS(1421), + [anon_sym_DOLLARnameof] = ACTIONS(1421), + [anon_sym_DOLLARoffsetof] = ACTIONS(1421), + [anon_sym_DOLLARqnameof] = ACTIONS(1421), + [anon_sym_DOLLARvaconst] = ACTIONS(1421), + [anon_sym_DOLLARvaarg] = ACTIONS(1421), + [anon_sym_DOLLARvaref] = ACTIONS(1421), + [anon_sym_DOLLARvaexpr] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [anon_sym_null] = ACTIONS(1421), + [anon_sym_DOLLARvacount] = ACTIONS(1421), + [anon_sym_DOLLAReval] = ACTIONS(1421), + [anon_sym_DOLLARis_const] = ACTIONS(1421), + [anon_sym_DOLLARsizeof] = ACTIONS(1421), + [anon_sym_DOLLARstringify] = ACTIONS(1421), + [anon_sym_DOLLARappend] = ACTIONS(1421), + [anon_sym_DOLLARconcat] = ACTIONS(1421), + [anon_sym_DOLLARdefined] = ACTIONS(1421), + [anon_sym_DOLLARembed] = ACTIONS(1421), + [anon_sym_DOLLARand] = ACTIONS(1421), + [anon_sym_DOLLARor] = ACTIONS(1421), + [anon_sym_DOLLARfeature] = ACTIONS(1421), + [anon_sym_DOLLARassignable] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(1423), + [anon_sym_PLUS_PLUS] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1423), + [anon_sym_typeid] = ACTIONS(1421), + [anon_sym_LBRACE_PIPE] = ACTIONS(1423), + [anon_sym_void] = ACTIONS(1421), + [anon_sym_bool] = ACTIONS(1421), + [anon_sym_char] = ACTIONS(1421), + [anon_sym_ichar] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_ushort] = ACTIONS(1421), + [anon_sym_uint] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_ulong] = ACTIONS(1421), + [anon_sym_int128] = ACTIONS(1421), + [anon_sym_uint128] = ACTIONS(1421), + [anon_sym_float] = ACTIONS(1421), + [anon_sym_double] = ACTIONS(1421), + [anon_sym_float16] = ACTIONS(1421), + [anon_sym_bfloat16] = ACTIONS(1421), + [anon_sym_float128] = ACTIONS(1421), + [anon_sym_iptr] = ACTIONS(1421), + [anon_sym_uptr] = ACTIONS(1421), + [anon_sym_isz] = ACTIONS(1421), + [anon_sym_usz] = ACTIONS(1421), + [anon_sym_anyfault] = ACTIONS(1421), + [anon_sym_any] = ACTIONS(1421), + [anon_sym_DOLLARtypeof] = ACTIONS(1421), + [anon_sym_DOLLARtypefrom] = ACTIONS(1421), + [anon_sym_DOLLARevaltype] = ACTIONS(1421), + [anon_sym_DOLLARvatype] = ACTIONS(1421), + [sym_real_literal] = ACTIONS(1423), }, - [562] = { - [sym_line_comment] = STATE(562), - [sym_doc_comment] = STATE(562), - [sym_block_comment] = STATE(562), - [sym_ident] = ACTIONS(1385), - [sym_integer_literal] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1387), - [anon_sym_DQUOTE] = ACTIONS(1387), - [anon_sym_BQUOTE] = ACTIONS(1387), - [sym_bytes_literal] = ACTIONS(1387), + [559] = { + [sym_line_comment] = STATE(559), + [sym_doc_comment] = STATE(559), + [sym_block_comment] = STATE(559), + [sym_ident] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(1427), + [anon_sym_BQUOTE] = ACTIONS(1427), + [sym_bytes_literal] = ACTIONS(1427), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1385), - [sym_at_ident] = ACTIONS(1387), - [sym_hash_ident] = ACTIONS(1387), - [sym_type_ident] = ACTIONS(1387), - [sym_ct_type_ident] = ACTIONS(1387), - [sym_const_ident] = ACTIONS(1385), - [sym_builtin] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1385), - [anon_sym_tlocal] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_fn] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_var] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_defer] = ACTIONS(1385), - [anon_sym_assert] = ACTIONS(1385), - [anon_sym_nextcase] = ACTIONS(1385), - [anon_sym_switch] = ACTIONS(1385), - [anon_sym_AMP_AMP] = ACTIONS(1387), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_foreach] = ACTIONS(1385), - [anon_sym_foreach_r] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_do] = ACTIONS(1385), - [anon_sym_int] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_asm] = ACTIONS(1385), - [anon_sym_DOLLARassert] = ACTIONS(1385), - [anon_sym_DOLLARerror] = ACTIONS(1385), - [anon_sym_DOLLARecho] = ACTIONS(1385), - [anon_sym_DOLLARif] = ACTIONS(1385), - [anon_sym_DOLLARendif] = ACTIONS(1385), - [anon_sym_DOLLARelse] = ACTIONS(1385), - [anon_sym_DOLLARswitch] = ACTIONS(1385), - [anon_sym_DOLLARfor] = ACTIONS(1385), - [anon_sym_DOLLARforeach] = ACTIONS(1385), - [anon_sym_DOLLARalignof] = ACTIONS(1385), - [anon_sym_DOLLARextnameof] = ACTIONS(1385), - [anon_sym_DOLLARnameof] = ACTIONS(1385), - [anon_sym_DOLLARoffsetof] = ACTIONS(1385), - [anon_sym_DOLLARqnameof] = ACTIONS(1385), - [anon_sym_DOLLAReval] = ACTIONS(1385), - [anon_sym_DOLLARdefined] = ACTIONS(1385), - [anon_sym_DOLLARsizeof] = ACTIONS(1385), - [anon_sym_DOLLARstringify] = ACTIONS(1385), - [anon_sym_DOLLARis_const] = ACTIONS(1385), - [anon_sym_DOLLARvaconst] = ACTIONS(1385), - [anon_sym_DOLLARvaarg] = ACTIONS(1385), - [anon_sym_DOLLARvaref] = ACTIONS(1385), - [anon_sym_DOLLARvaexpr] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1385), - [anon_sym_false] = ACTIONS(1385), - [anon_sym_null] = ACTIONS(1385), - [anon_sym_DOLLARvacount] = ACTIONS(1385), - [anon_sym_DOLLARfeature] = ACTIONS(1385), - [anon_sym_DOLLARand] = ACTIONS(1385), - [anon_sym_DOLLARor] = ACTIONS(1385), - [anon_sym_DOLLARassignable] = ACTIONS(1385), - [anon_sym_DOLLARembed] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_PLUS_PLUS] = ACTIONS(1387), - [anon_sym_DASH_DASH] = ACTIONS(1387), - [anon_sym_typeid] = ACTIONS(1385), - [anon_sym_LBRACE_PIPE] = ACTIONS(1387), - [anon_sym_void] = ACTIONS(1385), - [anon_sym_bool] = ACTIONS(1385), - [anon_sym_char] = ACTIONS(1385), - [anon_sym_ichar] = ACTIONS(1385), - [anon_sym_short] = ACTIONS(1385), - [anon_sym_ushort] = ACTIONS(1385), - [anon_sym_uint] = ACTIONS(1385), - [anon_sym_long] = ACTIONS(1385), - [anon_sym_ulong] = ACTIONS(1385), - [anon_sym_int128] = ACTIONS(1385), - [anon_sym_uint128] = ACTIONS(1385), - [anon_sym_float] = ACTIONS(1385), - [anon_sym_double] = ACTIONS(1385), - [anon_sym_float16] = ACTIONS(1385), - [anon_sym_bfloat16] = ACTIONS(1385), - [anon_sym_float128] = ACTIONS(1385), - [anon_sym_iptr] = ACTIONS(1385), - [anon_sym_uptr] = ACTIONS(1385), - [anon_sym_isz] = ACTIONS(1385), - [anon_sym_usz] = ACTIONS(1385), - [anon_sym_anyfault] = ACTIONS(1385), - [anon_sym_any] = ACTIONS(1385), - [anon_sym_DOLLARtypeof] = ACTIONS(1385), - [anon_sym_DOLLARtypefrom] = ACTIONS(1385), - [anon_sym_DOLLARvatype] = ACTIONS(1385), - [anon_sym_DOLLARevaltype] = ACTIONS(1385), - [sym_real_literal] = ACTIONS(1387), - }, - [563] = { - [sym_line_comment] = STATE(563), - [sym_doc_comment] = STATE(563), - [sym_block_comment] = STATE(563), - [sym_ident] = ACTIONS(1181), - [sym_integer_literal] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [sym_bytes_literal] = ACTIONS(1183), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1181), - [sym_at_ident] = ACTIONS(1183), - [sym_hash_ident] = ACTIONS(1183), - [sym_type_ident] = ACTIONS(1183), - [sym_ct_type_ident] = ACTIONS(1183), - [sym_const_ident] = ACTIONS(1181), - [sym_builtin] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_tlocal] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_fn] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_var] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_defer] = ACTIONS(1181), - [anon_sym_assert] = ACTIONS(1181), - [anon_sym_nextcase] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_foreach] = ACTIONS(1181), - [anon_sym_foreach_r] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym_DOLLARassert] = ACTIONS(1181), - [anon_sym_DOLLARerror] = ACTIONS(1181), - [anon_sym_DOLLARecho] = ACTIONS(1181), - [anon_sym_DOLLARif] = ACTIONS(1181), - [anon_sym_DOLLARendif] = ACTIONS(1181), - [anon_sym_DOLLARelse] = ACTIONS(1181), - [anon_sym_DOLLARswitch] = ACTIONS(1181), - [anon_sym_DOLLARfor] = ACTIONS(1181), - [anon_sym_DOLLARforeach] = ACTIONS(1181), - [anon_sym_DOLLARalignof] = ACTIONS(1181), - [anon_sym_DOLLARextnameof] = ACTIONS(1181), - [anon_sym_DOLLARnameof] = ACTIONS(1181), - [anon_sym_DOLLARoffsetof] = ACTIONS(1181), - [anon_sym_DOLLARqnameof] = ACTIONS(1181), - [anon_sym_DOLLAReval] = ACTIONS(1181), - [anon_sym_DOLLARdefined] = ACTIONS(1181), - [anon_sym_DOLLARsizeof] = ACTIONS(1181), - [anon_sym_DOLLARstringify] = ACTIONS(1181), - [anon_sym_DOLLARis_const] = ACTIONS(1181), - [anon_sym_DOLLARvaconst] = ACTIONS(1181), - [anon_sym_DOLLARvaarg] = ACTIONS(1181), - [anon_sym_DOLLARvaref] = ACTIONS(1181), - [anon_sym_DOLLARvaexpr] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_null] = ACTIONS(1181), - [anon_sym_DOLLARvacount] = ACTIONS(1181), - [anon_sym_DOLLARfeature] = ACTIONS(1181), - [anon_sym_DOLLARand] = ACTIONS(1181), - [anon_sym_DOLLARor] = ACTIONS(1181), - [anon_sym_DOLLARassignable] = ACTIONS(1181), - [anon_sym_DOLLARembed] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_typeid] = ACTIONS(1181), - [anon_sym_LBRACE_PIPE] = ACTIONS(1183), - [anon_sym_void] = ACTIONS(1181), - [anon_sym_bool] = ACTIONS(1181), - [anon_sym_char] = ACTIONS(1181), - [anon_sym_ichar] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_ushort] = ACTIONS(1181), - [anon_sym_uint] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_ulong] = ACTIONS(1181), - [anon_sym_int128] = ACTIONS(1181), - [anon_sym_uint128] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_double] = ACTIONS(1181), - [anon_sym_float16] = ACTIONS(1181), - [anon_sym_bfloat16] = ACTIONS(1181), - [anon_sym_float128] = ACTIONS(1181), - [anon_sym_iptr] = ACTIONS(1181), - [anon_sym_uptr] = ACTIONS(1181), - [anon_sym_isz] = ACTIONS(1181), - [anon_sym_usz] = ACTIONS(1181), - [anon_sym_anyfault] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_DOLLARtypeof] = ACTIONS(1181), - [anon_sym_DOLLARtypefrom] = ACTIONS(1181), - [anon_sym_DOLLARvatype] = ACTIONS(1181), - [anon_sym_DOLLARevaltype] = ACTIONS(1181), - [sym_real_literal] = ACTIONS(1183), + [sym_ct_ident] = ACTIONS(1425), + [sym_at_ident] = ACTIONS(1427), + [sym_hash_ident] = ACTIONS(1427), + [sym_type_ident] = ACTIONS(1427), + [sym_ct_type_ident] = ACTIONS(1427), + [sym_const_ident] = ACTIONS(1425), + [sym_builtin] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_tlocal] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_fn] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_var] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_defer] = ACTIONS(1425), + [anon_sym_assert] = ACTIONS(1425), + [anon_sym_nextcase] = ACTIONS(1425), + [anon_sym_switch] = ACTIONS(1425), + [anon_sym_AMP_AMP] = ACTIONS(1427), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_foreach] = ACTIONS(1425), + [anon_sym_foreach_r] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_int] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_asm] = ACTIONS(1425), + [anon_sym_DOLLARassert] = ACTIONS(1425), + [anon_sym_DOLLARerror] = ACTIONS(1425), + [anon_sym_DOLLARecho] = ACTIONS(1425), + [anon_sym_DOLLARif] = ACTIONS(1425), + [anon_sym_DOLLARendif] = ACTIONS(1425), + [anon_sym_DOLLARelse] = ACTIONS(1425), + [anon_sym_DOLLARswitch] = ACTIONS(1425), + [anon_sym_DOLLARfor] = ACTIONS(1425), + [anon_sym_DOLLARforeach] = ACTIONS(1425), + [anon_sym_DOLLARalignof] = ACTIONS(1425), + [anon_sym_DOLLARextnameof] = ACTIONS(1425), + [anon_sym_DOLLARnameof] = ACTIONS(1425), + [anon_sym_DOLLARoffsetof] = ACTIONS(1425), + [anon_sym_DOLLARqnameof] = ACTIONS(1425), + [anon_sym_DOLLARvaconst] = ACTIONS(1425), + [anon_sym_DOLLARvaarg] = ACTIONS(1425), + [anon_sym_DOLLARvaref] = ACTIONS(1425), + [anon_sym_DOLLARvaexpr] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_DOLLARvacount] = ACTIONS(1425), + [anon_sym_DOLLAReval] = ACTIONS(1425), + [anon_sym_DOLLARis_const] = ACTIONS(1425), + [anon_sym_DOLLARsizeof] = ACTIONS(1425), + [anon_sym_DOLLARstringify] = ACTIONS(1425), + [anon_sym_DOLLARappend] = ACTIONS(1425), + [anon_sym_DOLLARconcat] = ACTIONS(1425), + [anon_sym_DOLLARdefined] = ACTIONS(1425), + [anon_sym_DOLLARembed] = ACTIONS(1425), + [anon_sym_DOLLARand] = ACTIONS(1425), + [anon_sym_DOLLARor] = ACTIONS(1425), + [anon_sym_DOLLARfeature] = ACTIONS(1425), + [anon_sym_DOLLARassignable] = ACTIONS(1425), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1427), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_typeid] = ACTIONS(1425), + [anon_sym_LBRACE_PIPE] = ACTIONS(1427), + [anon_sym_void] = ACTIONS(1425), + [anon_sym_bool] = ACTIONS(1425), + [anon_sym_char] = ACTIONS(1425), + [anon_sym_ichar] = ACTIONS(1425), + [anon_sym_short] = ACTIONS(1425), + [anon_sym_ushort] = ACTIONS(1425), + [anon_sym_uint] = ACTIONS(1425), + [anon_sym_long] = ACTIONS(1425), + [anon_sym_ulong] = ACTIONS(1425), + [anon_sym_int128] = ACTIONS(1425), + [anon_sym_uint128] = ACTIONS(1425), + [anon_sym_float] = ACTIONS(1425), + [anon_sym_double] = ACTIONS(1425), + [anon_sym_float16] = ACTIONS(1425), + [anon_sym_bfloat16] = ACTIONS(1425), + [anon_sym_float128] = ACTIONS(1425), + [anon_sym_iptr] = ACTIONS(1425), + [anon_sym_uptr] = ACTIONS(1425), + [anon_sym_isz] = ACTIONS(1425), + [anon_sym_usz] = ACTIONS(1425), + [anon_sym_anyfault] = ACTIONS(1425), + [anon_sym_any] = ACTIONS(1425), + [anon_sym_DOLLARtypeof] = ACTIONS(1425), + [anon_sym_DOLLARtypefrom] = ACTIONS(1425), + [anon_sym_DOLLARevaltype] = ACTIONS(1425), + [anon_sym_DOLLARvatype] = ACTIONS(1425), + [sym_real_literal] = ACTIONS(1427), }, - [564] = { - [sym_line_comment] = STATE(564), - [sym_doc_comment] = STATE(564), - [sym_block_comment] = STATE(564), + [560] = { + [sym_line_comment] = STATE(560), + [sym_doc_comment] = STATE(560), + [sym_block_comment] = STATE(560), [sym_ident] = ACTIONS(1429), [sym_integer_literal] = ACTIONS(1431), [anon_sym_SQUOTE] = ACTIONS(1431), @@ -90394,7 +89959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1431), [sym_bytes_literal] = ACTIONS(1431), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1429), [sym_at_ident] = ACTIONS(1431), @@ -90445,11 +90010,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1429), [anon_sym_DOLLARoffsetof] = ACTIONS(1429), [anon_sym_DOLLARqnameof] = ACTIONS(1429), - [anon_sym_DOLLAReval] = ACTIONS(1429), - [anon_sym_DOLLARdefined] = ACTIONS(1429), - [anon_sym_DOLLARsizeof] = ACTIONS(1429), - [anon_sym_DOLLARstringify] = ACTIONS(1429), - [anon_sym_DOLLARis_const] = ACTIONS(1429), [anon_sym_DOLLARvaconst] = ACTIONS(1429), [anon_sym_DOLLARvaarg] = ACTIONS(1429), [anon_sym_DOLLARvaref] = ACTIONS(1429), @@ -90458,11 +90018,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1429), [anon_sym_null] = ACTIONS(1429), [anon_sym_DOLLARvacount] = ACTIONS(1429), - [anon_sym_DOLLARfeature] = ACTIONS(1429), + [anon_sym_DOLLAReval] = ACTIONS(1429), + [anon_sym_DOLLARis_const] = ACTIONS(1429), + [anon_sym_DOLLARsizeof] = ACTIONS(1429), + [anon_sym_DOLLARstringify] = ACTIONS(1429), + [anon_sym_DOLLARappend] = ACTIONS(1429), + [anon_sym_DOLLARconcat] = ACTIONS(1429), + [anon_sym_DOLLARdefined] = ACTIONS(1429), + [anon_sym_DOLLARembed] = ACTIONS(1429), [anon_sym_DOLLARand] = ACTIONS(1429), [anon_sym_DOLLARor] = ACTIONS(1429), + [anon_sym_DOLLARfeature] = ACTIONS(1429), [anon_sym_DOLLARassignable] = ACTIONS(1429), - [anon_sym_DOLLARembed] = ACTIONS(1429), [anon_sym_BANG] = ACTIONS(1431), [anon_sym_TILDE] = ACTIONS(1431), [anon_sym_PLUS_PLUS] = ACTIONS(1431), @@ -90487,1386 +90054,716 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_float128] = ACTIONS(1429), [anon_sym_iptr] = ACTIONS(1429), [anon_sym_uptr] = ACTIONS(1429), - [anon_sym_isz] = ACTIONS(1429), - [anon_sym_usz] = ACTIONS(1429), - [anon_sym_anyfault] = ACTIONS(1429), - [anon_sym_any] = ACTIONS(1429), - [anon_sym_DOLLARtypeof] = ACTIONS(1429), - [anon_sym_DOLLARtypefrom] = ACTIONS(1429), - [anon_sym_DOLLARvatype] = ACTIONS(1429), - [anon_sym_DOLLARevaltype] = ACTIONS(1429), - [sym_real_literal] = ACTIONS(1431), - }, - [565] = { - [sym_line_comment] = STATE(565), - [sym_doc_comment] = STATE(565), - [sym_block_comment] = STATE(565), - [sym_ident] = ACTIONS(1445), - [sym_integer_literal] = ACTIONS(1447), - [anon_sym_SQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [anon_sym_BQUOTE] = ACTIONS(1447), - [sym_bytes_literal] = ACTIONS(1447), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1445), - [sym_at_ident] = ACTIONS(1447), - [sym_hash_ident] = ACTIONS(1447), - [sym_type_ident] = ACTIONS(1447), - [sym_ct_type_ident] = ACTIONS(1447), - [sym_const_ident] = ACTIONS(1445), - [sym_builtin] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_tlocal] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1447), - [anon_sym_fn] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_const] = ACTIONS(1445), - [anon_sym_var] = ACTIONS(1445), - [anon_sym_return] = ACTIONS(1445), - [anon_sym_continue] = ACTIONS(1445), - [anon_sym_break] = ACTIONS(1445), - [anon_sym_defer] = ACTIONS(1445), - [anon_sym_assert] = ACTIONS(1445), - [anon_sym_nextcase] = ACTIONS(1445), - [anon_sym_switch] = ACTIONS(1445), - [anon_sym_AMP_AMP] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1445), - [anon_sym_for] = ACTIONS(1445), - [anon_sym_foreach] = ACTIONS(1445), - [anon_sym_foreach_r] = ACTIONS(1445), - [anon_sym_while] = ACTIONS(1445), - [anon_sym_do] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_asm] = ACTIONS(1445), - [anon_sym_DOLLARassert] = ACTIONS(1445), - [anon_sym_DOLLARerror] = ACTIONS(1445), - [anon_sym_DOLLARecho] = ACTIONS(1445), - [anon_sym_DOLLARif] = ACTIONS(1445), - [anon_sym_DOLLARendif] = ACTIONS(1445), - [anon_sym_DOLLARelse] = ACTIONS(1445), - [anon_sym_DOLLARswitch] = ACTIONS(1445), - [anon_sym_DOLLARfor] = ACTIONS(1445), - [anon_sym_DOLLARforeach] = ACTIONS(1445), - [anon_sym_DOLLARalignof] = ACTIONS(1445), - [anon_sym_DOLLARextnameof] = ACTIONS(1445), - [anon_sym_DOLLARnameof] = ACTIONS(1445), - [anon_sym_DOLLARoffsetof] = ACTIONS(1445), - [anon_sym_DOLLARqnameof] = ACTIONS(1445), - [anon_sym_DOLLAReval] = ACTIONS(1445), - [anon_sym_DOLLARdefined] = ACTIONS(1445), - [anon_sym_DOLLARsizeof] = ACTIONS(1445), - [anon_sym_DOLLARstringify] = ACTIONS(1445), - [anon_sym_DOLLARis_const] = ACTIONS(1445), - [anon_sym_DOLLARvaconst] = ACTIONS(1445), - [anon_sym_DOLLARvaarg] = ACTIONS(1445), - [anon_sym_DOLLARvaref] = ACTIONS(1445), - [anon_sym_DOLLARvaexpr] = ACTIONS(1445), - [anon_sym_true] = ACTIONS(1445), - [anon_sym_false] = ACTIONS(1445), - [anon_sym_null] = ACTIONS(1445), - [anon_sym_DOLLARvacount] = ACTIONS(1445), - [anon_sym_DOLLARfeature] = ACTIONS(1445), - [anon_sym_DOLLARand] = ACTIONS(1445), - [anon_sym_DOLLARor] = ACTIONS(1445), - [anon_sym_DOLLARassignable] = ACTIONS(1445), - [anon_sym_DOLLARembed] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(1447), - [anon_sym_DASH_DASH] = ACTIONS(1447), - [anon_sym_typeid] = ACTIONS(1445), - [anon_sym_LBRACE_PIPE] = ACTIONS(1447), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_char] = ACTIONS(1445), - [anon_sym_ichar] = ACTIONS(1445), - [anon_sym_short] = ACTIONS(1445), - [anon_sym_ushort] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_long] = ACTIONS(1445), - [anon_sym_ulong] = ACTIONS(1445), - [anon_sym_int128] = ACTIONS(1445), - [anon_sym_uint128] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_double] = ACTIONS(1445), - [anon_sym_float16] = ACTIONS(1445), - [anon_sym_bfloat16] = ACTIONS(1445), - [anon_sym_float128] = ACTIONS(1445), - [anon_sym_iptr] = ACTIONS(1445), - [anon_sym_uptr] = ACTIONS(1445), - [anon_sym_isz] = ACTIONS(1445), - [anon_sym_usz] = ACTIONS(1445), - [anon_sym_anyfault] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_DOLLARtypeof] = ACTIONS(1445), - [anon_sym_DOLLARtypefrom] = ACTIONS(1445), - [anon_sym_DOLLARvatype] = ACTIONS(1445), - [anon_sym_DOLLARevaltype] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1447), - }, - [566] = { - [sym_line_comment] = STATE(566), - [sym_doc_comment] = STATE(566), - [sym_block_comment] = STATE(566), - [sym_ident] = ACTIONS(1449), - [sym_integer_literal] = ACTIONS(1451), - [anon_sym_SQUOTE] = ACTIONS(1451), - [anon_sym_DQUOTE] = ACTIONS(1451), - [anon_sym_BQUOTE] = ACTIONS(1451), - [sym_bytes_literal] = ACTIONS(1451), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1449), - [sym_at_ident] = ACTIONS(1451), - [sym_hash_ident] = ACTIONS(1451), - [sym_type_ident] = ACTIONS(1451), - [sym_ct_type_ident] = ACTIONS(1451), - [sym_const_ident] = ACTIONS(1449), - [sym_builtin] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_static] = ACTIONS(1449), - [anon_sym_tlocal] = ACTIONS(1449), - [anon_sym_SEMI] = ACTIONS(1451), - [anon_sym_fn] = ACTIONS(1449), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1449), - [anon_sym_var] = ACTIONS(1449), - [anon_sym_return] = ACTIONS(1449), - [anon_sym_continue] = ACTIONS(1449), - [anon_sym_break] = ACTIONS(1449), - [anon_sym_defer] = ACTIONS(1449), - [anon_sym_assert] = ACTIONS(1449), - [anon_sym_nextcase] = ACTIONS(1449), - [anon_sym_switch] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_if] = ACTIONS(1449), - [anon_sym_for] = ACTIONS(1449), - [anon_sym_foreach] = ACTIONS(1449), - [anon_sym_foreach_r] = ACTIONS(1449), - [anon_sym_while] = ACTIONS(1449), - [anon_sym_do] = ACTIONS(1449), - [anon_sym_int] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1451), - [anon_sym_asm] = ACTIONS(1449), - [anon_sym_DOLLARassert] = ACTIONS(1449), - [anon_sym_DOLLARerror] = ACTIONS(1449), - [anon_sym_DOLLARecho] = ACTIONS(1449), - [anon_sym_DOLLARif] = ACTIONS(1449), - [anon_sym_DOLLARendif] = ACTIONS(1449), - [anon_sym_DOLLARelse] = ACTIONS(1449), - [anon_sym_DOLLARswitch] = ACTIONS(1449), - [anon_sym_DOLLARfor] = ACTIONS(1449), - [anon_sym_DOLLARforeach] = ACTIONS(1449), - [anon_sym_DOLLARalignof] = ACTIONS(1449), - [anon_sym_DOLLARextnameof] = ACTIONS(1449), - [anon_sym_DOLLARnameof] = ACTIONS(1449), - [anon_sym_DOLLARoffsetof] = ACTIONS(1449), - [anon_sym_DOLLARqnameof] = ACTIONS(1449), - [anon_sym_DOLLAReval] = ACTIONS(1449), - [anon_sym_DOLLARdefined] = ACTIONS(1449), - [anon_sym_DOLLARsizeof] = ACTIONS(1449), - [anon_sym_DOLLARstringify] = ACTIONS(1449), - [anon_sym_DOLLARis_const] = ACTIONS(1449), - [anon_sym_DOLLARvaconst] = ACTIONS(1449), - [anon_sym_DOLLARvaarg] = ACTIONS(1449), - [anon_sym_DOLLARvaref] = ACTIONS(1449), - [anon_sym_DOLLARvaexpr] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1449), - [anon_sym_false] = ACTIONS(1449), - [anon_sym_null] = ACTIONS(1449), - [anon_sym_DOLLARvacount] = ACTIONS(1449), - [anon_sym_DOLLARfeature] = ACTIONS(1449), - [anon_sym_DOLLARand] = ACTIONS(1449), - [anon_sym_DOLLARor] = ACTIONS(1449), - [anon_sym_DOLLARassignable] = ACTIONS(1449), - [anon_sym_DOLLARembed] = ACTIONS(1449), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_TILDE] = ACTIONS(1451), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [anon_sym_typeid] = ACTIONS(1449), - [anon_sym_LBRACE_PIPE] = ACTIONS(1451), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_bool] = ACTIONS(1449), - [anon_sym_char] = ACTIONS(1449), - [anon_sym_ichar] = ACTIONS(1449), - [anon_sym_short] = ACTIONS(1449), - [anon_sym_ushort] = ACTIONS(1449), - [anon_sym_uint] = ACTIONS(1449), - [anon_sym_long] = ACTIONS(1449), - [anon_sym_ulong] = ACTIONS(1449), - [anon_sym_int128] = ACTIONS(1449), - [anon_sym_uint128] = ACTIONS(1449), - [anon_sym_float] = ACTIONS(1449), - [anon_sym_double] = ACTIONS(1449), - [anon_sym_float16] = ACTIONS(1449), - [anon_sym_bfloat16] = ACTIONS(1449), - [anon_sym_float128] = ACTIONS(1449), - [anon_sym_iptr] = ACTIONS(1449), - [anon_sym_uptr] = ACTIONS(1449), - [anon_sym_isz] = ACTIONS(1449), - [anon_sym_usz] = ACTIONS(1449), - [anon_sym_anyfault] = ACTIONS(1449), - [anon_sym_any] = ACTIONS(1449), - [anon_sym_DOLLARtypeof] = ACTIONS(1449), - [anon_sym_DOLLARtypefrom] = ACTIONS(1449), - [anon_sym_DOLLARvatype] = ACTIONS(1449), - [anon_sym_DOLLARevaltype] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1451), + [anon_sym_isz] = ACTIONS(1429), + [anon_sym_usz] = ACTIONS(1429), + [anon_sym_anyfault] = ACTIONS(1429), + [anon_sym_any] = ACTIONS(1429), + [anon_sym_DOLLARtypeof] = ACTIONS(1429), + [anon_sym_DOLLARtypefrom] = ACTIONS(1429), + [anon_sym_DOLLARevaltype] = ACTIONS(1429), + [anon_sym_DOLLARvatype] = ACTIONS(1429), + [sym_real_literal] = ACTIONS(1431), }, - [567] = { - [sym_line_comment] = STATE(567), - [sym_doc_comment] = STATE(567), - [sym_block_comment] = STATE(567), - [sym_ident] = ACTIONS(1463), - [sym_integer_literal] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1465), - [sym_bytes_literal] = ACTIONS(1465), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1463), - [sym_at_ident] = ACTIONS(1465), - [sym_hash_ident] = ACTIONS(1465), - [sym_type_ident] = ACTIONS(1465), - [sym_ct_type_ident] = ACTIONS(1465), - [sym_const_ident] = ACTIONS(1463), - [sym_builtin] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_static] = ACTIONS(1463), - [anon_sym_tlocal] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_var] = ACTIONS(1463), - [anon_sym_return] = ACTIONS(1463), - [anon_sym_continue] = ACTIONS(1463), - [anon_sym_break] = ACTIONS(1463), - [anon_sym_defer] = ACTIONS(1463), - [anon_sym_assert] = ACTIONS(1463), - [anon_sym_nextcase] = ACTIONS(1463), - [anon_sym_switch] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1463), - [anon_sym_for] = ACTIONS(1463), - [anon_sym_foreach] = ACTIONS(1463), - [anon_sym_foreach_r] = ACTIONS(1463), - [anon_sym_while] = ACTIONS(1463), - [anon_sym_do] = ACTIONS(1463), - [anon_sym_int] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_asm] = ACTIONS(1463), - [anon_sym_DOLLARassert] = ACTIONS(1463), - [anon_sym_DOLLARerror] = ACTIONS(1463), - [anon_sym_DOLLARecho] = ACTIONS(1463), - [anon_sym_DOLLARif] = ACTIONS(1463), - [anon_sym_DOLLARendif] = ACTIONS(1463), - [anon_sym_DOLLARelse] = ACTIONS(1463), - [anon_sym_DOLLARswitch] = ACTIONS(1463), - [anon_sym_DOLLARfor] = ACTIONS(1463), - [anon_sym_DOLLARforeach] = ACTIONS(1463), - [anon_sym_DOLLARalignof] = ACTIONS(1463), - [anon_sym_DOLLARextnameof] = ACTIONS(1463), - [anon_sym_DOLLARnameof] = ACTIONS(1463), - [anon_sym_DOLLARoffsetof] = ACTIONS(1463), - [anon_sym_DOLLARqnameof] = ACTIONS(1463), - [anon_sym_DOLLAReval] = ACTIONS(1463), - [anon_sym_DOLLARdefined] = ACTIONS(1463), - [anon_sym_DOLLARsizeof] = ACTIONS(1463), - [anon_sym_DOLLARstringify] = ACTIONS(1463), - [anon_sym_DOLLARis_const] = ACTIONS(1463), - [anon_sym_DOLLARvaconst] = ACTIONS(1463), - [anon_sym_DOLLARvaarg] = ACTIONS(1463), - [anon_sym_DOLLARvaref] = ACTIONS(1463), - [anon_sym_DOLLARvaexpr] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1463), - [anon_sym_false] = ACTIONS(1463), - [anon_sym_null] = ACTIONS(1463), - [anon_sym_DOLLARvacount] = ACTIONS(1463), - [anon_sym_DOLLARfeature] = ACTIONS(1463), - [anon_sym_DOLLARand] = ACTIONS(1463), - [anon_sym_DOLLARor] = ACTIONS(1463), - [anon_sym_DOLLARassignable] = ACTIONS(1463), - [anon_sym_DOLLARembed] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1465), - [anon_sym_PLUS_PLUS] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1465), - [anon_sym_typeid] = ACTIONS(1463), - [anon_sym_LBRACE_PIPE] = ACTIONS(1465), - [anon_sym_void] = ACTIONS(1463), - [anon_sym_bool] = ACTIONS(1463), - [anon_sym_char] = ACTIONS(1463), - [anon_sym_ichar] = ACTIONS(1463), - [anon_sym_short] = ACTIONS(1463), - [anon_sym_ushort] = ACTIONS(1463), - [anon_sym_uint] = ACTIONS(1463), - [anon_sym_long] = ACTIONS(1463), - [anon_sym_ulong] = ACTIONS(1463), - [anon_sym_int128] = ACTIONS(1463), - [anon_sym_uint128] = ACTIONS(1463), - [anon_sym_float] = ACTIONS(1463), - [anon_sym_double] = ACTIONS(1463), - [anon_sym_float16] = ACTIONS(1463), - [anon_sym_bfloat16] = ACTIONS(1463), - [anon_sym_float128] = ACTIONS(1463), - [anon_sym_iptr] = ACTIONS(1463), - [anon_sym_uptr] = ACTIONS(1463), - [anon_sym_isz] = ACTIONS(1463), - [anon_sym_usz] = ACTIONS(1463), - [anon_sym_anyfault] = ACTIONS(1463), - [anon_sym_any] = ACTIONS(1463), - [anon_sym_DOLLARtypeof] = ACTIONS(1463), - [anon_sym_DOLLARtypefrom] = ACTIONS(1463), - [anon_sym_DOLLARvatype] = ACTIONS(1463), - [anon_sym_DOLLARevaltype] = ACTIONS(1463), - [sym_real_literal] = ACTIONS(1465), + [561] = { + [sym_line_comment] = STATE(561), + [sym_doc_comment] = STATE(561), + [sym_block_comment] = STATE(561), + [sym_ident] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_BQUOTE] = ACTIONS(1475), + [sym_bytes_literal] = ACTIONS(1475), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1473), + [sym_at_ident] = ACTIONS(1475), + [sym_hash_ident] = ACTIONS(1475), + [sym_type_ident] = ACTIONS(1475), + [sym_ct_type_ident] = ACTIONS(1475), + [sym_const_ident] = ACTIONS(1473), + [sym_builtin] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_tlocal] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_defer] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_nextcase] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_foreach] = ACTIONS(1473), + [anon_sym_foreach_r] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_asm] = ACTIONS(1473), + [anon_sym_DOLLARassert] = ACTIONS(1473), + [anon_sym_DOLLARerror] = ACTIONS(1473), + [anon_sym_DOLLARecho] = ACTIONS(1473), + [anon_sym_DOLLARif] = ACTIONS(1473), + [anon_sym_DOLLARendif] = ACTIONS(1473), + [anon_sym_DOLLARelse] = ACTIONS(1473), + [anon_sym_DOLLARswitch] = ACTIONS(1473), + [anon_sym_DOLLARfor] = ACTIONS(1473), + [anon_sym_DOLLARforeach] = ACTIONS(1473), + [anon_sym_DOLLARalignof] = ACTIONS(1473), + [anon_sym_DOLLARextnameof] = ACTIONS(1473), + [anon_sym_DOLLARnameof] = ACTIONS(1473), + [anon_sym_DOLLARoffsetof] = ACTIONS(1473), + [anon_sym_DOLLARqnameof] = ACTIONS(1473), + [anon_sym_DOLLARvaconst] = ACTIONS(1473), + [anon_sym_DOLLARvaarg] = ACTIONS(1473), + [anon_sym_DOLLARvaref] = ACTIONS(1473), + [anon_sym_DOLLARvaexpr] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_DOLLARvacount] = ACTIONS(1473), + [anon_sym_DOLLAReval] = ACTIONS(1473), + [anon_sym_DOLLARis_const] = ACTIONS(1473), + [anon_sym_DOLLARsizeof] = ACTIONS(1473), + [anon_sym_DOLLARstringify] = ACTIONS(1473), + [anon_sym_DOLLARappend] = ACTIONS(1473), + [anon_sym_DOLLARconcat] = ACTIONS(1473), + [anon_sym_DOLLARdefined] = ACTIONS(1473), + [anon_sym_DOLLARembed] = ACTIONS(1473), + [anon_sym_DOLLARand] = ACTIONS(1473), + [anon_sym_DOLLARor] = ACTIONS(1473), + [anon_sym_DOLLARfeature] = ACTIONS(1473), + [anon_sym_DOLLARassignable] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_typeid] = ACTIONS(1473), + [anon_sym_LBRACE_PIPE] = ACTIONS(1475), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_ichar] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_ushort] = ACTIONS(1473), + [anon_sym_uint] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_ulong] = ACTIONS(1473), + [anon_sym_int128] = ACTIONS(1473), + [anon_sym_uint128] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_float16] = ACTIONS(1473), + [anon_sym_bfloat16] = ACTIONS(1473), + [anon_sym_float128] = ACTIONS(1473), + [anon_sym_iptr] = ACTIONS(1473), + [anon_sym_uptr] = ACTIONS(1473), + [anon_sym_isz] = ACTIONS(1473), + [anon_sym_usz] = ACTIONS(1473), + [anon_sym_anyfault] = ACTIONS(1473), + [anon_sym_any] = ACTIONS(1473), + [anon_sym_DOLLARtypeof] = ACTIONS(1473), + [anon_sym_DOLLARtypefrom] = ACTIONS(1473), + [anon_sym_DOLLARevaltype] = ACTIONS(1473), + [anon_sym_DOLLARvatype] = ACTIONS(1473), + [sym_real_literal] = ACTIONS(1475), }, - [568] = { - [sym_line_comment] = STATE(568), - [sym_doc_comment] = STATE(568), - [sym_block_comment] = STATE(568), - [sym_ident] = ACTIONS(1467), - [sym_integer_literal] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_BQUOTE] = ACTIONS(1469), - [sym_bytes_literal] = ACTIONS(1469), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1467), - [sym_at_ident] = ACTIONS(1469), - [sym_hash_ident] = ACTIONS(1469), - [sym_type_ident] = ACTIONS(1469), - [sym_ct_type_ident] = ACTIONS(1469), - [sym_const_ident] = ACTIONS(1467), - [sym_builtin] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_static] = ACTIONS(1467), - [anon_sym_tlocal] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_fn] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_const] = ACTIONS(1467), - [anon_sym_var] = ACTIONS(1467), - [anon_sym_return] = ACTIONS(1467), - [anon_sym_continue] = ACTIONS(1467), - [anon_sym_break] = ACTIONS(1467), - [anon_sym_defer] = ACTIONS(1467), - [anon_sym_assert] = ACTIONS(1467), - [anon_sym_nextcase] = ACTIONS(1467), - [anon_sym_switch] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_for] = ACTIONS(1467), - [anon_sym_foreach] = ACTIONS(1467), - [anon_sym_foreach_r] = ACTIONS(1467), - [anon_sym_while] = ACTIONS(1467), - [anon_sym_do] = ACTIONS(1467), - [anon_sym_int] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_asm] = ACTIONS(1467), - [anon_sym_DOLLARassert] = ACTIONS(1467), - [anon_sym_DOLLARerror] = ACTIONS(1467), - [anon_sym_DOLLARecho] = ACTIONS(1467), - [anon_sym_DOLLARif] = ACTIONS(1467), - [anon_sym_DOLLARendif] = ACTIONS(1467), - [anon_sym_DOLLARelse] = ACTIONS(1467), - [anon_sym_DOLLARswitch] = ACTIONS(1467), - [anon_sym_DOLLARfor] = ACTIONS(1467), - [anon_sym_DOLLARforeach] = ACTIONS(1467), - [anon_sym_DOLLARalignof] = ACTIONS(1467), - [anon_sym_DOLLARextnameof] = ACTIONS(1467), - [anon_sym_DOLLARnameof] = ACTIONS(1467), - [anon_sym_DOLLARoffsetof] = ACTIONS(1467), - [anon_sym_DOLLARqnameof] = ACTIONS(1467), - [anon_sym_DOLLAReval] = ACTIONS(1467), - [anon_sym_DOLLARdefined] = ACTIONS(1467), - [anon_sym_DOLLARsizeof] = ACTIONS(1467), - [anon_sym_DOLLARstringify] = ACTIONS(1467), - [anon_sym_DOLLARis_const] = ACTIONS(1467), - [anon_sym_DOLLARvaconst] = ACTIONS(1467), - [anon_sym_DOLLARvaarg] = ACTIONS(1467), - [anon_sym_DOLLARvaref] = ACTIONS(1467), - [anon_sym_DOLLARvaexpr] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1467), - [anon_sym_false] = ACTIONS(1467), - [anon_sym_null] = ACTIONS(1467), - [anon_sym_DOLLARvacount] = ACTIONS(1467), - [anon_sym_DOLLARfeature] = ACTIONS(1467), - [anon_sym_DOLLARand] = ACTIONS(1467), - [anon_sym_DOLLARor] = ACTIONS(1467), - [anon_sym_DOLLARassignable] = ACTIONS(1467), - [anon_sym_DOLLARembed] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_PLUS_PLUS] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1469), - [anon_sym_typeid] = ACTIONS(1467), - [anon_sym_LBRACE_PIPE] = ACTIONS(1469), - [anon_sym_void] = ACTIONS(1467), - [anon_sym_bool] = ACTIONS(1467), - [anon_sym_char] = ACTIONS(1467), - [anon_sym_ichar] = ACTIONS(1467), - [anon_sym_short] = ACTIONS(1467), - [anon_sym_ushort] = ACTIONS(1467), - [anon_sym_uint] = ACTIONS(1467), - [anon_sym_long] = ACTIONS(1467), - [anon_sym_ulong] = ACTIONS(1467), - [anon_sym_int128] = ACTIONS(1467), - [anon_sym_uint128] = ACTIONS(1467), - [anon_sym_float] = ACTIONS(1467), - [anon_sym_double] = ACTIONS(1467), - [anon_sym_float16] = ACTIONS(1467), - [anon_sym_bfloat16] = ACTIONS(1467), - [anon_sym_float128] = ACTIONS(1467), - [anon_sym_iptr] = ACTIONS(1467), - [anon_sym_uptr] = ACTIONS(1467), - [anon_sym_isz] = ACTIONS(1467), - [anon_sym_usz] = ACTIONS(1467), - [anon_sym_anyfault] = ACTIONS(1467), - [anon_sym_any] = ACTIONS(1467), - [anon_sym_DOLLARtypeof] = ACTIONS(1467), - [anon_sym_DOLLARtypefrom] = ACTIONS(1467), - [anon_sym_DOLLARvatype] = ACTIONS(1467), - [anon_sym_DOLLARevaltype] = ACTIONS(1467), - [sym_real_literal] = ACTIONS(1469), + [562] = { + [sym_line_comment] = STATE(562), + [sym_doc_comment] = STATE(562), + [sym_block_comment] = STATE(562), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARendif] = ACTIONS(1613), + [anon_sym_DOLLARelse] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, - [569] = { - [sym_line_comment] = STATE(569), - [sym_doc_comment] = STATE(569), - [sym_block_comment] = STATE(569), - [sym_ident] = ACTIONS(1371), - [sym_integer_literal] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1373), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BQUOTE] = ACTIONS(1373), - [sym_bytes_literal] = ACTIONS(1373), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1371), - [sym_at_ident] = ACTIONS(1373), - [sym_hash_ident] = ACTIONS(1373), - [sym_type_ident] = ACTIONS(1373), - [sym_ct_type_ident] = ACTIONS(1373), - [sym_const_ident] = ACTIONS(1371), - [sym_builtin] = ACTIONS(1373), - [anon_sym_LPAREN] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1371), - [anon_sym_static] = ACTIONS(1371), - [anon_sym_tlocal] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_fn] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_const] = ACTIONS(1371), - [anon_sym_var] = ACTIONS(1371), - [anon_sym_return] = ACTIONS(1371), - [anon_sym_continue] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(1371), - [anon_sym_defer] = ACTIONS(1371), - [anon_sym_assert] = ACTIONS(1371), - [anon_sym_nextcase] = ACTIONS(1371), - [anon_sym_switch] = ACTIONS(1371), - [anon_sym_AMP_AMP] = ACTIONS(1373), - [anon_sym_if] = ACTIONS(1371), - [anon_sym_else] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1371), - [anon_sym_foreach] = ACTIONS(1371), - [anon_sym_foreach_r] = ACTIONS(1371), - [anon_sym_while] = ACTIONS(1371), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_int] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_asm] = ACTIONS(1371), - [anon_sym_DOLLARassert] = ACTIONS(1371), - [anon_sym_DOLLARerror] = ACTIONS(1371), - [anon_sym_DOLLARecho] = ACTIONS(1371), - [anon_sym_DOLLARif] = ACTIONS(1371), - [anon_sym_DOLLARswitch] = ACTIONS(1371), - [anon_sym_DOLLARfor] = ACTIONS(1371), - [anon_sym_DOLLARendfor] = ACTIONS(1371), - [anon_sym_DOLLARforeach] = ACTIONS(1371), - [anon_sym_DOLLARalignof] = ACTIONS(1371), - [anon_sym_DOLLARextnameof] = ACTIONS(1371), - [anon_sym_DOLLARnameof] = ACTIONS(1371), - [anon_sym_DOLLARoffsetof] = ACTIONS(1371), - [anon_sym_DOLLARqnameof] = ACTIONS(1371), - [anon_sym_DOLLAReval] = ACTIONS(1371), - [anon_sym_DOLLARdefined] = ACTIONS(1371), - [anon_sym_DOLLARsizeof] = ACTIONS(1371), - [anon_sym_DOLLARstringify] = ACTIONS(1371), - [anon_sym_DOLLARis_const] = ACTIONS(1371), - [anon_sym_DOLLARvaconst] = ACTIONS(1371), - [anon_sym_DOLLARvaarg] = ACTIONS(1371), - [anon_sym_DOLLARvaref] = ACTIONS(1371), - [anon_sym_DOLLARvaexpr] = ACTIONS(1371), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_null] = ACTIONS(1371), - [anon_sym_DOLLARvacount] = ACTIONS(1371), - [anon_sym_DOLLARfeature] = ACTIONS(1371), - [anon_sym_DOLLARand] = ACTIONS(1371), - [anon_sym_DOLLARor] = ACTIONS(1371), - [anon_sym_DOLLARassignable] = ACTIONS(1371), - [anon_sym_DOLLARembed] = ACTIONS(1371), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), - [anon_sym_typeid] = ACTIONS(1371), - [anon_sym_LBRACE_PIPE] = ACTIONS(1373), - [anon_sym_void] = ACTIONS(1371), - [anon_sym_bool] = ACTIONS(1371), - [anon_sym_char] = ACTIONS(1371), - [anon_sym_ichar] = ACTIONS(1371), - [anon_sym_short] = ACTIONS(1371), - [anon_sym_ushort] = ACTIONS(1371), - [anon_sym_uint] = ACTIONS(1371), - [anon_sym_long] = ACTIONS(1371), - [anon_sym_ulong] = ACTIONS(1371), - [anon_sym_int128] = ACTIONS(1371), - [anon_sym_uint128] = ACTIONS(1371), - [anon_sym_float] = ACTIONS(1371), - [anon_sym_double] = ACTIONS(1371), - [anon_sym_float16] = ACTIONS(1371), - [anon_sym_bfloat16] = ACTIONS(1371), - [anon_sym_float128] = ACTIONS(1371), - [anon_sym_iptr] = ACTIONS(1371), - [anon_sym_uptr] = ACTIONS(1371), - [anon_sym_isz] = ACTIONS(1371), - [anon_sym_usz] = ACTIONS(1371), - [anon_sym_anyfault] = ACTIONS(1371), - [anon_sym_any] = ACTIONS(1371), - [anon_sym_DOLLARtypeof] = ACTIONS(1371), - [anon_sym_DOLLARtypefrom] = ACTIONS(1371), - [anon_sym_DOLLARvatype] = ACTIONS(1371), - [anon_sym_DOLLARevaltype] = ACTIONS(1371), - [sym_real_literal] = ACTIONS(1373), + [563] = { + [sym_line_comment] = STATE(563), + [sym_doc_comment] = STATE(563), + [sym_block_comment] = STATE(563), + [sym_ident] = ACTIONS(1597), + [sym_integer_literal] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_bytes_literal] = ACTIONS(1599), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1597), + [sym_at_ident] = ACTIONS(1599), + [sym_hash_ident] = ACTIONS(1599), + [sym_type_ident] = ACTIONS(1599), + [sym_ct_type_ident] = ACTIONS(1599), + [sym_const_ident] = ACTIONS(1597), + [sym_builtin] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_tlocal] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_fn] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_var] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_defer] = ACTIONS(1597), + [anon_sym_assert] = ACTIONS(1597), + [anon_sym_nextcase] = ACTIONS(1597), + [anon_sym_switch] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_foreach] = ACTIONS(1597), + [anon_sym_foreach_r] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_int] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_asm] = ACTIONS(1597), + [anon_sym_DOLLARassert] = ACTIONS(1597), + [anon_sym_DOLLARerror] = ACTIONS(1597), + [anon_sym_DOLLARecho] = ACTIONS(1597), + [anon_sym_DOLLARif] = ACTIONS(1597), + [anon_sym_DOLLARendif] = ACTIONS(1597), + [anon_sym_DOLLARelse] = ACTIONS(1597), + [anon_sym_DOLLARswitch] = ACTIONS(1597), + [anon_sym_DOLLARfor] = ACTIONS(1597), + [anon_sym_DOLLARforeach] = ACTIONS(1597), + [anon_sym_DOLLARalignof] = ACTIONS(1597), + [anon_sym_DOLLARextnameof] = ACTIONS(1597), + [anon_sym_DOLLARnameof] = ACTIONS(1597), + [anon_sym_DOLLARoffsetof] = ACTIONS(1597), + [anon_sym_DOLLARqnameof] = ACTIONS(1597), + [anon_sym_DOLLARvaconst] = ACTIONS(1597), + [anon_sym_DOLLARvaarg] = ACTIONS(1597), + [anon_sym_DOLLARvaref] = ACTIONS(1597), + [anon_sym_DOLLARvaexpr] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_DOLLARvacount] = ACTIONS(1597), + [anon_sym_DOLLAReval] = ACTIONS(1597), + [anon_sym_DOLLARis_const] = ACTIONS(1597), + [anon_sym_DOLLARsizeof] = ACTIONS(1597), + [anon_sym_DOLLARstringify] = ACTIONS(1597), + [anon_sym_DOLLARappend] = ACTIONS(1597), + [anon_sym_DOLLARconcat] = ACTIONS(1597), + [anon_sym_DOLLARdefined] = ACTIONS(1597), + [anon_sym_DOLLARembed] = ACTIONS(1597), + [anon_sym_DOLLARand] = ACTIONS(1597), + [anon_sym_DOLLARor] = ACTIONS(1597), + [anon_sym_DOLLARfeature] = ACTIONS(1597), + [anon_sym_DOLLARassignable] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_typeid] = ACTIONS(1597), + [anon_sym_LBRACE_PIPE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1597), + [anon_sym_bool] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_ichar] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [anon_sym_ushort] = ACTIONS(1597), + [anon_sym_uint] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_ulong] = ACTIONS(1597), + [anon_sym_int128] = ACTIONS(1597), + [anon_sym_uint128] = ACTIONS(1597), + [anon_sym_float] = ACTIONS(1597), + [anon_sym_double] = ACTIONS(1597), + [anon_sym_float16] = ACTIONS(1597), + [anon_sym_bfloat16] = ACTIONS(1597), + [anon_sym_float128] = ACTIONS(1597), + [anon_sym_iptr] = ACTIONS(1597), + [anon_sym_uptr] = ACTIONS(1597), + [anon_sym_isz] = ACTIONS(1597), + [anon_sym_usz] = ACTIONS(1597), + [anon_sym_anyfault] = ACTIONS(1597), + [anon_sym_any] = ACTIONS(1597), + [anon_sym_DOLLARtypeof] = ACTIONS(1597), + [anon_sym_DOLLARtypefrom] = ACTIONS(1597), + [anon_sym_DOLLARevaltype] = ACTIONS(1597), + [anon_sym_DOLLARvatype] = ACTIONS(1597), + [sym_real_literal] = ACTIONS(1599), }, - [570] = { - [sym_line_comment] = STATE(570), - [sym_doc_comment] = STATE(570), - [sym_block_comment] = STATE(570), - [sym_ident] = ACTIONS(1377), - [sym_integer_literal] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1379), - [anon_sym_BQUOTE] = ACTIONS(1379), - [sym_bytes_literal] = ACTIONS(1379), + [564] = { + [sym_line_comment] = STATE(564), + [sym_doc_comment] = STATE(564), + [sym_block_comment] = STATE(564), + [sym_ident] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_bytes_literal] = ACTIONS(1443), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1377), - [sym_at_ident] = ACTIONS(1379), - [sym_hash_ident] = ACTIONS(1379), - [sym_type_ident] = ACTIONS(1379), - [sym_ct_type_ident] = ACTIONS(1379), - [sym_const_ident] = ACTIONS(1377), - [sym_builtin] = ACTIONS(1379), - [anon_sym_LPAREN] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(1377), - [anon_sym_tlocal] = ACTIONS(1377), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_fn] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_const] = ACTIONS(1377), - [anon_sym_var] = ACTIONS(1377), - [anon_sym_return] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1377), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_defer] = ACTIONS(1377), - [anon_sym_assert] = ACTIONS(1377), - [anon_sym_nextcase] = ACTIONS(1377), - [anon_sym_switch] = ACTIONS(1377), - [anon_sym_AMP_AMP] = ACTIONS(1379), - [anon_sym_if] = ACTIONS(1377), - [anon_sym_else] = ACTIONS(1377), - [anon_sym_for] = ACTIONS(1377), - [anon_sym_foreach] = ACTIONS(1377), - [anon_sym_foreach_r] = ACTIONS(1377), - [anon_sym_while] = ACTIONS(1377), - [anon_sym_do] = ACTIONS(1377), - [anon_sym_int] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_asm] = ACTIONS(1377), - [anon_sym_DOLLARassert] = ACTIONS(1377), - [anon_sym_DOLLARerror] = ACTIONS(1377), - [anon_sym_DOLLARecho] = ACTIONS(1377), - [anon_sym_DOLLARif] = ACTIONS(1377), - [anon_sym_DOLLARswitch] = ACTIONS(1377), - [anon_sym_DOLLARfor] = ACTIONS(1377), - [anon_sym_DOLLARendfor] = ACTIONS(1377), - [anon_sym_DOLLARforeach] = ACTIONS(1377), - [anon_sym_DOLLARalignof] = ACTIONS(1377), - [anon_sym_DOLLARextnameof] = ACTIONS(1377), - [anon_sym_DOLLARnameof] = ACTIONS(1377), - [anon_sym_DOLLARoffsetof] = ACTIONS(1377), - [anon_sym_DOLLARqnameof] = ACTIONS(1377), - [anon_sym_DOLLAReval] = ACTIONS(1377), - [anon_sym_DOLLARdefined] = ACTIONS(1377), - [anon_sym_DOLLARsizeof] = ACTIONS(1377), - [anon_sym_DOLLARstringify] = ACTIONS(1377), - [anon_sym_DOLLARis_const] = ACTIONS(1377), - [anon_sym_DOLLARvaconst] = ACTIONS(1377), - [anon_sym_DOLLARvaarg] = ACTIONS(1377), - [anon_sym_DOLLARvaref] = ACTIONS(1377), - [anon_sym_DOLLARvaexpr] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1377), - [anon_sym_false] = ACTIONS(1377), - [anon_sym_null] = ACTIONS(1377), - [anon_sym_DOLLARvacount] = ACTIONS(1377), - [anon_sym_DOLLARfeature] = ACTIONS(1377), - [anon_sym_DOLLARand] = ACTIONS(1377), - [anon_sym_DOLLARor] = ACTIONS(1377), - [anon_sym_DOLLARassignable] = ACTIONS(1377), - [anon_sym_DOLLARembed] = ACTIONS(1377), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [anon_sym_typeid] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_bool] = ACTIONS(1377), - [anon_sym_char] = ACTIONS(1377), - [anon_sym_ichar] = ACTIONS(1377), - [anon_sym_short] = ACTIONS(1377), - [anon_sym_ushort] = ACTIONS(1377), - [anon_sym_uint] = ACTIONS(1377), - [anon_sym_long] = ACTIONS(1377), - [anon_sym_ulong] = ACTIONS(1377), - [anon_sym_int128] = ACTIONS(1377), - [anon_sym_uint128] = ACTIONS(1377), - [anon_sym_float] = ACTIONS(1377), - [anon_sym_double] = ACTIONS(1377), - [anon_sym_float16] = ACTIONS(1377), - [anon_sym_bfloat16] = ACTIONS(1377), - [anon_sym_float128] = ACTIONS(1377), - [anon_sym_iptr] = ACTIONS(1377), - [anon_sym_uptr] = ACTIONS(1377), - [anon_sym_isz] = ACTIONS(1377), - [anon_sym_usz] = ACTIONS(1377), - [anon_sym_anyfault] = ACTIONS(1377), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_DOLLARtypeof] = ACTIONS(1377), - [anon_sym_DOLLARtypefrom] = ACTIONS(1377), - [anon_sym_DOLLARvatype] = ACTIONS(1377), - [anon_sym_DOLLARevaltype] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - }, - [571] = { - [sym_line_comment] = STATE(571), - [sym_doc_comment] = STATE(571), - [sym_block_comment] = STATE(571), - [sym_ident] = ACTIONS(1371), - [sym_integer_literal] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1373), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BQUOTE] = ACTIONS(1373), - [sym_bytes_literal] = ACTIONS(1373), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1371), - [sym_at_ident] = ACTIONS(1373), - [sym_hash_ident] = ACTIONS(1373), - [sym_type_ident] = ACTIONS(1373), - [sym_ct_type_ident] = ACTIONS(1373), - [sym_const_ident] = ACTIONS(1371), - [sym_builtin] = ACTIONS(1373), - [anon_sym_LPAREN] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1371), - [anon_sym_static] = ACTIONS(1371), - [anon_sym_tlocal] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_fn] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_const] = ACTIONS(1371), - [anon_sym_var] = ACTIONS(1371), - [anon_sym_return] = ACTIONS(1371), - [anon_sym_continue] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(1371), - [anon_sym_defer] = ACTIONS(1371), - [anon_sym_assert] = ACTIONS(1371), - [anon_sym_nextcase] = ACTIONS(1371), - [anon_sym_switch] = ACTIONS(1371), - [anon_sym_AMP_AMP] = ACTIONS(1373), - [anon_sym_if] = ACTIONS(1371), - [anon_sym_else] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1371), - [anon_sym_foreach] = ACTIONS(1371), - [anon_sym_foreach_r] = ACTIONS(1371), - [anon_sym_while] = ACTIONS(1371), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_int] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_asm] = ACTIONS(1371), - [anon_sym_DOLLARassert] = ACTIONS(1371), - [anon_sym_DOLLARerror] = ACTIONS(1371), - [anon_sym_DOLLARecho] = ACTIONS(1371), - [anon_sym_DOLLARif] = ACTIONS(1371), - [anon_sym_DOLLARswitch] = ACTIONS(1371), - [anon_sym_DOLLARfor] = ACTIONS(1371), - [anon_sym_DOLLARforeach] = ACTIONS(1371), - [anon_sym_DOLLARendforeach] = ACTIONS(1371), - [anon_sym_DOLLARalignof] = ACTIONS(1371), - [anon_sym_DOLLARextnameof] = ACTIONS(1371), - [anon_sym_DOLLARnameof] = ACTIONS(1371), - [anon_sym_DOLLARoffsetof] = ACTIONS(1371), - [anon_sym_DOLLARqnameof] = ACTIONS(1371), - [anon_sym_DOLLAReval] = ACTIONS(1371), - [anon_sym_DOLLARdefined] = ACTIONS(1371), - [anon_sym_DOLLARsizeof] = ACTIONS(1371), - [anon_sym_DOLLARstringify] = ACTIONS(1371), - [anon_sym_DOLLARis_const] = ACTIONS(1371), - [anon_sym_DOLLARvaconst] = ACTIONS(1371), - [anon_sym_DOLLARvaarg] = ACTIONS(1371), - [anon_sym_DOLLARvaref] = ACTIONS(1371), - [anon_sym_DOLLARvaexpr] = ACTIONS(1371), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_null] = ACTIONS(1371), - [anon_sym_DOLLARvacount] = ACTIONS(1371), - [anon_sym_DOLLARfeature] = ACTIONS(1371), - [anon_sym_DOLLARand] = ACTIONS(1371), - [anon_sym_DOLLARor] = ACTIONS(1371), - [anon_sym_DOLLARassignable] = ACTIONS(1371), - [anon_sym_DOLLARembed] = ACTIONS(1371), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), - [anon_sym_typeid] = ACTIONS(1371), - [anon_sym_LBRACE_PIPE] = ACTIONS(1373), - [anon_sym_void] = ACTIONS(1371), - [anon_sym_bool] = ACTIONS(1371), - [anon_sym_char] = ACTIONS(1371), - [anon_sym_ichar] = ACTIONS(1371), - [anon_sym_short] = ACTIONS(1371), - [anon_sym_ushort] = ACTIONS(1371), - [anon_sym_uint] = ACTIONS(1371), - [anon_sym_long] = ACTIONS(1371), - [anon_sym_ulong] = ACTIONS(1371), - [anon_sym_int128] = ACTIONS(1371), - [anon_sym_uint128] = ACTIONS(1371), - [anon_sym_float] = ACTIONS(1371), - [anon_sym_double] = ACTIONS(1371), - [anon_sym_float16] = ACTIONS(1371), - [anon_sym_bfloat16] = ACTIONS(1371), - [anon_sym_float128] = ACTIONS(1371), - [anon_sym_iptr] = ACTIONS(1371), - [anon_sym_uptr] = ACTIONS(1371), - [anon_sym_isz] = ACTIONS(1371), - [anon_sym_usz] = ACTIONS(1371), - [anon_sym_anyfault] = ACTIONS(1371), - [anon_sym_any] = ACTIONS(1371), - [anon_sym_DOLLARtypeof] = ACTIONS(1371), - [anon_sym_DOLLARtypefrom] = ACTIONS(1371), - [anon_sym_DOLLARvatype] = ACTIONS(1371), - [anon_sym_DOLLARevaltype] = ACTIONS(1371), - [sym_real_literal] = ACTIONS(1373), + [sym_ct_ident] = ACTIONS(1441), + [sym_at_ident] = ACTIONS(1443), + [sym_hash_ident] = ACTIONS(1443), + [sym_type_ident] = ACTIONS(1443), + [sym_ct_type_ident] = ACTIONS(1443), + [sym_const_ident] = ACTIONS(1441), + [sym_builtin] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_tlocal] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_defer] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_nextcase] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_foreach] = ACTIONS(1441), + [anon_sym_foreach_r] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_int] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_asm] = ACTIONS(1441), + [anon_sym_DOLLARassert] = ACTIONS(1441), + [anon_sym_DOLLARerror] = ACTIONS(1441), + [anon_sym_DOLLARecho] = ACTIONS(1441), + [anon_sym_DOLLARif] = ACTIONS(1441), + [anon_sym_DOLLARendif] = ACTIONS(1441), + [anon_sym_DOLLARelse] = ACTIONS(1441), + [anon_sym_DOLLARswitch] = ACTIONS(1441), + [anon_sym_DOLLARfor] = ACTIONS(1441), + [anon_sym_DOLLARforeach] = ACTIONS(1441), + [anon_sym_DOLLARalignof] = ACTIONS(1441), + [anon_sym_DOLLARextnameof] = ACTIONS(1441), + [anon_sym_DOLLARnameof] = ACTIONS(1441), + [anon_sym_DOLLARoffsetof] = ACTIONS(1441), + [anon_sym_DOLLARqnameof] = ACTIONS(1441), + [anon_sym_DOLLARvaconst] = ACTIONS(1441), + [anon_sym_DOLLARvaarg] = ACTIONS(1441), + [anon_sym_DOLLARvaref] = ACTIONS(1441), + [anon_sym_DOLLARvaexpr] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_DOLLARvacount] = ACTIONS(1441), + [anon_sym_DOLLAReval] = ACTIONS(1441), + [anon_sym_DOLLARis_const] = ACTIONS(1441), + [anon_sym_DOLLARsizeof] = ACTIONS(1441), + [anon_sym_DOLLARstringify] = ACTIONS(1441), + [anon_sym_DOLLARappend] = ACTIONS(1441), + [anon_sym_DOLLARconcat] = ACTIONS(1441), + [anon_sym_DOLLARdefined] = ACTIONS(1441), + [anon_sym_DOLLARembed] = ACTIONS(1441), + [anon_sym_DOLLARand] = ACTIONS(1441), + [anon_sym_DOLLARor] = ACTIONS(1441), + [anon_sym_DOLLARfeature] = ACTIONS(1441), + [anon_sym_DOLLARassignable] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_typeid] = ACTIONS(1441), + [anon_sym_LBRACE_PIPE] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_ichar] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_ushort] = ACTIONS(1441), + [anon_sym_uint] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_ulong] = ACTIONS(1441), + [anon_sym_int128] = ACTIONS(1441), + [anon_sym_uint128] = ACTIONS(1441), + [anon_sym_float] = ACTIONS(1441), + [anon_sym_double] = ACTIONS(1441), + [anon_sym_float16] = ACTIONS(1441), + [anon_sym_bfloat16] = ACTIONS(1441), + [anon_sym_float128] = ACTIONS(1441), + [anon_sym_iptr] = ACTIONS(1441), + [anon_sym_uptr] = ACTIONS(1441), + [anon_sym_isz] = ACTIONS(1441), + [anon_sym_usz] = ACTIONS(1441), + [anon_sym_anyfault] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_DOLLARtypeof] = ACTIONS(1441), + [anon_sym_DOLLARtypefrom] = ACTIONS(1441), + [anon_sym_DOLLARevaltype] = ACTIONS(1441), + [anon_sym_DOLLARvatype] = ACTIONS(1441), + [sym_real_literal] = ACTIONS(1443), }, - [572] = { - [sym_line_comment] = STATE(572), - [sym_doc_comment] = STATE(572), - [sym_block_comment] = STATE(572), - [sym_ident] = ACTIONS(1641), - [sym_integer_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [anon_sym_BQUOTE] = ACTIONS(1643), - [sym_bytes_literal] = ACTIONS(1643), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1641), - [sym_at_ident] = ACTIONS(1643), - [sym_hash_ident] = ACTIONS(1643), - [sym_type_ident] = ACTIONS(1643), - [sym_ct_type_ident] = ACTIONS(1643), - [sym_const_ident] = ACTIONS(1641), - [sym_builtin] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1641), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_tlocal] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_fn] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_const] = ACTIONS(1641), - [anon_sym_var] = ACTIONS(1641), - [anon_sym_return] = ACTIONS(1641), - [anon_sym_continue] = ACTIONS(1641), - [anon_sym_break] = ACTIONS(1641), - [anon_sym_defer] = ACTIONS(1641), - [anon_sym_assert] = ACTIONS(1641), - [anon_sym_nextcase] = ACTIONS(1641), - [anon_sym_switch] = ACTIONS(1641), - [anon_sym_AMP_AMP] = ACTIONS(1643), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_foreach] = ACTIONS(1641), - [anon_sym_foreach_r] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1641), - [anon_sym_do] = ACTIONS(1641), - [anon_sym_int] = ACTIONS(1641), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_STAR] = ACTIONS(1643), - [anon_sym_asm] = ACTIONS(1641), - [anon_sym_DOLLARassert] = ACTIONS(1641), - [anon_sym_DOLLARerror] = ACTIONS(1641), - [anon_sym_DOLLARecho] = ACTIONS(1641), - [anon_sym_DOLLARif] = ACTIONS(1641), - [anon_sym_DOLLARendif] = ACTIONS(1641), - [anon_sym_DOLLARelse] = ACTIONS(1641), - [anon_sym_DOLLARswitch] = ACTIONS(1641), - [anon_sym_DOLLARfor] = ACTIONS(1641), - [anon_sym_DOLLARforeach] = ACTIONS(1641), - [anon_sym_DOLLARalignof] = ACTIONS(1641), - [anon_sym_DOLLARextnameof] = ACTIONS(1641), - [anon_sym_DOLLARnameof] = ACTIONS(1641), - [anon_sym_DOLLARoffsetof] = ACTIONS(1641), - [anon_sym_DOLLARqnameof] = ACTIONS(1641), - [anon_sym_DOLLAReval] = ACTIONS(1641), - [anon_sym_DOLLARdefined] = ACTIONS(1641), - [anon_sym_DOLLARsizeof] = ACTIONS(1641), - [anon_sym_DOLLARstringify] = ACTIONS(1641), - [anon_sym_DOLLARis_const] = ACTIONS(1641), - [anon_sym_DOLLARvaconst] = ACTIONS(1641), - [anon_sym_DOLLARvaarg] = ACTIONS(1641), - [anon_sym_DOLLARvaref] = ACTIONS(1641), - [anon_sym_DOLLARvaexpr] = ACTIONS(1641), - [anon_sym_true] = ACTIONS(1641), - [anon_sym_false] = ACTIONS(1641), - [anon_sym_null] = ACTIONS(1641), - [anon_sym_DOLLARvacount] = ACTIONS(1641), - [anon_sym_DOLLARfeature] = ACTIONS(1641), - [anon_sym_DOLLARand] = ACTIONS(1641), - [anon_sym_DOLLARor] = ACTIONS(1641), - [anon_sym_DOLLARassignable] = ACTIONS(1641), - [anon_sym_DOLLARembed] = ACTIONS(1641), - [anon_sym_BANG] = ACTIONS(1643), - [anon_sym_TILDE] = ACTIONS(1643), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_typeid] = ACTIONS(1641), - [anon_sym_LBRACE_PIPE] = ACTIONS(1643), - [anon_sym_void] = ACTIONS(1641), - [anon_sym_bool] = ACTIONS(1641), - [anon_sym_char] = ACTIONS(1641), - [anon_sym_ichar] = ACTIONS(1641), - [anon_sym_short] = ACTIONS(1641), - [anon_sym_ushort] = ACTIONS(1641), - [anon_sym_uint] = ACTIONS(1641), - [anon_sym_long] = ACTIONS(1641), - [anon_sym_ulong] = ACTIONS(1641), - [anon_sym_int128] = ACTIONS(1641), - [anon_sym_uint128] = ACTIONS(1641), - [anon_sym_float] = ACTIONS(1641), - [anon_sym_double] = ACTIONS(1641), - [anon_sym_float16] = ACTIONS(1641), - [anon_sym_bfloat16] = ACTIONS(1641), - [anon_sym_float128] = ACTIONS(1641), - [anon_sym_iptr] = ACTIONS(1641), - [anon_sym_uptr] = ACTIONS(1641), - [anon_sym_isz] = ACTIONS(1641), - [anon_sym_usz] = ACTIONS(1641), - [anon_sym_anyfault] = ACTIONS(1641), - [anon_sym_any] = ACTIONS(1641), - [anon_sym_DOLLARtypeof] = ACTIONS(1641), - [anon_sym_DOLLARtypefrom] = ACTIONS(1641), - [anon_sym_DOLLARvatype] = ACTIONS(1641), - [anon_sym_DOLLARevaltype] = ACTIONS(1641), - [sym_real_literal] = ACTIONS(1643), + [565] = { + [sym_line_comment] = STATE(565), + [sym_doc_comment] = STATE(565), + [sym_block_comment] = STATE(565), + [sym_ident] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_BQUOTE] = ACTIONS(1491), + [sym_bytes_literal] = ACTIONS(1491), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1489), + [sym_at_ident] = ACTIONS(1491), + [sym_hash_ident] = ACTIONS(1491), + [sym_type_ident] = ACTIONS(1491), + [sym_ct_type_ident] = ACTIONS(1491), + [sym_const_ident] = ACTIONS(1489), + [sym_builtin] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_tlocal] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_var] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_defer] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1489), + [anon_sym_nextcase] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_foreach] = ACTIONS(1489), + [anon_sym_foreach_r] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_int] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_asm] = ACTIONS(1489), + [anon_sym_DOLLARassert] = ACTIONS(1489), + [anon_sym_DOLLARerror] = ACTIONS(1489), + [anon_sym_DOLLARecho] = ACTIONS(1489), + [anon_sym_DOLLARif] = ACTIONS(1489), + [anon_sym_DOLLARendif] = ACTIONS(1489), + [anon_sym_DOLLARelse] = ACTIONS(1489), + [anon_sym_DOLLARswitch] = ACTIONS(1489), + [anon_sym_DOLLARfor] = ACTIONS(1489), + [anon_sym_DOLLARforeach] = ACTIONS(1489), + [anon_sym_DOLLARalignof] = ACTIONS(1489), + [anon_sym_DOLLARextnameof] = ACTIONS(1489), + [anon_sym_DOLLARnameof] = ACTIONS(1489), + [anon_sym_DOLLARoffsetof] = ACTIONS(1489), + [anon_sym_DOLLARqnameof] = ACTIONS(1489), + [anon_sym_DOLLARvaconst] = ACTIONS(1489), + [anon_sym_DOLLARvaarg] = ACTIONS(1489), + [anon_sym_DOLLARvaref] = ACTIONS(1489), + [anon_sym_DOLLARvaexpr] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_DOLLARvacount] = ACTIONS(1489), + [anon_sym_DOLLAReval] = ACTIONS(1489), + [anon_sym_DOLLARis_const] = ACTIONS(1489), + [anon_sym_DOLLARsizeof] = ACTIONS(1489), + [anon_sym_DOLLARstringify] = ACTIONS(1489), + [anon_sym_DOLLARappend] = ACTIONS(1489), + [anon_sym_DOLLARconcat] = ACTIONS(1489), + [anon_sym_DOLLARdefined] = ACTIONS(1489), + [anon_sym_DOLLARembed] = ACTIONS(1489), + [anon_sym_DOLLARand] = ACTIONS(1489), + [anon_sym_DOLLARor] = ACTIONS(1489), + [anon_sym_DOLLARfeature] = ACTIONS(1489), + [anon_sym_DOLLARassignable] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_typeid] = ACTIONS(1489), + [anon_sym_LBRACE_PIPE] = ACTIONS(1491), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_ichar] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_ushort] = ACTIONS(1489), + [anon_sym_uint] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_ulong] = ACTIONS(1489), + [anon_sym_int128] = ACTIONS(1489), + [anon_sym_uint128] = ACTIONS(1489), + [anon_sym_float] = ACTIONS(1489), + [anon_sym_double] = ACTIONS(1489), + [anon_sym_float16] = ACTIONS(1489), + [anon_sym_bfloat16] = ACTIONS(1489), + [anon_sym_float128] = ACTIONS(1489), + [anon_sym_iptr] = ACTIONS(1489), + [anon_sym_uptr] = ACTIONS(1489), + [anon_sym_isz] = ACTIONS(1489), + [anon_sym_usz] = ACTIONS(1489), + [anon_sym_anyfault] = ACTIONS(1489), + [anon_sym_any] = ACTIONS(1489), + [anon_sym_DOLLARtypeof] = ACTIONS(1489), + [anon_sym_DOLLARtypefrom] = ACTIONS(1489), + [anon_sym_DOLLARevaltype] = ACTIONS(1489), + [anon_sym_DOLLARvatype] = ACTIONS(1489), + [sym_real_literal] = ACTIONS(1491), }, - [573] = { - [sym_line_comment] = STATE(573), - [sym_doc_comment] = STATE(573), - [sym_block_comment] = STATE(573), - [sym_ident] = ACTIONS(1377), - [sym_integer_literal] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_DQUOTE] = ACTIONS(1379), - [anon_sym_BQUOTE] = ACTIONS(1379), - [sym_bytes_literal] = ACTIONS(1379), + [566] = { + [sym_line_comment] = STATE(566), + [sym_doc_comment] = STATE(566), + [sym_block_comment] = STATE(566), + [sym_ident] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [anon_sym_BQUOTE] = ACTIONS(1447), + [sym_bytes_literal] = ACTIONS(1447), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1377), - [sym_at_ident] = ACTIONS(1379), - [sym_hash_ident] = ACTIONS(1379), - [sym_type_ident] = ACTIONS(1379), - [sym_ct_type_ident] = ACTIONS(1379), - [sym_const_ident] = ACTIONS(1377), - [sym_builtin] = ACTIONS(1379), - [anon_sym_LPAREN] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_static] = ACTIONS(1377), - [anon_sym_tlocal] = ACTIONS(1377), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_fn] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_const] = ACTIONS(1377), - [anon_sym_var] = ACTIONS(1377), - [anon_sym_return] = ACTIONS(1377), - [anon_sym_continue] = ACTIONS(1377), - [anon_sym_break] = ACTIONS(1377), - [anon_sym_defer] = ACTIONS(1377), - [anon_sym_assert] = ACTIONS(1377), - [anon_sym_nextcase] = ACTIONS(1377), - [anon_sym_switch] = ACTIONS(1377), - [anon_sym_AMP_AMP] = ACTIONS(1379), - [anon_sym_if] = ACTIONS(1377), - [anon_sym_else] = ACTIONS(1377), - [anon_sym_for] = ACTIONS(1377), - [anon_sym_foreach] = ACTIONS(1377), - [anon_sym_foreach_r] = ACTIONS(1377), - [anon_sym_while] = ACTIONS(1377), - [anon_sym_do] = ACTIONS(1377), - [anon_sym_int] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1379), - [anon_sym_asm] = ACTIONS(1377), - [anon_sym_DOLLARassert] = ACTIONS(1377), - [anon_sym_DOLLARerror] = ACTIONS(1377), - [anon_sym_DOLLARecho] = ACTIONS(1377), - [anon_sym_DOLLARif] = ACTIONS(1377), - [anon_sym_DOLLARswitch] = ACTIONS(1377), - [anon_sym_DOLLARfor] = ACTIONS(1377), - [anon_sym_DOLLARforeach] = ACTIONS(1377), - [anon_sym_DOLLARendforeach] = ACTIONS(1377), - [anon_sym_DOLLARalignof] = ACTIONS(1377), - [anon_sym_DOLLARextnameof] = ACTIONS(1377), - [anon_sym_DOLLARnameof] = ACTIONS(1377), - [anon_sym_DOLLARoffsetof] = ACTIONS(1377), - [anon_sym_DOLLARqnameof] = ACTIONS(1377), - [anon_sym_DOLLAReval] = ACTIONS(1377), - [anon_sym_DOLLARdefined] = ACTIONS(1377), - [anon_sym_DOLLARsizeof] = ACTIONS(1377), - [anon_sym_DOLLARstringify] = ACTIONS(1377), - [anon_sym_DOLLARis_const] = ACTIONS(1377), - [anon_sym_DOLLARvaconst] = ACTIONS(1377), - [anon_sym_DOLLARvaarg] = ACTIONS(1377), - [anon_sym_DOLLARvaref] = ACTIONS(1377), - [anon_sym_DOLLARvaexpr] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1377), - [anon_sym_false] = ACTIONS(1377), - [anon_sym_null] = ACTIONS(1377), - [anon_sym_DOLLARvacount] = ACTIONS(1377), - [anon_sym_DOLLARfeature] = ACTIONS(1377), - [anon_sym_DOLLARand] = ACTIONS(1377), - [anon_sym_DOLLARor] = ACTIONS(1377), - [anon_sym_DOLLARassignable] = ACTIONS(1377), - [anon_sym_DOLLARembed] = ACTIONS(1377), - [anon_sym_BANG] = ACTIONS(1379), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [anon_sym_typeid] = ACTIONS(1377), - [anon_sym_LBRACE_PIPE] = ACTIONS(1379), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_bool] = ACTIONS(1377), - [anon_sym_char] = ACTIONS(1377), - [anon_sym_ichar] = ACTIONS(1377), - [anon_sym_short] = ACTIONS(1377), - [anon_sym_ushort] = ACTIONS(1377), - [anon_sym_uint] = ACTIONS(1377), - [anon_sym_long] = ACTIONS(1377), - [anon_sym_ulong] = ACTIONS(1377), - [anon_sym_int128] = ACTIONS(1377), - [anon_sym_uint128] = ACTIONS(1377), - [anon_sym_float] = ACTIONS(1377), - [anon_sym_double] = ACTIONS(1377), - [anon_sym_float16] = ACTIONS(1377), - [anon_sym_bfloat16] = ACTIONS(1377), - [anon_sym_float128] = ACTIONS(1377), - [anon_sym_iptr] = ACTIONS(1377), - [anon_sym_uptr] = ACTIONS(1377), - [anon_sym_isz] = ACTIONS(1377), - [anon_sym_usz] = ACTIONS(1377), - [anon_sym_anyfault] = ACTIONS(1377), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_DOLLARtypeof] = ACTIONS(1377), - [anon_sym_DOLLARtypefrom] = ACTIONS(1377), - [anon_sym_DOLLARvatype] = ACTIONS(1377), - [anon_sym_DOLLARevaltype] = ACTIONS(1377), - [sym_real_literal] = ACTIONS(1379), - }, - [574] = { - [sym_line_comment] = STATE(574), - [sym_doc_comment] = STATE(574), - [sym_block_comment] = STATE(574), - [sym_ident] = ACTIONS(1371), - [sym_integer_literal] = ACTIONS(1373), - [anon_sym_SQUOTE] = ACTIONS(1373), - [anon_sym_DQUOTE] = ACTIONS(1373), - [anon_sym_BQUOTE] = ACTIONS(1373), - [sym_bytes_literal] = ACTIONS(1373), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1371), - [sym_at_ident] = ACTIONS(1373), - [sym_hash_ident] = ACTIONS(1373), - [sym_type_ident] = ACTIONS(1373), - [sym_ct_type_ident] = ACTIONS(1373), - [sym_const_ident] = ACTIONS(1371), - [sym_builtin] = ACTIONS(1373), - [anon_sym_LPAREN] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1371), - [anon_sym_static] = ACTIONS(1371), - [anon_sym_tlocal] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_fn] = ACTIONS(1371), - [anon_sym_LBRACE] = ACTIONS(1371), - [anon_sym_const] = ACTIONS(1371), - [anon_sym_var] = ACTIONS(1371), - [anon_sym_return] = ACTIONS(1371), - [anon_sym_continue] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(1371), - [anon_sym_defer] = ACTIONS(1371), - [anon_sym_assert] = ACTIONS(1371), - [anon_sym_nextcase] = ACTIONS(1371), - [anon_sym_switch] = ACTIONS(1371), - [anon_sym_AMP_AMP] = ACTIONS(1373), - [anon_sym_if] = ACTIONS(1371), - [anon_sym_else] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1371), - [anon_sym_foreach] = ACTIONS(1371), - [anon_sym_foreach_r] = ACTIONS(1371), - [anon_sym_while] = ACTIONS(1371), - [anon_sym_do] = ACTIONS(1371), - [anon_sym_int] = ACTIONS(1371), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_asm] = ACTIONS(1371), - [anon_sym_DOLLARassert] = ACTIONS(1371), - [anon_sym_DOLLARerror] = ACTIONS(1371), - [anon_sym_DOLLARecho] = ACTIONS(1371), - [anon_sym_DOLLARif] = ACTIONS(1371), - [anon_sym_DOLLARendif] = ACTIONS(1371), - [anon_sym_DOLLARswitch] = ACTIONS(1371), - [anon_sym_DOLLARfor] = ACTIONS(1371), - [anon_sym_DOLLARforeach] = ACTIONS(1371), - [anon_sym_DOLLARalignof] = ACTIONS(1371), - [anon_sym_DOLLARextnameof] = ACTIONS(1371), - [anon_sym_DOLLARnameof] = ACTIONS(1371), - [anon_sym_DOLLARoffsetof] = ACTIONS(1371), - [anon_sym_DOLLARqnameof] = ACTIONS(1371), - [anon_sym_DOLLAReval] = ACTIONS(1371), - [anon_sym_DOLLARdefined] = ACTIONS(1371), - [anon_sym_DOLLARsizeof] = ACTIONS(1371), - [anon_sym_DOLLARstringify] = ACTIONS(1371), - [anon_sym_DOLLARis_const] = ACTIONS(1371), - [anon_sym_DOLLARvaconst] = ACTIONS(1371), - [anon_sym_DOLLARvaarg] = ACTIONS(1371), - [anon_sym_DOLLARvaref] = ACTIONS(1371), - [anon_sym_DOLLARvaexpr] = ACTIONS(1371), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), - [anon_sym_null] = ACTIONS(1371), - [anon_sym_DOLLARvacount] = ACTIONS(1371), - [anon_sym_DOLLARfeature] = ACTIONS(1371), - [anon_sym_DOLLARand] = ACTIONS(1371), - [anon_sym_DOLLARor] = ACTIONS(1371), - [anon_sym_DOLLARassignable] = ACTIONS(1371), - [anon_sym_DOLLARembed] = ACTIONS(1371), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), - [anon_sym_typeid] = ACTIONS(1371), - [anon_sym_LBRACE_PIPE] = ACTIONS(1373), - [anon_sym_void] = ACTIONS(1371), - [anon_sym_bool] = ACTIONS(1371), - [anon_sym_char] = ACTIONS(1371), - [anon_sym_ichar] = ACTIONS(1371), - [anon_sym_short] = ACTIONS(1371), - [anon_sym_ushort] = ACTIONS(1371), - [anon_sym_uint] = ACTIONS(1371), - [anon_sym_long] = ACTIONS(1371), - [anon_sym_ulong] = ACTIONS(1371), - [anon_sym_int128] = ACTIONS(1371), - [anon_sym_uint128] = ACTIONS(1371), - [anon_sym_float] = ACTIONS(1371), - [anon_sym_double] = ACTIONS(1371), - [anon_sym_float16] = ACTIONS(1371), - [anon_sym_bfloat16] = ACTIONS(1371), - [anon_sym_float128] = ACTIONS(1371), - [anon_sym_iptr] = ACTIONS(1371), - [anon_sym_uptr] = ACTIONS(1371), - [anon_sym_isz] = ACTIONS(1371), - [anon_sym_usz] = ACTIONS(1371), - [anon_sym_anyfault] = ACTIONS(1371), - [anon_sym_any] = ACTIONS(1371), - [anon_sym_DOLLARtypeof] = ACTIONS(1371), - [anon_sym_DOLLARtypefrom] = ACTIONS(1371), - [anon_sym_DOLLARvatype] = ACTIONS(1371), - [anon_sym_DOLLARevaltype] = ACTIONS(1371), - [sym_real_literal] = ACTIONS(1373), - }, - [575] = { - [sym_line_comment] = STATE(575), - [sym_doc_comment] = STATE(575), - [sym_block_comment] = STATE(575), - [sym_ident] = ACTIONS(1499), - [sym_integer_literal] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1501), - [anon_sym_BQUOTE] = ACTIONS(1501), - [sym_bytes_literal] = ACTIONS(1501), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1499), - [sym_at_ident] = ACTIONS(1501), - [sym_hash_ident] = ACTIONS(1501), - [sym_type_ident] = ACTIONS(1501), - [sym_ct_type_ident] = ACTIONS(1501), - [sym_const_ident] = ACTIONS(1499), - [sym_builtin] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_static] = ACTIONS(1499), - [anon_sym_tlocal] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1501), - [anon_sym_fn] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_var] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_defer] = ACTIONS(1499), - [anon_sym_assert] = ACTIONS(1499), - [anon_sym_nextcase] = ACTIONS(1499), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_foreach] = ACTIONS(1499), - [anon_sym_foreach_r] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_do] = ACTIONS(1499), - [anon_sym_int] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_asm] = ACTIONS(1499), - [anon_sym_DOLLARassert] = ACTIONS(1499), - [anon_sym_DOLLARerror] = ACTIONS(1499), - [anon_sym_DOLLARecho] = ACTIONS(1499), - [anon_sym_DOLLARif] = ACTIONS(1499), - [anon_sym_DOLLARswitch] = ACTIONS(1499), - [anon_sym_DOLLARfor] = ACTIONS(1499), - [anon_sym_DOLLARforeach] = ACTIONS(1499), - [anon_sym_DOLLARendforeach] = ACTIONS(1499), - [anon_sym_DOLLARalignof] = ACTIONS(1499), - [anon_sym_DOLLARextnameof] = ACTIONS(1499), - [anon_sym_DOLLARnameof] = ACTIONS(1499), - [anon_sym_DOLLARoffsetof] = ACTIONS(1499), - [anon_sym_DOLLARqnameof] = ACTIONS(1499), - [anon_sym_DOLLAReval] = ACTIONS(1499), - [anon_sym_DOLLARdefined] = ACTIONS(1499), - [anon_sym_DOLLARsizeof] = ACTIONS(1499), - [anon_sym_DOLLARstringify] = ACTIONS(1499), - [anon_sym_DOLLARis_const] = ACTIONS(1499), - [anon_sym_DOLLARvaconst] = ACTIONS(1499), - [anon_sym_DOLLARvaarg] = ACTIONS(1499), - [anon_sym_DOLLARvaref] = ACTIONS(1499), - [anon_sym_DOLLARvaexpr] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [anon_sym_DOLLARvacount] = ACTIONS(1499), - [anon_sym_DOLLARfeature] = ACTIONS(1499), - [anon_sym_DOLLARand] = ACTIONS(1499), - [anon_sym_DOLLARor] = ACTIONS(1499), - [anon_sym_DOLLARassignable] = ACTIONS(1499), - [anon_sym_DOLLARembed] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_TILDE] = ACTIONS(1501), - [anon_sym_PLUS_PLUS] = ACTIONS(1501), - [anon_sym_DASH_DASH] = ACTIONS(1501), - [anon_sym_typeid] = ACTIONS(1499), - [anon_sym_LBRACE_PIPE] = ACTIONS(1501), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_bool] = ACTIONS(1499), - [anon_sym_char] = ACTIONS(1499), - [anon_sym_ichar] = ACTIONS(1499), - [anon_sym_short] = ACTIONS(1499), - [anon_sym_ushort] = ACTIONS(1499), - [anon_sym_uint] = ACTIONS(1499), - [anon_sym_long] = ACTIONS(1499), - [anon_sym_ulong] = ACTIONS(1499), - [anon_sym_int128] = ACTIONS(1499), - [anon_sym_uint128] = ACTIONS(1499), - [anon_sym_float] = ACTIONS(1499), - [anon_sym_double] = ACTIONS(1499), - [anon_sym_float16] = ACTIONS(1499), - [anon_sym_bfloat16] = ACTIONS(1499), - [anon_sym_float128] = ACTIONS(1499), - [anon_sym_iptr] = ACTIONS(1499), - [anon_sym_uptr] = ACTIONS(1499), - [anon_sym_isz] = ACTIONS(1499), - [anon_sym_usz] = ACTIONS(1499), - [anon_sym_anyfault] = ACTIONS(1499), - [anon_sym_any] = ACTIONS(1499), - [anon_sym_DOLLARtypeof] = ACTIONS(1499), - [anon_sym_DOLLARtypefrom] = ACTIONS(1499), - [anon_sym_DOLLARvatype] = ACTIONS(1499), - [anon_sym_DOLLARevaltype] = ACTIONS(1499), - [sym_real_literal] = ACTIONS(1501), - }, - [576] = { - [sym_line_comment] = STATE(576), - [sym_doc_comment] = STATE(576), - [sym_block_comment] = STATE(576), - [sym_ident] = ACTIONS(1491), - [sym_integer_literal] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_BQUOTE] = ACTIONS(1493), - [sym_bytes_literal] = ACTIONS(1493), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1491), - [sym_at_ident] = ACTIONS(1493), - [sym_hash_ident] = ACTIONS(1493), - [sym_type_ident] = ACTIONS(1493), - [sym_ct_type_ident] = ACTIONS(1493), - [sym_const_ident] = ACTIONS(1491), - [sym_builtin] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_tlocal] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_fn] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_var] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_defer] = ACTIONS(1491), - [anon_sym_assert] = ACTIONS(1491), - [anon_sym_nextcase] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_foreach] = ACTIONS(1491), - [anon_sym_foreach_r] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_int] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_asm] = ACTIONS(1491), - [anon_sym_DOLLARassert] = ACTIONS(1491), - [anon_sym_DOLLARerror] = ACTIONS(1491), - [anon_sym_DOLLARecho] = ACTIONS(1491), - [anon_sym_DOLLARif] = ACTIONS(1491), - [anon_sym_DOLLARswitch] = ACTIONS(1491), - [anon_sym_DOLLARfor] = ACTIONS(1491), - [anon_sym_DOLLARendfor] = ACTIONS(1491), - [anon_sym_DOLLARforeach] = ACTIONS(1491), - [anon_sym_DOLLARalignof] = ACTIONS(1491), - [anon_sym_DOLLARextnameof] = ACTIONS(1491), - [anon_sym_DOLLARnameof] = ACTIONS(1491), - [anon_sym_DOLLARoffsetof] = ACTIONS(1491), - [anon_sym_DOLLARqnameof] = ACTIONS(1491), - [anon_sym_DOLLAReval] = ACTIONS(1491), - [anon_sym_DOLLARdefined] = ACTIONS(1491), - [anon_sym_DOLLARsizeof] = ACTIONS(1491), - [anon_sym_DOLLARstringify] = ACTIONS(1491), - [anon_sym_DOLLARis_const] = ACTIONS(1491), - [anon_sym_DOLLARvaconst] = ACTIONS(1491), - [anon_sym_DOLLARvaarg] = ACTIONS(1491), - [anon_sym_DOLLARvaref] = ACTIONS(1491), - [anon_sym_DOLLARvaexpr] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1491), - [anon_sym_DOLLARvacount] = ACTIONS(1491), - [anon_sym_DOLLARfeature] = ACTIONS(1491), - [anon_sym_DOLLARand] = ACTIONS(1491), - [anon_sym_DOLLARor] = ACTIONS(1491), - [anon_sym_DOLLARassignable] = ACTIONS(1491), - [anon_sym_DOLLARembed] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_typeid] = ACTIONS(1491), - [anon_sym_LBRACE_PIPE] = ACTIONS(1493), - [anon_sym_void] = ACTIONS(1491), - [anon_sym_bool] = ACTIONS(1491), - [anon_sym_char] = ACTIONS(1491), - [anon_sym_ichar] = ACTIONS(1491), - [anon_sym_short] = ACTIONS(1491), - [anon_sym_ushort] = ACTIONS(1491), - [anon_sym_uint] = ACTIONS(1491), - [anon_sym_long] = ACTIONS(1491), - [anon_sym_ulong] = ACTIONS(1491), - [anon_sym_int128] = ACTIONS(1491), - [anon_sym_uint128] = ACTIONS(1491), - [anon_sym_float] = ACTIONS(1491), - [anon_sym_double] = ACTIONS(1491), - [anon_sym_float16] = ACTIONS(1491), - [anon_sym_bfloat16] = ACTIONS(1491), - [anon_sym_float128] = ACTIONS(1491), - [anon_sym_iptr] = ACTIONS(1491), - [anon_sym_uptr] = ACTIONS(1491), - [anon_sym_isz] = ACTIONS(1491), - [anon_sym_usz] = ACTIONS(1491), - [anon_sym_anyfault] = ACTIONS(1491), - [anon_sym_any] = ACTIONS(1491), - [anon_sym_DOLLARtypeof] = ACTIONS(1491), - [anon_sym_DOLLARtypefrom] = ACTIONS(1491), - [anon_sym_DOLLARvatype] = ACTIONS(1491), - [anon_sym_DOLLARevaltype] = ACTIONS(1491), - [sym_real_literal] = ACTIONS(1493), + [sym_ct_ident] = ACTIONS(1445), + [sym_at_ident] = ACTIONS(1447), + [sym_hash_ident] = ACTIONS(1447), + [sym_type_ident] = ACTIONS(1447), + [sym_ct_type_ident] = ACTIONS(1447), + [sym_const_ident] = ACTIONS(1445), + [sym_builtin] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_tlocal] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_var] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_defer] = ACTIONS(1445), + [anon_sym_assert] = ACTIONS(1445), + [anon_sym_nextcase] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_foreach] = ACTIONS(1445), + [anon_sym_foreach_r] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_int] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_asm] = ACTIONS(1445), + [anon_sym_DOLLARassert] = ACTIONS(1445), + [anon_sym_DOLLARerror] = ACTIONS(1445), + [anon_sym_DOLLARecho] = ACTIONS(1445), + [anon_sym_DOLLARif] = ACTIONS(1445), + [anon_sym_DOLLARendif] = ACTIONS(1445), + [anon_sym_DOLLARelse] = ACTIONS(1445), + [anon_sym_DOLLARswitch] = ACTIONS(1445), + [anon_sym_DOLLARfor] = ACTIONS(1445), + [anon_sym_DOLLARforeach] = ACTIONS(1445), + [anon_sym_DOLLARalignof] = ACTIONS(1445), + [anon_sym_DOLLARextnameof] = ACTIONS(1445), + [anon_sym_DOLLARnameof] = ACTIONS(1445), + [anon_sym_DOLLARoffsetof] = ACTIONS(1445), + [anon_sym_DOLLARqnameof] = ACTIONS(1445), + [anon_sym_DOLLARvaconst] = ACTIONS(1445), + [anon_sym_DOLLARvaarg] = ACTIONS(1445), + [anon_sym_DOLLARvaref] = ACTIONS(1445), + [anon_sym_DOLLARvaexpr] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_null] = ACTIONS(1445), + [anon_sym_DOLLARvacount] = ACTIONS(1445), + [anon_sym_DOLLAReval] = ACTIONS(1445), + [anon_sym_DOLLARis_const] = ACTIONS(1445), + [anon_sym_DOLLARsizeof] = ACTIONS(1445), + [anon_sym_DOLLARstringify] = ACTIONS(1445), + [anon_sym_DOLLARappend] = ACTIONS(1445), + [anon_sym_DOLLARconcat] = ACTIONS(1445), + [anon_sym_DOLLARdefined] = ACTIONS(1445), + [anon_sym_DOLLARembed] = ACTIONS(1445), + [anon_sym_DOLLARand] = ACTIONS(1445), + [anon_sym_DOLLARor] = ACTIONS(1445), + [anon_sym_DOLLARfeature] = ACTIONS(1445), + [anon_sym_DOLLARassignable] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_typeid] = ACTIONS(1445), + [anon_sym_LBRACE_PIPE] = ACTIONS(1447), + [anon_sym_void] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_ichar] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [anon_sym_ushort] = ACTIONS(1445), + [anon_sym_uint] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_ulong] = ACTIONS(1445), + [anon_sym_int128] = ACTIONS(1445), + [anon_sym_uint128] = ACTIONS(1445), + [anon_sym_float] = ACTIONS(1445), + [anon_sym_double] = ACTIONS(1445), + [anon_sym_float16] = ACTIONS(1445), + [anon_sym_bfloat16] = ACTIONS(1445), + [anon_sym_float128] = ACTIONS(1445), + [anon_sym_iptr] = ACTIONS(1445), + [anon_sym_uptr] = ACTIONS(1445), + [anon_sym_isz] = ACTIONS(1445), + [anon_sym_usz] = ACTIONS(1445), + [anon_sym_anyfault] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_DOLLARtypeof] = ACTIONS(1445), + [anon_sym_DOLLARtypefrom] = ACTIONS(1445), + [anon_sym_DOLLARevaltype] = ACTIONS(1445), + [anon_sym_DOLLARvatype] = ACTIONS(1445), + [sym_real_literal] = ACTIONS(1447), }, - [577] = { - [sym_line_comment] = STATE(577), - [sym_doc_comment] = STATE(577), - [sym_block_comment] = STATE(577), + [567] = { + [sym_line_comment] = STATE(567), + [sym_doc_comment] = STATE(567), + [sym_block_comment] = STATE(567), [sym_ident] = ACTIONS(1449), [sym_integer_literal] = ACTIONS(1451), [anon_sym_SQUOTE] = ACTIONS(1451), @@ -91874,7 +90771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1451), [sym_bytes_literal] = ACTIONS(1451), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1449), [sym_at_ident] = ACTIONS(1451), @@ -91916,6 +90813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARecho] = ACTIONS(1449), [anon_sym_DOLLARif] = ACTIONS(1449), [anon_sym_DOLLARendif] = ACTIONS(1449), + [anon_sym_DOLLARelse] = ACTIONS(1449), [anon_sym_DOLLARswitch] = ACTIONS(1449), [anon_sym_DOLLARfor] = ACTIONS(1449), [anon_sym_DOLLARforeach] = ACTIONS(1449), @@ -91924,11 +90822,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1449), [anon_sym_DOLLARoffsetof] = ACTIONS(1449), [anon_sym_DOLLARqnameof] = ACTIONS(1449), - [anon_sym_DOLLAReval] = ACTIONS(1449), - [anon_sym_DOLLARdefined] = ACTIONS(1449), - [anon_sym_DOLLARsizeof] = ACTIONS(1449), - [anon_sym_DOLLARstringify] = ACTIONS(1449), - [anon_sym_DOLLARis_const] = ACTIONS(1449), [anon_sym_DOLLARvaconst] = ACTIONS(1449), [anon_sym_DOLLARvaarg] = ACTIONS(1449), [anon_sym_DOLLARvaref] = ACTIONS(1449), @@ -91937,11 +90830,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1449), [anon_sym_null] = ACTIONS(1449), [anon_sym_DOLLARvacount] = ACTIONS(1449), - [anon_sym_DOLLARfeature] = ACTIONS(1449), + [anon_sym_DOLLAReval] = ACTIONS(1449), + [anon_sym_DOLLARis_const] = ACTIONS(1449), + [anon_sym_DOLLARsizeof] = ACTIONS(1449), + [anon_sym_DOLLARstringify] = ACTIONS(1449), + [anon_sym_DOLLARappend] = ACTIONS(1449), + [anon_sym_DOLLARconcat] = ACTIONS(1449), + [anon_sym_DOLLARdefined] = ACTIONS(1449), + [anon_sym_DOLLARembed] = ACTIONS(1449), [anon_sym_DOLLARand] = ACTIONS(1449), [anon_sym_DOLLARor] = ACTIONS(1449), + [anon_sym_DOLLARfeature] = ACTIONS(1449), [anon_sym_DOLLARassignable] = ACTIONS(1449), - [anon_sym_DOLLARembed] = ACTIONS(1449), [anon_sym_BANG] = ACTIONS(1451), [anon_sym_TILDE] = ACTIONS(1451), [anon_sym_PLUS_PLUS] = ACTIONS(1451), @@ -91972,1370 +90872,4277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1449), [anon_sym_DOLLARtypeof] = ACTIONS(1449), [anon_sym_DOLLARtypefrom] = ACTIONS(1449), - [anon_sym_DOLLARvatype] = ACTIONS(1449), [anon_sym_DOLLARevaltype] = ACTIONS(1449), + [anon_sym_DOLLARvatype] = ACTIONS(1449), [sym_real_literal] = ACTIONS(1451), }, + [568] = { + [sym_line_comment] = STATE(568), + [sym_doc_comment] = STATE(568), + [sym_block_comment] = STATE(568), + [sym_ident] = ACTIONS(1557), + [sym_integer_literal] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [sym_bytes_literal] = ACTIONS(1559), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1557), + [sym_at_ident] = ACTIONS(1559), + [sym_hash_ident] = ACTIONS(1559), + [sym_type_ident] = ACTIONS(1559), + [sym_ct_type_ident] = ACTIONS(1559), + [sym_const_ident] = ACTIONS(1557), + [sym_builtin] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_static] = ACTIONS(1557), + [anon_sym_tlocal] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_fn] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_defer] = ACTIONS(1557), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_nextcase] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_foreach] = ACTIONS(1557), + [anon_sym_foreach_r] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_int] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_asm] = ACTIONS(1557), + [anon_sym_DOLLARassert] = ACTIONS(1557), + [anon_sym_DOLLARerror] = ACTIONS(1557), + [anon_sym_DOLLARecho] = ACTIONS(1557), + [anon_sym_DOLLARif] = ACTIONS(1557), + [anon_sym_DOLLARendif] = ACTIONS(1557), + [anon_sym_DOLLARelse] = ACTIONS(1557), + [anon_sym_DOLLARswitch] = ACTIONS(1557), + [anon_sym_DOLLARfor] = ACTIONS(1557), + [anon_sym_DOLLARforeach] = ACTIONS(1557), + [anon_sym_DOLLARalignof] = ACTIONS(1557), + [anon_sym_DOLLARextnameof] = ACTIONS(1557), + [anon_sym_DOLLARnameof] = ACTIONS(1557), + [anon_sym_DOLLARoffsetof] = ACTIONS(1557), + [anon_sym_DOLLARqnameof] = ACTIONS(1557), + [anon_sym_DOLLARvaconst] = ACTIONS(1557), + [anon_sym_DOLLARvaarg] = ACTIONS(1557), + [anon_sym_DOLLARvaref] = ACTIONS(1557), + [anon_sym_DOLLARvaexpr] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_DOLLARvacount] = ACTIONS(1557), + [anon_sym_DOLLAReval] = ACTIONS(1557), + [anon_sym_DOLLARis_const] = ACTIONS(1557), + [anon_sym_DOLLARsizeof] = ACTIONS(1557), + [anon_sym_DOLLARstringify] = ACTIONS(1557), + [anon_sym_DOLLARappend] = ACTIONS(1557), + [anon_sym_DOLLARconcat] = ACTIONS(1557), + [anon_sym_DOLLARdefined] = ACTIONS(1557), + [anon_sym_DOLLARembed] = ACTIONS(1557), + [anon_sym_DOLLARand] = ACTIONS(1557), + [anon_sym_DOLLARor] = ACTIONS(1557), + [anon_sym_DOLLARfeature] = ACTIONS(1557), + [anon_sym_DOLLARassignable] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_typeid] = ACTIONS(1557), + [anon_sym_LBRACE_PIPE] = ACTIONS(1559), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_bool] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_ichar] = ACTIONS(1557), + [anon_sym_short] = ACTIONS(1557), + [anon_sym_ushort] = ACTIONS(1557), + [anon_sym_uint] = ACTIONS(1557), + [anon_sym_long] = ACTIONS(1557), + [anon_sym_ulong] = ACTIONS(1557), + [anon_sym_int128] = ACTIONS(1557), + [anon_sym_uint128] = ACTIONS(1557), + [anon_sym_float] = ACTIONS(1557), + [anon_sym_double] = ACTIONS(1557), + [anon_sym_float16] = ACTIONS(1557), + [anon_sym_bfloat16] = ACTIONS(1557), + [anon_sym_float128] = ACTIONS(1557), + [anon_sym_iptr] = ACTIONS(1557), + [anon_sym_uptr] = ACTIONS(1557), + [anon_sym_isz] = ACTIONS(1557), + [anon_sym_usz] = ACTIONS(1557), + [anon_sym_anyfault] = ACTIONS(1557), + [anon_sym_any] = ACTIONS(1557), + [anon_sym_DOLLARtypeof] = ACTIONS(1557), + [anon_sym_DOLLARtypefrom] = ACTIONS(1557), + [anon_sym_DOLLARevaltype] = ACTIONS(1557), + [anon_sym_DOLLARvatype] = ACTIONS(1557), + [sym_real_literal] = ACTIONS(1559), + }, + [569] = { + [sym_line_comment] = STATE(569), + [sym_doc_comment] = STATE(569), + [sym_block_comment] = STATE(569), + [sym_ident] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_BQUOTE] = ACTIONS(1543), + [sym_bytes_literal] = ACTIONS(1543), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1541), + [sym_at_ident] = ACTIONS(1543), + [sym_hash_ident] = ACTIONS(1543), + [sym_type_ident] = ACTIONS(1543), + [sym_ct_type_ident] = ACTIONS(1543), + [sym_const_ident] = ACTIONS(1541), + [sym_builtin] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_tlocal] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_defer] = ACTIONS(1541), + [anon_sym_assert] = ACTIONS(1541), + [anon_sym_nextcase] = ACTIONS(1541), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_foreach] = ACTIONS(1541), + [anon_sym_foreach_r] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_int] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym_DOLLARassert] = ACTIONS(1541), + [anon_sym_DOLLARerror] = ACTIONS(1541), + [anon_sym_DOLLARecho] = ACTIONS(1541), + [anon_sym_DOLLARif] = ACTIONS(1541), + [anon_sym_DOLLARendif] = ACTIONS(1541), + [anon_sym_DOLLARelse] = ACTIONS(1541), + [anon_sym_DOLLARswitch] = ACTIONS(1541), + [anon_sym_DOLLARfor] = ACTIONS(1541), + [anon_sym_DOLLARforeach] = ACTIONS(1541), + [anon_sym_DOLLARalignof] = ACTIONS(1541), + [anon_sym_DOLLARextnameof] = ACTIONS(1541), + [anon_sym_DOLLARnameof] = ACTIONS(1541), + [anon_sym_DOLLARoffsetof] = ACTIONS(1541), + [anon_sym_DOLLARqnameof] = ACTIONS(1541), + [anon_sym_DOLLARvaconst] = ACTIONS(1541), + [anon_sym_DOLLARvaarg] = ACTIONS(1541), + [anon_sym_DOLLARvaref] = ACTIONS(1541), + [anon_sym_DOLLARvaexpr] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_null] = ACTIONS(1541), + [anon_sym_DOLLARvacount] = ACTIONS(1541), + [anon_sym_DOLLAReval] = ACTIONS(1541), + [anon_sym_DOLLARis_const] = ACTIONS(1541), + [anon_sym_DOLLARsizeof] = ACTIONS(1541), + [anon_sym_DOLLARstringify] = ACTIONS(1541), + [anon_sym_DOLLARappend] = ACTIONS(1541), + [anon_sym_DOLLARconcat] = ACTIONS(1541), + [anon_sym_DOLLARdefined] = ACTIONS(1541), + [anon_sym_DOLLARembed] = ACTIONS(1541), + [anon_sym_DOLLARand] = ACTIONS(1541), + [anon_sym_DOLLARor] = ACTIONS(1541), + [anon_sym_DOLLARfeature] = ACTIONS(1541), + [anon_sym_DOLLARassignable] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_typeid] = ACTIONS(1541), + [anon_sym_LBRACE_PIPE] = ACTIONS(1543), + [anon_sym_void] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_ichar] = ACTIONS(1541), + [anon_sym_short] = ACTIONS(1541), + [anon_sym_ushort] = ACTIONS(1541), + [anon_sym_uint] = ACTIONS(1541), + [anon_sym_long] = ACTIONS(1541), + [anon_sym_ulong] = ACTIONS(1541), + [anon_sym_int128] = ACTIONS(1541), + [anon_sym_uint128] = ACTIONS(1541), + [anon_sym_float] = ACTIONS(1541), + [anon_sym_double] = ACTIONS(1541), + [anon_sym_float16] = ACTIONS(1541), + [anon_sym_bfloat16] = ACTIONS(1541), + [anon_sym_float128] = ACTIONS(1541), + [anon_sym_iptr] = ACTIONS(1541), + [anon_sym_uptr] = ACTIONS(1541), + [anon_sym_isz] = ACTIONS(1541), + [anon_sym_usz] = ACTIONS(1541), + [anon_sym_anyfault] = ACTIONS(1541), + [anon_sym_any] = ACTIONS(1541), + [anon_sym_DOLLARtypeof] = ACTIONS(1541), + [anon_sym_DOLLARtypefrom] = ACTIONS(1541), + [anon_sym_DOLLARevaltype] = ACTIONS(1541), + [anon_sym_DOLLARvatype] = ACTIONS(1541), + [sym_real_literal] = ACTIONS(1543), + }, + [570] = { + [sym_line_comment] = STATE(570), + [sym_doc_comment] = STATE(570), + [sym_block_comment] = STATE(570), + [sym_ident] = ACTIONS(1363), + [sym_integer_literal] = ACTIONS(1365), + [anon_sym_SQUOTE] = ACTIONS(1365), + [anon_sym_DQUOTE] = ACTIONS(1365), + [anon_sym_BQUOTE] = ACTIONS(1365), + [sym_bytes_literal] = ACTIONS(1365), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1363), + [sym_at_ident] = ACTIONS(1365), + [sym_hash_ident] = ACTIONS(1365), + [sym_type_ident] = ACTIONS(1365), + [sym_ct_type_ident] = ACTIONS(1365), + [sym_const_ident] = ACTIONS(1363), + [sym_builtin] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_tlocal] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_var] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_defer] = ACTIONS(1363), + [anon_sym_assert] = ACTIONS(1363), + [anon_sym_nextcase] = ACTIONS(1363), + [anon_sym_switch] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_else] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_foreach] = ACTIONS(1363), + [anon_sym_foreach_r] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_int] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1365), + [anon_sym_asm] = ACTIONS(1363), + [anon_sym_DOLLARassert] = ACTIONS(1363), + [anon_sym_DOLLARerror] = ACTIONS(1363), + [anon_sym_DOLLARecho] = ACTIONS(1363), + [anon_sym_DOLLARif] = ACTIONS(1363), + [anon_sym_DOLLARendif] = ACTIONS(1363), + [anon_sym_DOLLARswitch] = ACTIONS(1363), + [anon_sym_DOLLARfor] = ACTIONS(1363), + [anon_sym_DOLLARforeach] = ACTIONS(1363), + [anon_sym_DOLLARalignof] = ACTIONS(1363), + [anon_sym_DOLLARextnameof] = ACTIONS(1363), + [anon_sym_DOLLARnameof] = ACTIONS(1363), + [anon_sym_DOLLARoffsetof] = ACTIONS(1363), + [anon_sym_DOLLARqnameof] = ACTIONS(1363), + [anon_sym_DOLLARvaconst] = ACTIONS(1363), + [anon_sym_DOLLARvaarg] = ACTIONS(1363), + [anon_sym_DOLLARvaref] = ACTIONS(1363), + [anon_sym_DOLLARvaexpr] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_null] = ACTIONS(1363), + [anon_sym_DOLLARvacount] = ACTIONS(1363), + [anon_sym_DOLLAReval] = ACTIONS(1363), + [anon_sym_DOLLARis_const] = ACTIONS(1363), + [anon_sym_DOLLARsizeof] = ACTIONS(1363), + [anon_sym_DOLLARstringify] = ACTIONS(1363), + [anon_sym_DOLLARappend] = ACTIONS(1363), + [anon_sym_DOLLARconcat] = ACTIONS(1363), + [anon_sym_DOLLARdefined] = ACTIONS(1363), + [anon_sym_DOLLARembed] = ACTIONS(1363), + [anon_sym_DOLLARand] = ACTIONS(1363), + [anon_sym_DOLLARor] = ACTIONS(1363), + [anon_sym_DOLLARfeature] = ACTIONS(1363), + [anon_sym_DOLLARassignable] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1365), + [anon_sym_TILDE] = ACTIONS(1365), + [anon_sym_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_typeid] = ACTIONS(1363), + [anon_sym_LBRACE_PIPE] = ACTIONS(1365), + [anon_sym_void] = ACTIONS(1363), + [anon_sym_bool] = ACTIONS(1363), + [anon_sym_char] = ACTIONS(1363), + [anon_sym_ichar] = ACTIONS(1363), + [anon_sym_short] = ACTIONS(1363), + [anon_sym_ushort] = ACTIONS(1363), + [anon_sym_uint] = ACTIONS(1363), + [anon_sym_long] = ACTIONS(1363), + [anon_sym_ulong] = ACTIONS(1363), + [anon_sym_int128] = ACTIONS(1363), + [anon_sym_uint128] = ACTIONS(1363), + [anon_sym_float] = ACTIONS(1363), + [anon_sym_double] = ACTIONS(1363), + [anon_sym_float16] = ACTIONS(1363), + [anon_sym_bfloat16] = ACTIONS(1363), + [anon_sym_float128] = ACTIONS(1363), + [anon_sym_iptr] = ACTIONS(1363), + [anon_sym_uptr] = ACTIONS(1363), + [anon_sym_isz] = ACTIONS(1363), + [anon_sym_usz] = ACTIONS(1363), + [anon_sym_anyfault] = ACTIONS(1363), + [anon_sym_any] = ACTIONS(1363), + [anon_sym_DOLLARtypeof] = ACTIONS(1363), + [anon_sym_DOLLARtypefrom] = ACTIONS(1363), + [anon_sym_DOLLARevaltype] = ACTIONS(1363), + [anon_sym_DOLLARvatype] = ACTIONS(1363), + [sym_real_literal] = ACTIONS(1365), + }, + [571] = { + [sym_line_comment] = STATE(571), + [sym_doc_comment] = STATE(571), + [sym_block_comment] = STATE(571), + [sym_ident] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [anon_sym_BQUOTE] = ACTIONS(1459), + [sym_bytes_literal] = ACTIONS(1459), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1457), + [sym_at_ident] = ACTIONS(1459), + [sym_hash_ident] = ACTIONS(1459), + [sym_type_ident] = ACTIONS(1459), + [sym_ct_type_ident] = ACTIONS(1459), + [sym_const_ident] = ACTIONS(1457), + [sym_builtin] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_tlocal] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_fn] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_defer] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1457), + [anon_sym_nextcase] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_foreach] = ACTIONS(1457), + [anon_sym_foreach_r] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_int] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_asm] = ACTIONS(1457), + [anon_sym_DOLLARassert] = ACTIONS(1457), + [anon_sym_DOLLARerror] = ACTIONS(1457), + [anon_sym_DOLLARecho] = ACTIONS(1457), + [anon_sym_DOLLARif] = ACTIONS(1457), + [anon_sym_DOLLARendif] = ACTIONS(1457), + [anon_sym_DOLLARelse] = ACTIONS(1457), + [anon_sym_DOLLARswitch] = ACTIONS(1457), + [anon_sym_DOLLARfor] = ACTIONS(1457), + [anon_sym_DOLLARforeach] = ACTIONS(1457), + [anon_sym_DOLLARalignof] = ACTIONS(1457), + [anon_sym_DOLLARextnameof] = ACTIONS(1457), + [anon_sym_DOLLARnameof] = ACTIONS(1457), + [anon_sym_DOLLARoffsetof] = ACTIONS(1457), + [anon_sym_DOLLARqnameof] = ACTIONS(1457), + [anon_sym_DOLLARvaconst] = ACTIONS(1457), + [anon_sym_DOLLARvaarg] = ACTIONS(1457), + [anon_sym_DOLLARvaref] = ACTIONS(1457), + [anon_sym_DOLLARvaexpr] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_null] = ACTIONS(1457), + [anon_sym_DOLLARvacount] = ACTIONS(1457), + [anon_sym_DOLLAReval] = ACTIONS(1457), + [anon_sym_DOLLARis_const] = ACTIONS(1457), + [anon_sym_DOLLARsizeof] = ACTIONS(1457), + [anon_sym_DOLLARstringify] = ACTIONS(1457), + [anon_sym_DOLLARappend] = ACTIONS(1457), + [anon_sym_DOLLARconcat] = ACTIONS(1457), + [anon_sym_DOLLARdefined] = ACTIONS(1457), + [anon_sym_DOLLARembed] = ACTIONS(1457), + [anon_sym_DOLLARand] = ACTIONS(1457), + [anon_sym_DOLLARor] = ACTIONS(1457), + [anon_sym_DOLLARfeature] = ACTIONS(1457), + [anon_sym_DOLLARassignable] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_typeid] = ACTIONS(1457), + [anon_sym_LBRACE_PIPE] = ACTIONS(1459), + [anon_sym_void] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_ichar] = ACTIONS(1457), + [anon_sym_short] = ACTIONS(1457), + [anon_sym_ushort] = ACTIONS(1457), + [anon_sym_uint] = ACTIONS(1457), + [anon_sym_long] = ACTIONS(1457), + [anon_sym_ulong] = ACTIONS(1457), + [anon_sym_int128] = ACTIONS(1457), + [anon_sym_uint128] = ACTIONS(1457), + [anon_sym_float] = ACTIONS(1457), + [anon_sym_double] = ACTIONS(1457), + [anon_sym_float16] = ACTIONS(1457), + [anon_sym_bfloat16] = ACTIONS(1457), + [anon_sym_float128] = ACTIONS(1457), + [anon_sym_iptr] = ACTIONS(1457), + [anon_sym_uptr] = ACTIONS(1457), + [anon_sym_isz] = ACTIONS(1457), + [anon_sym_usz] = ACTIONS(1457), + [anon_sym_anyfault] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_DOLLARtypeof] = ACTIONS(1457), + [anon_sym_DOLLARtypefrom] = ACTIONS(1457), + [anon_sym_DOLLARevaltype] = ACTIONS(1457), + [anon_sym_DOLLARvatype] = ACTIONS(1457), + [sym_real_literal] = ACTIONS(1459), + }, + [572] = { + [sym_line_comment] = STATE(572), + [sym_doc_comment] = STATE(572), + [sym_block_comment] = STATE(572), + [sym_ident] = ACTIONS(1617), + [sym_integer_literal] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [anon_sym_BQUOTE] = ACTIONS(1619), + [sym_bytes_literal] = ACTIONS(1619), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1617), + [sym_at_ident] = ACTIONS(1619), + [sym_hash_ident] = ACTIONS(1619), + [sym_type_ident] = ACTIONS(1619), + [sym_ct_type_ident] = ACTIONS(1619), + [sym_const_ident] = ACTIONS(1617), + [sym_builtin] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_tlocal] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [anon_sym_var] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_defer] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_nextcase] = ACTIONS(1617), + [anon_sym_switch] = ACTIONS(1617), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_foreach] = ACTIONS(1617), + [anon_sym_foreach_r] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_int] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym_DOLLARassert] = ACTIONS(1617), + [anon_sym_DOLLARerror] = ACTIONS(1617), + [anon_sym_DOLLARecho] = ACTIONS(1617), + [anon_sym_DOLLARif] = ACTIONS(1617), + [anon_sym_DOLLARendif] = ACTIONS(1617), + [anon_sym_DOLLARelse] = ACTIONS(1617), + [anon_sym_DOLLARswitch] = ACTIONS(1617), + [anon_sym_DOLLARfor] = ACTIONS(1617), + [anon_sym_DOLLARforeach] = ACTIONS(1617), + [anon_sym_DOLLARalignof] = ACTIONS(1617), + [anon_sym_DOLLARextnameof] = ACTIONS(1617), + [anon_sym_DOLLARnameof] = ACTIONS(1617), + [anon_sym_DOLLARoffsetof] = ACTIONS(1617), + [anon_sym_DOLLARqnameof] = ACTIONS(1617), + [anon_sym_DOLLARvaconst] = ACTIONS(1617), + [anon_sym_DOLLARvaarg] = ACTIONS(1617), + [anon_sym_DOLLARvaref] = ACTIONS(1617), + [anon_sym_DOLLARvaexpr] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [anon_sym_DOLLARvacount] = ACTIONS(1617), + [anon_sym_DOLLAReval] = ACTIONS(1617), + [anon_sym_DOLLARis_const] = ACTIONS(1617), + [anon_sym_DOLLARsizeof] = ACTIONS(1617), + [anon_sym_DOLLARstringify] = ACTIONS(1617), + [anon_sym_DOLLARappend] = ACTIONS(1617), + [anon_sym_DOLLARconcat] = ACTIONS(1617), + [anon_sym_DOLLARdefined] = ACTIONS(1617), + [anon_sym_DOLLARembed] = ACTIONS(1617), + [anon_sym_DOLLARand] = ACTIONS(1617), + [anon_sym_DOLLARor] = ACTIONS(1617), + [anon_sym_DOLLARfeature] = ACTIONS(1617), + [anon_sym_DOLLARassignable] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_typeid] = ACTIONS(1617), + [anon_sym_LBRACE_PIPE] = ACTIONS(1619), + [anon_sym_void] = ACTIONS(1617), + [anon_sym_bool] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_ichar] = ACTIONS(1617), + [anon_sym_short] = ACTIONS(1617), + [anon_sym_ushort] = ACTIONS(1617), + [anon_sym_uint] = ACTIONS(1617), + [anon_sym_long] = ACTIONS(1617), + [anon_sym_ulong] = ACTIONS(1617), + [anon_sym_int128] = ACTIONS(1617), + [anon_sym_uint128] = ACTIONS(1617), + [anon_sym_float] = ACTIONS(1617), + [anon_sym_double] = ACTIONS(1617), + [anon_sym_float16] = ACTIONS(1617), + [anon_sym_bfloat16] = ACTIONS(1617), + [anon_sym_float128] = ACTIONS(1617), + [anon_sym_iptr] = ACTIONS(1617), + [anon_sym_uptr] = ACTIONS(1617), + [anon_sym_isz] = ACTIONS(1617), + [anon_sym_usz] = ACTIONS(1617), + [anon_sym_anyfault] = ACTIONS(1617), + [anon_sym_any] = ACTIONS(1617), + [anon_sym_DOLLARtypeof] = ACTIONS(1617), + [anon_sym_DOLLARtypefrom] = ACTIONS(1617), + [anon_sym_DOLLARevaltype] = ACTIONS(1617), + [anon_sym_DOLLARvatype] = ACTIONS(1617), + [sym_real_literal] = ACTIONS(1619), + }, + [573] = { + [sym_line_comment] = STATE(573), + [sym_doc_comment] = STATE(573), + [sym_block_comment] = STATE(573), + [sym_ident] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_bytes_literal] = ACTIONS(1463), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1461), + [sym_at_ident] = ACTIONS(1463), + [sym_hash_ident] = ACTIONS(1463), + [sym_type_ident] = ACTIONS(1463), + [sym_ct_type_ident] = ACTIONS(1463), + [sym_const_ident] = ACTIONS(1461), + [sym_builtin] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_tlocal] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_defer] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1461), + [anon_sym_nextcase] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_foreach] = ACTIONS(1461), + [anon_sym_foreach_r] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_int] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_asm] = ACTIONS(1461), + [anon_sym_DOLLARassert] = ACTIONS(1461), + [anon_sym_DOLLARerror] = ACTIONS(1461), + [anon_sym_DOLLARecho] = ACTIONS(1461), + [anon_sym_DOLLARif] = ACTIONS(1461), + [anon_sym_DOLLARendif] = ACTIONS(1461), + [anon_sym_DOLLARelse] = ACTIONS(1461), + [anon_sym_DOLLARswitch] = ACTIONS(1461), + [anon_sym_DOLLARfor] = ACTIONS(1461), + [anon_sym_DOLLARforeach] = ACTIONS(1461), + [anon_sym_DOLLARalignof] = ACTIONS(1461), + [anon_sym_DOLLARextnameof] = ACTIONS(1461), + [anon_sym_DOLLARnameof] = ACTIONS(1461), + [anon_sym_DOLLARoffsetof] = ACTIONS(1461), + [anon_sym_DOLLARqnameof] = ACTIONS(1461), + [anon_sym_DOLLARvaconst] = ACTIONS(1461), + [anon_sym_DOLLARvaarg] = ACTIONS(1461), + [anon_sym_DOLLARvaref] = ACTIONS(1461), + [anon_sym_DOLLARvaexpr] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_DOLLARvacount] = ACTIONS(1461), + [anon_sym_DOLLAReval] = ACTIONS(1461), + [anon_sym_DOLLARis_const] = ACTIONS(1461), + [anon_sym_DOLLARsizeof] = ACTIONS(1461), + [anon_sym_DOLLARstringify] = ACTIONS(1461), + [anon_sym_DOLLARappend] = ACTIONS(1461), + [anon_sym_DOLLARconcat] = ACTIONS(1461), + [anon_sym_DOLLARdefined] = ACTIONS(1461), + [anon_sym_DOLLARembed] = ACTIONS(1461), + [anon_sym_DOLLARand] = ACTIONS(1461), + [anon_sym_DOLLARor] = ACTIONS(1461), + [anon_sym_DOLLARfeature] = ACTIONS(1461), + [anon_sym_DOLLARassignable] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_typeid] = ACTIONS(1461), + [anon_sym_LBRACE_PIPE] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_ichar] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [anon_sym_ushort] = ACTIONS(1461), + [anon_sym_uint] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_ulong] = ACTIONS(1461), + [anon_sym_int128] = ACTIONS(1461), + [anon_sym_uint128] = ACTIONS(1461), + [anon_sym_float] = ACTIONS(1461), + [anon_sym_double] = ACTIONS(1461), + [anon_sym_float16] = ACTIONS(1461), + [anon_sym_bfloat16] = ACTIONS(1461), + [anon_sym_float128] = ACTIONS(1461), + [anon_sym_iptr] = ACTIONS(1461), + [anon_sym_uptr] = ACTIONS(1461), + [anon_sym_isz] = ACTIONS(1461), + [anon_sym_usz] = ACTIONS(1461), + [anon_sym_anyfault] = ACTIONS(1461), + [anon_sym_any] = ACTIONS(1461), + [anon_sym_DOLLARtypeof] = ACTIONS(1461), + [anon_sym_DOLLARtypefrom] = ACTIONS(1461), + [anon_sym_DOLLARevaltype] = ACTIONS(1461), + [anon_sym_DOLLARvatype] = ACTIONS(1461), + [sym_real_literal] = ACTIONS(1463), + }, + [574] = { + [sym_line_comment] = STATE(574), + [sym_doc_comment] = STATE(574), + [sym_block_comment] = STATE(574), + [sym_ident] = ACTIONS(1621), + [sym_integer_literal] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_bytes_literal] = ACTIONS(1623), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1621), + [sym_at_ident] = ACTIONS(1623), + [sym_hash_ident] = ACTIONS(1623), + [sym_type_ident] = ACTIONS(1623), + [sym_ct_type_ident] = ACTIONS(1623), + [sym_const_ident] = ACTIONS(1621), + [sym_builtin] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_tlocal] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_var] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_defer] = ACTIONS(1621), + [anon_sym_assert] = ACTIONS(1621), + [anon_sym_nextcase] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_foreach] = ACTIONS(1621), + [anon_sym_foreach_r] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_int] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_asm] = ACTIONS(1621), + [anon_sym_DOLLARassert] = ACTIONS(1621), + [anon_sym_DOLLARerror] = ACTIONS(1621), + [anon_sym_DOLLARecho] = ACTIONS(1621), + [anon_sym_DOLLARif] = ACTIONS(1621), + [anon_sym_DOLLARendif] = ACTIONS(1621), + [anon_sym_DOLLARelse] = ACTIONS(1621), + [anon_sym_DOLLARswitch] = ACTIONS(1621), + [anon_sym_DOLLARfor] = ACTIONS(1621), + [anon_sym_DOLLARforeach] = ACTIONS(1621), + [anon_sym_DOLLARalignof] = ACTIONS(1621), + [anon_sym_DOLLARextnameof] = ACTIONS(1621), + [anon_sym_DOLLARnameof] = ACTIONS(1621), + [anon_sym_DOLLARoffsetof] = ACTIONS(1621), + [anon_sym_DOLLARqnameof] = ACTIONS(1621), + [anon_sym_DOLLARvaconst] = ACTIONS(1621), + [anon_sym_DOLLARvaarg] = ACTIONS(1621), + [anon_sym_DOLLARvaref] = ACTIONS(1621), + [anon_sym_DOLLARvaexpr] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_null] = ACTIONS(1621), + [anon_sym_DOLLARvacount] = ACTIONS(1621), + [anon_sym_DOLLAReval] = ACTIONS(1621), + [anon_sym_DOLLARis_const] = ACTIONS(1621), + [anon_sym_DOLLARsizeof] = ACTIONS(1621), + [anon_sym_DOLLARstringify] = ACTIONS(1621), + [anon_sym_DOLLARappend] = ACTIONS(1621), + [anon_sym_DOLLARconcat] = ACTIONS(1621), + [anon_sym_DOLLARdefined] = ACTIONS(1621), + [anon_sym_DOLLARembed] = ACTIONS(1621), + [anon_sym_DOLLARand] = ACTIONS(1621), + [anon_sym_DOLLARor] = ACTIONS(1621), + [anon_sym_DOLLARfeature] = ACTIONS(1621), + [anon_sym_DOLLARassignable] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_typeid] = ACTIONS(1621), + [anon_sym_LBRACE_PIPE] = ACTIONS(1623), + [anon_sym_void] = ACTIONS(1621), + [anon_sym_bool] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_ichar] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_ushort] = ACTIONS(1621), + [anon_sym_uint] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_ulong] = ACTIONS(1621), + [anon_sym_int128] = ACTIONS(1621), + [anon_sym_uint128] = ACTIONS(1621), + [anon_sym_float] = ACTIONS(1621), + [anon_sym_double] = ACTIONS(1621), + [anon_sym_float16] = ACTIONS(1621), + [anon_sym_bfloat16] = ACTIONS(1621), + [anon_sym_float128] = ACTIONS(1621), + [anon_sym_iptr] = ACTIONS(1621), + [anon_sym_uptr] = ACTIONS(1621), + [anon_sym_isz] = ACTIONS(1621), + [anon_sym_usz] = ACTIONS(1621), + [anon_sym_anyfault] = ACTIONS(1621), + [anon_sym_any] = ACTIONS(1621), + [anon_sym_DOLLARtypeof] = ACTIONS(1621), + [anon_sym_DOLLARtypefrom] = ACTIONS(1621), + [anon_sym_DOLLARevaltype] = ACTIONS(1621), + [anon_sym_DOLLARvatype] = ACTIONS(1621), + [sym_real_literal] = ACTIONS(1623), + }, + [575] = { + [sym_line_comment] = STATE(575), + [sym_doc_comment] = STATE(575), + [sym_block_comment] = STATE(575), + [sym_ident] = ACTIONS(1573), + [sym_integer_literal] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_BQUOTE] = ACTIONS(1575), + [sym_bytes_literal] = ACTIONS(1575), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1573), + [sym_at_ident] = ACTIONS(1575), + [sym_hash_ident] = ACTIONS(1575), + [sym_type_ident] = ACTIONS(1575), + [sym_ct_type_ident] = ACTIONS(1575), + [sym_const_ident] = ACTIONS(1573), + [sym_builtin] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_tlocal] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_fn] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_var] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_defer] = ACTIONS(1573), + [anon_sym_assert] = ACTIONS(1573), + [anon_sym_nextcase] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_foreach] = ACTIONS(1573), + [anon_sym_foreach_r] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_int] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_asm] = ACTIONS(1573), + [anon_sym_DOLLARassert] = ACTIONS(1573), + [anon_sym_DOLLARerror] = ACTIONS(1573), + [anon_sym_DOLLARecho] = ACTIONS(1573), + [anon_sym_DOLLARif] = ACTIONS(1573), + [anon_sym_DOLLARendif] = ACTIONS(1573), + [anon_sym_DOLLARelse] = ACTIONS(1573), + [anon_sym_DOLLARswitch] = ACTIONS(1573), + [anon_sym_DOLLARfor] = ACTIONS(1573), + [anon_sym_DOLLARforeach] = ACTIONS(1573), + [anon_sym_DOLLARalignof] = ACTIONS(1573), + [anon_sym_DOLLARextnameof] = ACTIONS(1573), + [anon_sym_DOLLARnameof] = ACTIONS(1573), + [anon_sym_DOLLARoffsetof] = ACTIONS(1573), + [anon_sym_DOLLARqnameof] = ACTIONS(1573), + [anon_sym_DOLLARvaconst] = ACTIONS(1573), + [anon_sym_DOLLARvaarg] = ACTIONS(1573), + [anon_sym_DOLLARvaref] = ACTIONS(1573), + [anon_sym_DOLLARvaexpr] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [anon_sym_null] = ACTIONS(1573), + [anon_sym_DOLLARvacount] = ACTIONS(1573), + [anon_sym_DOLLAReval] = ACTIONS(1573), + [anon_sym_DOLLARis_const] = ACTIONS(1573), + [anon_sym_DOLLARsizeof] = ACTIONS(1573), + [anon_sym_DOLLARstringify] = ACTIONS(1573), + [anon_sym_DOLLARappend] = ACTIONS(1573), + [anon_sym_DOLLARconcat] = ACTIONS(1573), + [anon_sym_DOLLARdefined] = ACTIONS(1573), + [anon_sym_DOLLARembed] = ACTIONS(1573), + [anon_sym_DOLLARand] = ACTIONS(1573), + [anon_sym_DOLLARor] = ACTIONS(1573), + [anon_sym_DOLLARfeature] = ACTIONS(1573), + [anon_sym_DOLLARassignable] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_typeid] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_bool] = ACTIONS(1573), + [anon_sym_char] = ACTIONS(1573), + [anon_sym_ichar] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [anon_sym_ushort] = ACTIONS(1573), + [anon_sym_uint] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_ulong] = ACTIONS(1573), + [anon_sym_int128] = ACTIONS(1573), + [anon_sym_uint128] = ACTIONS(1573), + [anon_sym_float] = ACTIONS(1573), + [anon_sym_double] = ACTIONS(1573), + [anon_sym_float16] = ACTIONS(1573), + [anon_sym_bfloat16] = ACTIONS(1573), + [anon_sym_float128] = ACTIONS(1573), + [anon_sym_iptr] = ACTIONS(1573), + [anon_sym_uptr] = ACTIONS(1573), + [anon_sym_isz] = ACTIONS(1573), + [anon_sym_usz] = ACTIONS(1573), + [anon_sym_anyfault] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_DOLLARtypeof] = ACTIONS(1573), + [anon_sym_DOLLARtypefrom] = ACTIONS(1573), + [anon_sym_DOLLARevaltype] = ACTIONS(1573), + [anon_sym_DOLLARvatype] = ACTIONS(1573), + [sym_real_literal] = ACTIONS(1575), + }, + [576] = { + [sym_line_comment] = STATE(576), + [sym_doc_comment] = STATE(576), + [sym_block_comment] = STATE(576), + [sym_ident] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_BQUOTE] = ACTIONS(1543), + [sym_bytes_literal] = ACTIONS(1543), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1541), + [sym_at_ident] = ACTIONS(1543), + [sym_hash_ident] = ACTIONS(1543), + [sym_type_ident] = ACTIONS(1543), + [sym_ct_type_ident] = ACTIONS(1543), + [sym_const_ident] = ACTIONS(1541), + [sym_builtin] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_tlocal] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_defer] = ACTIONS(1541), + [anon_sym_assert] = ACTIONS(1541), + [anon_sym_nextcase] = ACTIONS(1541), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_foreach] = ACTIONS(1541), + [anon_sym_foreach_r] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_int] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym_DOLLARassert] = ACTIONS(1541), + [anon_sym_DOLLARerror] = ACTIONS(1541), + [anon_sym_DOLLARecho] = ACTIONS(1541), + [anon_sym_DOLLARif] = ACTIONS(1541), + [anon_sym_DOLLARswitch] = ACTIONS(1541), + [anon_sym_DOLLARfor] = ACTIONS(1541), + [anon_sym_DOLLARendfor] = ACTIONS(1541), + [anon_sym_DOLLARforeach] = ACTIONS(1541), + [anon_sym_DOLLARalignof] = ACTIONS(1541), + [anon_sym_DOLLARextnameof] = ACTIONS(1541), + [anon_sym_DOLLARnameof] = ACTIONS(1541), + [anon_sym_DOLLARoffsetof] = ACTIONS(1541), + [anon_sym_DOLLARqnameof] = ACTIONS(1541), + [anon_sym_DOLLARvaconst] = ACTIONS(1541), + [anon_sym_DOLLARvaarg] = ACTIONS(1541), + [anon_sym_DOLLARvaref] = ACTIONS(1541), + [anon_sym_DOLLARvaexpr] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_null] = ACTIONS(1541), + [anon_sym_DOLLARvacount] = ACTIONS(1541), + [anon_sym_DOLLAReval] = ACTIONS(1541), + [anon_sym_DOLLARis_const] = ACTIONS(1541), + [anon_sym_DOLLARsizeof] = ACTIONS(1541), + [anon_sym_DOLLARstringify] = ACTIONS(1541), + [anon_sym_DOLLARappend] = ACTIONS(1541), + [anon_sym_DOLLARconcat] = ACTIONS(1541), + [anon_sym_DOLLARdefined] = ACTIONS(1541), + [anon_sym_DOLLARembed] = ACTIONS(1541), + [anon_sym_DOLLARand] = ACTIONS(1541), + [anon_sym_DOLLARor] = ACTIONS(1541), + [anon_sym_DOLLARfeature] = ACTIONS(1541), + [anon_sym_DOLLARassignable] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_typeid] = ACTIONS(1541), + [anon_sym_LBRACE_PIPE] = ACTIONS(1543), + [anon_sym_void] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_ichar] = ACTIONS(1541), + [anon_sym_short] = ACTIONS(1541), + [anon_sym_ushort] = ACTIONS(1541), + [anon_sym_uint] = ACTIONS(1541), + [anon_sym_long] = ACTIONS(1541), + [anon_sym_ulong] = ACTIONS(1541), + [anon_sym_int128] = ACTIONS(1541), + [anon_sym_uint128] = ACTIONS(1541), + [anon_sym_float] = ACTIONS(1541), + [anon_sym_double] = ACTIONS(1541), + [anon_sym_float16] = ACTIONS(1541), + [anon_sym_bfloat16] = ACTIONS(1541), + [anon_sym_float128] = ACTIONS(1541), + [anon_sym_iptr] = ACTIONS(1541), + [anon_sym_uptr] = ACTIONS(1541), + [anon_sym_isz] = ACTIONS(1541), + [anon_sym_usz] = ACTIONS(1541), + [anon_sym_anyfault] = ACTIONS(1541), + [anon_sym_any] = ACTIONS(1541), + [anon_sym_DOLLARtypeof] = ACTIONS(1541), + [anon_sym_DOLLARtypefrom] = ACTIONS(1541), + [anon_sym_DOLLARevaltype] = ACTIONS(1541), + [anon_sym_DOLLARvatype] = ACTIONS(1541), + [sym_real_literal] = ACTIONS(1543), + }, + [577] = { + [sym_line_comment] = STATE(577), + [sym_doc_comment] = STATE(577), + [sym_block_comment] = STATE(577), + [sym_ident] = ACTIONS(1665), + [sym_integer_literal] = ACTIONS(1667), + [anon_sym_SQUOTE] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1667), + [anon_sym_BQUOTE] = ACTIONS(1667), + [sym_bytes_literal] = ACTIONS(1667), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1665), + [sym_at_ident] = ACTIONS(1667), + [sym_hash_ident] = ACTIONS(1667), + [sym_type_ident] = ACTIONS(1667), + [sym_ct_type_ident] = ACTIONS(1667), + [sym_const_ident] = ACTIONS(1665), + [sym_builtin] = ACTIONS(1667), + [anon_sym_LPAREN] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1665), + [anon_sym_static] = ACTIONS(1665), + [anon_sym_tlocal] = ACTIONS(1665), + [anon_sym_SEMI] = ACTIONS(1667), + [anon_sym_fn] = ACTIONS(1665), + [anon_sym_LBRACE] = ACTIONS(1665), + [anon_sym_const] = ACTIONS(1665), + [anon_sym_var] = ACTIONS(1665), + [anon_sym_return] = ACTIONS(1665), + [anon_sym_continue] = ACTIONS(1665), + [anon_sym_break] = ACTIONS(1665), + [anon_sym_defer] = ACTIONS(1665), + [anon_sym_assert] = ACTIONS(1665), + [anon_sym_nextcase] = ACTIONS(1665), + [anon_sym_switch] = ACTIONS(1665), + [anon_sym_AMP_AMP] = ACTIONS(1667), + [anon_sym_if] = ACTIONS(1665), + [anon_sym_for] = ACTIONS(1665), + [anon_sym_foreach] = ACTIONS(1665), + [anon_sym_foreach_r] = ACTIONS(1665), + [anon_sym_while] = ACTIONS(1665), + [anon_sym_do] = ACTIONS(1665), + [anon_sym_int] = ACTIONS(1665), + [anon_sym_PLUS] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1665), + [anon_sym_STAR] = ACTIONS(1667), + [anon_sym_asm] = ACTIONS(1665), + [anon_sym_DOLLARassert] = ACTIONS(1665), + [anon_sym_DOLLARerror] = ACTIONS(1665), + [anon_sym_DOLLARecho] = ACTIONS(1665), + [anon_sym_DOLLARif] = ACTIONS(1665), + [anon_sym_DOLLARswitch] = ACTIONS(1665), + [anon_sym_DOLLARfor] = ACTIONS(1665), + [anon_sym_DOLLARforeach] = ACTIONS(1665), + [anon_sym_DOLLARendforeach] = ACTIONS(1665), + [anon_sym_DOLLARalignof] = ACTIONS(1665), + [anon_sym_DOLLARextnameof] = ACTIONS(1665), + [anon_sym_DOLLARnameof] = ACTIONS(1665), + [anon_sym_DOLLARoffsetof] = ACTIONS(1665), + [anon_sym_DOLLARqnameof] = ACTIONS(1665), + [anon_sym_DOLLARvaconst] = ACTIONS(1665), + [anon_sym_DOLLARvaarg] = ACTIONS(1665), + [anon_sym_DOLLARvaref] = ACTIONS(1665), + [anon_sym_DOLLARvaexpr] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1665), + [anon_sym_false] = ACTIONS(1665), + [anon_sym_null] = ACTIONS(1665), + [anon_sym_DOLLARvacount] = ACTIONS(1665), + [anon_sym_DOLLAReval] = ACTIONS(1665), + [anon_sym_DOLLARis_const] = ACTIONS(1665), + [anon_sym_DOLLARsizeof] = ACTIONS(1665), + [anon_sym_DOLLARstringify] = ACTIONS(1665), + [anon_sym_DOLLARappend] = ACTIONS(1665), + [anon_sym_DOLLARconcat] = ACTIONS(1665), + [anon_sym_DOLLARdefined] = ACTIONS(1665), + [anon_sym_DOLLARembed] = ACTIONS(1665), + [anon_sym_DOLLARand] = ACTIONS(1665), + [anon_sym_DOLLARor] = ACTIONS(1665), + [anon_sym_DOLLARfeature] = ACTIONS(1665), + [anon_sym_DOLLARassignable] = ACTIONS(1665), + [anon_sym_BANG] = ACTIONS(1667), + [anon_sym_TILDE] = ACTIONS(1667), + [anon_sym_PLUS_PLUS] = ACTIONS(1667), + [anon_sym_DASH_DASH] = ACTIONS(1667), + [anon_sym_typeid] = ACTIONS(1665), + [anon_sym_LBRACE_PIPE] = ACTIONS(1667), + [anon_sym_void] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_ichar] = ACTIONS(1665), + [anon_sym_short] = ACTIONS(1665), + [anon_sym_ushort] = ACTIONS(1665), + [anon_sym_uint] = ACTIONS(1665), + [anon_sym_long] = ACTIONS(1665), + [anon_sym_ulong] = ACTIONS(1665), + [anon_sym_int128] = ACTIONS(1665), + [anon_sym_uint128] = ACTIONS(1665), + [anon_sym_float] = ACTIONS(1665), + [anon_sym_double] = ACTIONS(1665), + [anon_sym_float16] = ACTIONS(1665), + [anon_sym_bfloat16] = ACTIONS(1665), + [anon_sym_float128] = ACTIONS(1665), + [anon_sym_iptr] = ACTIONS(1665), + [anon_sym_uptr] = ACTIONS(1665), + [anon_sym_isz] = ACTIONS(1665), + [anon_sym_usz] = ACTIONS(1665), + [anon_sym_anyfault] = ACTIONS(1665), + [anon_sym_any] = ACTIONS(1665), + [anon_sym_DOLLARtypeof] = ACTIONS(1665), + [anon_sym_DOLLARtypefrom] = ACTIONS(1665), + [anon_sym_DOLLARevaltype] = ACTIONS(1665), + [anon_sym_DOLLARvatype] = ACTIONS(1665), + [sym_real_literal] = ACTIONS(1667), + }, [578] = { [sym_line_comment] = STATE(578), [sym_doc_comment] = STATE(578), [sym_block_comment] = STATE(578), - [sym_ident] = ACTIONS(1445), - [sym_integer_literal] = ACTIONS(1447), - [anon_sym_SQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [anon_sym_BQUOTE] = ACTIONS(1447), - [sym_bytes_literal] = ACTIONS(1447), + [sym_ident] = ACTIONS(1669), + [sym_integer_literal] = ACTIONS(1671), + [anon_sym_SQUOTE] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_bytes_literal] = ACTIONS(1671), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1445), - [sym_at_ident] = ACTIONS(1447), - [sym_hash_ident] = ACTIONS(1447), - [sym_type_ident] = ACTIONS(1447), - [sym_ct_type_ident] = ACTIONS(1447), - [sym_const_ident] = ACTIONS(1445), - [sym_builtin] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_tlocal] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1447), - [anon_sym_fn] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_const] = ACTIONS(1445), - [anon_sym_var] = ACTIONS(1445), - [anon_sym_return] = ACTIONS(1445), - [anon_sym_continue] = ACTIONS(1445), - [anon_sym_break] = ACTIONS(1445), - [anon_sym_defer] = ACTIONS(1445), - [anon_sym_assert] = ACTIONS(1445), - [anon_sym_nextcase] = ACTIONS(1445), - [anon_sym_switch] = ACTIONS(1445), - [anon_sym_AMP_AMP] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1445), - [anon_sym_for] = ACTIONS(1445), - [anon_sym_foreach] = ACTIONS(1445), - [anon_sym_foreach_r] = ACTIONS(1445), - [anon_sym_while] = ACTIONS(1445), - [anon_sym_do] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_asm] = ACTIONS(1445), - [anon_sym_DOLLARassert] = ACTIONS(1445), - [anon_sym_DOLLARerror] = ACTIONS(1445), - [anon_sym_DOLLARecho] = ACTIONS(1445), - [anon_sym_DOLLARif] = ACTIONS(1445), - [anon_sym_DOLLARendif] = ACTIONS(1445), - [anon_sym_DOLLARswitch] = ACTIONS(1445), - [anon_sym_DOLLARfor] = ACTIONS(1445), - [anon_sym_DOLLARforeach] = ACTIONS(1445), - [anon_sym_DOLLARalignof] = ACTIONS(1445), - [anon_sym_DOLLARextnameof] = ACTIONS(1445), - [anon_sym_DOLLARnameof] = ACTIONS(1445), - [anon_sym_DOLLARoffsetof] = ACTIONS(1445), - [anon_sym_DOLLARqnameof] = ACTIONS(1445), - [anon_sym_DOLLAReval] = ACTIONS(1445), - [anon_sym_DOLLARdefined] = ACTIONS(1445), - [anon_sym_DOLLARsizeof] = ACTIONS(1445), - [anon_sym_DOLLARstringify] = ACTIONS(1445), - [anon_sym_DOLLARis_const] = ACTIONS(1445), - [anon_sym_DOLLARvaconst] = ACTIONS(1445), - [anon_sym_DOLLARvaarg] = ACTIONS(1445), - [anon_sym_DOLLARvaref] = ACTIONS(1445), - [anon_sym_DOLLARvaexpr] = ACTIONS(1445), - [anon_sym_true] = ACTIONS(1445), - [anon_sym_false] = ACTIONS(1445), - [anon_sym_null] = ACTIONS(1445), - [anon_sym_DOLLARvacount] = ACTIONS(1445), - [anon_sym_DOLLARfeature] = ACTIONS(1445), - [anon_sym_DOLLARand] = ACTIONS(1445), - [anon_sym_DOLLARor] = ACTIONS(1445), - [anon_sym_DOLLARassignable] = ACTIONS(1445), - [anon_sym_DOLLARembed] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(1447), - [anon_sym_DASH_DASH] = ACTIONS(1447), - [anon_sym_typeid] = ACTIONS(1445), - [anon_sym_LBRACE_PIPE] = ACTIONS(1447), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_char] = ACTIONS(1445), - [anon_sym_ichar] = ACTIONS(1445), - [anon_sym_short] = ACTIONS(1445), - [anon_sym_ushort] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_long] = ACTIONS(1445), - [anon_sym_ulong] = ACTIONS(1445), - [anon_sym_int128] = ACTIONS(1445), - [anon_sym_uint128] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_double] = ACTIONS(1445), - [anon_sym_float16] = ACTIONS(1445), - [anon_sym_bfloat16] = ACTIONS(1445), - [anon_sym_float128] = ACTIONS(1445), - [anon_sym_iptr] = ACTIONS(1445), - [anon_sym_uptr] = ACTIONS(1445), - [anon_sym_isz] = ACTIONS(1445), - [anon_sym_usz] = ACTIONS(1445), - [anon_sym_anyfault] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_DOLLARtypeof] = ACTIONS(1445), - [anon_sym_DOLLARtypefrom] = ACTIONS(1445), - [anon_sym_DOLLARvatype] = ACTIONS(1445), - [anon_sym_DOLLARevaltype] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1447), + [sym_ct_ident] = ACTIONS(1669), + [sym_at_ident] = ACTIONS(1671), + [sym_hash_ident] = ACTIONS(1671), + [sym_type_ident] = ACTIONS(1671), + [sym_ct_type_ident] = ACTIONS(1671), + [sym_const_ident] = ACTIONS(1669), + [sym_builtin] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_static] = ACTIONS(1669), + [anon_sym_tlocal] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_fn] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1669), + [anon_sym_var] = ACTIONS(1669), + [anon_sym_return] = ACTIONS(1669), + [anon_sym_continue] = ACTIONS(1669), + [anon_sym_break] = ACTIONS(1669), + [anon_sym_defer] = ACTIONS(1669), + [anon_sym_assert] = ACTIONS(1669), + [anon_sym_nextcase] = ACTIONS(1669), + [anon_sym_switch] = ACTIONS(1669), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_if] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1669), + [anon_sym_foreach] = ACTIONS(1669), + [anon_sym_foreach_r] = ACTIONS(1669), + [anon_sym_while] = ACTIONS(1669), + [anon_sym_do] = ACTIONS(1669), + [anon_sym_int] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1671), + [anon_sym_asm] = ACTIONS(1669), + [anon_sym_DOLLARassert] = ACTIONS(1669), + [anon_sym_DOLLARerror] = ACTIONS(1669), + [anon_sym_DOLLARecho] = ACTIONS(1669), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_DOLLARswitch] = ACTIONS(1669), + [anon_sym_DOLLARfor] = ACTIONS(1669), + [anon_sym_DOLLARendfor] = ACTIONS(1669), + [anon_sym_DOLLARforeach] = ACTIONS(1669), + [anon_sym_DOLLARalignof] = ACTIONS(1669), + [anon_sym_DOLLARextnameof] = ACTIONS(1669), + [anon_sym_DOLLARnameof] = ACTIONS(1669), + [anon_sym_DOLLARoffsetof] = ACTIONS(1669), + [anon_sym_DOLLARqnameof] = ACTIONS(1669), + [anon_sym_DOLLARvaconst] = ACTIONS(1669), + [anon_sym_DOLLARvaarg] = ACTIONS(1669), + [anon_sym_DOLLARvaref] = ACTIONS(1669), + [anon_sym_DOLLARvaexpr] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [anon_sym_DOLLARvacount] = ACTIONS(1669), + [anon_sym_DOLLAReval] = ACTIONS(1669), + [anon_sym_DOLLARis_const] = ACTIONS(1669), + [anon_sym_DOLLARsizeof] = ACTIONS(1669), + [anon_sym_DOLLARstringify] = ACTIONS(1669), + [anon_sym_DOLLARappend] = ACTIONS(1669), + [anon_sym_DOLLARconcat] = ACTIONS(1669), + [anon_sym_DOLLARdefined] = ACTIONS(1669), + [anon_sym_DOLLARembed] = ACTIONS(1669), + [anon_sym_DOLLARand] = ACTIONS(1669), + [anon_sym_DOLLARor] = ACTIONS(1669), + [anon_sym_DOLLARfeature] = ACTIONS(1669), + [anon_sym_DOLLARassignable] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_typeid] = ACTIONS(1669), + [anon_sym_LBRACE_PIPE] = ACTIONS(1671), + [anon_sym_void] = ACTIONS(1669), + [anon_sym_bool] = ACTIONS(1669), + [anon_sym_char] = ACTIONS(1669), + [anon_sym_ichar] = ACTIONS(1669), + [anon_sym_short] = ACTIONS(1669), + [anon_sym_ushort] = ACTIONS(1669), + [anon_sym_uint] = ACTIONS(1669), + [anon_sym_long] = ACTIONS(1669), + [anon_sym_ulong] = ACTIONS(1669), + [anon_sym_int128] = ACTIONS(1669), + [anon_sym_uint128] = ACTIONS(1669), + [anon_sym_float] = ACTIONS(1669), + [anon_sym_double] = ACTIONS(1669), + [anon_sym_float16] = ACTIONS(1669), + [anon_sym_bfloat16] = ACTIONS(1669), + [anon_sym_float128] = ACTIONS(1669), + [anon_sym_iptr] = ACTIONS(1669), + [anon_sym_uptr] = ACTIONS(1669), + [anon_sym_isz] = ACTIONS(1669), + [anon_sym_usz] = ACTIONS(1669), + [anon_sym_anyfault] = ACTIONS(1669), + [anon_sym_any] = ACTIONS(1669), + [anon_sym_DOLLARtypeof] = ACTIONS(1669), + [anon_sym_DOLLARtypefrom] = ACTIONS(1669), + [anon_sym_DOLLARevaltype] = ACTIONS(1669), + [anon_sym_DOLLARvatype] = ACTIONS(1669), + [sym_real_literal] = ACTIONS(1671), }, [579] = { [sym_line_comment] = STATE(579), [sym_doc_comment] = STATE(579), [sym_block_comment] = STATE(579), - [sym_ident] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1647), - [anon_sym_SQUOTE] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1647), - [anon_sym_BQUOTE] = ACTIONS(1647), - [sym_bytes_literal] = ACTIONS(1647), + [sym_ident] = ACTIONS(1673), + [sym_integer_literal] = ACTIONS(1675), + [anon_sym_SQUOTE] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [anon_sym_BQUOTE] = ACTIONS(1675), + [sym_bytes_literal] = ACTIONS(1675), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1645), - [sym_at_ident] = ACTIONS(1647), - [sym_hash_ident] = ACTIONS(1647), - [sym_type_ident] = ACTIONS(1647), - [sym_ct_type_ident] = ACTIONS(1647), - [sym_const_ident] = ACTIONS(1645), - [sym_builtin] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_tlocal] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_fn] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_var] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_defer] = ACTIONS(1645), - [anon_sym_assert] = ACTIONS(1645), - [anon_sym_nextcase] = ACTIONS(1645), - [anon_sym_switch] = ACTIONS(1645), - [anon_sym_AMP_AMP] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_foreach] = ACTIONS(1645), - [anon_sym_foreach_r] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_do] = ACTIONS(1645), - [anon_sym_int] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1645), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_asm] = ACTIONS(1645), - [anon_sym_DOLLARassert] = ACTIONS(1645), - [anon_sym_DOLLARerror] = ACTIONS(1645), - [anon_sym_DOLLARecho] = ACTIONS(1645), - [anon_sym_DOLLARif] = ACTIONS(1645), - [anon_sym_DOLLARswitch] = ACTIONS(1645), - [anon_sym_DOLLARfor] = ACTIONS(1645), - [anon_sym_DOLLARforeach] = ACTIONS(1645), - [anon_sym_DOLLARendforeach] = ACTIONS(1645), - [anon_sym_DOLLARalignof] = ACTIONS(1645), - [anon_sym_DOLLARextnameof] = ACTIONS(1645), - [anon_sym_DOLLARnameof] = ACTIONS(1645), - [anon_sym_DOLLARoffsetof] = ACTIONS(1645), - [anon_sym_DOLLARqnameof] = ACTIONS(1645), - [anon_sym_DOLLAReval] = ACTIONS(1645), - [anon_sym_DOLLARdefined] = ACTIONS(1645), - [anon_sym_DOLLARsizeof] = ACTIONS(1645), - [anon_sym_DOLLARstringify] = ACTIONS(1645), - [anon_sym_DOLLARis_const] = ACTIONS(1645), - [anon_sym_DOLLARvaconst] = ACTIONS(1645), - [anon_sym_DOLLARvaarg] = ACTIONS(1645), - [anon_sym_DOLLARvaref] = ACTIONS(1645), - [anon_sym_DOLLARvaexpr] = ACTIONS(1645), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [anon_sym_DOLLARvacount] = ACTIONS(1645), - [anon_sym_DOLLARfeature] = ACTIONS(1645), - [anon_sym_DOLLARand] = ACTIONS(1645), - [anon_sym_DOLLARor] = ACTIONS(1645), - [anon_sym_DOLLARassignable] = ACTIONS(1645), - [anon_sym_DOLLARembed] = ACTIONS(1645), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1647), - [anon_sym_DASH_DASH] = ACTIONS(1647), - [anon_sym_typeid] = ACTIONS(1645), - [anon_sym_LBRACE_PIPE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1645), - [anon_sym_bool] = ACTIONS(1645), - [anon_sym_char] = ACTIONS(1645), - [anon_sym_ichar] = ACTIONS(1645), - [anon_sym_short] = ACTIONS(1645), - [anon_sym_ushort] = ACTIONS(1645), - [anon_sym_uint] = ACTIONS(1645), - [anon_sym_long] = ACTIONS(1645), - [anon_sym_ulong] = ACTIONS(1645), - [anon_sym_int128] = ACTIONS(1645), - [anon_sym_uint128] = ACTIONS(1645), - [anon_sym_float] = ACTIONS(1645), - [anon_sym_double] = ACTIONS(1645), - [anon_sym_float16] = ACTIONS(1645), - [anon_sym_bfloat16] = ACTIONS(1645), - [anon_sym_float128] = ACTIONS(1645), - [anon_sym_iptr] = ACTIONS(1645), - [anon_sym_uptr] = ACTIONS(1645), - [anon_sym_isz] = ACTIONS(1645), - [anon_sym_usz] = ACTIONS(1645), - [anon_sym_anyfault] = ACTIONS(1645), - [anon_sym_any] = ACTIONS(1645), - [anon_sym_DOLLARtypeof] = ACTIONS(1645), - [anon_sym_DOLLARtypefrom] = ACTIONS(1645), - [anon_sym_DOLLARvatype] = ACTIONS(1645), - [anon_sym_DOLLARevaltype] = ACTIONS(1645), - [sym_real_literal] = ACTIONS(1647), + [sym_ct_ident] = ACTIONS(1673), + [sym_at_ident] = ACTIONS(1675), + [sym_hash_ident] = ACTIONS(1675), + [sym_type_ident] = ACTIONS(1675), + [sym_ct_type_ident] = ACTIONS(1675), + [sym_const_ident] = ACTIONS(1673), + [sym_builtin] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_AMP] = ACTIONS(1673), + [anon_sym_static] = ACTIONS(1673), + [anon_sym_tlocal] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_fn] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_var] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_defer] = ACTIONS(1673), + [anon_sym_assert] = ACTIONS(1673), + [anon_sym_nextcase] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1673), + [anon_sym_AMP_AMP] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_foreach] = ACTIONS(1673), + [anon_sym_foreach_r] = ACTIONS(1673), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_do] = ACTIONS(1673), + [anon_sym_int] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_asm] = ACTIONS(1673), + [anon_sym_DOLLARassert] = ACTIONS(1673), + [anon_sym_DOLLARerror] = ACTIONS(1673), + [anon_sym_DOLLARecho] = ACTIONS(1673), + [anon_sym_DOLLARif] = ACTIONS(1673), + [anon_sym_DOLLARswitch] = ACTIONS(1673), + [anon_sym_DOLLARfor] = ACTIONS(1673), + [anon_sym_DOLLARendfor] = ACTIONS(1673), + [anon_sym_DOLLARforeach] = ACTIONS(1673), + [anon_sym_DOLLARalignof] = ACTIONS(1673), + [anon_sym_DOLLARextnameof] = ACTIONS(1673), + [anon_sym_DOLLARnameof] = ACTIONS(1673), + [anon_sym_DOLLARoffsetof] = ACTIONS(1673), + [anon_sym_DOLLARqnameof] = ACTIONS(1673), + [anon_sym_DOLLARvaconst] = ACTIONS(1673), + [anon_sym_DOLLARvaarg] = ACTIONS(1673), + [anon_sym_DOLLARvaref] = ACTIONS(1673), + [anon_sym_DOLLARvaexpr] = ACTIONS(1673), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_null] = ACTIONS(1673), + [anon_sym_DOLLARvacount] = ACTIONS(1673), + [anon_sym_DOLLAReval] = ACTIONS(1673), + [anon_sym_DOLLARis_const] = ACTIONS(1673), + [anon_sym_DOLLARsizeof] = ACTIONS(1673), + [anon_sym_DOLLARstringify] = ACTIONS(1673), + [anon_sym_DOLLARappend] = ACTIONS(1673), + [anon_sym_DOLLARconcat] = ACTIONS(1673), + [anon_sym_DOLLARdefined] = ACTIONS(1673), + [anon_sym_DOLLARembed] = ACTIONS(1673), + [anon_sym_DOLLARand] = ACTIONS(1673), + [anon_sym_DOLLARor] = ACTIONS(1673), + [anon_sym_DOLLARfeature] = ACTIONS(1673), + [anon_sym_DOLLARassignable] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1675), + [anon_sym_TILDE] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_DASH_DASH] = ACTIONS(1675), + [anon_sym_typeid] = ACTIONS(1673), + [anon_sym_LBRACE_PIPE] = ACTIONS(1675), + [anon_sym_void] = ACTIONS(1673), + [anon_sym_bool] = ACTIONS(1673), + [anon_sym_char] = ACTIONS(1673), + [anon_sym_ichar] = ACTIONS(1673), + [anon_sym_short] = ACTIONS(1673), + [anon_sym_ushort] = ACTIONS(1673), + [anon_sym_uint] = ACTIONS(1673), + [anon_sym_long] = ACTIONS(1673), + [anon_sym_ulong] = ACTIONS(1673), + [anon_sym_int128] = ACTIONS(1673), + [anon_sym_uint128] = ACTIONS(1673), + [anon_sym_float] = ACTIONS(1673), + [anon_sym_double] = ACTIONS(1673), + [anon_sym_float16] = ACTIONS(1673), + [anon_sym_bfloat16] = ACTIONS(1673), + [anon_sym_float128] = ACTIONS(1673), + [anon_sym_iptr] = ACTIONS(1673), + [anon_sym_uptr] = ACTIONS(1673), + [anon_sym_isz] = ACTIONS(1673), + [anon_sym_usz] = ACTIONS(1673), + [anon_sym_anyfault] = ACTIONS(1673), + [anon_sym_any] = ACTIONS(1673), + [anon_sym_DOLLARtypeof] = ACTIONS(1673), + [anon_sym_DOLLARtypefrom] = ACTIONS(1673), + [anon_sym_DOLLARevaltype] = ACTIONS(1673), + [anon_sym_DOLLARvatype] = ACTIONS(1673), + [sym_real_literal] = ACTIONS(1675), }, [580] = { [sym_line_comment] = STATE(580), [sym_doc_comment] = STATE(580), [sym_block_comment] = STATE(580), - [sym_ident] = ACTIONS(1429), - [sym_integer_literal] = ACTIONS(1431), - [anon_sym_SQUOTE] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(1431), - [anon_sym_BQUOTE] = ACTIONS(1431), - [sym_bytes_literal] = ACTIONS(1431), + [sym_ident] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_DQUOTE] = ACTIONS(1679), + [anon_sym_BQUOTE] = ACTIONS(1679), + [sym_bytes_literal] = ACTIONS(1679), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1429), - [sym_at_ident] = ACTIONS(1431), - [sym_hash_ident] = ACTIONS(1431), - [sym_type_ident] = ACTIONS(1431), - [sym_ct_type_ident] = ACTIONS(1431), - [sym_const_ident] = ACTIONS(1429), - [sym_builtin] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1429), - [anon_sym_tlocal] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_var] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_defer] = ACTIONS(1429), - [anon_sym_assert] = ACTIONS(1429), - [anon_sym_nextcase] = ACTIONS(1429), - [anon_sym_switch] = ACTIONS(1429), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_foreach] = ACTIONS(1429), - [anon_sym_foreach_r] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_do] = ACTIONS(1429), - [anon_sym_int] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_asm] = ACTIONS(1429), - [anon_sym_DOLLARassert] = ACTIONS(1429), - [anon_sym_DOLLARerror] = ACTIONS(1429), - [anon_sym_DOLLARecho] = ACTIONS(1429), - [anon_sym_DOLLARif] = ACTIONS(1429), - [anon_sym_DOLLARendif] = ACTIONS(1429), - [anon_sym_DOLLARswitch] = ACTIONS(1429), - [anon_sym_DOLLARfor] = ACTIONS(1429), - [anon_sym_DOLLARforeach] = ACTIONS(1429), - [anon_sym_DOLLARalignof] = ACTIONS(1429), - [anon_sym_DOLLARextnameof] = ACTIONS(1429), - [anon_sym_DOLLARnameof] = ACTIONS(1429), - [anon_sym_DOLLARoffsetof] = ACTIONS(1429), - [anon_sym_DOLLARqnameof] = ACTIONS(1429), - [anon_sym_DOLLAReval] = ACTIONS(1429), - [anon_sym_DOLLARdefined] = ACTIONS(1429), - [anon_sym_DOLLARsizeof] = ACTIONS(1429), - [anon_sym_DOLLARstringify] = ACTIONS(1429), - [anon_sym_DOLLARis_const] = ACTIONS(1429), - [anon_sym_DOLLARvaconst] = ACTIONS(1429), - [anon_sym_DOLLARvaarg] = ACTIONS(1429), - [anon_sym_DOLLARvaref] = ACTIONS(1429), - [anon_sym_DOLLARvaexpr] = ACTIONS(1429), - [anon_sym_true] = ACTIONS(1429), - [anon_sym_false] = ACTIONS(1429), - [anon_sym_null] = ACTIONS(1429), - [anon_sym_DOLLARvacount] = ACTIONS(1429), - [anon_sym_DOLLARfeature] = ACTIONS(1429), - [anon_sym_DOLLARand] = ACTIONS(1429), - [anon_sym_DOLLARor] = ACTIONS(1429), - [anon_sym_DOLLARassignable] = ACTIONS(1429), - [anon_sym_DOLLARembed] = ACTIONS(1429), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_TILDE] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_typeid] = ACTIONS(1429), - [anon_sym_LBRACE_PIPE] = ACTIONS(1431), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_bool] = ACTIONS(1429), - [anon_sym_char] = ACTIONS(1429), - [anon_sym_ichar] = ACTIONS(1429), - [anon_sym_short] = ACTIONS(1429), - [anon_sym_ushort] = ACTIONS(1429), - [anon_sym_uint] = ACTIONS(1429), - [anon_sym_long] = ACTIONS(1429), - [anon_sym_ulong] = ACTIONS(1429), - [anon_sym_int128] = ACTIONS(1429), - [anon_sym_uint128] = ACTIONS(1429), - [anon_sym_float] = ACTIONS(1429), - [anon_sym_double] = ACTIONS(1429), - [anon_sym_float16] = ACTIONS(1429), - [anon_sym_bfloat16] = ACTIONS(1429), - [anon_sym_float128] = ACTIONS(1429), - [anon_sym_iptr] = ACTIONS(1429), - [anon_sym_uptr] = ACTIONS(1429), - [anon_sym_isz] = ACTIONS(1429), - [anon_sym_usz] = ACTIONS(1429), - [anon_sym_anyfault] = ACTIONS(1429), - [anon_sym_any] = ACTIONS(1429), - [anon_sym_DOLLARtypeof] = ACTIONS(1429), - [anon_sym_DOLLARtypefrom] = ACTIONS(1429), - [anon_sym_DOLLARvatype] = ACTIONS(1429), - [anon_sym_DOLLARevaltype] = ACTIONS(1429), - [sym_real_literal] = ACTIONS(1431), + [sym_ct_ident] = ACTIONS(1677), + [sym_at_ident] = ACTIONS(1679), + [sym_hash_ident] = ACTIONS(1679), + [sym_type_ident] = ACTIONS(1679), + [sym_ct_type_ident] = ACTIONS(1679), + [sym_const_ident] = ACTIONS(1677), + [sym_builtin] = ACTIONS(1679), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1677), + [anon_sym_static] = ACTIONS(1677), + [anon_sym_tlocal] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_fn] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1677), + [anon_sym_const] = ACTIONS(1677), + [anon_sym_var] = ACTIONS(1677), + [anon_sym_return] = ACTIONS(1677), + [anon_sym_continue] = ACTIONS(1677), + [anon_sym_break] = ACTIONS(1677), + [anon_sym_defer] = ACTIONS(1677), + [anon_sym_assert] = ACTIONS(1677), + [anon_sym_nextcase] = ACTIONS(1677), + [anon_sym_switch] = ACTIONS(1677), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_for] = ACTIONS(1677), + [anon_sym_foreach] = ACTIONS(1677), + [anon_sym_foreach_r] = ACTIONS(1677), + [anon_sym_while] = ACTIONS(1677), + [anon_sym_do] = ACTIONS(1677), + [anon_sym_int] = ACTIONS(1677), + [anon_sym_PLUS] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1677), + [anon_sym_STAR] = ACTIONS(1679), + [anon_sym_asm] = ACTIONS(1677), + [anon_sym_DOLLARassert] = ACTIONS(1677), + [anon_sym_DOLLARerror] = ACTIONS(1677), + [anon_sym_DOLLARecho] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1677), + [anon_sym_DOLLARswitch] = ACTIONS(1677), + [anon_sym_DOLLARfor] = ACTIONS(1677), + [anon_sym_DOLLARendfor] = ACTIONS(1677), + [anon_sym_DOLLARforeach] = ACTIONS(1677), + [anon_sym_DOLLARalignof] = ACTIONS(1677), + [anon_sym_DOLLARextnameof] = ACTIONS(1677), + [anon_sym_DOLLARnameof] = ACTIONS(1677), + [anon_sym_DOLLARoffsetof] = ACTIONS(1677), + [anon_sym_DOLLARqnameof] = ACTIONS(1677), + [anon_sym_DOLLARvaconst] = ACTIONS(1677), + [anon_sym_DOLLARvaarg] = ACTIONS(1677), + [anon_sym_DOLLARvaref] = ACTIONS(1677), + [anon_sym_DOLLARvaexpr] = ACTIONS(1677), + [anon_sym_true] = ACTIONS(1677), + [anon_sym_false] = ACTIONS(1677), + [anon_sym_null] = ACTIONS(1677), + [anon_sym_DOLLARvacount] = ACTIONS(1677), + [anon_sym_DOLLAReval] = ACTIONS(1677), + [anon_sym_DOLLARis_const] = ACTIONS(1677), + [anon_sym_DOLLARsizeof] = ACTIONS(1677), + [anon_sym_DOLLARstringify] = ACTIONS(1677), + [anon_sym_DOLLARappend] = ACTIONS(1677), + [anon_sym_DOLLARconcat] = ACTIONS(1677), + [anon_sym_DOLLARdefined] = ACTIONS(1677), + [anon_sym_DOLLARembed] = ACTIONS(1677), + [anon_sym_DOLLARand] = ACTIONS(1677), + [anon_sym_DOLLARor] = ACTIONS(1677), + [anon_sym_DOLLARfeature] = ACTIONS(1677), + [anon_sym_DOLLARassignable] = ACTIONS(1677), + [anon_sym_BANG] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1679), + [anon_sym_PLUS_PLUS] = ACTIONS(1679), + [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_typeid] = ACTIONS(1677), + [anon_sym_LBRACE_PIPE] = ACTIONS(1679), + [anon_sym_void] = ACTIONS(1677), + [anon_sym_bool] = ACTIONS(1677), + [anon_sym_char] = ACTIONS(1677), + [anon_sym_ichar] = ACTIONS(1677), + [anon_sym_short] = ACTIONS(1677), + [anon_sym_ushort] = ACTIONS(1677), + [anon_sym_uint] = ACTIONS(1677), + [anon_sym_long] = ACTIONS(1677), + [anon_sym_ulong] = ACTIONS(1677), + [anon_sym_int128] = ACTIONS(1677), + [anon_sym_uint128] = ACTIONS(1677), + [anon_sym_float] = ACTIONS(1677), + [anon_sym_double] = ACTIONS(1677), + [anon_sym_float16] = ACTIONS(1677), + [anon_sym_bfloat16] = ACTIONS(1677), + [anon_sym_float128] = ACTIONS(1677), + [anon_sym_iptr] = ACTIONS(1677), + [anon_sym_uptr] = ACTIONS(1677), + [anon_sym_isz] = ACTIONS(1677), + [anon_sym_usz] = ACTIONS(1677), + [anon_sym_anyfault] = ACTIONS(1677), + [anon_sym_any] = ACTIONS(1677), + [anon_sym_DOLLARtypeof] = ACTIONS(1677), + [anon_sym_DOLLARtypefrom] = ACTIONS(1677), + [anon_sym_DOLLARevaltype] = ACTIONS(1677), + [anon_sym_DOLLARvatype] = ACTIONS(1677), + [sym_real_literal] = ACTIONS(1679), }, [581] = { [sym_line_comment] = STATE(581), [sym_doc_comment] = STATE(581), [sym_block_comment] = STATE(581), - [sym_ident] = ACTIONS(1181), - [sym_integer_literal] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [sym_bytes_literal] = ACTIONS(1183), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1181), - [sym_at_ident] = ACTIONS(1183), - [sym_hash_ident] = ACTIONS(1183), - [sym_type_ident] = ACTIONS(1183), - [sym_ct_type_ident] = ACTIONS(1183), - [sym_const_ident] = ACTIONS(1181), - [sym_builtin] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_tlocal] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_fn] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_var] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_defer] = ACTIONS(1181), - [anon_sym_assert] = ACTIONS(1181), - [anon_sym_nextcase] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_foreach] = ACTIONS(1181), - [anon_sym_foreach_r] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym_DOLLARassert] = ACTIONS(1181), - [anon_sym_DOLLARerror] = ACTIONS(1181), - [anon_sym_DOLLARecho] = ACTIONS(1181), - [anon_sym_DOLLARif] = ACTIONS(1181), - [anon_sym_DOLLARendif] = ACTIONS(1181), - [anon_sym_DOLLARswitch] = ACTIONS(1181), - [anon_sym_DOLLARfor] = ACTIONS(1181), - [anon_sym_DOLLARforeach] = ACTIONS(1181), - [anon_sym_DOLLARalignof] = ACTIONS(1181), - [anon_sym_DOLLARextnameof] = ACTIONS(1181), - [anon_sym_DOLLARnameof] = ACTIONS(1181), - [anon_sym_DOLLARoffsetof] = ACTIONS(1181), - [anon_sym_DOLLARqnameof] = ACTIONS(1181), - [anon_sym_DOLLAReval] = ACTIONS(1181), - [anon_sym_DOLLARdefined] = ACTIONS(1181), - [anon_sym_DOLLARsizeof] = ACTIONS(1181), - [anon_sym_DOLLARstringify] = ACTIONS(1181), - [anon_sym_DOLLARis_const] = ACTIONS(1181), - [anon_sym_DOLLARvaconst] = ACTIONS(1181), - [anon_sym_DOLLARvaarg] = ACTIONS(1181), - [anon_sym_DOLLARvaref] = ACTIONS(1181), - [anon_sym_DOLLARvaexpr] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_null] = ACTIONS(1181), - [anon_sym_DOLLARvacount] = ACTIONS(1181), - [anon_sym_DOLLARfeature] = ACTIONS(1181), - [anon_sym_DOLLARand] = ACTIONS(1181), - [anon_sym_DOLLARor] = ACTIONS(1181), - [anon_sym_DOLLARassignable] = ACTIONS(1181), - [anon_sym_DOLLARembed] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_typeid] = ACTIONS(1181), - [anon_sym_LBRACE_PIPE] = ACTIONS(1183), - [anon_sym_void] = ACTIONS(1181), - [anon_sym_bool] = ACTIONS(1181), - [anon_sym_char] = ACTIONS(1181), - [anon_sym_ichar] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_ushort] = ACTIONS(1181), - [anon_sym_uint] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_ulong] = ACTIONS(1181), - [anon_sym_int128] = ACTIONS(1181), - [anon_sym_uint128] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_double] = ACTIONS(1181), - [anon_sym_float16] = ACTIONS(1181), - [anon_sym_bfloat16] = ACTIONS(1181), - [anon_sym_float128] = ACTIONS(1181), - [anon_sym_iptr] = ACTIONS(1181), - [anon_sym_uptr] = ACTIONS(1181), - [anon_sym_isz] = ACTIONS(1181), - [anon_sym_usz] = ACTIONS(1181), - [anon_sym_anyfault] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_DOLLARtypeof] = ACTIONS(1181), - [anon_sym_DOLLARtypefrom] = ACTIONS(1181), - [anon_sym_DOLLARvatype] = ACTIONS(1181), - [anon_sym_DOLLARevaltype] = ACTIONS(1181), - [sym_real_literal] = ACTIONS(1183), + [sym_ident] = ACTIONS(1681), + [sym_integer_literal] = ACTIONS(1683), + [anon_sym_SQUOTE] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [anon_sym_BQUOTE] = ACTIONS(1683), + [sym_bytes_literal] = ACTIONS(1683), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1681), + [sym_at_ident] = ACTIONS(1683), + [sym_hash_ident] = ACTIONS(1683), + [sym_type_ident] = ACTIONS(1683), + [sym_ct_type_ident] = ACTIONS(1683), + [sym_const_ident] = ACTIONS(1681), + [sym_builtin] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_static] = ACTIONS(1681), + [anon_sym_tlocal] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_fn] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1681), + [anon_sym_var] = ACTIONS(1681), + [anon_sym_return] = ACTIONS(1681), + [anon_sym_continue] = ACTIONS(1681), + [anon_sym_break] = ACTIONS(1681), + [anon_sym_defer] = ACTIONS(1681), + [anon_sym_assert] = ACTIONS(1681), + [anon_sym_nextcase] = ACTIONS(1681), + [anon_sym_switch] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1683), + [anon_sym_if] = ACTIONS(1681), + [anon_sym_for] = ACTIONS(1681), + [anon_sym_foreach] = ACTIONS(1681), + [anon_sym_foreach_r] = ACTIONS(1681), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1681), + [anon_sym_int] = ACTIONS(1681), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_asm] = ACTIONS(1681), + [anon_sym_DOLLARassert] = ACTIONS(1681), + [anon_sym_DOLLARerror] = ACTIONS(1681), + [anon_sym_DOLLARecho] = ACTIONS(1681), + [anon_sym_DOLLARif] = ACTIONS(1681), + [anon_sym_DOLLARswitch] = ACTIONS(1681), + [anon_sym_DOLLARfor] = ACTIONS(1681), + [anon_sym_DOLLARendfor] = ACTIONS(1681), + [anon_sym_DOLLARforeach] = ACTIONS(1681), + [anon_sym_DOLLARalignof] = ACTIONS(1681), + [anon_sym_DOLLARextnameof] = ACTIONS(1681), + [anon_sym_DOLLARnameof] = ACTIONS(1681), + [anon_sym_DOLLARoffsetof] = ACTIONS(1681), + [anon_sym_DOLLARqnameof] = ACTIONS(1681), + [anon_sym_DOLLARvaconst] = ACTIONS(1681), + [anon_sym_DOLLARvaarg] = ACTIONS(1681), + [anon_sym_DOLLARvaref] = ACTIONS(1681), + [anon_sym_DOLLARvaexpr] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1681), + [anon_sym_false] = ACTIONS(1681), + [anon_sym_null] = ACTIONS(1681), + [anon_sym_DOLLARvacount] = ACTIONS(1681), + [anon_sym_DOLLAReval] = ACTIONS(1681), + [anon_sym_DOLLARis_const] = ACTIONS(1681), + [anon_sym_DOLLARsizeof] = ACTIONS(1681), + [anon_sym_DOLLARstringify] = ACTIONS(1681), + [anon_sym_DOLLARappend] = ACTIONS(1681), + [anon_sym_DOLLARconcat] = ACTIONS(1681), + [anon_sym_DOLLARdefined] = ACTIONS(1681), + [anon_sym_DOLLARembed] = ACTIONS(1681), + [anon_sym_DOLLARand] = ACTIONS(1681), + [anon_sym_DOLLARor] = ACTIONS(1681), + [anon_sym_DOLLARfeature] = ACTIONS(1681), + [anon_sym_DOLLARassignable] = ACTIONS(1681), + [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_typeid] = ACTIONS(1681), + [anon_sym_LBRACE_PIPE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1681), + [anon_sym_bool] = ACTIONS(1681), + [anon_sym_char] = ACTIONS(1681), + [anon_sym_ichar] = ACTIONS(1681), + [anon_sym_short] = ACTIONS(1681), + [anon_sym_ushort] = ACTIONS(1681), + [anon_sym_uint] = ACTIONS(1681), + [anon_sym_long] = ACTIONS(1681), + [anon_sym_ulong] = ACTIONS(1681), + [anon_sym_int128] = ACTIONS(1681), + [anon_sym_uint128] = ACTIONS(1681), + [anon_sym_float] = ACTIONS(1681), + [anon_sym_double] = ACTIONS(1681), + [anon_sym_float16] = ACTIONS(1681), + [anon_sym_bfloat16] = ACTIONS(1681), + [anon_sym_float128] = ACTIONS(1681), + [anon_sym_iptr] = ACTIONS(1681), + [anon_sym_uptr] = ACTIONS(1681), + [anon_sym_isz] = ACTIONS(1681), + [anon_sym_usz] = ACTIONS(1681), + [anon_sym_anyfault] = ACTIONS(1681), + [anon_sym_any] = ACTIONS(1681), + [anon_sym_DOLLARtypeof] = ACTIONS(1681), + [anon_sym_DOLLARtypefrom] = ACTIONS(1681), + [anon_sym_DOLLARevaltype] = ACTIONS(1681), + [anon_sym_DOLLARvatype] = ACTIONS(1681), + [sym_real_literal] = ACTIONS(1683), }, [582] = { [sym_line_comment] = STATE(582), [sym_doc_comment] = STATE(582), [sym_block_comment] = STATE(582), - [sym_ident] = ACTIONS(1649), - [sym_integer_literal] = ACTIONS(1651), - [anon_sym_SQUOTE] = ACTIONS(1651), - [anon_sym_DQUOTE] = ACTIONS(1651), - [anon_sym_BQUOTE] = ACTIONS(1651), - [sym_bytes_literal] = ACTIONS(1651), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1649), - [sym_at_ident] = ACTIONS(1651), - [sym_hash_ident] = ACTIONS(1651), - [sym_type_ident] = ACTIONS(1651), - [sym_ct_type_ident] = ACTIONS(1651), - [sym_const_ident] = ACTIONS(1649), - [sym_builtin] = ACTIONS(1651), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_AMP] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1649), - [anon_sym_tlocal] = ACTIONS(1649), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_fn] = ACTIONS(1649), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_const] = ACTIONS(1649), - [anon_sym_var] = ACTIONS(1649), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_defer] = ACTIONS(1649), - [anon_sym_assert] = ACTIONS(1649), - [anon_sym_nextcase] = ACTIONS(1649), - [anon_sym_switch] = ACTIONS(1649), - [anon_sym_AMP_AMP] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_foreach] = ACTIONS(1649), - [anon_sym_foreach_r] = ACTIONS(1649), - [anon_sym_while] = ACTIONS(1649), - [anon_sym_do] = ACTIONS(1649), - [anon_sym_int] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_asm] = ACTIONS(1649), - [anon_sym_DOLLARassert] = ACTIONS(1649), - [anon_sym_DOLLARerror] = ACTIONS(1649), - [anon_sym_DOLLARecho] = ACTIONS(1649), - [anon_sym_DOLLARif] = ACTIONS(1649), - [anon_sym_DOLLARswitch] = ACTIONS(1649), - [anon_sym_DOLLARfor] = ACTIONS(1649), - [anon_sym_DOLLARforeach] = ACTIONS(1649), - [anon_sym_DOLLARendforeach] = ACTIONS(1649), - [anon_sym_DOLLARalignof] = ACTIONS(1649), - [anon_sym_DOLLARextnameof] = ACTIONS(1649), - [anon_sym_DOLLARnameof] = ACTIONS(1649), - [anon_sym_DOLLARoffsetof] = ACTIONS(1649), - [anon_sym_DOLLARqnameof] = ACTIONS(1649), - [anon_sym_DOLLAReval] = ACTIONS(1649), - [anon_sym_DOLLARdefined] = ACTIONS(1649), - [anon_sym_DOLLARsizeof] = ACTIONS(1649), - [anon_sym_DOLLARstringify] = ACTIONS(1649), - [anon_sym_DOLLARis_const] = ACTIONS(1649), - [anon_sym_DOLLARvaconst] = ACTIONS(1649), - [anon_sym_DOLLARvaarg] = ACTIONS(1649), - [anon_sym_DOLLARvaref] = ACTIONS(1649), - [anon_sym_DOLLARvaexpr] = ACTIONS(1649), - [anon_sym_true] = ACTIONS(1649), - [anon_sym_false] = ACTIONS(1649), - [anon_sym_null] = ACTIONS(1649), - [anon_sym_DOLLARvacount] = ACTIONS(1649), - [anon_sym_DOLLARfeature] = ACTIONS(1649), - [anon_sym_DOLLARand] = ACTIONS(1649), - [anon_sym_DOLLARor] = ACTIONS(1649), - [anon_sym_DOLLARassignable] = ACTIONS(1649), - [anon_sym_DOLLARembed] = ACTIONS(1649), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_PLUS_PLUS] = ACTIONS(1651), - [anon_sym_DASH_DASH] = ACTIONS(1651), - [anon_sym_typeid] = ACTIONS(1649), - [anon_sym_LBRACE_PIPE] = ACTIONS(1651), - [anon_sym_void] = ACTIONS(1649), - [anon_sym_bool] = ACTIONS(1649), - [anon_sym_char] = ACTIONS(1649), - [anon_sym_ichar] = ACTIONS(1649), - [anon_sym_short] = ACTIONS(1649), - [anon_sym_ushort] = ACTIONS(1649), - [anon_sym_uint] = ACTIONS(1649), - [anon_sym_long] = ACTIONS(1649), - [anon_sym_ulong] = ACTIONS(1649), - [anon_sym_int128] = ACTIONS(1649), - [anon_sym_uint128] = ACTIONS(1649), - [anon_sym_float] = ACTIONS(1649), - [anon_sym_double] = ACTIONS(1649), - [anon_sym_float16] = ACTIONS(1649), - [anon_sym_bfloat16] = ACTIONS(1649), - [anon_sym_float128] = ACTIONS(1649), - [anon_sym_iptr] = ACTIONS(1649), - [anon_sym_uptr] = ACTIONS(1649), - [anon_sym_isz] = ACTIONS(1649), - [anon_sym_usz] = ACTIONS(1649), - [anon_sym_anyfault] = ACTIONS(1649), - [anon_sym_any] = ACTIONS(1649), - [anon_sym_DOLLARtypeof] = ACTIONS(1649), - [anon_sym_DOLLARtypefrom] = ACTIONS(1649), - [anon_sym_DOLLARvatype] = ACTIONS(1649), - [anon_sym_DOLLARevaltype] = ACTIONS(1649), - [sym_real_literal] = ACTIONS(1651), + [sym_ident] = ACTIONS(1685), + [sym_integer_literal] = ACTIONS(1687), + [anon_sym_SQUOTE] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1687), + [anon_sym_BQUOTE] = ACTIONS(1687), + [sym_bytes_literal] = ACTIONS(1687), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1685), + [sym_at_ident] = ACTIONS(1687), + [sym_hash_ident] = ACTIONS(1687), + [sym_type_ident] = ACTIONS(1687), + [sym_ct_type_ident] = ACTIONS(1687), + [sym_const_ident] = ACTIONS(1685), + [sym_builtin] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_static] = ACTIONS(1685), + [anon_sym_tlocal] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_fn] = ACTIONS(1685), + [anon_sym_LBRACE] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_var] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1685), + [anon_sym_continue] = ACTIONS(1685), + [anon_sym_break] = ACTIONS(1685), + [anon_sym_defer] = ACTIONS(1685), + [anon_sym_assert] = ACTIONS(1685), + [anon_sym_nextcase] = ACTIONS(1685), + [anon_sym_switch] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1685), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_foreach] = ACTIONS(1685), + [anon_sym_foreach_r] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1685), + [anon_sym_do] = ACTIONS(1685), + [anon_sym_int] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1685), + [anon_sym_STAR] = ACTIONS(1687), + [anon_sym_asm] = ACTIONS(1685), + [anon_sym_DOLLARassert] = ACTIONS(1685), + [anon_sym_DOLLARerror] = ACTIONS(1685), + [anon_sym_DOLLARecho] = ACTIONS(1685), + [anon_sym_DOLLARif] = ACTIONS(1685), + [anon_sym_DOLLARswitch] = ACTIONS(1685), + [anon_sym_DOLLARfor] = ACTIONS(1685), + [anon_sym_DOLLARendfor] = ACTIONS(1685), + [anon_sym_DOLLARforeach] = ACTIONS(1685), + [anon_sym_DOLLARalignof] = ACTIONS(1685), + [anon_sym_DOLLARextnameof] = ACTIONS(1685), + [anon_sym_DOLLARnameof] = ACTIONS(1685), + [anon_sym_DOLLARoffsetof] = ACTIONS(1685), + [anon_sym_DOLLARqnameof] = ACTIONS(1685), + [anon_sym_DOLLARvaconst] = ACTIONS(1685), + [anon_sym_DOLLARvaarg] = ACTIONS(1685), + [anon_sym_DOLLARvaref] = ACTIONS(1685), + [anon_sym_DOLLARvaexpr] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [anon_sym_null] = ACTIONS(1685), + [anon_sym_DOLLARvacount] = ACTIONS(1685), + [anon_sym_DOLLAReval] = ACTIONS(1685), + [anon_sym_DOLLARis_const] = ACTIONS(1685), + [anon_sym_DOLLARsizeof] = ACTIONS(1685), + [anon_sym_DOLLARstringify] = ACTIONS(1685), + [anon_sym_DOLLARappend] = ACTIONS(1685), + [anon_sym_DOLLARconcat] = ACTIONS(1685), + [anon_sym_DOLLARdefined] = ACTIONS(1685), + [anon_sym_DOLLARembed] = ACTIONS(1685), + [anon_sym_DOLLARand] = ACTIONS(1685), + [anon_sym_DOLLARor] = ACTIONS(1685), + [anon_sym_DOLLARfeature] = ACTIONS(1685), + [anon_sym_DOLLARassignable] = ACTIONS(1685), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [anon_sym_typeid] = ACTIONS(1685), + [anon_sym_LBRACE_PIPE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1685), + [anon_sym_bool] = ACTIONS(1685), + [anon_sym_char] = ACTIONS(1685), + [anon_sym_ichar] = ACTIONS(1685), + [anon_sym_short] = ACTIONS(1685), + [anon_sym_ushort] = ACTIONS(1685), + [anon_sym_uint] = ACTIONS(1685), + [anon_sym_long] = ACTIONS(1685), + [anon_sym_ulong] = ACTIONS(1685), + [anon_sym_int128] = ACTIONS(1685), + [anon_sym_uint128] = ACTIONS(1685), + [anon_sym_float] = ACTIONS(1685), + [anon_sym_double] = ACTIONS(1685), + [anon_sym_float16] = ACTIONS(1685), + [anon_sym_bfloat16] = ACTIONS(1685), + [anon_sym_float128] = ACTIONS(1685), + [anon_sym_iptr] = ACTIONS(1685), + [anon_sym_uptr] = ACTIONS(1685), + [anon_sym_isz] = ACTIONS(1685), + [anon_sym_usz] = ACTIONS(1685), + [anon_sym_anyfault] = ACTIONS(1685), + [anon_sym_any] = ACTIONS(1685), + [anon_sym_DOLLARtypeof] = ACTIONS(1685), + [anon_sym_DOLLARtypefrom] = ACTIONS(1685), + [anon_sym_DOLLARevaltype] = ACTIONS(1685), + [anon_sym_DOLLARvatype] = ACTIONS(1685), + [sym_real_literal] = ACTIONS(1687), }, [583] = { [sym_line_comment] = STATE(583), [sym_doc_comment] = STATE(583), [sym_block_comment] = STATE(583), - [sym_ident] = ACTIONS(1653), - [sym_integer_literal] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [anon_sym_BQUOTE] = ACTIONS(1655), - [sym_bytes_literal] = ACTIONS(1655), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1653), - [sym_at_ident] = ACTIONS(1655), - [sym_hash_ident] = ACTIONS(1655), - [sym_type_ident] = ACTIONS(1655), - [sym_ct_type_ident] = ACTIONS(1655), - [sym_const_ident] = ACTIONS(1653), - [sym_builtin] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1653), - [anon_sym_tlocal] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [anon_sym_var] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_defer] = ACTIONS(1653), - [anon_sym_assert] = ACTIONS(1653), - [anon_sym_nextcase] = ACTIONS(1653), - [anon_sym_switch] = ACTIONS(1653), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_foreach] = ACTIONS(1653), - [anon_sym_foreach_r] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_do] = ACTIONS(1653), - [anon_sym_int] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_asm] = ACTIONS(1653), - [anon_sym_DOLLARassert] = ACTIONS(1653), - [anon_sym_DOLLARerror] = ACTIONS(1653), - [anon_sym_DOLLARecho] = ACTIONS(1653), - [anon_sym_DOLLARif] = ACTIONS(1653), - [anon_sym_DOLLARswitch] = ACTIONS(1653), - [anon_sym_DOLLARfor] = ACTIONS(1653), - [anon_sym_DOLLARendfor] = ACTIONS(1653), - [anon_sym_DOLLARforeach] = ACTIONS(1653), - [anon_sym_DOLLARalignof] = ACTIONS(1653), - [anon_sym_DOLLARextnameof] = ACTIONS(1653), - [anon_sym_DOLLARnameof] = ACTIONS(1653), - [anon_sym_DOLLARoffsetof] = ACTIONS(1653), - [anon_sym_DOLLARqnameof] = ACTIONS(1653), - [anon_sym_DOLLAReval] = ACTIONS(1653), - [anon_sym_DOLLARdefined] = ACTIONS(1653), - [anon_sym_DOLLARsizeof] = ACTIONS(1653), - [anon_sym_DOLLARstringify] = ACTIONS(1653), - [anon_sym_DOLLARis_const] = ACTIONS(1653), - [anon_sym_DOLLARvaconst] = ACTIONS(1653), - [anon_sym_DOLLARvaarg] = ACTIONS(1653), - [anon_sym_DOLLARvaref] = ACTIONS(1653), - [anon_sym_DOLLARvaexpr] = ACTIONS(1653), - [anon_sym_true] = ACTIONS(1653), - [anon_sym_false] = ACTIONS(1653), - [anon_sym_null] = ACTIONS(1653), - [anon_sym_DOLLARvacount] = ACTIONS(1653), - [anon_sym_DOLLARfeature] = ACTIONS(1653), - [anon_sym_DOLLARand] = ACTIONS(1653), - [anon_sym_DOLLARor] = ACTIONS(1653), - [anon_sym_DOLLARassignable] = ACTIONS(1653), - [anon_sym_DOLLARembed] = ACTIONS(1653), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_typeid] = ACTIONS(1653), - [anon_sym_LBRACE_PIPE] = ACTIONS(1655), - [anon_sym_void] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_ichar] = ACTIONS(1653), - [anon_sym_short] = ACTIONS(1653), - [anon_sym_ushort] = ACTIONS(1653), - [anon_sym_uint] = ACTIONS(1653), - [anon_sym_long] = ACTIONS(1653), - [anon_sym_ulong] = ACTIONS(1653), - [anon_sym_int128] = ACTIONS(1653), - [anon_sym_uint128] = ACTIONS(1653), - [anon_sym_float] = ACTIONS(1653), - [anon_sym_double] = ACTIONS(1653), - [anon_sym_float16] = ACTIONS(1653), - [anon_sym_bfloat16] = ACTIONS(1653), - [anon_sym_float128] = ACTIONS(1653), - [anon_sym_iptr] = ACTIONS(1653), - [anon_sym_uptr] = ACTIONS(1653), - [anon_sym_isz] = ACTIONS(1653), - [anon_sym_usz] = ACTIONS(1653), - [anon_sym_anyfault] = ACTIONS(1653), - [anon_sym_any] = ACTIONS(1653), - [anon_sym_DOLLARtypeof] = ACTIONS(1653), - [anon_sym_DOLLARtypefrom] = ACTIONS(1653), - [anon_sym_DOLLARvatype] = ACTIONS(1653), - [anon_sym_DOLLARevaltype] = ACTIONS(1653), - [sym_real_literal] = ACTIONS(1655), + [sym_ident] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [anon_sym_SQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [anon_sym_BQUOTE] = ACTIONS(1691), + [sym_bytes_literal] = ACTIONS(1691), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1689), + [sym_at_ident] = ACTIONS(1691), + [sym_hash_ident] = ACTIONS(1691), + [sym_type_ident] = ACTIONS(1691), + [sym_ct_type_ident] = ACTIONS(1691), + [sym_const_ident] = ACTIONS(1689), + [sym_builtin] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1689), + [anon_sym_static] = ACTIONS(1689), + [anon_sym_tlocal] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_fn] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_var] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_defer] = ACTIONS(1689), + [anon_sym_assert] = ACTIONS(1689), + [anon_sym_nextcase] = ACTIONS(1689), + [anon_sym_switch] = ACTIONS(1689), + [anon_sym_AMP_AMP] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_foreach] = ACTIONS(1689), + [anon_sym_foreach_r] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1689), + [anon_sym_do] = ACTIONS(1689), + [anon_sym_int] = ACTIONS(1689), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1689), + [anon_sym_STAR] = ACTIONS(1691), + [anon_sym_asm] = ACTIONS(1689), + [anon_sym_DOLLARassert] = ACTIONS(1689), + [anon_sym_DOLLARerror] = ACTIONS(1689), + [anon_sym_DOLLARecho] = ACTIONS(1689), + [anon_sym_DOLLARif] = ACTIONS(1689), + [anon_sym_DOLLARswitch] = ACTIONS(1689), + [anon_sym_DOLLARfor] = ACTIONS(1689), + [anon_sym_DOLLARendfor] = ACTIONS(1689), + [anon_sym_DOLLARforeach] = ACTIONS(1689), + [anon_sym_DOLLARalignof] = ACTIONS(1689), + [anon_sym_DOLLARextnameof] = ACTIONS(1689), + [anon_sym_DOLLARnameof] = ACTIONS(1689), + [anon_sym_DOLLARoffsetof] = ACTIONS(1689), + [anon_sym_DOLLARqnameof] = ACTIONS(1689), + [anon_sym_DOLLARvaconst] = ACTIONS(1689), + [anon_sym_DOLLARvaarg] = ACTIONS(1689), + [anon_sym_DOLLARvaref] = ACTIONS(1689), + [anon_sym_DOLLARvaexpr] = ACTIONS(1689), + [anon_sym_true] = ACTIONS(1689), + [anon_sym_false] = ACTIONS(1689), + [anon_sym_null] = ACTIONS(1689), + [anon_sym_DOLLARvacount] = ACTIONS(1689), + [anon_sym_DOLLAReval] = ACTIONS(1689), + [anon_sym_DOLLARis_const] = ACTIONS(1689), + [anon_sym_DOLLARsizeof] = ACTIONS(1689), + [anon_sym_DOLLARstringify] = ACTIONS(1689), + [anon_sym_DOLLARappend] = ACTIONS(1689), + [anon_sym_DOLLARconcat] = ACTIONS(1689), + [anon_sym_DOLLARdefined] = ACTIONS(1689), + [anon_sym_DOLLARembed] = ACTIONS(1689), + [anon_sym_DOLLARand] = ACTIONS(1689), + [anon_sym_DOLLARor] = ACTIONS(1689), + [anon_sym_DOLLARfeature] = ACTIONS(1689), + [anon_sym_DOLLARassignable] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1691), + [anon_sym_TILDE] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_DASH_DASH] = ACTIONS(1691), + [anon_sym_typeid] = ACTIONS(1689), + [anon_sym_LBRACE_PIPE] = ACTIONS(1691), + [anon_sym_void] = ACTIONS(1689), + [anon_sym_bool] = ACTIONS(1689), + [anon_sym_char] = ACTIONS(1689), + [anon_sym_ichar] = ACTIONS(1689), + [anon_sym_short] = ACTIONS(1689), + [anon_sym_ushort] = ACTIONS(1689), + [anon_sym_uint] = ACTIONS(1689), + [anon_sym_long] = ACTIONS(1689), + [anon_sym_ulong] = ACTIONS(1689), + [anon_sym_int128] = ACTIONS(1689), + [anon_sym_uint128] = ACTIONS(1689), + [anon_sym_float] = ACTIONS(1689), + [anon_sym_double] = ACTIONS(1689), + [anon_sym_float16] = ACTIONS(1689), + [anon_sym_bfloat16] = ACTIONS(1689), + [anon_sym_float128] = ACTIONS(1689), + [anon_sym_iptr] = ACTIONS(1689), + [anon_sym_uptr] = ACTIONS(1689), + [anon_sym_isz] = ACTIONS(1689), + [anon_sym_usz] = ACTIONS(1689), + [anon_sym_anyfault] = ACTIONS(1689), + [anon_sym_any] = ACTIONS(1689), + [anon_sym_DOLLARtypeof] = ACTIONS(1689), + [anon_sym_DOLLARtypefrom] = ACTIONS(1689), + [anon_sym_DOLLARevaltype] = ACTIONS(1689), + [anon_sym_DOLLARvatype] = ACTIONS(1689), + [sym_real_literal] = ACTIONS(1691), }, [584] = { [sym_line_comment] = STATE(584), [sym_doc_comment] = STATE(584), [sym_block_comment] = STATE(584), - [sym_ident] = ACTIONS(1657), - [sym_integer_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_bytes_literal] = ACTIONS(1659), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1657), - [sym_at_ident] = ACTIONS(1659), - [sym_hash_ident] = ACTIONS(1659), - [sym_type_ident] = ACTIONS(1659), - [sym_ct_type_ident] = ACTIONS(1659), - [sym_const_ident] = ACTIONS(1657), - [sym_builtin] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_tlocal] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_fn] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_var] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_defer] = ACTIONS(1657), - [anon_sym_assert] = ACTIONS(1657), - [anon_sym_nextcase] = ACTIONS(1657), - [anon_sym_switch] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_foreach] = ACTIONS(1657), - [anon_sym_foreach_r] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_do] = ACTIONS(1657), - [anon_sym_int] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_asm] = ACTIONS(1657), - [anon_sym_DOLLARassert] = ACTIONS(1657), - [anon_sym_DOLLARerror] = ACTIONS(1657), - [anon_sym_DOLLARecho] = ACTIONS(1657), - [anon_sym_DOLLARif] = ACTIONS(1657), - [anon_sym_DOLLARswitch] = ACTIONS(1657), - [anon_sym_DOLLARfor] = ACTIONS(1657), - [anon_sym_DOLLARendfor] = ACTIONS(1657), - [anon_sym_DOLLARforeach] = ACTIONS(1657), - [anon_sym_DOLLARalignof] = ACTIONS(1657), - [anon_sym_DOLLARextnameof] = ACTIONS(1657), - [anon_sym_DOLLARnameof] = ACTIONS(1657), - [anon_sym_DOLLARoffsetof] = ACTIONS(1657), - [anon_sym_DOLLARqnameof] = ACTIONS(1657), - [anon_sym_DOLLAReval] = ACTIONS(1657), - [anon_sym_DOLLARdefined] = ACTIONS(1657), - [anon_sym_DOLLARsizeof] = ACTIONS(1657), - [anon_sym_DOLLARstringify] = ACTIONS(1657), - [anon_sym_DOLLARis_const] = ACTIONS(1657), - [anon_sym_DOLLARvaconst] = ACTIONS(1657), - [anon_sym_DOLLARvaarg] = ACTIONS(1657), - [anon_sym_DOLLARvaref] = ACTIONS(1657), - [anon_sym_DOLLARvaexpr] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1657), - [anon_sym_false] = ACTIONS(1657), - [anon_sym_null] = ACTIONS(1657), - [anon_sym_DOLLARvacount] = ACTIONS(1657), - [anon_sym_DOLLARfeature] = ACTIONS(1657), - [anon_sym_DOLLARand] = ACTIONS(1657), - [anon_sym_DOLLARor] = ACTIONS(1657), - [anon_sym_DOLLARassignable] = ACTIONS(1657), - [anon_sym_DOLLARembed] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1659), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [anon_sym_typeid] = ACTIONS(1657), - [anon_sym_LBRACE_PIPE] = ACTIONS(1659), - [anon_sym_void] = ACTIONS(1657), - [anon_sym_bool] = ACTIONS(1657), - [anon_sym_char] = ACTIONS(1657), - [anon_sym_ichar] = ACTIONS(1657), - [anon_sym_short] = ACTIONS(1657), - [anon_sym_ushort] = ACTIONS(1657), - [anon_sym_uint] = ACTIONS(1657), - [anon_sym_long] = ACTIONS(1657), - [anon_sym_ulong] = ACTIONS(1657), - [anon_sym_int128] = ACTIONS(1657), - [anon_sym_uint128] = ACTIONS(1657), - [anon_sym_float] = ACTIONS(1657), - [anon_sym_double] = ACTIONS(1657), - [anon_sym_float16] = ACTIONS(1657), - [anon_sym_bfloat16] = ACTIONS(1657), - [anon_sym_float128] = ACTIONS(1657), - [anon_sym_iptr] = ACTIONS(1657), - [anon_sym_uptr] = ACTIONS(1657), - [anon_sym_isz] = ACTIONS(1657), - [anon_sym_usz] = ACTIONS(1657), - [anon_sym_anyfault] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_DOLLARtypeof] = ACTIONS(1657), - [anon_sym_DOLLARtypefrom] = ACTIONS(1657), - [anon_sym_DOLLARvatype] = ACTIONS(1657), - [anon_sym_DOLLARevaltype] = ACTIONS(1657), - [sym_real_literal] = ACTIONS(1659), - }, - [585] = { - [sym_line_comment] = STATE(585), - [sym_doc_comment] = STATE(585), - [sym_block_comment] = STATE(585), - [sym_ident] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1663), - [anon_sym_SQUOTE] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [anon_sym_BQUOTE] = ACTIONS(1663), - [sym_bytes_literal] = ACTIONS(1663), + [sym_ident] = ACTIONS(1693), + [sym_integer_literal] = ACTIONS(1695), + [anon_sym_SQUOTE] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [anon_sym_BQUOTE] = ACTIONS(1695), + [sym_bytes_literal] = ACTIONS(1695), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1661), - [sym_at_ident] = ACTIONS(1663), - [sym_hash_ident] = ACTIONS(1663), - [sym_type_ident] = ACTIONS(1663), - [sym_ct_type_ident] = ACTIONS(1663), - [sym_const_ident] = ACTIONS(1661), - [sym_builtin] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1661), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_tlocal] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_fn] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_var] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_defer] = ACTIONS(1661), - [anon_sym_assert] = ACTIONS(1661), - [anon_sym_nextcase] = ACTIONS(1661), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_AMP_AMP] = ACTIONS(1663), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_foreach] = ACTIONS(1661), - [anon_sym_foreach_r] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_int] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(1663), - [anon_sym_asm] = ACTIONS(1661), - [anon_sym_DOLLARassert] = ACTIONS(1661), - [anon_sym_DOLLARerror] = ACTIONS(1661), - [anon_sym_DOLLARecho] = ACTIONS(1661), - [anon_sym_DOLLARif] = ACTIONS(1661), - [anon_sym_DOLLARswitch] = ACTIONS(1661), - [anon_sym_DOLLARfor] = ACTIONS(1661), - [anon_sym_DOLLARendfor] = ACTIONS(1661), - [anon_sym_DOLLARforeach] = ACTIONS(1661), - [anon_sym_DOLLARalignof] = ACTIONS(1661), - [anon_sym_DOLLARextnameof] = ACTIONS(1661), - [anon_sym_DOLLARnameof] = ACTIONS(1661), - [anon_sym_DOLLARoffsetof] = ACTIONS(1661), - [anon_sym_DOLLARqnameof] = ACTIONS(1661), - [anon_sym_DOLLAReval] = ACTIONS(1661), - [anon_sym_DOLLARdefined] = ACTIONS(1661), - [anon_sym_DOLLARsizeof] = ACTIONS(1661), - [anon_sym_DOLLARstringify] = ACTIONS(1661), - [anon_sym_DOLLARis_const] = ACTIONS(1661), - [anon_sym_DOLLARvaconst] = ACTIONS(1661), - [anon_sym_DOLLARvaarg] = ACTIONS(1661), - [anon_sym_DOLLARvaref] = ACTIONS(1661), - [anon_sym_DOLLARvaexpr] = ACTIONS(1661), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [anon_sym_DOLLARvacount] = ACTIONS(1661), - [anon_sym_DOLLARfeature] = ACTIONS(1661), - [anon_sym_DOLLARand] = ACTIONS(1661), - [anon_sym_DOLLARor] = ACTIONS(1661), - [anon_sym_DOLLARassignable] = ACTIONS(1661), - [anon_sym_DOLLARembed] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [anon_sym_typeid] = ACTIONS(1661), - [anon_sym_LBRACE_PIPE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1661), - [anon_sym_bool] = ACTIONS(1661), - [anon_sym_char] = ACTIONS(1661), - [anon_sym_ichar] = ACTIONS(1661), - [anon_sym_short] = ACTIONS(1661), - [anon_sym_ushort] = ACTIONS(1661), - [anon_sym_uint] = ACTIONS(1661), - [anon_sym_long] = ACTIONS(1661), - [anon_sym_ulong] = ACTIONS(1661), - [anon_sym_int128] = ACTIONS(1661), - [anon_sym_uint128] = ACTIONS(1661), - [anon_sym_float] = ACTIONS(1661), - [anon_sym_double] = ACTIONS(1661), - [anon_sym_float16] = ACTIONS(1661), - [anon_sym_bfloat16] = ACTIONS(1661), - [anon_sym_float128] = ACTIONS(1661), - [anon_sym_iptr] = ACTIONS(1661), - [anon_sym_uptr] = ACTIONS(1661), - [anon_sym_isz] = ACTIONS(1661), - [anon_sym_usz] = ACTIONS(1661), - [anon_sym_anyfault] = ACTIONS(1661), - [anon_sym_any] = ACTIONS(1661), - [anon_sym_DOLLARtypeof] = ACTIONS(1661), - [anon_sym_DOLLARtypefrom] = ACTIONS(1661), - [anon_sym_DOLLARvatype] = ACTIONS(1661), - [anon_sym_DOLLARevaltype] = ACTIONS(1661), - [sym_real_literal] = ACTIONS(1663), + [sym_ct_ident] = ACTIONS(1693), + [sym_at_ident] = ACTIONS(1695), + [sym_hash_ident] = ACTIONS(1695), + [sym_type_ident] = ACTIONS(1695), + [sym_ct_type_ident] = ACTIONS(1695), + [sym_const_ident] = ACTIONS(1693), + [sym_builtin] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_AMP] = ACTIONS(1693), + [anon_sym_static] = ACTIONS(1693), + [anon_sym_tlocal] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_fn] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [anon_sym_var] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_defer] = ACTIONS(1693), + [anon_sym_assert] = ACTIONS(1693), + [anon_sym_nextcase] = ACTIONS(1693), + [anon_sym_switch] = ACTIONS(1693), + [anon_sym_AMP_AMP] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_foreach] = ACTIONS(1693), + [anon_sym_foreach_r] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_int] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1693), + [anon_sym_DASH] = ACTIONS(1693), + [anon_sym_STAR] = ACTIONS(1695), + [anon_sym_asm] = ACTIONS(1693), + [anon_sym_DOLLARassert] = ACTIONS(1693), + [anon_sym_DOLLARerror] = ACTIONS(1693), + [anon_sym_DOLLARecho] = ACTIONS(1693), + [anon_sym_DOLLARif] = ACTIONS(1693), + [anon_sym_DOLLARswitch] = ACTIONS(1693), + [anon_sym_DOLLARfor] = ACTIONS(1693), + [anon_sym_DOLLARendfor] = ACTIONS(1693), + [anon_sym_DOLLARforeach] = ACTIONS(1693), + [anon_sym_DOLLARalignof] = ACTIONS(1693), + [anon_sym_DOLLARextnameof] = ACTIONS(1693), + [anon_sym_DOLLARnameof] = ACTIONS(1693), + [anon_sym_DOLLARoffsetof] = ACTIONS(1693), + [anon_sym_DOLLARqnameof] = ACTIONS(1693), + [anon_sym_DOLLARvaconst] = ACTIONS(1693), + [anon_sym_DOLLARvaarg] = ACTIONS(1693), + [anon_sym_DOLLARvaref] = ACTIONS(1693), + [anon_sym_DOLLARvaexpr] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1693), + [anon_sym_false] = ACTIONS(1693), + [anon_sym_null] = ACTIONS(1693), + [anon_sym_DOLLARvacount] = ACTIONS(1693), + [anon_sym_DOLLAReval] = ACTIONS(1693), + [anon_sym_DOLLARis_const] = ACTIONS(1693), + [anon_sym_DOLLARsizeof] = ACTIONS(1693), + [anon_sym_DOLLARstringify] = ACTIONS(1693), + [anon_sym_DOLLARappend] = ACTIONS(1693), + [anon_sym_DOLLARconcat] = ACTIONS(1693), + [anon_sym_DOLLARdefined] = ACTIONS(1693), + [anon_sym_DOLLARembed] = ACTIONS(1693), + [anon_sym_DOLLARand] = ACTIONS(1693), + [anon_sym_DOLLARor] = ACTIONS(1693), + [anon_sym_DOLLARfeature] = ACTIONS(1693), + [anon_sym_DOLLARassignable] = ACTIONS(1693), + [anon_sym_BANG] = ACTIONS(1695), + [anon_sym_TILDE] = ACTIONS(1695), + [anon_sym_PLUS_PLUS] = ACTIONS(1695), + [anon_sym_DASH_DASH] = ACTIONS(1695), + [anon_sym_typeid] = ACTIONS(1693), + [anon_sym_LBRACE_PIPE] = ACTIONS(1695), + [anon_sym_void] = ACTIONS(1693), + [anon_sym_bool] = ACTIONS(1693), + [anon_sym_char] = ACTIONS(1693), + [anon_sym_ichar] = ACTIONS(1693), + [anon_sym_short] = ACTIONS(1693), + [anon_sym_ushort] = ACTIONS(1693), + [anon_sym_uint] = ACTIONS(1693), + [anon_sym_long] = ACTIONS(1693), + [anon_sym_ulong] = ACTIONS(1693), + [anon_sym_int128] = ACTIONS(1693), + [anon_sym_uint128] = ACTIONS(1693), + [anon_sym_float] = ACTIONS(1693), + [anon_sym_double] = ACTIONS(1693), + [anon_sym_float16] = ACTIONS(1693), + [anon_sym_bfloat16] = ACTIONS(1693), + [anon_sym_float128] = ACTIONS(1693), + [anon_sym_iptr] = ACTIONS(1693), + [anon_sym_uptr] = ACTIONS(1693), + [anon_sym_isz] = ACTIONS(1693), + [anon_sym_usz] = ACTIONS(1693), + [anon_sym_anyfault] = ACTIONS(1693), + [anon_sym_any] = ACTIONS(1693), + [anon_sym_DOLLARtypeof] = ACTIONS(1693), + [anon_sym_DOLLARtypefrom] = ACTIONS(1693), + [anon_sym_DOLLARevaltype] = ACTIONS(1693), + [anon_sym_DOLLARvatype] = ACTIONS(1693), + [sym_real_literal] = ACTIONS(1695), + }, + [585] = { + [sym_line_comment] = STATE(585), + [sym_doc_comment] = STATE(585), + [sym_block_comment] = STATE(585), + [sym_ident] = ACTIONS(1697), + [sym_integer_literal] = ACTIONS(1699), + [anon_sym_SQUOTE] = ACTIONS(1699), + [anon_sym_DQUOTE] = ACTIONS(1699), + [anon_sym_BQUOTE] = ACTIONS(1699), + [sym_bytes_literal] = ACTIONS(1699), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1697), + [sym_at_ident] = ACTIONS(1699), + [sym_hash_ident] = ACTIONS(1699), + [sym_type_ident] = ACTIONS(1699), + [sym_ct_type_ident] = ACTIONS(1699), + [sym_const_ident] = ACTIONS(1697), + [sym_builtin] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_AMP] = ACTIONS(1697), + [anon_sym_static] = ACTIONS(1697), + [anon_sym_tlocal] = ACTIONS(1697), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_fn] = ACTIONS(1697), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_var] = ACTIONS(1697), + [anon_sym_return] = ACTIONS(1697), + [anon_sym_continue] = ACTIONS(1697), + [anon_sym_break] = ACTIONS(1697), + [anon_sym_defer] = ACTIONS(1697), + [anon_sym_assert] = ACTIONS(1697), + [anon_sym_nextcase] = ACTIONS(1697), + [anon_sym_switch] = ACTIONS(1697), + [anon_sym_AMP_AMP] = ACTIONS(1699), + [anon_sym_if] = ACTIONS(1697), + [anon_sym_for] = ACTIONS(1697), + [anon_sym_foreach] = ACTIONS(1697), + [anon_sym_foreach_r] = ACTIONS(1697), + [anon_sym_while] = ACTIONS(1697), + [anon_sym_do] = ACTIONS(1697), + [anon_sym_int] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1699), + [anon_sym_asm] = ACTIONS(1697), + [anon_sym_DOLLARassert] = ACTIONS(1697), + [anon_sym_DOLLARerror] = ACTIONS(1697), + [anon_sym_DOLLARecho] = ACTIONS(1697), + [anon_sym_DOLLARif] = ACTIONS(1697), + [anon_sym_DOLLARswitch] = ACTIONS(1697), + [anon_sym_DOLLARfor] = ACTIONS(1697), + [anon_sym_DOLLARendfor] = ACTIONS(1697), + [anon_sym_DOLLARforeach] = ACTIONS(1697), + [anon_sym_DOLLARalignof] = ACTIONS(1697), + [anon_sym_DOLLARextnameof] = ACTIONS(1697), + [anon_sym_DOLLARnameof] = ACTIONS(1697), + [anon_sym_DOLLARoffsetof] = ACTIONS(1697), + [anon_sym_DOLLARqnameof] = ACTIONS(1697), + [anon_sym_DOLLARvaconst] = ACTIONS(1697), + [anon_sym_DOLLARvaarg] = ACTIONS(1697), + [anon_sym_DOLLARvaref] = ACTIONS(1697), + [anon_sym_DOLLARvaexpr] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_null] = ACTIONS(1697), + [anon_sym_DOLLARvacount] = ACTIONS(1697), + [anon_sym_DOLLAReval] = ACTIONS(1697), + [anon_sym_DOLLARis_const] = ACTIONS(1697), + [anon_sym_DOLLARsizeof] = ACTIONS(1697), + [anon_sym_DOLLARstringify] = ACTIONS(1697), + [anon_sym_DOLLARappend] = ACTIONS(1697), + [anon_sym_DOLLARconcat] = ACTIONS(1697), + [anon_sym_DOLLARdefined] = ACTIONS(1697), + [anon_sym_DOLLARembed] = ACTIONS(1697), + [anon_sym_DOLLARand] = ACTIONS(1697), + [anon_sym_DOLLARor] = ACTIONS(1697), + [anon_sym_DOLLARfeature] = ACTIONS(1697), + [anon_sym_DOLLARassignable] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1699), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_typeid] = ACTIONS(1697), + [anon_sym_LBRACE_PIPE] = ACTIONS(1699), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_bool] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_ichar] = ACTIONS(1697), + [anon_sym_short] = ACTIONS(1697), + [anon_sym_ushort] = ACTIONS(1697), + [anon_sym_uint] = ACTIONS(1697), + [anon_sym_long] = ACTIONS(1697), + [anon_sym_ulong] = ACTIONS(1697), + [anon_sym_int128] = ACTIONS(1697), + [anon_sym_uint128] = ACTIONS(1697), + [anon_sym_float] = ACTIONS(1697), + [anon_sym_double] = ACTIONS(1697), + [anon_sym_float16] = ACTIONS(1697), + [anon_sym_bfloat16] = ACTIONS(1697), + [anon_sym_float128] = ACTIONS(1697), + [anon_sym_iptr] = ACTIONS(1697), + [anon_sym_uptr] = ACTIONS(1697), + [anon_sym_isz] = ACTIONS(1697), + [anon_sym_usz] = ACTIONS(1697), + [anon_sym_anyfault] = ACTIONS(1697), + [anon_sym_any] = ACTIONS(1697), + [anon_sym_DOLLARtypeof] = ACTIONS(1697), + [anon_sym_DOLLARtypefrom] = ACTIONS(1697), + [anon_sym_DOLLARevaltype] = ACTIONS(1697), + [anon_sym_DOLLARvatype] = ACTIONS(1697), + [sym_real_literal] = ACTIONS(1699), }, [586] = { [sym_line_comment] = STATE(586), [sym_doc_comment] = STATE(586), [sym_block_comment] = STATE(586), - [sym_ident] = ACTIONS(1665), - [sym_integer_literal] = ACTIONS(1667), - [anon_sym_SQUOTE] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1667), - [anon_sym_BQUOTE] = ACTIONS(1667), - [sym_bytes_literal] = ACTIONS(1667), + [sym_ident] = ACTIONS(1433), + [sym_integer_literal] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_DQUOTE] = ACTIONS(1435), + [anon_sym_BQUOTE] = ACTIONS(1435), + [sym_bytes_literal] = ACTIONS(1435), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1665), - [sym_at_ident] = ACTIONS(1667), - [sym_hash_ident] = ACTIONS(1667), - [sym_type_ident] = ACTIONS(1667), - [sym_ct_type_ident] = ACTIONS(1667), - [sym_const_ident] = ACTIONS(1665), - [sym_builtin] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_static] = ACTIONS(1665), - [anon_sym_tlocal] = ACTIONS(1665), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_fn] = ACTIONS(1665), - [anon_sym_LBRACE] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1665), - [anon_sym_var] = ACTIONS(1665), - [anon_sym_return] = ACTIONS(1665), - [anon_sym_continue] = ACTIONS(1665), - [anon_sym_break] = ACTIONS(1665), - [anon_sym_defer] = ACTIONS(1665), - [anon_sym_assert] = ACTIONS(1665), - [anon_sym_nextcase] = ACTIONS(1665), - [anon_sym_switch] = ACTIONS(1665), - [anon_sym_AMP_AMP] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1665), - [anon_sym_for] = ACTIONS(1665), - [anon_sym_foreach] = ACTIONS(1665), - [anon_sym_foreach_r] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1665), - [anon_sym_do] = ACTIONS(1665), - [anon_sym_int] = ACTIONS(1665), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_asm] = ACTIONS(1665), - [anon_sym_DOLLARassert] = ACTIONS(1665), - [anon_sym_DOLLARerror] = ACTIONS(1665), - [anon_sym_DOLLARecho] = ACTIONS(1665), - [anon_sym_DOLLARif] = ACTIONS(1665), - [anon_sym_DOLLARswitch] = ACTIONS(1665), - [anon_sym_DOLLARfor] = ACTIONS(1665), - [anon_sym_DOLLARendfor] = ACTIONS(1665), - [anon_sym_DOLLARforeach] = ACTIONS(1665), - [anon_sym_DOLLARalignof] = ACTIONS(1665), - [anon_sym_DOLLARextnameof] = ACTIONS(1665), - [anon_sym_DOLLARnameof] = ACTIONS(1665), - [anon_sym_DOLLARoffsetof] = ACTIONS(1665), - [anon_sym_DOLLARqnameof] = ACTIONS(1665), - [anon_sym_DOLLAReval] = ACTIONS(1665), - [anon_sym_DOLLARdefined] = ACTIONS(1665), - [anon_sym_DOLLARsizeof] = ACTIONS(1665), - [anon_sym_DOLLARstringify] = ACTIONS(1665), - [anon_sym_DOLLARis_const] = ACTIONS(1665), - [anon_sym_DOLLARvaconst] = ACTIONS(1665), - [anon_sym_DOLLARvaarg] = ACTIONS(1665), - [anon_sym_DOLLARvaref] = ACTIONS(1665), - [anon_sym_DOLLARvaexpr] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1665), - [anon_sym_false] = ACTIONS(1665), - [anon_sym_null] = ACTIONS(1665), - [anon_sym_DOLLARvacount] = ACTIONS(1665), - [anon_sym_DOLLARfeature] = ACTIONS(1665), - [anon_sym_DOLLARand] = ACTIONS(1665), - [anon_sym_DOLLARor] = ACTIONS(1665), - [anon_sym_DOLLARassignable] = ACTIONS(1665), - [anon_sym_DOLLARembed] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_typeid] = ACTIONS(1665), - [anon_sym_LBRACE_PIPE] = ACTIONS(1667), - [anon_sym_void] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_ichar] = ACTIONS(1665), - [anon_sym_short] = ACTIONS(1665), - [anon_sym_ushort] = ACTIONS(1665), - [anon_sym_uint] = ACTIONS(1665), - [anon_sym_long] = ACTIONS(1665), - [anon_sym_ulong] = ACTIONS(1665), - [anon_sym_int128] = ACTIONS(1665), - [anon_sym_uint128] = ACTIONS(1665), - [anon_sym_float] = ACTIONS(1665), - [anon_sym_double] = ACTIONS(1665), - [anon_sym_float16] = ACTIONS(1665), - [anon_sym_bfloat16] = ACTIONS(1665), - [anon_sym_float128] = ACTIONS(1665), - [anon_sym_iptr] = ACTIONS(1665), - [anon_sym_uptr] = ACTIONS(1665), - [anon_sym_isz] = ACTIONS(1665), - [anon_sym_usz] = ACTIONS(1665), - [anon_sym_anyfault] = ACTIONS(1665), - [anon_sym_any] = ACTIONS(1665), - [anon_sym_DOLLARtypeof] = ACTIONS(1665), - [anon_sym_DOLLARtypefrom] = ACTIONS(1665), - [anon_sym_DOLLARvatype] = ACTIONS(1665), - [anon_sym_DOLLARevaltype] = ACTIONS(1665), - [sym_real_literal] = ACTIONS(1667), + [sym_ct_ident] = ACTIONS(1433), + [sym_at_ident] = ACTIONS(1435), + [sym_hash_ident] = ACTIONS(1435), + [sym_type_ident] = ACTIONS(1435), + [sym_ct_type_ident] = ACTIONS(1435), + [sym_const_ident] = ACTIONS(1433), + [sym_builtin] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_tlocal] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_fn] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_var] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_defer] = ACTIONS(1433), + [anon_sym_assert] = ACTIONS(1433), + [anon_sym_nextcase] = ACTIONS(1433), + [anon_sym_switch] = ACTIONS(1433), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_foreach] = ACTIONS(1433), + [anon_sym_foreach_r] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_do] = ACTIONS(1433), + [anon_sym_int] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_asm] = ACTIONS(1433), + [anon_sym_DOLLARassert] = ACTIONS(1433), + [anon_sym_DOLLARerror] = ACTIONS(1433), + [anon_sym_DOLLARecho] = ACTIONS(1433), + [anon_sym_DOLLARif] = ACTIONS(1433), + [anon_sym_DOLLARswitch] = ACTIONS(1433), + [anon_sym_DOLLARfor] = ACTIONS(1433), + [anon_sym_DOLLARendfor] = ACTIONS(1433), + [anon_sym_DOLLARforeach] = ACTIONS(1433), + [anon_sym_DOLLARalignof] = ACTIONS(1433), + [anon_sym_DOLLARextnameof] = ACTIONS(1433), + [anon_sym_DOLLARnameof] = ACTIONS(1433), + [anon_sym_DOLLARoffsetof] = ACTIONS(1433), + [anon_sym_DOLLARqnameof] = ACTIONS(1433), + [anon_sym_DOLLARvaconst] = ACTIONS(1433), + [anon_sym_DOLLARvaarg] = ACTIONS(1433), + [anon_sym_DOLLARvaref] = ACTIONS(1433), + [anon_sym_DOLLARvaexpr] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1433), + [anon_sym_DOLLARvacount] = ACTIONS(1433), + [anon_sym_DOLLAReval] = ACTIONS(1433), + [anon_sym_DOLLARis_const] = ACTIONS(1433), + [anon_sym_DOLLARsizeof] = ACTIONS(1433), + [anon_sym_DOLLARstringify] = ACTIONS(1433), + [anon_sym_DOLLARappend] = ACTIONS(1433), + [anon_sym_DOLLARconcat] = ACTIONS(1433), + [anon_sym_DOLLARdefined] = ACTIONS(1433), + [anon_sym_DOLLARembed] = ACTIONS(1433), + [anon_sym_DOLLARand] = ACTIONS(1433), + [anon_sym_DOLLARor] = ACTIONS(1433), + [anon_sym_DOLLARfeature] = ACTIONS(1433), + [anon_sym_DOLLARassignable] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_PLUS_PLUS] = ACTIONS(1435), + [anon_sym_DASH_DASH] = ACTIONS(1435), + [anon_sym_typeid] = ACTIONS(1433), + [anon_sym_LBRACE_PIPE] = ACTIONS(1435), + [anon_sym_void] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_ichar] = ACTIONS(1433), + [anon_sym_short] = ACTIONS(1433), + [anon_sym_ushort] = ACTIONS(1433), + [anon_sym_uint] = ACTIONS(1433), + [anon_sym_long] = ACTIONS(1433), + [anon_sym_ulong] = ACTIONS(1433), + [anon_sym_int128] = ACTIONS(1433), + [anon_sym_uint128] = ACTIONS(1433), + [anon_sym_float] = ACTIONS(1433), + [anon_sym_double] = ACTIONS(1433), + [anon_sym_float16] = ACTIONS(1433), + [anon_sym_bfloat16] = ACTIONS(1433), + [anon_sym_float128] = ACTIONS(1433), + [anon_sym_iptr] = ACTIONS(1433), + [anon_sym_uptr] = ACTIONS(1433), + [anon_sym_isz] = ACTIONS(1433), + [anon_sym_usz] = ACTIONS(1433), + [anon_sym_anyfault] = ACTIONS(1433), + [anon_sym_any] = ACTIONS(1433), + [anon_sym_DOLLARtypeof] = ACTIONS(1433), + [anon_sym_DOLLARtypefrom] = ACTIONS(1433), + [anon_sym_DOLLARevaltype] = ACTIONS(1433), + [anon_sym_DOLLARvatype] = ACTIONS(1433), + [sym_real_literal] = ACTIONS(1435), }, [587] = { [sym_line_comment] = STATE(587), [sym_doc_comment] = STATE(587), [sym_block_comment] = STATE(587), - [sym_ident] = ACTIONS(1467), - [sym_integer_literal] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_BQUOTE] = ACTIONS(1469), - [sym_bytes_literal] = ACTIONS(1469), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1467), - [sym_at_ident] = ACTIONS(1469), - [sym_hash_ident] = ACTIONS(1469), - [sym_type_ident] = ACTIONS(1469), - [sym_ct_type_ident] = ACTIONS(1469), - [sym_const_ident] = ACTIONS(1467), - [sym_builtin] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_static] = ACTIONS(1467), - [anon_sym_tlocal] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_fn] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_const] = ACTIONS(1467), - [anon_sym_var] = ACTIONS(1467), - [anon_sym_return] = ACTIONS(1467), - [anon_sym_continue] = ACTIONS(1467), - [anon_sym_break] = ACTIONS(1467), - [anon_sym_defer] = ACTIONS(1467), - [anon_sym_assert] = ACTIONS(1467), - [anon_sym_nextcase] = ACTIONS(1467), - [anon_sym_switch] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_for] = ACTIONS(1467), - [anon_sym_foreach] = ACTIONS(1467), - [anon_sym_foreach_r] = ACTIONS(1467), - [anon_sym_while] = ACTIONS(1467), - [anon_sym_do] = ACTIONS(1467), - [anon_sym_int] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_asm] = ACTIONS(1467), - [anon_sym_DOLLARassert] = ACTIONS(1467), - [anon_sym_DOLLARerror] = ACTIONS(1467), - [anon_sym_DOLLARecho] = ACTIONS(1467), - [anon_sym_DOLLARif] = ACTIONS(1467), - [anon_sym_DOLLARendif] = ACTIONS(1467), - [anon_sym_DOLLARswitch] = ACTIONS(1467), - [anon_sym_DOLLARfor] = ACTIONS(1467), - [anon_sym_DOLLARforeach] = ACTIONS(1467), - [anon_sym_DOLLARalignof] = ACTIONS(1467), - [anon_sym_DOLLARextnameof] = ACTIONS(1467), - [anon_sym_DOLLARnameof] = ACTIONS(1467), - [anon_sym_DOLLARoffsetof] = ACTIONS(1467), - [anon_sym_DOLLARqnameof] = ACTIONS(1467), - [anon_sym_DOLLAReval] = ACTIONS(1467), - [anon_sym_DOLLARdefined] = ACTIONS(1467), - [anon_sym_DOLLARsizeof] = ACTIONS(1467), - [anon_sym_DOLLARstringify] = ACTIONS(1467), - [anon_sym_DOLLARis_const] = ACTIONS(1467), - [anon_sym_DOLLARvaconst] = ACTIONS(1467), - [anon_sym_DOLLARvaarg] = ACTIONS(1467), - [anon_sym_DOLLARvaref] = ACTIONS(1467), - [anon_sym_DOLLARvaexpr] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1467), - [anon_sym_false] = ACTIONS(1467), - [anon_sym_null] = ACTIONS(1467), - [anon_sym_DOLLARvacount] = ACTIONS(1467), - [anon_sym_DOLLARfeature] = ACTIONS(1467), - [anon_sym_DOLLARand] = ACTIONS(1467), - [anon_sym_DOLLARor] = ACTIONS(1467), - [anon_sym_DOLLARassignable] = ACTIONS(1467), - [anon_sym_DOLLARembed] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_PLUS_PLUS] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1469), - [anon_sym_typeid] = ACTIONS(1467), - [anon_sym_LBRACE_PIPE] = ACTIONS(1469), - [anon_sym_void] = ACTIONS(1467), - [anon_sym_bool] = ACTIONS(1467), - [anon_sym_char] = ACTIONS(1467), - [anon_sym_ichar] = ACTIONS(1467), - [anon_sym_short] = ACTIONS(1467), - [anon_sym_ushort] = ACTIONS(1467), - [anon_sym_uint] = ACTIONS(1467), - [anon_sym_long] = ACTIONS(1467), - [anon_sym_ulong] = ACTIONS(1467), - [anon_sym_int128] = ACTIONS(1467), - [anon_sym_uint128] = ACTIONS(1467), - [anon_sym_float] = ACTIONS(1467), - [anon_sym_double] = ACTIONS(1467), - [anon_sym_float16] = ACTIONS(1467), - [anon_sym_bfloat16] = ACTIONS(1467), - [anon_sym_float128] = ACTIONS(1467), - [anon_sym_iptr] = ACTIONS(1467), - [anon_sym_uptr] = ACTIONS(1467), - [anon_sym_isz] = ACTIONS(1467), - [anon_sym_usz] = ACTIONS(1467), - [anon_sym_anyfault] = ACTIONS(1467), - [anon_sym_any] = ACTIONS(1467), - [anon_sym_DOLLARtypeof] = ACTIONS(1467), - [anon_sym_DOLLARtypefrom] = ACTIONS(1467), - [anon_sym_DOLLARvatype] = ACTIONS(1467), - [anon_sym_DOLLARevaltype] = ACTIONS(1467), - [sym_real_literal] = ACTIONS(1469), + [sym_ident] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [sym_bytes_literal] = ACTIONS(1531), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1529), + [sym_at_ident] = ACTIONS(1531), + [sym_hash_ident] = ACTIONS(1531), + [sym_type_ident] = ACTIONS(1531), + [sym_ct_type_ident] = ACTIONS(1531), + [sym_const_ident] = ACTIONS(1529), + [sym_builtin] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_tlocal] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_defer] = ACTIONS(1529), + [anon_sym_assert] = ACTIONS(1529), + [anon_sym_nextcase] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_foreach] = ACTIONS(1529), + [anon_sym_foreach_r] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_int] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_asm] = ACTIONS(1529), + [anon_sym_DOLLARassert] = ACTIONS(1529), + [anon_sym_DOLLARerror] = ACTIONS(1529), + [anon_sym_DOLLARecho] = ACTIONS(1529), + [anon_sym_DOLLARif] = ACTIONS(1529), + [anon_sym_DOLLARswitch] = ACTIONS(1529), + [anon_sym_DOLLARfor] = ACTIONS(1529), + [anon_sym_DOLLARendfor] = ACTIONS(1529), + [anon_sym_DOLLARforeach] = ACTIONS(1529), + [anon_sym_DOLLARalignof] = ACTIONS(1529), + [anon_sym_DOLLARextnameof] = ACTIONS(1529), + [anon_sym_DOLLARnameof] = ACTIONS(1529), + [anon_sym_DOLLARoffsetof] = ACTIONS(1529), + [anon_sym_DOLLARqnameof] = ACTIONS(1529), + [anon_sym_DOLLARvaconst] = ACTIONS(1529), + [anon_sym_DOLLARvaarg] = ACTIONS(1529), + [anon_sym_DOLLARvaref] = ACTIONS(1529), + [anon_sym_DOLLARvaexpr] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_null] = ACTIONS(1529), + [anon_sym_DOLLARvacount] = ACTIONS(1529), + [anon_sym_DOLLAReval] = ACTIONS(1529), + [anon_sym_DOLLARis_const] = ACTIONS(1529), + [anon_sym_DOLLARsizeof] = ACTIONS(1529), + [anon_sym_DOLLARstringify] = ACTIONS(1529), + [anon_sym_DOLLARappend] = ACTIONS(1529), + [anon_sym_DOLLARconcat] = ACTIONS(1529), + [anon_sym_DOLLARdefined] = ACTIONS(1529), + [anon_sym_DOLLARembed] = ACTIONS(1529), + [anon_sym_DOLLARand] = ACTIONS(1529), + [anon_sym_DOLLARor] = ACTIONS(1529), + [anon_sym_DOLLARfeature] = ACTIONS(1529), + [anon_sym_DOLLARassignable] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1531), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_typeid] = ACTIONS(1529), + [anon_sym_LBRACE_PIPE] = ACTIONS(1531), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_ichar] = ACTIONS(1529), + [anon_sym_short] = ACTIONS(1529), + [anon_sym_ushort] = ACTIONS(1529), + [anon_sym_uint] = ACTIONS(1529), + [anon_sym_long] = ACTIONS(1529), + [anon_sym_ulong] = ACTIONS(1529), + [anon_sym_int128] = ACTIONS(1529), + [anon_sym_uint128] = ACTIONS(1529), + [anon_sym_float] = ACTIONS(1529), + [anon_sym_double] = ACTIONS(1529), + [anon_sym_float16] = ACTIONS(1529), + [anon_sym_bfloat16] = ACTIONS(1529), + [anon_sym_float128] = ACTIONS(1529), + [anon_sym_iptr] = ACTIONS(1529), + [anon_sym_uptr] = ACTIONS(1529), + [anon_sym_isz] = ACTIONS(1529), + [anon_sym_usz] = ACTIONS(1529), + [anon_sym_anyfault] = ACTIONS(1529), + [anon_sym_any] = ACTIONS(1529), + [anon_sym_DOLLARtypeof] = ACTIONS(1529), + [anon_sym_DOLLARtypefrom] = ACTIONS(1529), + [anon_sym_DOLLARevaltype] = ACTIONS(1529), + [anon_sym_DOLLARvatype] = ACTIONS(1529), + [sym_real_literal] = ACTIONS(1531), + }, + [588] = { + [sym_line_comment] = STATE(588), + [sym_doc_comment] = STATE(588), + [sym_block_comment] = STATE(588), + [sym_ident] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_BQUOTE] = ACTIONS(1439), + [sym_bytes_literal] = ACTIONS(1439), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1437), + [sym_at_ident] = ACTIONS(1439), + [sym_hash_ident] = ACTIONS(1439), + [sym_type_ident] = ACTIONS(1439), + [sym_ct_type_ident] = ACTIONS(1439), + [sym_const_ident] = ACTIONS(1437), + [sym_builtin] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_tlocal] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_var] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_defer] = ACTIONS(1437), + [anon_sym_assert] = ACTIONS(1437), + [anon_sym_nextcase] = ACTIONS(1437), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_foreach] = ACTIONS(1437), + [anon_sym_foreach_r] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_int] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_asm] = ACTIONS(1437), + [anon_sym_DOLLARassert] = ACTIONS(1437), + [anon_sym_DOLLARerror] = ACTIONS(1437), + [anon_sym_DOLLARecho] = ACTIONS(1437), + [anon_sym_DOLLARif] = ACTIONS(1437), + [anon_sym_DOLLARswitch] = ACTIONS(1437), + [anon_sym_DOLLARfor] = ACTIONS(1437), + [anon_sym_DOLLARendfor] = ACTIONS(1437), + [anon_sym_DOLLARforeach] = ACTIONS(1437), + [anon_sym_DOLLARalignof] = ACTIONS(1437), + [anon_sym_DOLLARextnameof] = ACTIONS(1437), + [anon_sym_DOLLARnameof] = ACTIONS(1437), + [anon_sym_DOLLARoffsetof] = ACTIONS(1437), + [anon_sym_DOLLARqnameof] = ACTIONS(1437), + [anon_sym_DOLLARvaconst] = ACTIONS(1437), + [anon_sym_DOLLARvaarg] = ACTIONS(1437), + [anon_sym_DOLLARvaref] = ACTIONS(1437), + [anon_sym_DOLLARvaexpr] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_DOLLARvacount] = ACTIONS(1437), + [anon_sym_DOLLAReval] = ACTIONS(1437), + [anon_sym_DOLLARis_const] = ACTIONS(1437), + [anon_sym_DOLLARsizeof] = ACTIONS(1437), + [anon_sym_DOLLARstringify] = ACTIONS(1437), + [anon_sym_DOLLARappend] = ACTIONS(1437), + [anon_sym_DOLLARconcat] = ACTIONS(1437), + [anon_sym_DOLLARdefined] = ACTIONS(1437), + [anon_sym_DOLLARembed] = ACTIONS(1437), + [anon_sym_DOLLARand] = ACTIONS(1437), + [anon_sym_DOLLARor] = ACTIONS(1437), + [anon_sym_DOLLARfeature] = ACTIONS(1437), + [anon_sym_DOLLARassignable] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_typeid] = ACTIONS(1437), + [anon_sym_LBRACE_PIPE] = ACTIONS(1439), + [anon_sym_void] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_ichar] = ACTIONS(1437), + [anon_sym_short] = ACTIONS(1437), + [anon_sym_ushort] = ACTIONS(1437), + [anon_sym_uint] = ACTIONS(1437), + [anon_sym_long] = ACTIONS(1437), + [anon_sym_ulong] = ACTIONS(1437), + [anon_sym_int128] = ACTIONS(1437), + [anon_sym_uint128] = ACTIONS(1437), + [anon_sym_float] = ACTIONS(1437), + [anon_sym_double] = ACTIONS(1437), + [anon_sym_float16] = ACTIONS(1437), + [anon_sym_bfloat16] = ACTIONS(1437), + [anon_sym_float128] = ACTIONS(1437), + [anon_sym_iptr] = ACTIONS(1437), + [anon_sym_uptr] = ACTIONS(1437), + [anon_sym_isz] = ACTIONS(1437), + [anon_sym_usz] = ACTIONS(1437), + [anon_sym_anyfault] = ACTIONS(1437), + [anon_sym_any] = ACTIONS(1437), + [anon_sym_DOLLARtypeof] = ACTIONS(1437), + [anon_sym_DOLLARtypefrom] = ACTIONS(1437), + [anon_sym_DOLLARevaltype] = ACTIONS(1437), + [anon_sym_DOLLARvatype] = ACTIONS(1437), + [sym_real_literal] = ACTIONS(1439), + }, + [589] = { + [sym_line_comment] = STATE(589), + [sym_doc_comment] = STATE(589), + [sym_block_comment] = STATE(589), + [sym_ident] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_BQUOTE] = ACTIONS(1455), + [sym_bytes_literal] = ACTIONS(1455), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1453), + [sym_at_ident] = ACTIONS(1455), + [sym_hash_ident] = ACTIONS(1455), + [sym_type_ident] = ACTIONS(1455), + [sym_ct_type_ident] = ACTIONS(1455), + [sym_const_ident] = ACTIONS(1453), + [sym_builtin] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_tlocal] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_defer] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_nextcase] = ACTIONS(1453), + [anon_sym_switch] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_foreach] = ACTIONS(1453), + [anon_sym_foreach_r] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_asm] = ACTIONS(1453), + [anon_sym_DOLLARassert] = ACTIONS(1453), + [anon_sym_DOLLARerror] = ACTIONS(1453), + [anon_sym_DOLLARecho] = ACTIONS(1453), + [anon_sym_DOLLARif] = ACTIONS(1453), + [anon_sym_DOLLARswitch] = ACTIONS(1453), + [anon_sym_DOLLARfor] = ACTIONS(1453), + [anon_sym_DOLLARendfor] = ACTIONS(1453), + [anon_sym_DOLLARforeach] = ACTIONS(1453), + [anon_sym_DOLLARalignof] = ACTIONS(1453), + [anon_sym_DOLLARextnameof] = ACTIONS(1453), + [anon_sym_DOLLARnameof] = ACTIONS(1453), + [anon_sym_DOLLARoffsetof] = ACTIONS(1453), + [anon_sym_DOLLARqnameof] = ACTIONS(1453), + [anon_sym_DOLLARvaconst] = ACTIONS(1453), + [anon_sym_DOLLARvaarg] = ACTIONS(1453), + [anon_sym_DOLLARvaref] = ACTIONS(1453), + [anon_sym_DOLLARvaexpr] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_DOLLARvacount] = ACTIONS(1453), + [anon_sym_DOLLAReval] = ACTIONS(1453), + [anon_sym_DOLLARis_const] = ACTIONS(1453), + [anon_sym_DOLLARsizeof] = ACTIONS(1453), + [anon_sym_DOLLARstringify] = ACTIONS(1453), + [anon_sym_DOLLARappend] = ACTIONS(1453), + [anon_sym_DOLLARconcat] = ACTIONS(1453), + [anon_sym_DOLLARdefined] = ACTIONS(1453), + [anon_sym_DOLLARembed] = ACTIONS(1453), + [anon_sym_DOLLARand] = ACTIONS(1453), + [anon_sym_DOLLARor] = ACTIONS(1453), + [anon_sym_DOLLARfeature] = ACTIONS(1453), + [anon_sym_DOLLARassignable] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_typeid] = ACTIONS(1453), + [anon_sym_LBRACE_PIPE] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1453), + [anon_sym_bool] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_ichar] = ACTIONS(1453), + [anon_sym_short] = ACTIONS(1453), + [anon_sym_ushort] = ACTIONS(1453), + [anon_sym_uint] = ACTIONS(1453), + [anon_sym_long] = ACTIONS(1453), + [anon_sym_ulong] = ACTIONS(1453), + [anon_sym_int128] = ACTIONS(1453), + [anon_sym_uint128] = ACTIONS(1453), + [anon_sym_float] = ACTIONS(1453), + [anon_sym_double] = ACTIONS(1453), + [anon_sym_float16] = ACTIONS(1453), + [anon_sym_bfloat16] = ACTIONS(1453), + [anon_sym_float128] = ACTIONS(1453), + [anon_sym_iptr] = ACTIONS(1453), + [anon_sym_uptr] = ACTIONS(1453), + [anon_sym_isz] = ACTIONS(1453), + [anon_sym_usz] = ACTIONS(1453), + [anon_sym_anyfault] = ACTIONS(1453), + [anon_sym_any] = ACTIONS(1453), + [anon_sym_DOLLARtypeof] = ACTIONS(1453), + [anon_sym_DOLLARtypefrom] = ACTIONS(1453), + [anon_sym_DOLLARevaltype] = ACTIONS(1453), + [anon_sym_DOLLARvatype] = ACTIONS(1453), + [sym_real_literal] = ACTIONS(1455), + }, + [590] = { + [sym_line_comment] = STATE(590), + [sym_doc_comment] = STATE(590), + [sym_block_comment] = STATE(590), + [sym_ident] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_BQUOTE] = ACTIONS(1467), + [sym_bytes_literal] = ACTIONS(1467), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1465), + [sym_at_ident] = ACTIONS(1467), + [sym_hash_ident] = ACTIONS(1467), + [sym_type_ident] = ACTIONS(1467), + [sym_ct_type_ident] = ACTIONS(1467), + [sym_const_ident] = ACTIONS(1465), + [sym_builtin] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_tlocal] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_defer] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1465), + [anon_sym_nextcase] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_foreach] = ACTIONS(1465), + [anon_sym_foreach_r] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_int] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_asm] = ACTIONS(1465), + [anon_sym_DOLLARassert] = ACTIONS(1465), + [anon_sym_DOLLARerror] = ACTIONS(1465), + [anon_sym_DOLLARecho] = ACTIONS(1465), + [anon_sym_DOLLARif] = ACTIONS(1465), + [anon_sym_DOLLARswitch] = ACTIONS(1465), + [anon_sym_DOLLARfor] = ACTIONS(1465), + [anon_sym_DOLLARendfor] = ACTIONS(1465), + [anon_sym_DOLLARforeach] = ACTIONS(1465), + [anon_sym_DOLLARalignof] = ACTIONS(1465), + [anon_sym_DOLLARextnameof] = ACTIONS(1465), + [anon_sym_DOLLARnameof] = ACTIONS(1465), + [anon_sym_DOLLARoffsetof] = ACTIONS(1465), + [anon_sym_DOLLARqnameof] = ACTIONS(1465), + [anon_sym_DOLLARvaconst] = ACTIONS(1465), + [anon_sym_DOLLARvaarg] = ACTIONS(1465), + [anon_sym_DOLLARvaref] = ACTIONS(1465), + [anon_sym_DOLLARvaexpr] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1465), + [anon_sym_DOLLARvacount] = ACTIONS(1465), + [anon_sym_DOLLAReval] = ACTIONS(1465), + [anon_sym_DOLLARis_const] = ACTIONS(1465), + [anon_sym_DOLLARsizeof] = ACTIONS(1465), + [anon_sym_DOLLARstringify] = ACTIONS(1465), + [anon_sym_DOLLARappend] = ACTIONS(1465), + [anon_sym_DOLLARconcat] = ACTIONS(1465), + [anon_sym_DOLLARdefined] = ACTIONS(1465), + [anon_sym_DOLLARembed] = ACTIONS(1465), + [anon_sym_DOLLARand] = ACTIONS(1465), + [anon_sym_DOLLARor] = ACTIONS(1465), + [anon_sym_DOLLARfeature] = ACTIONS(1465), + [anon_sym_DOLLARassignable] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_typeid] = ACTIONS(1465), + [anon_sym_LBRACE_PIPE] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_ichar] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [anon_sym_ushort] = ACTIONS(1465), + [anon_sym_uint] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_ulong] = ACTIONS(1465), + [anon_sym_int128] = ACTIONS(1465), + [anon_sym_uint128] = ACTIONS(1465), + [anon_sym_float] = ACTIONS(1465), + [anon_sym_double] = ACTIONS(1465), + [anon_sym_float16] = ACTIONS(1465), + [anon_sym_bfloat16] = ACTIONS(1465), + [anon_sym_float128] = ACTIONS(1465), + [anon_sym_iptr] = ACTIONS(1465), + [anon_sym_uptr] = ACTIONS(1465), + [anon_sym_isz] = ACTIONS(1465), + [anon_sym_usz] = ACTIONS(1465), + [anon_sym_anyfault] = ACTIONS(1465), + [anon_sym_any] = ACTIONS(1465), + [anon_sym_DOLLARtypeof] = ACTIONS(1465), + [anon_sym_DOLLARtypefrom] = ACTIONS(1465), + [anon_sym_DOLLARevaltype] = ACTIONS(1465), + [anon_sym_DOLLARvatype] = ACTIONS(1465), + [sym_real_literal] = ACTIONS(1467), + }, + [591] = { + [sym_line_comment] = STATE(591), + [sym_doc_comment] = STATE(591), + [sym_block_comment] = STATE(591), + [sym_ident] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1471), + [sym_bytes_literal] = ACTIONS(1471), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1469), + [sym_at_ident] = ACTIONS(1471), + [sym_hash_ident] = ACTIONS(1471), + [sym_type_ident] = ACTIONS(1471), + [sym_ct_type_ident] = ACTIONS(1471), + [sym_const_ident] = ACTIONS(1469), + [sym_builtin] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_tlocal] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_defer] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1469), + [anon_sym_nextcase] = ACTIONS(1469), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_foreach] = ACTIONS(1469), + [anon_sym_foreach_r] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_int] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1469), + [anon_sym_DOLLARassert] = ACTIONS(1469), + [anon_sym_DOLLARerror] = ACTIONS(1469), + [anon_sym_DOLLARecho] = ACTIONS(1469), + [anon_sym_DOLLARif] = ACTIONS(1469), + [anon_sym_DOLLARswitch] = ACTIONS(1469), + [anon_sym_DOLLARfor] = ACTIONS(1469), + [anon_sym_DOLLARendfor] = ACTIONS(1469), + [anon_sym_DOLLARforeach] = ACTIONS(1469), + [anon_sym_DOLLARalignof] = ACTIONS(1469), + [anon_sym_DOLLARextnameof] = ACTIONS(1469), + [anon_sym_DOLLARnameof] = ACTIONS(1469), + [anon_sym_DOLLARoffsetof] = ACTIONS(1469), + [anon_sym_DOLLARqnameof] = ACTIONS(1469), + [anon_sym_DOLLARvaconst] = ACTIONS(1469), + [anon_sym_DOLLARvaarg] = ACTIONS(1469), + [anon_sym_DOLLARvaref] = ACTIONS(1469), + [anon_sym_DOLLARvaexpr] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_DOLLARvacount] = ACTIONS(1469), + [anon_sym_DOLLAReval] = ACTIONS(1469), + [anon_sym_DOLLARis_const] = ACTIONS(1469), + [anon_sym_DOLLARsizeof] = ACTIONS(1469), + [anon_sym_DOLLARstringify] = ACTIONS(1469), + [anon_sym_DOLLARappend] = ACTIONS(1469), + [anon_sym_DOLLARconcat] = ACTIONS(1469), + [anon_sym_DOLLARdefined] = ACTIONS(1469), + [anon_sym_DOLLARembed] = ACTIONS(1469), + [anon_sym_DOLLARand] = ACTIONS(1469), + [anon_sym_DOLLARor] = ACTIONS(1469), + [anon_sym_DOLLARfeature] = ACTIONS(1469), + [anon_sym_DOLLARassignable] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_typeid] = ACTIONS(1469), + [anon_sym_LBRACE_PIPE] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_ichar] = ACTIONS(1469), + [anon_sym_short] = ACTIONS(1469), + [anon_sym_ushort] = ACTIONS(1469), + [anon_sym_uint] = ACTIONS(1469), + [anon_sym_long] = ACTIONS(1469), + [anon_sym_ulong] = ACTIONS(1469), + [anon_sym_int128] = ACTIONS(1469), + [anon_sym_uint128] = ACTIONS(1469), + [anon_sym_float] = ACTIONS(1469), + [anon_sym_double] = ACTIONS(1469), + [anon_sym_float16] = ACTIONS(1469), + [anon_sym_bfloat16] = ACTIONS(1469), + [anon_sym_float128] = ACTIONS(1469), + [anon_sym_iptr] = ACTIONS(1469), + [anon_sym_uptr] = ACTIONS(1469), + [anon_sym_isz] = ACTIONS(1469), + [anon_sym_usz] = ACTIONS(1469), + [anon_sym_anyfault] = ACTIONS(1469), + [anon_sym_any] = ACTIONS(1469), + [anon_sym_DOLLARtypeof] = ACTIONS(1469), + [anon_sym_DOLLARtypefrom] = ACTIONS(1469), + [anon_sym_DOLLARevaltype] = ACTIONS(1469), + [anon_sym_DOLLARvatype] = ACTIONS(1469), + [sym_real_literal] = ACTIONS(1471), + }, + [592] = { + [sym_line_comment] = STATE(592), + [sym_doc_comment] = STATE(592), + [sym_block_comment] = STATE(592), + [sym_ident] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1511), + [anon_sym_BQUOTE] = ACTIONS(1511), + [sym_bytes_literal] = ACTIONS(1511), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1509), + [sym_at_ident] = ACTIONS(1511), + [sym_hash_ident] = ACTIONS(1511), + [sym_type_ident] = ACTIONS(1511), + [sym_ct_type_ident] = ACTIONS(1511), + [sym_const_ident] = ACTIONS(1509), + [sym_builtin] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_tlocal] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_fn] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_defer] = ACTIONS(1509), + [anon_sym_assert] = ACTIONS(1509), + [anon_sym_nextcase] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_foreach] = ACTIONS(1509), + [anon_sym_foreach_r] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_int] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_asm] = ACTIONS(1509), + [anon_sym_DOLLARassert] = ACTIONS(1509), + [anon_sym_DOLLARerror] = ACTIONS(1509), + [anon_sym_DOLLARecho] = ACTIONS(1509), + [anon_sym_DOLLARif] = ACTIONS(1509), + [anon_sym_DOLLARswitch] = ACTIONS(1509), + [anon_sym_DOLLARfor] = ACTIONS(1509), + [anon_sym_DOLLARendfor] = ACTIONS(1509), + [anon_sym_DOLLARforeach] = ACTIONS(1509), + [anon_sym_DOLLARalignof] = ACTIONS(1509), + [anon_sym_DOLLARextnameof] = ACTIONS(1509), + [anon_sym_DOLLARnameof] = ACTIONS(1509), + [anon_sym_DOLLARoffsetof] = ACTIONS(1509), + [anon_sym_DOLLARqnameof] = ACTIONS(1509), + [anon_sym_DOLLARvaconst] = ACTIONS(1509), + [anon_sym_DOLLARvaarg] = ACTIONS(1509), + [anon_sym_DOLLARvaref] = ACTIONS(1509), + [anon_sym_DOLLARvaexpr] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_DOLLARvacount] = ACTIONS(1509), + [anon_sym_DOLLAReval] = ACTIONS(1509), + [anon_sym_DOLLARis_const] = ACTIONS(1509), + [anon_sym_DOLLARsizeof] = ACTIONS(1509), + [anon_sym_DOLLARstringify] = ACTIONS(1509), + [anon_sym_DOLLARappend] = ACTIONS(1509), + [anon_sym_DOLLARconcat] = ACTIONS(1509), + [anon_sym_DOLLARdefined] = ACTIONS(1509), + [anon_sym_DOLLARembed] = ACTIONS(1509), + [anon_sym_DOLLARand] = ACTIONS(1509), + [anon_sym_DOLLARor] = ACTIONS(1509), + [anon_sym_DOLLARfeature] = ACTIONS(1509), + [anon_sym_DOLLARassignable] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_typeid] = ACTIONS(1509), + [anon_sym_LBRACE_PIPE] = ACTIONS(1511), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_ichar] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [anon_sym_ushort] = ACTIONS(1509), + [anon_sym_uint] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_ulong] = ACTIONS(1509), + [anon_sym_int128] = ACTIONS(1509), + [anon_sym_uint128] = ACTIONS(1509), + [anon_sym_float] = ACTIONS(1509), + [anon_sym_double] = ACTIONS(1509), + [anon_sym_float16] = ACTIONS(1509), + [anon_sym_bfloat16] = ACTIONS(1509), + [anon_sym_float128] = ACTIONS(1509), + [anon_sym_iptr] = ACTIONS(1509), + [anon_sym_uptr] = ACTIONS(1509), + [anon_sym_isz] = ACTIONS(1509), + [anon_sym_usz] = ACTIONS(1509), + [anon_sym_anyfault] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_DOLLARtypeof] = ACTIONS(1509), + [anon_sym_DOLLARtypefrom] = ACTIONS(1509), + [anon_sym_DOLLARevaltype] = ACTIONS(1509), + [anon_sym_DOLLARvatype] = ACTIONS(1509), + [sym_real_literal] = ACTIONS(1511), + }, + [593] = { + [sym_line_comment] = STATE(593), + [sym_doc_comment] = STATE(593), + [sym_block_comment] = STATE(593), + [sym_ident] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_bytes_literal] = ACTIONS(1515), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1513), + [sym_at_ident] = ACTIONS(1515), + [sym_hash_ident] = ACTIONS(1515), + [sym_type_ident] = ACTIONS(1515), + [sym_ct_type_ident] = ACTIONS(1515), + [sym_const_ident] = ACTIONS(1513), + [sym_builtin] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_tlocal] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_var] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_defer] = ACTIONS(1513), + [anon_sym_assert] = ACTIONS(1513), + [anon_sym_nextcase] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_foreach] = ACTIONS(1513), + [anon_sym_foreach_r] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_int] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_asm] = ACTIONS(1513), + [anon_sym_DOLLARassert] = ACTIONS(1513), + [anon_sym_DOLLARerror] = ACTIONS(1513), + [anon_sym_DOLLARecho] = ACTIONS(1513), + [anon_sym_DOLLARif] = ACTIONS(1513), + [anon_sym_DOLLARswitch] = ACTIONS(1513), + [anon_sym_DOLLARfor] = ACTIONS(1513), + [anon_sym_DOLLARendfor] = ACTIONS(1513), + [anon_sym_DOLLARforeach] = ACTIONS(1513), + [anon_sym_DOLLARalignof] = ACTIONS(1513), + [anon_sym_DOLLARextnameof] = ACTIONS(1513), + [anon_sym_DOLLARnameof] = ACTIONS(1513), + [anon_sym_DOLLARoffsetof] = ACTIONS(1513), + [anon_sym_DOLLARqnameof] = ACTIONS(1513), + [anon_sym_DOLLARvaconst] = ACTIONS(1513), + [anon_sym_DOLLARvaarg] = ACTIONS(1513), + [anon_sym_DOLLARvaref] = ACTIONS(1513), + [anon_sym_DOLLARvaexpr] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_DOLLARvacount] = ACTIONS(1513), + [anon_sym_DOLLAReval] = ACTIONS(1513), + [anon_sym_DOLLARis_const] = ACTIONS(1513), + [anon_sym_DOLLARsizeof] = ACTIONS(1513), + [anon_sym_DOLLARstringify] = ACTIONS(1513), + [anon_sym_DOLLARappend] = ACTIONS(1513), + [anon_sym_DOLLARconcat] = ACTIONS(1513), + [anon_sym_DOLLARdefined] = ACTIONS(1513), + [anon_sym_DOLLARembed] = ACTIONS(1513), + [anon_sym_DOLLARand] = ACTIONS(1513), + [anon_sym_DOLLARor] = ACTIONS(1513), + [anon_sym_DOLLARfeature] = ACTIONS(1513), + [anon_sym_DOLLARassignable] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_typeid] = ACTIONS(1513), + [anon_sym_LBRACE_PIPE] = ACTIONS(1515), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_ichar] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_ushort] = ACTIONS(1513), + [anon_sym_uint] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_ulong] = ACTIONS(1513), + [anon_sym_int128] = ACTIONS(1513), + [anon_sym_uint128] = ACTIONS(1513), + [anon_sym_float] = ACTIONS(1513), + [anon_sym_double] = ACTIONS(1513), + [anon_sym_float16] = ACTIONS(1513), + [anon_sym_bfloat16] = ACTIONS(1513), + [anon_sym_float128] = ACTIONS(1513), + [anon_sym_iptr] = ACTIONS(1513), + [anon_sym_uptr] = ACTIONS(1513), + [anon_sym_isz] = ACTIONS(1513), + [anon_sym_usz] = ACTIONS(1513), + [anon_sym_anyfault] = ACTIONS(1513), + [anon_sym_any] = ACTIONS(1513), + [anon_sym_DOLLARtypeof] = ACTIONS(1513), + [anon_sym_DOLLARtypefrom] = ACTIONS(1513), + [anon_sym_DOLLARevaltype] = ACTIONS(1513), + [anon_sym_DOLLARvatype] = ACTIONS(1513), + [sym_real_literal] = ACTIONS(1515), + }, + [594] = { + [sym_line_comment] = STATE(594), + [sym_doc_comment] = STATE(594), + [sym_block_comment] = STATE(594), + [sym_ident] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [anon_sym_BQUOTE] = ACTIONS(1587), + [sym_bytes_literal] = ACTIONS(1587), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1585), + [sym_at_ident] = ACTIONS(1587), + [sym_hash_ident] = ACTIONS(1587), + [sym_type_ident] = ACTIONS(1587), + [sym_ct_type_ident] = ACTIONS(1587), + [sym_const_ident] = ACTIONS(1585), + [sym_builtin] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_tlocal] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_fn] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_var] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_defer] = ACTIONS(1585), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_nextcase] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_foreach] = ACTIONS(1585), + [anon_sym_foreach_r] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_int] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_asm] = ACTIONS(1585), + [anon_sym_DOLLARassert] = ACTIONS(1585), + [anon_sym_DOLLARerror] = ACTIONS(1585), + [anon_sym_DOLLARecho] = ACTIONS(1585), + [anon_sym_DOLLARif] = ACTIONS(1585), + [anon_sym_DOLLARswitch] = ACTIONS(1585), + [anon_sym_DOLLARfor] = ACTIONS(1585), + [anon_sym_DOLLARendfor] = ACTIONS(1585), + [anon_sym_DOLLARforeach] = ACTIONS(1585), + [anon_sym_DOLLARalignof] = ACTIONS(1585), + [anon_sym_DOLLARextnameof] = ACTIONS(1585), + [anon_sym_DOLLARnameof] = ACTIONS(1585), + [anon_sym_DOLLARoffsetof] = ACTIONS(1585), + [anon_sym_DOLLARqnameof] = ACTIONS(1585), + [anon_sym_DOLLARvaconst] = ACTIONS(1585), + [anon_sym_DOLLARvaarg] = ACTIONS(1585), + [anon_sym_DOLLARvaref] = ACTIONS(1585), + [anon_sym_DOLLARvaexpr] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_DOLLARvacount] = ACTIONS(1585), + [anon_sym_DOLLAReval] = ACTIONS(1585), + [anon_sym_DOLLARis_const] = ACTIONS(1585), + [anon_sym_DOLLARsizeof] = ACTIONS(1585), + [anon_sym_DOLLARstringify] = ACTIONS(1585), + [anon_sym_DOLLARappend] = ACTIONS(1585), + [anon_sym_DOLLARconcat] = ACTIONS(1585), + [anon_sym_DOLLARdefined] = ACTIONS(1585), + [anon_sym_DOLLARembed] = ACTIONS(1585), + [anon_sym_DOLLARand] = ACTIONS(1585), + [anon_sym_DOLLARor] = ACTIONS(1585), + [anon_sym_DOLLARfeature] = ACTIONS(1585), + [anon_sym_DOLLARassignable] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_typeid] = ACTIONS(1585), + [anon_sym_LBRACE_PIPE] = ACTIONS(1587), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_ichar] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [anon_sym_ushort] = ACTIONS(1585), + [anon_sym_uint] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_ulong] = ACTIONS(1585), + [anon_sym_int128] = ACTIONS(1585), + [anon_sym_uint128] = ACTIONS(1585), + [anon_sym_float] = ACTIONS(1585), + [anon_sym_double] = ACTIONS(1585), + [anon_sym_float16] = ACTIONS(1585), + [anon_sym_bfloat16] = ACTIONS(1585), + [anon_sym_float128] = ACTIONS(1585), + [anon_sym_iptr] = ACTIONS(1585), + [anon_sym_uptr] = ACTIONS(1585), + [anon_sym_isz] = ACTIONS(1585), + [anon_sym_usz] = ACTIONS(1585), + [anon_sym_anyfault] = ACTIONS(1585), + [anon_sym_any] = ACTIONS(1585), + [anon_sym_DOLLARtypeof] = ACTIONS(1585), + [anon_sym_DOLLARtypefrom] = ACTIONS(1585), + [anon_sym_DOLLARevaltype] = ACTIONS(1585), + [anon_sym_DOLLARvatype] = ACTIONS(1585), + [sym_real_literal] = ACTIONS(1587), + }, + [595] = { + [sym_line_comment] = STATE(595), + [sym_doc_comment] = STATE(595), + [sym_block_comment] = STATE(595), + [sym_ident] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [anon_sym_BQUOTE] = ACTIONS(1591), + [sym_bytes_literal] = ACTIONS(1591), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1589), + [sym_at_ident] = ACTIONS(1591), + [sym_hash_ident] = ACTIONS(1591), + [sym_type_ident] = ACTIONS(1591), + [sym_ct_type_ident] = ACTIONS(1591), + [sym_const_ident] = ACTIONS(1589), + [sym_builtin] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_tlocal] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_fn] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_var] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_defer] = ACTIONS(1589), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_nextcase] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_foreach] = ACTIONS(1589), + [anon_sym_foreach_r] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_int] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_asm] = ACTIONS(1589), + [anon_sym_DOLLARassert] = ACTIONS(1589), + [anon_sym_DOLLARerror] = ACTIONS(1589), + [anon_sym_DOLLARecho] = ACTIONS(1589), + [anon_sym_DOLLARif] = ACTIONS(1589), + [anon_sym_DOLLARswitch] = ACTIONS(1589), + [anon_sym_DOLLARfor] = ACTIONS(1589), + [anon_sym_DOLLARendfor] = ACTIONS(1589), + [anon_sym_DOLLARforeach] = ACTIONS(1589), + [anon_sym_DOLLARalignof] = ACTIONS(1589), + [anon_sym_DOLLARextnameof] = ACTIONS(1589), + [anon_sym_DOLLARnameof] = ACTIONS(1589), + [anon_sym_DOLLARoffsetof] = ACTIONS(1589), + [anon_sym_DOLLARqnameof] = ACTIONS(1589), + [anon_sym_DOLLARvaconst] = ACTIONS(1589), + [anon_sym_DOLLARvaarg] = ACTIONS(1589), + [anon_sym_DOLLARvaref] = ACTIONS(1589), + [anon_sym_DOLLARvaexpr] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [anon_sym_DOLLARvacount] = ACTIONS(1589), + [anon_sym_DOLLAReval] = ACTIONS(1589), + [anon_sym_DOLLARis_const] = ACTIONS(1589), + [anon_sym_DOLLARsizeof] = ACTIONS(1589), + [anon_sym_DOLLARstringify] = ACTIONS(1589), + [anon_sym_DOLLARappend] = ACTIONS(1589), + [anon_sym_DOLLARconcat] = ACTIONS(1589), + [anon_sym_DOLLARdefined] = ACTIONS(1589), + [anon_sym_DOLLARembed] = ACTIONS(1589), + [anon_sym_DOLLARand] = ACTIONS(1589), + [anon_sym_DOLLARor] = ACTIONS(1589), + [anon_sym_DOLLARfeature] = ACTIONS(1589), + [anon_sym_DOLLARassignable] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_typeid] = ACTIONS(1589), + [anon_sym_LBRACE_PIPE] = ACTIONS(1591), + [anon_sym_void] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_ichar] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [anon_sym_ushort] = ACTIONS(1589), + [anon_sym_uint] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_ulong] = ACTIONS(1589), + [anon_sym_int128] = ACTIONS(1589), + [anon_sym_uint128] = ACTIONS(1589), + [anon_sym_float] = ACTIONS(1589), + [anon_sym_double] = ACTIONS(1589), + [anon_sym_float16] = ACTIONS(1589), + [anon_sym_bfloat16] = ACTIONS(1589), + [anon_sym_float128] = ACTIONS(1589), + [anon_sym_iptr] = ACTIONS(1589), + [anon_sym_uptr] = ACTIONS(1589), + [anon_sym_isz] = ACTIONS(1589), + [anon_sym_usz] = ACTIONS(1589), + [anon_sym_anyfault] = ACTIONS(1589), + [anon_sym_any] = ACTIONS(1589), + [anon_sym_DOLLARtypeof] = ACTIONS(1589), + [anon_sym_DOLLARtypefrom] = ACTIONS(1589), + [anon_sym_DOLLARevaltype] = ACTIONS(1589), + [anon_sym_DOLLARvatype] = ACTIONS(1589), + [sym_real_literal] = ACTIONS(1591), + }, + [596] = { + [sym_line_comment] = STATE(596), + [sym_doc_comment] = STATE(596), + [sym_block_comment] = STATE(596), + [sym_ident] = ACTIONS(1533), + [sym_integer_literal] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1535), + [anon_sym_BQUOTE] = ACTIONS(1535), + [sym_bytes_literal] = ACTIONS(1535), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1533), + [sym_at_ident] = ACTIONS(1535), + [sym_hash_ident] = ACTIONS(1535), + [sym_type_ident] = ACTIONS(1535), + [sym_ct_type_ident] = ACTIONS(1535), + [sym_const_ident] = ACTIONS(1533), + [sym_builtin] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_tlocal] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_var] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_defer] = ACTIONS(1533), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_nextcase] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_foreach] = ACTIONS(1533), + [anon_sym_foreach_r] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_int] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_asm] = ACTIONS(1533), + [anon_sym_DOLLARassert] = ACTIONS(1533), + [anon_sym_DOLLARerror] = ACTIONS(1533), + [anon_sym_DOLLARecho] = ACTIONS(1533), + [anon_sym_DOLLARif] = ACTIONS(1533), + [anon_sym_DOLLARswitch] = ACTIONS(1533), + [anon_sym_DOLLARfor] = ACTIONS(1533), + [anon_sym_DOLLARendfor] = ACTIONS(1533), + [anon_sym_DOLLARforeach] = ACTIONS(1533), + [anon_sym_DOLLARalignof] = ACTIONS(1533), + [anon_sym_DOLLARextnameof] = ACTIONS(1533), + [anon_sym_DOLLARnameof] = ACTIONS(1533), + [anon_sym_DOLLARoffsetof] = ACTIONS(1533), + [anon_sym_DOLLARqnameof] = ACTIONS(1533), + [anon_sym_DOLLARvaconst] = ACTIONS(1533), + [anon_sym_DOLLARvaarg] = ACTIONS(1533), + [anon_sym_DOLLARvaref] = ACTIONS(1533), + [anon_sym_DOLLARvaexpr] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_null] = ACTIONS(1533), + [anon_sym_DOLLARvacount] = ACTIONS(1533), + [anon_sym_DOLLAReval] = ACTIONS(1533), + [anon_sym_DOLLARis_const] = ACTIONS(1533), + [anon_sym_DOLLARsizeof] = ACTIONS(1533), + [anon_sym_DOLLARstringify] = ACTIONS(1533), + [anon_sym_DOLLARappend] = ACTIONS(1533), + [anon_sym_DOLLARconcat] = ACTIONS(1533), + [anon_sym_DOLLARdefined] = ACTIONS(1533), + [anon_sym_DOLLARembed] = ACTIONS(1533), + [anon_sym_DOLLARand] = ACTIONS(1533), + [anon_sym_DOLLARor] = ACTIONS(1533), + [anon_sym_DOLLARfeature] = ACTIONS(1533), + [anon_sym_DOLLARassignable] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_typeid] = ACTIONS(1533), + [anon_sym_LBRACE_PIPE] = ACTIONS(1535), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_bool] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_ichar] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_ushort] = ACTIONS(1533), + [anon_sym_uint] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_ulong] = ACTIONS(1533), + [anon_sym_int128] = ACTIONS(1533), + [anon_sym_uint128] = ACTIONS(1533), + [anon_sym_float] = ACTIONS(1533), + [anon_sym_double] = ACTIONS(1533), + [anon_sym_float16] = ACTIONS(1533), + [anon_sym_bfloat16] = ACTIONS(1533), + [anon_sym_float128] = ACTIONS(1533), + [anon_sym_iptr] = ACTIONS(1533), + [anon_sym_uptr] = ACTIONS(1533), + [anon_sym_isz] = ACTIONS(1533), + [anon_sym_usz] = ACTIONS(1533), + [anon_sym_anyfault] = ACTIONS(1533), + [anon_sym_any] = ACTIONS(1533), + [anon_sym_DOLLARtypeof] = ACTIONS(1533), + [anon_sym_DOLLARtypefrom] = ACTIONS(1533), + [anon_sym_DOLLARevaltype] = ACTIONS(1533), + [anon_sym_DOLLARvatype] = ACTIONS(1533), + [sym_real_literal] = ACTIONS(1535), + }, + [597] = { + [sym_line_comment] = STATE(597), + [sym_doc_comment] = STATE(597), + [sym_block_comment] = STATE(597), + [sym_ident] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1539), + [anon_sym_BQUOTE] = ACTIONS(1539), + [sym_bytes_literal] = ACTIONS(1539), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1537), + [sym_at_ident] = ACTIONS(1539), + [sym_hash_ident] = ACTIONS(1539), + [sym_type_ident] = ACTIONS(1539), + [sym_ct_type_ident] = ACTIONS(1539), + [sym_const_ident] = ACTIONS(1537), + [sym_builtin] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_tlocal] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_defer] = ACTIONS(1537), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_nextcase] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_foreach] = ACTIONS(1537), + [anon_sym_foreach_r] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_int] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym_DOLLARassert] = ACTIONS(1537), + [anon_sym_DOLLARerror] = ACTIONS(1537), + [anon_sym_DOLLARecho] = ACTIONS(1537), + [anon_sym_DOLLARif] = ACTIONS(1537), + [anon_sym_DOLLARswitch] = ACTIONS(1537), + [anon_sym_DOLLARfor] = ACTIONS(1537), + [anon_sym_DOLLARendfor] = ACTIONS(1537), + [anon_sym_DOLLARforeach] = ACTIONS(1537), + [anon_sym_DOLLARalignof] = ACTIONS(1537), + [anon_sym_DOLLARextnameof] = ACTIONS(1537), + [anon_sym_DOLLARnameof] = ACTIONS(1537), + [anon_sym_DOLLARoffsetof] = ACTIONS(1537), + [anon_sym_DOLLARqnameof] = ACTIONS(1537), + [anon_sym_DOLLARvaconst] = ACTIONS(1537), + [anon_sym_DOLLARvaarg] = ACTIONS(1537), + [anon_sym_DOLLARvaref] = ACTIONS(1537), + [anon_sym_DOLLARvaexpr] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [anon_sym_DOLLARvacount] = ACTIONS(1537), + [anon_sym_DOLLAReval] = ACTIONS(1537), + [anon_sym_DOLLARis_const] = ACTIONS(1537), + [anon_sym_DOLLARsizeof] = ACTIONS(1537), + [anon_sym_DOLLARstringify] = ACTIONS(1537), + [anon_sym_DOLLARappend] = ACTIONS(1537), + [anon_sym_DOLLARconcat] = ACTIONS(1537), + [anon_sym_DOLLARdefined] = ACTIONS(1537), + [anon_sym_DOLLARembed] = ACTIONS(1537), + [anon_sym_DOLLARand] = ACTIONS(1537), + [anon_sym_DOLLARor] = ACTIONS(1537), + [anon_sym_DOLLARfeature] = ACTIONS(1537), + [anon_sym_DOLLARassignable] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_typeid] = ACTIONS(1537), + [anon_sym_LBRACE_PIPE] = ACTIONS(1539), + [anon_sym_void] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_ichar] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [anon_sym_ushort] = ACTIONS(1537), + [anon_sym_uint] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_ulong] = ACTIONS(1537), + [anon_sym_int128] = ACTIONS(1537), + [anon_sym_uint128] = ACTIONS(1537), + [anon_sym_float] = ACTIONS(1537), + [anon_sym_double] = ACTIONS(1537), + [anon_sym_float16] = ACTIONS(1537), + [anon_sym_bfloat16] = ACTIONS(1537), + [anon_sym_float128] = ACTIONS(1537), + [anon_sym_iptr] = ACTIONS(1537), + [anon_sym_uptr] = ACTIONS(1537), + [anon_sym_isz] = ACTIONS(1537), + [anon_sym_usz] = ACTIONS(1537), + [anon_sym_anyfault] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_DOLLARtypeof] = ACTIONS(1537), + [anon_sym_DOLLARtypefrom] = ACTIONS(1537), + [anon_sym_DOLLARevaltype] = ACTIONS(1537), + [anon_sym_DOLLARvatype] = ACTIONS(1537), + [sym_real_literal] = ACTIONS(1539), + }, + [598] = { + [sym_line_comment] = STATE(598), + [sym_doc_comment] = STATE(598), + [sym_block_comment] = STATE(598), + [sym_ident] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1555), + [anon_sym_BQUOTE] = ACTIONS(1555), + [sym_bytes_literal] = ACTIONS(1555), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1553), + [sym_at_ident] = ACTIONS(1555), + [sym_hash_ident] = ACTIONS(1555), + [sym_type_ident] = ACTIONS(1555), + [sym_ct_type_ident] = ACTIONS(1555), + [sym_const_ident] = ACTIONS(1553), + [sym_builtin] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_tlocal] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_defer] = ACTIONS(1553), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_nextcase] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_foreach] = ACTIONS(1553), + [anon_sym_foreach_r] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_int] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_asm] = ACTIONS(1553), + [anon_sym_DOLLARassert] = ACTIONS(1553), + [anon_sym_DOLLARerror] = ACTIONS(1553), + [anon_sym_DOLLARecho] = ACTIONS(1553), + [anon_sym_DOLLARif] = ACTIONS(1553), + [anon_sym_DOLLARswitch] = ACTIONS(1553), + [anon_sym_DOLLARfor] = ACTIONS(1553), + [anon_sym_DOLLARendfor] = ACTIONS(1553), + [anon_sym_DOLLARforeach] = ACTIONS(1553), + [anon_sym_DOLLARalignof] = ACTIONS(1553), + [anon_sym_DOLLARextnameof] = ACTIONS(1553), + [anon_sym_DOLLARnameof] = ACTIONS(1553), + [anon_sym_DOLLARoffsetof] = ACTIONS(1553), + [anon_sym_DOLLARqnameof] = ACTIONS(1553), + [anon_sym_DOLLARvaconst] = ACTIONS(1553), + [anon_sym_DOLLARvaarg] = ACTIONS(1553), + [anon_sym_DOLLARvaref] = ACTIONS(1553), + [anon_sym_DOLLARvaexpr] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_DOLLARvacount] = ACTIONS(1553), + [anon_sym_DOLLAReval] = ACTIONS(1553), + [anon_sym_DOLLARis_const] = ACTIONS(1553), + [anon_sym_DOLLARsizeof] = ACTIONS(1553), + [anon_sym_DOLLARstringify] = ACTIONS(1553), + [anon_sym_DOLLARappend] = ACTIONS(1553), + [anon_sym_DOLLARconcat] = ACTIONS(1553), + [anon_sym_DOLLARdefined] = ACTIONS(1553), + [anon_sym_DOLLARembed] = ACTIONS(1553), + [anon_sym_DOLLARand] = ACTIONS(1553), + [anon_sym_DOLLARor] = ACTIONS(1553), + [anon_sym_DOLLARfeature] = ACTIONS(1553), + [anon_sym_DOLLARassignable] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_typeid] = ACTIONS(1553), + [anon_sym_LBRACE_PIPE] = ACTIONS(1555), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_ichar] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [anon_sym_ushort] = ACTIONS(1553), + [anon_sym_uint] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_ulong] = ACTIONS(1553), + [anon_sym_int128] = ACTIONS(1553), + [anon_sym_uint128] = ACTIONS(1553), + [anon_sym_float] = ACTIONS(1553), + [anon_sym_double] = ACTIONS(1553), + [anon_sym_float16] = ACTIONS(1553), + [anon_sym_bfloat16] = ACTIONS(1553), + [anon_sym_float128] = ACTIONS(1553), + [anon_sym_iptr] = ACTIONS(1553), + [anon_sym_uptr] = ACTIONS(1553), + [anon_sym_isz] = ACTIONS(1553), + [anon_sym_usz] = ACTIONS(1553), + [anon_sym_anyfault] = ACTIONS(1553), + [anon_sym_any] = ACTIONS(1553), + [anon_sym_DOLLARtypeof] = ACTIONS(1553), + [anon_sym_DOLLARtypefrom] = ACTIONS(1553), + [anon_sym_DOLLARevaltype] = ACTIONS(1553), + [anon_sym_DOLLARvatype] = ACTIONS(1553), + [sym_real_literal] = ACTIONS(1555), + }, + [599] = { + [sym_line_comment] = STATE(599), + [sym_doc_comment] = STATE(599), + [sym_block_comment] = STATE(599), + [sym_ident] = ACTIONS(1573), + [sym_integer_literal] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_BQUOTE] = ACTIONS(1575), + [sym_bytes_literal] = ACTIONS(1575), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1573), + [sym_at_ident] = ACTIONS(1575), + [sym_hash_ident] = ACTIONS(1575), + [sym_type_ident] = ACTIONS(1575), + [sym_ct_type_ident] = ACTIONS(1575), + [sym_const_ident] = ACTIONS(1573), + [sym_builtin] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_tlocal] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_fn] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_var] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_defer] = ACTIONS(1573), + [anon_sym_assert] = ACTIONS(1573), + [anon_sym_nextcase] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_foreach] = ACTIONS(1573), + [anon_sym_foreach_r] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_int] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_asm] = ACTIONS(1573), + [anon_sym_DOLLARassert] = ACTIONS(1573), + [anon_sym_DOLLARerror] = ACTIONS(1573), + [anon_sym_DOLLARecho] = ACTIONS(1573), + [anon_sym_DOLLARif] = ACTIONS(1573), + [anon_sym_DOLLARswitch] = ACTIONS(1573), + [anon_sym_DOLLARfor] = ACTIONS(1573), + [anon_sym_DOLLARendfor] = ACTIONS(1573), + [anon_sym_DOLLARforeach] = ACTIONS(1573), + [anon_sym_DOLLARalignof] = ACTIONS(1573), + [anon_sym_DOLLARextnameof] = ACTIONS(1573), + [anon_sym_DOLLARnameof] = ACTIONS(1573), + [anon_sym_DOLLARoffsetof] = ACTIONS(1573), + [anon_sym_DOLLARqnameof] = ACTIONS(1573), + [anon_sym_DOLLARvaconst] = ACTIONS(1573), + [anon_sym_DOLLARvaarg] = ACTIONS(1573), + [anon_sym_DOLLARvaref] = ACTIONS(1573), + [anon_sym_DOLLARvaexpr] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [anon_sym_null] = ACTIONS(1573), + [anon_sym_DOLLARvacount] = ACTIONS(1573), + [anon_sym_DOLLAReval] = ACTIONS(1573), + [anon_sym_DOLLARis_const] = ACTIONS(1573), + [anon_sym_DOLLARsizeof] = ACTIONS(1573), + [anon_sym_DOLLARstringify] = ACTIONS(1573), + [anon_sym_DOLLARappend] = ACTIONS(1573), + [anon_sym_DOLLARconcat] = ACTIONS(1573), + [anon_sym_DOLLARdefined] = ACTIONS(1573), + [anon_sym_DOLLARembed] = ACTIONS(1573), + [anon_sym_DOLLARand] = ACTIONS(1573), + [anon_sym_DOLLARor] = ACTIONS(1573), + [anon_sym_DOLLARfeature] = ACTIONS(1573), + [anon_sym_DOLLARassignable] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_typeid] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_bool] = ACTIONS(1573), + [anon_sym_char] = ACTIONS(1573), + [anon_sym_ichar] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [anon_sym_ushort] = ACTIONS(1573), + [anon_sym_uint] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_ulong] = ACTIONS(1573), + [anon_sym_int128] = ACTIONS(1573), + [anon_sym_uint128] = ACTIONS(1573), + [anon_sym_float] = ACTIONS(1573), + [anon_sym_double] = ACTIONS(1573), + [anon_sym_float16] = ACTIONS(1573), + [anon_sym_bfloat16] = ACTIONS(1573), + [anon_sym_float128] = ACTIONS(1573), + [anon_sym_iptr] = ACTIONS(1573), + [anon_sym_uptr] = ACTIONS(1573), + [anon_sym_isz] = ACTIONS(1573), + [anon_sym_usz] = ACTIONS(1573), + [anon_sym_anyfault] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_DOLLARtypeof] = ACTIONS(1573), + [anon_sym_DOLLARtypefrom] = ACTIONS(1573), + [anon_sym_DOLLARevaltype] = ACTIONS(1573), + [anon_sym_DOLLARvatype] = ACTIONS(1573), + [sym_real_literal] = ACTIONS(1575), + }, + [600] = { + [sym_line_comment] = STATE(600), + [sym_doc_comment] = STATE(600), + [sym_block_comment] = STATE(600), + [sym_ident] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1579), + [sym_bytes_literal] = ACTIONS(1579), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1577), + [sym_at_ident] = ACTIONS(1579), + [sym_hash_ident] = ACTIONS(1579), + [sym_type_ident] = ACTIONS(1579), + [sym_ct_type_ident] = ACTIONS(1579), + [sym_const_ident] = ACTIONS(1577), + [sym_builtin] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_tlocal] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_fn] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_var] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_defer] = ACTIONS(1577), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_nextcase] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_foreach] = ACTIONS(1577), + [anon_sym_foreach_r] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_int] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_asm] = ACTIONS(1577), + [anon_sym_DOLLARassert] = ACTIONS(1577), + [anon_sym_DOLLARerror] = ACTIONS(1577), + [anon_sym_DOLLARecho] = ACTIONS(1577), + [anon_sym_DOLLARif] = ACTIONS(1577), + [anon_sym_DOLLARswitch] = ACTIONS(1577), + [anon_sym_DOLLARfor] = ACTIONS(1577), + [anon_sym_DOLLARendfor] = ACTIONS(1577), + [anon_sym_DOLLARforeach] = ACTIONS(1577), + [anon_sym_DOLLARalignof] = ACTIONS(1577), + [anon_sym_DOLLARextnameof] = ACTIONS(1577), + [anon_sym_DOLLARnameof] = ACTIONS(1577), + [anon_sym_DOLLARoffsetof] = ACTIONS(1577), + [anon_sym_DOLLARqnameof] = ACTIONS(1577), + [anon_sym_DOLLARvaconst] = ACTIONS(1577), + [anon_sym_DOLLARvaarg] = ACTIONS(1577), + [anon_sym_DOLLARvaref] = ACTIONS(1577), + [anon_sym_DOLLARvaexpr] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_DOLLARvacount] = ACTIONS(1577), + [anon_sym_DOLLAReval] = ACTIONS(1577), + [anon_sym_DOLLARis_const] = ACTIONS(1577), + [anon_sym_DOLLARsizeof] = ACTIONS(1577), + [anon_sym_DOLLARstringify] = ACTIONS(1577), + [anon_sym_DOLLARappend] = ACTIONS(1577), + [anon_sym_DOLLARconcat] = ACTIONS(1577), + [anon_sym_DOLLARdefined] = ACTIONS(1577), + [anon_sym_DOLLARembed] = ACTIONS(1577), + [anon_sym_DOLLARand] = ACTIONS(1577), + [anon_sym_DOLLARor] = ACTIONS(1577), + [anon_sym_DOLLARfeature] = ACTIONS(1577), + [anon_sym_DOLLARassignable] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_typeid] = ACTIONS(1577), + [anon_sym_LBRACE_PIPE] = ACTIONS(1579), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_bool] = ACTIONS(1577), + [anon_sym_char] = ACTIONS(1577), + [anon_sym_ichar] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [anon_sym_ushort] = ACTIONS(1577), + [anon_sym_uint] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_ulong] = ACTIONS(1577), + [anon_sym_int128] = ACTIONS(1577), + [anon_sym_uint128] = ACTIONS(1577), + [anon_sym_float] = ACTIONS(1577), + [anon_sym_double] = ACTIONS(1577), + [anon_sym_float16] = ACTIONS(1577), + [anon_sym_bfloat16] = ACTIONS(1577), + [anon_sym_float128] = ACTIONS(1577), + [anon_sym_iptr] = ACTIONS(1577), + [anon_sym_uptr] = ACTIONS(1577), + [anon_sym_isz] = ACTIONS(1577), + [anon_sym_usz] = ACTIONS(1577), + [anon_sym_anyfault] = ACTIONS(1577), + [anon_sym_any] = ACTIONS(1577), + [anon_sym_DOLLARtypeof] = ACTIONS(1577), + [anon_sym_DOLLARtypefrom] = ACTIONS(1577), + [anon_sym_DOLLARevaltype] = ACTIONS(1577), + [anon_sym_DOLLARvatype] = ACTIONS(1577), + [sym_real_literal] = ACTIONS(1579), + }, + [601] = { + [sym_line_comment] = STATE(601), + [sym_doc_comment] = STATE(601), + [sym_block_comment] = STATE(601), + [sym_ident] = ACTIONS(1593), + [sym_integer_literal] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_bytes_literal] = ACTIONS(1595), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1593), + [sym_at_ident] = ACTIONS(1595), + [sym_hash_ident] = ACTIONS(1595), + [sym_type_ident] = ACTIONS(1595), + [sym_ct_type_ident] = ACTIONS(1595), + [sym_const_ident] = ACTIONS(1593), + [sym_builtin] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_tlocal] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_fn] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_defer] = ACTIONS(1593), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_nextcase] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_foreach] = ACTIONS(1593), + [anon_sym_foreach_r] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_asm] = ACTIONS(1593), + [anon_sym_DOLLARassert] = ACTIONS(1593), + [anon_sym_DOLLARerror] = ACTIONS(1593), + [anon_sym_DOLLARecho] = ACTIONS(1593), + [anon_sym_DOLLARif] = ACTIONS(1593), + [anon_sym_DOLLARswitch] = ACTIONS(1593), + [anon_sym_DOLLARfor] = ACTIONS(1593), + [anon_sym_DOLLARendfor] = ACTIONS(1593), + [anon_sym_DOLLARforeach] = ACTIONS(1593), + [anon_sym_DOLLARalignof] = ACTIONS(1593), + [anon_sym_DOLLARextnameof] = ACTIONS(1593), + [anon_sym_DOLLARnameof] = ACTIONS(1593), + [anon_sym_DOLLARoffsetof] = ACTIONS(1593), + [anon_sym_DOLLARqnameof] = ACTIONS(1593), + [anon_sym_DOLLARvaconst] = ACTIONS(1593), + [anon_sym_DOLLARvaarg] = ACTIONS(1593), + [anon_sym_DOLLARvaref] = ACTIONS(1593), + [anon_sym_DOLLARvaexpr] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_DOLLARvacount] = ACTIONS(1593), + [anon_sym_DOLLAReval] = ACTIONS(1593), + [anon_sym_DOLLARis_const] = ACTIONS(1593), + [anon_sym_DOLLARsizeof] = ACTIONS(1593), + [anon_sym_DOLLARstringify] = ACTIONS(1593), + [anon_sym_DOLLARappend] = ACTIONS(1593), + [anon_sym_DOLLARconcat] = ACTIONS(1593), + [anon_sym_DOLLARdefined] = ACTIONS(1593), + [anon_sym_DOLLARembed] = ACTIONS(1593), + [anon_sym_DOLLARand] = ACTIONS(1593), + [anon_sym_DOLLARor] = ACTIONS(1593), + [anon_sym_DOLLARfeature] = ACTIONS(1593), + [anon_sym_DOLLARassignable] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_DASH_DASH] = ACTIONS(1595), + [anon_sym_typeid] = ACTIONS(1593), + [anon_sym_LBRACE_PIPE] = ACTIONS(1595), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_ichar] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [anon_sym_ushort] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_ulong] = ACTIONS(1593), + [anon_sym_int128] = ACTIONS(1593), + [anon_sym_uint128] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_double] = ACTIONS(1593), + [anon_sym_float16] = ACTIONS(1593), + [anon_sym_bfloat16] = ACTIONS(1593), + [anon_sym_float128] = ACTIONS(1593), + [anon_sym_iptr] = ACTIONS(1593), + [anon_sym_uptr] = ACTIONS(1593), + [anon_sym_isz] = ACTIONS(1593), + [anon_sym_usz] = ACTIONS(1593), + [anon_sym_anyfault] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_DOLLARtypeof] = ACTIONS(1593), + [anon_sym_DOLLARtypefrom] = ACTIONS(1593), + [anon_sym_DOLLARevaltype] = ACTIONS(1593), + [anon_sym_DOLLARvatype] = ACTIONS(1593), + [sym_real_literal] = ACTIONS(1595), }, - [588] = { - [sym_line_comment] = STATE(588), - [sym_doc_comment] = STATE(588), - [sym_block_comment] = STATE(588), - [sym_ident] = ACTIONS(1669), - [sym_integer_literal] = ACTIONS(1671), - [anon_sym_SQUOTE] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [anon_sym_BQUOTE] = ACTIONS(1671), - [sym_bytes_literal] = ACTIONS(1671), + [602] = { + [sym_line_comment] = STATE(602), + [sym_doc_comment] = STATE(602), + [sym_block_comment] = STATE(602), + [sym_ident] = ACTIONS(1633), + [sym_integer_literal] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_bytes_literal] = ACTIONS(1635), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1633), + [sym_at_ident] = ACTIONS(1635), + [sym_hash_ident] = ACTIONS(1635), + [sym_type_ident] = ACTIONS(1635), + [sym_ct_type_ident] = ACTIONS(1635), + [sym_const_ident] = ACTIONS(1633), + [sym_builtin] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_tlocal] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_fn] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_var] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_defer] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1633), + [anon_sym_nextcase] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_foreach] = ACTIONS(1633), + [anon_sym_foreach_r] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1633), + [anon_sym_DOLLARassert] = ACTIONS(1633), + [anon_sym_DOLLARerror] = ACTIONS(1633), + [anon_sym_DOLLARecho] = ACTIONS(1633), + [anon_sym_DOLLARif] = ACTIONS(1633), + [anon_sym_DOLLARswitch] = ACTIONS(1633), + [anon_sym_DOLLARfor] = ACTIONS(1633), + [anon_sym_DOLLARendfor] = ACTIONS(1633), + [anon_sym_DOLLARforeach] = ACTIONS(1633), + [anon_sym_DOLLARalignof] = ACTIONS(1633), + [anon_sym_DOLLARextnameof] = ACTIONS(1633), + [anon_sym_DOLLARnameof] = ACTIONS(1633), + [anon_sym_DOLLARoffsetof] = ACTIONS(1633), + [anon_sym_DOLLARqnameof] = ACTIONS(1633), + [anon_sym_DOLLARvaconst] = ACTIONS(1633), + [anon_sym_DOLLARvaarg] = ACTIONS(1633), + [anon_sym_DOLLARvaref] = ACTIONS(1633), + [anon_sym_DOLLARvaexpr] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_DOLLARvacount] = ACTIONS(1633), + [anon_sym_DOLLAReval] = ACTIONS(1633), + [anon_sym_DOLLARis_const] = ACTIONS(1633), + [anon_sym_DOLLARsizeof] = ACTIONS(1633), + [anon_sym_DOLLARstringify] = ACTIONS(1633), + [anon_sym_DOLLARappend] = ACTIONS(1633), + [anon_sym_DOLLARconcat] = ACTIONS(1633), + [anon_sym_DOLLARdefined] = ACTIONS(1633), + [anon_sym_DOLLARembed] = ACTIONS(1633), + [anon_sym_DOLLARand] = ACTIONS(1633), + [anon_sym_DOLLARor] = ACTIONS(1633), + [anon_sym_DOLLARfeature] = ACTIONS(1633), + [anon_sym_DOLLARassignable] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_typeid] = ACTIONS(1633), + [anon_sym_LBRACE_PIPE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_ichar] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_ushort] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_ulong] = ACTIONS(1633), + [anon_sym_int128] = ACTIONS(1633), + [anon_sym_uint128] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_double] = ACTIONS(1633), + [anon_sym_float16] = ACTIONS(1633), + [anon_sym_bfloat16] = ACTIONS(1633), + [anon_sym_float128] = ACTIONS(1633), + [anon_sym_iptr] = ACTIONS(1633), + [anon_sym_uptr] = ACTIONS(1633), + [anon_sym_isz] = ACTIONS(1633), + [anon_sym_usz] = ACTIONS(1633), + [anon_sym_anyfault] = ACTIONS(1633), + [anon_sym_any] = ACTIONS(1633), + [anon_sym_DOLLARtypeof] = ACTIONS(1633), + [anon_sym_DOLLARtypefrom] = ACTIONS(1633), + [anon_sym_DOLLARevaltype] = ACTIONS(1633), + [anon_sym_DOLLARvatype] = ACTIONS(1633), + [sym_real_literal] = ACTIONS(1635), + }, + [603] = { + [sym_line_comment] = STATE(603), + [sym_doc_comment] = STATE(603), + [sym_block_comment] = STATE(603), + [sym_ident] = ACTIONS(1377), + [sym_integer_literal] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_BQUOTE] = ACTIONS(1379), + [sym_bytes_literal] = ACTIONS(1379), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1669), - [sym_at_ident] = ACTIONS(1671), - [sym_hash_ident] = ACTIONS(1671), - [sym_type_ident] = ACTIONS(1671), - [sym_ct_type_ident] = ACTIONS(1671), - [sym_const_ident] = ACTIONS(1669), - [sym_builtin] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_static] = ACTIONS(1669), - [anon_sym_tlocal] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_fn] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_var] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_defer] = ACTIONS(1669), - [anon_sym_assert] = ACTIONS(1669), - [anon_sym_nextcase] = ACTIONS(1669), - [anon_sym_switch] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_foreach] = ACTIONS(1669), - [anon_sym_foreach_r] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_do] = ACTIONS(1669), - [anon_sym_int] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1671), - [anon_sym_asm] = ACTIONS(1669), - [anon_sym_DOLLARassert] = ACTIONS(1669), - [anon_sym_DOLLARerror] = ACTIONS(1669), - [anon_sym_DOLLARecho] = ACTIONS(1669), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_DOLLARswitch] = ACTIONS(1669), - [anon_sym_DOLLARfor] = ACTIONS(1669), - [anon_sym_DOLLARendfor] = ACTIONS(1669), - [anon_sym_DOLLARforeach] = ACTIONS(1669), - [anon_sym_DOLLARalignof] = ACTIONS(1669), - [anon_sym_DOLLARextnameof] = ACTIONS(1669), - [anon_sym_DOLLARnameof] = ACTIONS(1669), - [anon_sym_DOLLARoffsetof] = ACTIONS(1669), - [anon_sym_DOLLARqnameof] = ACTIONS(1669), - [anon_sym_DOLLAReval] = ACTIONS(1669), - [anon_sym_DOLLARdefined] = ACTIONS(1669), - [anon_sym_DOLLARsizeof] = ACTIONS(1669), - [anon_sym_DOLLARstringify] = ACTIONS(1669), - [anon_sym_DOLLARis_const] = ACTIONS(1669), - [anon_sym_DOLLARvaconst] = ACTIONS(1669), - [anon_sym_DOLLARvaarg] = ACTIONS(1669), - [anon_sym_DOLLARvaref] = ACTIONS(1669), - [anon_sym_DOLLARvaexpr] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [anon_sym_DOLLARvacount] = ACTIONS(1669), - [anon_sym_DOLLARfeature] = ACTIONS(1669), - [anon_sym_DOLLARand] = ACTIONS(1669), - [anon_sym_DOLLARor] = ACTIONS(1669), - [anon_sym_DOLLARassignable] = ACTIONS(1669), - [anon_sym_DOLLARembed] = ACTIONS(1669), - [anon_sym_BANG] = ACTIONS(1671), - [anon_sym_TILDE] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_typeid] = ACTIONS(1669), - [anon_sym_LBRACE_PIPE] = ACTIONS(1671), - [anon_sym_void] = ACTIONS(1669), - [anon_sym_bool] = ACTIONS(1669), - [anon_sym_char] = ACTIONS(1669), - [anon_sym_ichar] = ACTIONS(1669), - [anon_sym_short] = ACTIONS(1669), - [anon_sym_ushort] = ACTIONS(1669), - [anon_sym_uint] = ACTIONS(1669), - [anon_sym_long] = ACTIONS(1669), - [anon_sym_ulong] = ACTIONS(1669), - [anon_sym_int128] = ACTIONS(1669), - [anon_sym_uint128] = ACTIONS(1669), - [anon_sym_float] = ACTIONS(1669), - [anon_sym_double] = ACTIONS(1669), - [anon_sym_float16] = ACTIONS(1669), - [anon_sym_bfloat16] = ACTIONS(1669), - [anon_sym_float128] = ACTIONS(1669), - [anon_sym_iptr] = ACTIONS(1669), - [anon_sym_uptr] = ACTIONS(1669), - [anon_sym_isz] = ACTIONS(1669), - [anon_sym_usz] = ACTIONS(1669), - [anon_sym_anyfault] = ACTIONS(1669), - [anon_sym_any] = ACTIONS(1669), - [anon_sym_DOLLARtypeof] = ACTIONS(1669), - [anon_sym_DOLLARtypefrom] = ACTIONS(1669), - [anon_sym_DOLLARvatype] = ACTIONS(1669), - [anon_sym_DOLLARevaltype] = ACTIONS(1669), - [sym_real_literal] = ACTIONS(1671), + [sym_ct_ident] = ACTIONS(1377), + [sym_at_ident] = ACTIONS(1379), + [sym_hash_ident] = ACTIONS(1379), + [sym_type_ident] = ACTIONS(1379), + [sym_ct_type_ident] = ACTIONS(1379), + [sym_const_ident] = ACTIONS(1377), + [sym_builtin] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1377), + [anon_sym_tlocal] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_fn] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1377), + [anon_sym_var] = ACTIONS(1377), + [anon_sym_return] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1377), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_defer] = ACTIONS(1377), + [anon_sym_assert] = ACTIONS(1377), + [anon_sym_nextcase] = ACTIONS(1377), + [anon_sym_switch] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1377), + [anon_sym_foreach] = ACTIONS(1377), + [anon_sym_foreach_r] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_do] = ACTIONS(1377), + [anon_sym_int] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_asm] = ACTIONS(1377), + [anon_sym_DOLLARassert] = ACTIONS(1377), + [anon_sym_DOLLARerror] = ACTIONS(1377), + [anon_sym_DOLLARecho] = ACTIONS(1377), + [anon_sym_DOLLARif] = ACTIONS(1377), + [anon_sym_DOLLARswitch] = ACTIONS(1377), + [anon_sym_DOLLARfor] = ACTIONS(1377), + [anon_sym_DOLLARendfor] = ACTIONS(1377), + [anon_sym_DOLLARforeach] = ACTIONS(1377), + [anon_sym_DOLLARalignof] = ACTIONS(1377), + [anon_sym_DOLLARextnameof] = ACTIONS(1377), + [anon_sym_DOLLARnameof] = ACTIONS(1377), + [anon_sym_DOLLARoffsetof] = ACTIONS(1377), + [anon_sym_DOLLARqnameof] = ACTIONS(1377), + [anon_sym_DOLLARvaconst] = ACTIONS(1377), + [anon_sym_DOLLARvaarg] = ACTIONS(1377), + [anon_sym_DOLLARvaref] = ACTIONS(1377), + [anon_sym_DOLLARvaexpr] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(1377), + [anon_sym_false] = ACTIONS(1377), + [anon_sym_null] = ACTIONS(1377), + [anon_sym_DOLLARvacount] = ACTIONS(1377), + [anon_sym_DOLLAReval] = ACTIONS(1377), + [anon_sym_DOLLARis_const] = ACTIONS(1377), + [anon_sym_DOLLARsizeof] = ACTIONS(1377), + [anon_sym_DOLLARstringify] = ACTIONS(1377), + [anon_sym_DOLLARappend] = ACTIONS(1377), + [anon_sym_DOLLARconcat] = ACTIONS(1377), + [anon_sym_DOLLARdefined] = ACTIONS(1377), + [anon_sym_DOLLARembed] = ACTIONS(1377), + [anon_sym_DOLLARand] = ACTIONS(1377), + [anon_sym_DOLLARor] = ACTIONS(1377), + [anon_sym_DOLLARfeature] = ACTIONS(1377), + [anon_sym_DOLLARassignable] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_typeid] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_bool] = ACTIONS(1377), + [anon_sym_char] = ACTIONS(1377), + [anon_sym_ichar] = ACTIONS(1377), + [anon_sym_short] = ACTIONS(1377), + [anon_sym_ushort] = ACTIONS(1377), + [anon_sym_uint] = ACTIONS(1377), + [anon_sym_long] = ACTIONS(1377), + [anon_sym_ulong] = ACTIONS(1377), + [anon_sym_int128] = ACTIONS(1377), + [anon_sym_uint128] = ACTIONS(1377), + [anon_sym_float] = ACTIONS(1377), + [anon_sym_double] = ACTIONS(1377), + [anon_sym_float16] = ACTIONS(1377), + [anon_sym_bfloat16] = ACTIONS(1377), + [anon_sym_float128] = ACTIONS(1377), + [anon_sym_iptr] = ACTIONS(1377), + [anon_sym_uptr] = ACTIONS(1377), + [anon_sym_isz] = ACTIONS(1377), + [anon_sym_usz] = ACTIONS(1377), + [anon_sym_anyfault] = ACTIONS(1377), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_DOLLARtypeof] = ACTIONS(1377), + [anon_sym_DOLLARtypefrom] = ACTIONS(1377), + [anon_sym_DOLLARevaltype] = ACTIONS(1377), + [anon_sym_DOLLARvatype] = ACTIONS(1377), + [sym_real_literal] = ACTIONS(1379), }, - [589] = { - [sym_line_comment] = STATE(589), - [sym_doc_comment] = STATE(589), - [sym_block_comment] = STATE(589), - [sym_ident] = ACTIONS(1673), - [sym_integer_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(1675), - [anon_sym_BQUOTE] = ACTIONS(1675), - [sym_bytes_literal] = ACTIONS(1675), + [604] = { + [sym_line_comment] = STATE(604), + [sym_doc_comment] = STATE(604), + [sym_block_comment] = STATE(604), + [sym_ident] = ACTIONS(1381), + [sym_integer_literal] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_BQUOTE] = ACTIONS(1383), + [sym_bytes_literal] = ACTIONS(1383), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1673), - [sym_at_ident] = ACTIONS(1675), - [sym_hash_ident] = ACTIONS(1675), - [sym_type_ident] = ACTIONS(1675), - [sym_ct_type_ident] = ACTIONS(1675), - [sym_const_ident] = ACTIONS(1673), - [sym_builtin] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1675), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_static] = ACTIONS(1673), - [anon_sym_tlocal] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_fn] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1673), - [anon_sym_const] = ACTIONS(1673), - [anon_sym_var] = ACTIONS(1673), - [anon_sym_return] = ACTIONS(1673), - [anon_sym_continue] = ACTIONS(1673), - [anon_sym_break] = ACTIONS(1673), - [anon_sym_defer] = ACTIONS(1673), - [anon_sym_assert] = ACTIONS(1673), - [anon_sym_nextcase] = ACTIONS(1673), - [anon_sym_switch] = ACTIONS(1673), - [anon_sym_AMP_AMP] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_foreach] = ACTIONS(1673), - [anon_sym_foreach_r] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1673), - [anon_sym_do] = ACTIONS(1673), - [anon_sym_int] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_asm] = ACTIONS(1673), - [anon_sym_DOLLARassert] = ACTIONS(1673), - [anon_sym_DOLLARerror] = ACTIONS(1673), - [anon_sym_DOLLARecho] = ACTIONS(1673), - [anon_sym_DOLLARif] = ACTIONS(1673), - [anon_sym_DOLLARswitch] = ACTIONS(1673), - [anon_sym_DOLLARfor] = ACTIONS(1673), - [anon_sym_DOLLARendfor] = ACTIONS(1673), - [anon_sym_DOLLARforeach] = ACTIONS(1673), - [anon_sym_DOLLARalignof] = ACTIONS(1673), - [anon_sym_DOLLARextnameof] = ACTIONS(1673), - [anon_sym_DOLLARnameof] = ACTIONS(1673), - [anon_sym_DOLLARoffsetof] = ACTIONS(1673), - [anon_sym_DOLLARqnameof] = ACTIONS(1673), - [anon_sym_DOLLAReval] = ACTIONS(1673), - [anon_sym_DOLLARdefined] = ACTIONS(1673), - [anon_sym_DOLLARsizeof] = ACTIONS(1673), - [anon_sym_DOLLARstringify] = ACTIONS(1673), - [anon_sym_DOLLARis_const] = ACTIONS(1673), - [anon_sym_DOLLARvaconst] = ACTIONS(1673), - [anon_sym_DOLLARvaarg] = ACTIONS(1673), - [anon_sym_DOLLARvaref] = ACTIONS(1673), - [anon_sym_DOLLARvaexpr] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1673), - [anon_sym_false] = ACTIONS(1673), - [anon_sym_null] = ACTIONS(1673), - [anon_sym_DOLLARvacount] = ACTIONS(1673), - [anon_sym_DOLLARfeature] = ACTIONS(1673), - [anon_sym_DOLLARand] = ACTIONS(1673), - [anon_sym_DOLLARor] = ACTIONS(1673), - [anon_sym_DOLLARassignable] = ACTIONS(1673), - [anon_sym_DOLLARembed] = ACTIONS(1673), - [anon_sym_BANG] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_DASH_DASH] = ACTIONS(1675), - [anon_sym_typeid] = ACTIONS(1673), - [anon_sym_LBRACE_PIPE] = ACTIONS(1675), - [anon_sym_void] = ACTIONS(1673), - [anon_sym_bool] = ACTIONS(1673), - [anon_sym_char] = ACTIONS(1673), - [anon_sym_ichar] = ACTIONS(1673), - [anon_sym_short] = ACTIONS(1673), - [anon_sym_ushort] = ACTIONS(1673), - [anon_sym_uint] = ACTIONS(1673), - [anon_sym_long] = ACTIONS(1673), - [anon_sym_ulong] = ACTIONS(1673), - [anon_sym_int128] = ACTIONS(1673), - [anon_sym_uint128] = ACTIONS(1673), - [anon_sym_float] = ACTIONS(1673), - [anon_sym_double] = ACTIONS(1673), - [anon_sym_float16] = ACTIONS(1673), - [anon_sym_bfloat16] = ACTIONS(1673), - [anon_sym_float128] = ACTIONS(1673), - [anon_sym_iptr] = ACTIONS(1673), - [anon_sym_uptr] = ACTIONS(1673), - [anon_sym_isz] = ACTIONS(1673), - [anon_sym_usz] = ACTIONS(1673), - [anon_sym_anyfault] = ACTIONS(1673), - [anon_sym_any] = ACTIONS(1673), - [anon_sym_DOLLARtypeof] = ACTIONS(1673), - [anon_sym_DOLLARtypefrom] = ACTIONS(1673), - [anon_sym_DOLLARvatype] = ACTIONS(1673), - [anon_sym_DOLLARevaltype] = ACTIONS(1673), - [sym_real_literal] = ACTIONS(1675), + [sym_ct_ident] = ACTIONS(1381), + [sym_at_ident] = ACTIONS(1383), + [sym_hash_ident] = ACTIONS(1383), + [sym_type_ident] = ACTIONS(1383), + [sym_ct_type_ident] = ACTIONS(1383), + [sym_const_ident] = ACTIONS(1381), + [sym_builtin] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_tlocal] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_var] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_defer] = ACTIONS(1381), + [anon_sym_assert] = ACTIONS(1381), + [anon_sym_nextcase] = ACTIONS(1381), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_foreach] = ACTIONS(1381), + [anon_sym_foreach_r] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_int] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_asm] = ACTIONS(1381), + [anon_sym_DOLLARassert] = ACTIONS(1381), + [anon_sym_DOLLARerror] = ACTIONS(1381), + [anon_sym_DOLLARecho] = ACTIONS(1381), + [anon_sym_DOLLARif] = ACTIONS(1381), + [anon_sym_DOLLARswitch] = ACTIONS(1381), + [anon_sym_DOLLARfor] = ACTIONS(1381), + [anon_sym_DOLLARendfor] = ACTIONS(1381), + [anon_sym_DOLLARforeach] = ACTIONS(1381), + [anon_sym_DOLLARalignof] = ACTIONS(1381), + [anon_sym_DOLLARextnameof] = ACTIONS(1381), + [anon_sym_DOLLARnameof] = ACTIONS(1381), + [anon_sym_DOLLARoffsetof] = ACTIONS(1381), + [anon_sym_DOLLARqnameof] = ACTIONS(1381), + [anon_sym_DOLLARvaconst] = ACTIONS(1381), + [anon_sym_DOLLARvaarg] = ACTIONS(1381), + [anon_sym_DOLLARvaref] = ACTIONS(1381), + [anon_sym_DOLLARvaexpr] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_DOLLARvacount] = ACTIONS(1381), + [anon_sym_DOLLAReval] = ACTIONS(1381), + [anon_sym_DOLLARis_const] = ACTIONS(1381), + [anon_sym_DOLLARsizeof] = ACTIONS(1381), + [anon_sym_DOLLARstringify] = ACTIONS(1381), + [anon_sym_DOLLARappend] = ACTIONS(1381), + [anon_sym_DOLLARconcat] = ACTIONS(1381), + [anon_sym_DOLLARdefined] = ACTIONS(1381), + [anon_sym_DOLLARembed] = ACTIONS(1381), + [anon_sym_DOLLARand] = ACTIONS(1381), + [anon_sym_DOLLARor] = ACTIONS(1381), + [anon_sym_DOLLARfeature] = ACTIONS(1381), + [anon_sym_DOLLARassignable] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_typeid] = ACTIONS(1381), + [anon_sym_LBRACE_PIPE] = ACTIONS(1383), + [anon_sym_void] = ACTIONS(1381), + [anon_sym_bool] = ACTIONS(1381), + [anon_sym_char] = ACTIONS(1381), + [anon_sym_ichar] = ACTIONS(1381), + [anon_sym_short] = ACTIONS(1381), + [anon_sym_ushort] = ACTIONS(1381), + [anon_sym_uint] = ACTIONS(1381), + [anon_sym_long] = ACTIONS(1381), + [anon_sym_ulong] = ACTIONS(1381), + [anon_sym_int128] = ACTIONS(1381), + [anon_sym_uint128] = ACTIONS(1381), + [anon_sym_float] = ACTIONS(1381), + [anon_sym_double] = ACTIONS(1381), + [anon_sym_float16] = ACTIONS(1381), + [anon_sym_bfloat16] = ACTIONS(1381), + [anon_sym_float128] = ACTIONS(1381), + [anon_sym_iptr] = ACTIONS(1381), + [anon_sym_uptr] = ACTIONS(1381), + [anon_sym_isz] = ACTIONS(1381), + [anon_sym_usz] = ACTIONS(1381), + [anon_sym_anyfault] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_DOLLARtypeof] = ACTIONS(1381), + [anon_sym_DOLLARtypefrom] = ACTIONS(1381), + [anon_sym_DOLLARevaltype] = ACTIONS(1381), + [anon_sym_DOLLARvatype] = ACTIONS(1381), + [sym_real_literal] = ACTIONS(1383), }, - [590] = { - [sym_line_comment] = STATE(590), - [sym_doc_comment] = STATE(590), - [sym_block_comment] = STATE(590), + [605] = { + [sym_line_comment] = STATE(605), + [sym_doc_comment] = STATE(605), + [sym_block_comment] = STATE(605), [sym_ident] = ACTIONS(1385), [sym_integer_literal] = ACTIONS(1387), [anon_sym_SQUOTE] = ACTIONS(1387), @@ -93343,7 +95150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1387), [sym_bytes_literal] = ACTIONS(1387), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1385), [sym_at_ident] = ACTIONS(1387), @@ -93384,20 +95191,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1385), [anon_sym_DOLLARecho] = ACTIONS(1385), [anon_sym_DOLLARif] = ACTIONS(1385), - [anon_sym_DOLLARendif] = ACTIONS(1385), [anon_sym_DOLLARswitch] = ACTIONS(1385), [anon_sym_DOLLARfor] = ACTIONS(1385), + [anon_sym_DOLLARendfor] = ACTIONS(1385), [anon_sym_DOLLARforeach] = ACTIONS(1385), [anon_sym_DOLLARalignof] = ACTIONS(1385), [anon_sym_DOLLARextnameof] = ACTIONS(1385), [anon_sym_DOLLARnameof] = ACTIONS(1385), [anon_sym_DOLLARoffsetof] = ACTIONS(1385), [anon_sym_DOLLARqnameof] = ACTIONS(1385), - [anon_sym_DOLLAReval] = ACTIONS(1385), - [anon_sym_DOLLARdefined] = ACTIONS(1385), - [anon_sym_DOLLARsizeof] = ACTIONS(1385), - [anon_sym_DOLLARstringify] = ACTIONS(1385), - [anon_sym_DOLLARis_const] = ACTIONS(1385), [anon_sym_DOLLARvaconst] = ACTIONS(1385), [anon_sym_DOLLARvaarg] = ACTIONS(1385), [anon_sym_DOLLARvaref] = ACTIONS(1385), @@ -93406,11 +95208,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1385), [anon_sym_null] = ACTIONS(1385), [anon_sym_DOLLARvacount] = ACTIONS(1385), - [anon_sym_DOLLARfeature] = ACTIONS(1385), + [anon_sym_DOLLAReval] = ACTIONS(1385), + [anon_sym_DOLLARis_const] = ACTIONS(1385), + [anon_sym_DOLLARsizeof] = ACTIONS(1385), + [anon_sym_DOLLARstringify] = ACTIONS(1385), + [anon_sym_DOLLARappend] = ACTIONS(1385), + [anon_sym_DOLLARconcat] = ACTIONS(1385), + [anon_sym_DOLLARdefined] = ACTIONS(1385), + [anon_sym_DOLLARembed] = ACTIONS(1385), [anon_sym_DOLLARand] = ACTIONS(1385), [anon_sym_DOLLARor] = ACTIONS(1385), + [anon_sym_DOLLARfeature] = ACTIONS(1385), [anon_sym_DOLLARassignable] = ACTIONS(1385), - [anon_sym_DOLLARembed] = ACTIONS(1385), [anon_sym_BANG] = ACTIONS(1387), [anon_sym_TILDE] = ACTIONS(1387), [anon_sym_PLUS_PLUS] = ACTIONS(1387), @@ -93441,14 +95250,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1385), [anon_sym_DOLLARtypeof] = ACTIONS(1385), [anon_sym_DOLLARtypefrom] = ACTIONS(1385), - [anon_sym_DOLLARvatype] = ACTIONS(1385), [anon_sym_DOLLARevaltype] = ACTIONS(1385), + [anon_sym_DOLLARvatype] = ACTIONS(1385), [sym_real_literal] = ACTIONS(1387), }, - [591] = { - [sym_line_comment] = STATE(591), - [sym_doc_comment] = STATE(591), - [sym_block_comment] = STATE(591), + [606] = { + [sym_line_comment] = STATE(606), + [sym_doc_comment] = STATE(606), + [sym_block_comment] = STATE(606), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARendfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), + }, + [607] = { + [sym_line_comment] = STATE(607), + [sym_doc_comment] = STATE(607), + [sym_block_comment] = STATE(607), [sym_ident] = ACTIONS(1389), [sym_integer_literal] = ACTIONS(1391), [anon_sym_SQUOTE] = ACTIONS(1391), @@ -93456,7 +95380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1391), [sym_bytes_literal] = ACTIONS(1391), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1389), [sym_at_ident] = ACTIONS(1391), @@ -93497,20 +95421,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1389), [anon_sym_DOLLARecho] = ACTIONS(1389), [anon_sym_DOLLARif] = ACTIONS(1389), - [anon_sym_DOLLARendif] = ACTIONS(1389), [anon_sym_DOLLARswitch] = ACTIONS(1389), [anon_sym_DOLLARfor] = ACTIONS(1389), + [anon_sym_DOLLARendfor] = ACTIONS(1389), [anon_sym_DOLLARforeach] = ACTIONS(1389), [anon_sym_DOLLARalignof] = ACTIONS(1389), [anon_sym_DOLLARextnameof] = ACTIONS(1389), [anon_sym_DOLLARnameof] = ACTIONS(1389), [anon_sym_DOLLARoffsetof] = ACTIONS(1389), [anon_sym_DOLLARqnameof] = ACTIONS(1389), - [anon_sym_DOLLAReval] = ACTIONS(1389), - [anon_sym_DOLLARdefined] = ACTIONS(1389), - [anon_sym_DOLLARsizeof] = ACTIONS(1389), - [anon_sym_DOLLARstringify] = ACTIONS(1389), - [anon_sym_DOLLARis_const] = ACTIONS(1389), [anon_sym_DOLLARvaconst] = ACTIONS(1389), [anon_sym_DOLLARvaarg] = ACTIONS(1389), [anon_sym_DOLLARvaref] = ACTIONS(1389), @@ -93519,11 +95438,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1389), [anon_sym_null] = ACTIONS(1389), [anon_sym_DOLLARvacount] = ACTIONS(1389), - [anon_sym_DOLLARfeature] = ACTIONS(1389), + [anon_sym_DOLLAReval] = ACTIONS(1389), + [anon_sym_DOLLARis_const] = ACTIONS(1389), + [anon_sym_DOLLARsizeof] = ACTIONS(1389), + [anon_sym_DOLLARstringify] = ACTIONS(1389), + [anon_sym_DOLLARappend] = ACTIONS(1389), + [anon_sym_DOLLARconcat] = ACTIONS(1389), + [anon_sym_DOLLARdefined] = ACTIONS(1389), + [anon_sym_DOLLARembed] = ACTIONS(1389), [anon_sym_DOLLARand] = ACTIONS(1389), [anon_sym_DOLLARor] = ACTIONS(1389), + [anon_sym_DOLLARfeature] = ACTIONS(1389), [anon_sym_DOLLARassignable] = ACTIONS(1389), - [anon_sym_DOLLARembed] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1391), [anon_sym_TILDE] = ACTIONS(1391), [anon_sym_PLUS_PLUS] = ACTIONS(1391), @@ -93554,14 +95480,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1389), [anon_sym_DOLLARtypeof] = ACTIONS(1389), [anon_sym_DOLLARtypefrom] = ACTIONS(1389), - [anon_sym_DOLLARvatype] = ACTIONS(1389), [anon_sym_DOLLARevaltype] = ACTIONS(1389), + [anon_sym_DOLLARvatype] = ACTIONS(1389), [sym_real_literal] = ACTIONS(1391), }, - [592] = { - [sym_line_comment] = STATE(592), - [sym_doc_comment] = STATE(592), - [sym_block_comment] = STATE(592), + [608] = { + [sym_line_comment] = STATE(608), + [sym_doc_comment] = STATE(608), + [sym_block_comment] = STATE(608), [sym_ident] = ACTIONS(1393), [sym_integer_literal] = ACTIONS(1395), [anon_sym_SQUOTE] = ACTIONS(1395), @@ -93569,7 +95495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1395), [sym_bytes_literal] = ACTIONS(1395), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1393), [sym_at_ident] = ACTIONS(1395), @@ -93610,20 +95536,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1393), [anon_sym_DOLLARecho] = ACTIONS(1393), [anon_sym_DOLLARif] = ACTIONS(1393), - [anon_sym_DOLLARendif] = ACTIONS(1393), [anon_sym_DOLLARswitch] = ACTIONS(1393), [anon_sym_DOLLARfor] = ACTIONS(1393), + [anon_sym_DOLLARendfor] = ACTIONS(1393), [anon_sym_DOLLARforeach] = ACTIONS(1393), [anon_sym_DOLLARalignof] = ACTIONS(1393), [anon_sym_DOLLARextnameof] = ACTIONS(1393), [anon_sym_DOLLARnameof] = ACTIONS(1393), [anon_sym_DOLLARoffsetof] = ACTIONS(1393), [anon_sym_DOLLARqnameof] = ACTIONS(1393), - [anon_sym_DOLLAReval] = ACTIONS(1393), - [anon_sym_DOLLARdefined] = ACTIONS(1393), - [anon_sym_DOLLARsizeof] = ACTIONS(1393), - [anon_sym_DOLLARstringify] = ACTIONS(1393), - [anon_sym_DOLLARis_const] = ACTIONS(1393), [anon_sym_DOLLARvaconst] = ACTIONS(1393), [anon_sym_DOLLARvaarg] = ACTIONS(1393), [anon_sym_DOLLARvaref] = ACTIONS(1393), @@ -93632,11 +95553,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1393), [anon_sym_null] = ACTIONS(1393), [anon_sym_DOLLARvacount] = ACTIONS(1393), - [anon_sym_DOLLARfeature] = ACTIONS(1393), + [anon_sym_DOLLAReval] = ACTIONS(1393), + [anon_sym_DOLLARis_const] = ACTIONS(1393), + [anon_sym_DOLLARsizeof] = ACTIONS(1393), + [anon_sym_DOLLARstringify] = ACTIONS(1393), + [anon_sym_DOLLARappend] = ACTIONS(1393), + [anon_sym_DOLLARconcat] = ACTIONS(1393), + [anon_sym_DOLLARdefined] = ACTIONS(1393), + [anon_sym_DOLLARembed] = ACTIONS(1393), [anon_sym_DOLLARand] = ACTIONS(1393), [anon_sym_DOLLARor] = ACTIONS(1393), + [anon_sym_DOLLARfeature] = ACTIONS(1393), [anon_sym_DOLLARassignable] = ACTIONS(1393), - [anon_sym_DOLLARembed] = ACTIONS(1393), [anon_sym_BANG] = ACTIONS(1395), [anon_sym_TILDE] = ACTIONS(1395), [anon_sym_PLUS_PLUS] = ACTIONS(1395), @@ -93667,14 +95595,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1393), [anon_sym_DOLLARtypeof] = ACTIONS(1393), [anon_sym_DOLLARtypefrom] = ACTIONS(1393), - [anon_sym_DOLLARvatype] = ACTIONS(1393), [anon_sym_DOLLARevaltype] = ACTIONS(1393), + [anon_sym_DOLLARvatype] = ACTIONS(1393), [sym_real_literal] = ACTIONS(1395), }, - [593] = { - [sym_line_comment] = STATE(593), - [sym_doc_comment] = STATE(593), - [sym_block_comment] = STATE(593), + [609] = { + [sym_line_comment] = STATE(609), + [sym_doc_comment] = STATE(609), + [sym_block_comment] = STATE(609), [sym_ident] = ACTIONS(1397), [sym_integer_literal] = ACTIONS(1399), [anon_sym_SQUOTE] = ACTIONS(1399), @@ -93682,7 +95610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1399), [sym_bytes_literal] = ACTIONS(1399), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1397), [sym_at_ident] = ACTIONS(1399), @@ -93723,20 +95651,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1397), [anon_sym_DOLLARecho] = ACTIONS(1397), [anon_sym_DOLLARif] = ACTIONS(1397), - [anon_sym_DOLLARendif] = ACTIONS(1397), [anon_sym_DOLLARswitch] = ACTIONS(1397), [anon_sym_DOLLARfor] = ACTIONS(1397), + [anon_sym_DOLLARendfor] = ACTIONS(1397), [anon_sym_DOLLARforeach] = ACTIONS(1397), [anon_sym_DOLLARalignof] = ACTIONS(1397), [anon_sym_DOLLARextnameof] = ACTIONS(1397), [anon_sym_DOLLARnameof] = ACTIONS(1397), [anon_sym_DOLLARoffsetof] = ACTIONS(1397), [anon_sym_DOLLARqnameof] = ACTIONS(1397), - [anon_sym_DOLLAReval] = ACTIONS(1397), - [anon_sym_DOLLARdefined] = ACTIONS(1397), - [anon_sym_DOLLARsizeof] = ACTIONS(1397), - [anon_sym_DOLLARstringify] = ACTIONS(1397), - [anon_sym_DOLLARis_const] = ACTIONS(1397), [anon_sym_DOLLARvaconst] = ACTIONS(1397), [anon_sym_DOLLARvaarg] = ACTIONS(1397), [anon_sym_DOLLARvaref] = ACTIONS(1397), @@ -93745,11 +95668,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1397), [anon_sym_null] = ACTIONS(1397), [anon_sym_DOLLARvacount] = ACTIONS(1397), - [anon_sym_DOLLARfeature] = ACTIONS(1397), + [anon_sym_DOLLAReval] = ACTIONS(1397), + [anon_sym_DOLLARis_const] = ACTIONS(1397), + [anon_sym_DOLLARsizeof] = ACTIONS(1397), + [anon_sym_DOLLARstringify] = ACTIONS(1397), + [anon_sym_DOLLARappend] = ACTIONS(1397), + [anon_sym_DOLLARconcat] = ACTIONS(1397), + [anon_sym_DOLLARdefined] = ACTIONS(1397), + [anon_sym_DOLLARembed] = ACTIONS(1397), [anon_sym_DOLLARand] = ACTIONS(1397), [anon_sym_DOLLARor] = ACTIONS(1397), + [anon_sym_DOLLARfeature] = ACTIONS(1397), [anon_sym_DOLLARassignable] = ACTIONS(1397), - [anon_sym_DOLLARembed] = ACTIONS(1397), [anon_sym_BANG] = ACTIONS(1399), [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_PLUS_PLUS] = ACTIONS(1399), @@ -93780,14 +95710,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1397), [anon_sym_DOLLARtypeof] = ACTIONS(1397), [anon_sym_DOLLARtypefrom] = ACTIONS(1397), - [anon_sym_DOLLARvatype] = ACTIONS(1397), [anon_sym_DOLLARevaltype] = ACTIONS(1397), + [anon_sym_DOLLARvatype] = ACTIONS(1397), [sym_real_literal] = ACTIONS(1399), }, - [594] = { - [sym_line_comment] = STATE(594), - [sym_doc_comment] = STATE(594), - [sym_block_comment] = STATE(594), + [610] = { + [sym_line_comment] = STATE(610), + [sym_doc_comment] = STATE(610), + [sym_block_comment] = STATE(610), [sym_ident] = ACTIONS(1401), [sym_integer_literal] = ACTIONS(1403), [anon_sym_SQUOTE] = ACTIONS(1403), @@ -93795,7 +95725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1403), [sym_bytes_literal] = ACTIONS(1403), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1401), [sym_at_ident] = ACTIONS(1403), @@ -93836,20 +95766,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1401), [anon_sym_DOLLARecho] = ACTIONS(1401), [anon_sym_DOLLARif] = ACTIONS(1401), - [anon_sym_DOLLARendif] = ACTIONS(1401), [anon_sym_DOLLARswitch] = ACTIONS(1401), [anon_sym_DOLLARfor] = ACTIONS(1401), + [anon_sym_DOLLARendfor] = ACTIONS(1401), [anon_sym_DOLLARforeach] = ACTIONS(1401), [anon_sym_DOLLARalignof] = ACTIONS(1401), [anon_sym_DOLLARextnameof] = ACTIONS(1401), [anon_sym_DOLLARnameof] = ACTIONS(1401), [anon_sym_DOLLARoffsetof] = ACTIONS(1401), [anon_sym_DOLLARqnameof] = ACTIONS(1401), - [anon_sym_DOLLAReval] = ACTIONS(1401), - [anon_sym_DOLLARdefined] = ACTIONS(1401), - [anon_sym_DOLLARsizeof] = ACTIONS(1401), - [anon_sym_DOLLARstringify] = ACTIONS(1401), - [anon_sym_DOLLARis_const] = ACTIONS(1401), [anon_sym_DOLLARvaconst] = ACTIONS(1401), [anon_sym_DOLLARvaarg] = ACTIONS(1401), [anon_sym_DOLLARvaref] = ACTIONS(1401), @@ -93858,11 +95783,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1401), [anon_sym_null] = ACTIONS(1401), [anon_sym_DOLLARvacount] = ACTIONS(1401), - [anon_sym_DOLLARfeature] = ACTIONS(1401), + [anon_sym_DOLLAReval] = ACTIONS(1401), + [anon_sym_DOLLARis_const] = ACTIONS(1401), + [anon_sym_DOLLARsizeof] = ACTIONS(1401), + [anon_sym_DOLLARstringify] = ACTIONS(1401), + [anon_sym_DOLLARappend] = ACTIONS(1401), + [anon_sym_DOLLARconcat] = ACTIONS(1401), + [anon_sym_DOLLARdefined] = ACTIONS(1401), + [anon_sym_DOLLARembed] = ACTIONS(1401), [anon_sym_DOLLARand] = ACTIONS(1401), [anon_sym_DOLLARor] = ACTIONS(1401), + [anon_sym_DOLLARfeature] = ACTIONS(1401), [anon_sym_DOLLARassignable] = ACTIONS(1401), - [anon_sym_DOLLARembed] = ACTIONS(1401), [anon_sym_BANG] = ACTIONS(1403), [anon_sym_TILDE] = ACTIONS(1403), [anon_sym_PLUS_PLUS] = ACTIONS(1403), @@ -93873,712 +95805,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1401), [anon_sym_char] = ACTIONS(1401), [anon_sym_ichar] = ACTIONS(1401), - [anon_sym_short] = ACTIONS(1401), - [anon_sym_ushort] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_long] = ACTIONS(1401), - [anon_sym_ulong] = ACTIONS(1401), - [anon_sym_int128] = ACTIONS(1401), - [anon_sym_uint128] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_double] = ACTIONS(1401), - [anon_sym_float16] = ACTIONS(1401), - [anon_sym_bfloat16] = ACTIONS(1401), - [anon_sym_float128] = ACTIONS(1401), - [anon_sym_iptr] = ACTIONS(1401), - [anon_sym_uptr] = ACTIONS(1401), - [anon_sym_isz] = ACTIONS(1401), - [anon_sym_usz] = ACTIONS(1401), - [anon_sym_anyfault] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_DOLLARtypeof] = ACTIONS(1401), - [anon_sym_DOLLARtypefrom] = ACTIONS(1401), - [anon_sym_DOLLARvatype] = ACTIONS(1401), - [anon_sym_DOLLARevaltype] = ACTIONS(1401), - [sym_real_literal] = ACTIONS(1403), - }, - [595] = { - [sym_line_comment] = STATE(595), - [sym_doc_comment] = STATE(595), - [sym_block_comment] = STATE(595), - [sym_ident] = ACTIONS(1405), - [sym_integer_literal] = ACTIONS(1407), - [anon_sym_SQUOTE] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [anon_sym_BQUOTE] = ACTIONS(1407), - [sym_bytes_literal] = ACTIONS(1407), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1405), - [sym_at_ident] = ACTIONS(1407), - [sym_hash_ident] = ACTIONS(1407), - [sym_type_ident] = ACTIONS(1407), - [sym_ct_type_ident] = ACTIONS(1407), - [sym_const_ident] = ACTIONS(1405), - [sym_builtin] = ACTIONS(1407), - [anon_sym_LPAREN] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_static] = ACTIONS(1405), - [anon_sym_tlocal] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_fn] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_var] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_defer] = ACTIONS(1405), - [anon_sym_assert] = ACTIONS(1405), - [anon_sym_nextcase] = ACTIONS(1405), - [anon_sym_switch] = ACTIONS(1405), - [anon_sym_AMP_AMP] = ACTIONS(1407), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_foreach] = ACTIONS(1405), - [anon_sym_foreach_r] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1405), - [anon_sym_int] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_asm] = ACTIONS(1405), - [anon_sym_DOLLARassert] = ACTIONS(1405), - [anon_sym_DOLLARerror] = ACTIONS(1405), - [anon_sym_DOLLARecho] = ACTIONS(1405), - [anon_sym_DOLLARif] = ACTIONS(1405), - [anon_sym_DOLLARendif] = ACTIONS(1405), - [anon_sym_DOLLARswitch] = ACTIONS(1405), - [anon_sym_DOLLARfor] = ACTIONS(1405), - [anon_sym_DOLLARforeach] = ACTIONS(1405), - [anon_sym_DOLLARalignof] = ACTIONS(1405), - [anon_sym_DOLLARextnameof] = ACTIONS(1405), - [anon_sym_DOLLARnameof] = ACTIONS(1405), - [anon_sym_DOLLARoffsetof] = ACTIONS(1405), - [anon_sym_DOLLARqnameof] = ACTIONS(1405), - [anon_sym_DOLLAReval] = ACTIONS(1405), - [anon_sym_DOLLARdefined] = ACTIONS(1405), - [anon_sym_DOLLARsizeof] = ACTIONS(1405), - [anon_sym_DOLLARstringify] = ACTIONS(1405), - [anon_sym_DOLLARis_const] = ACTIONS(1405), - [anon_sym_DOLLARvaconst] = ACTIONS(1405), - [anon_sym_DOLLARvaarg] = ACTIONS(1405), - [anon_sym_DOLLARvaref] = ACTIONS(1405), - [anon_sym_DOLLARvaexpr] = ACTIONS(1405), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_null] = ACTIONS(1405), - [anon_sym_DOLLARvacount] = ACTIONS(1405), - [anon_sym_DOLLARfeature] = ACTIONS(1405), - [anon_sym_DOLLARand] = ACTIONS(1405), - [anon_sym_DOLLARor] = ACTIONS(1405), - [anon_sym_DOLLARassignable] = ACTIONS(1405), - [anon_sym_DOLLARembed] = ACTIONS(1405), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_typeid] = ACTIONS(1405), - [anon_sym_LBRACE_PIPE] = ACTIONS(1407), - [anon_sym_void] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_char] = ACTIONS(1405), - [anon_sym_ichar] = ACTIONS(1405), - [anon_sym_short] = ACTIONS(1405), - [anon_sym_ushort] = ACTIONS(1405), - [anon_sym_uint] = ACTIONS(1405), - [anon_sym_long] = ACTIONS(1405), - [anon_sym_ulong] = ACTIONS(1405), - [anon_sym_int128] = ACTIONS(1405), - [anon_sym_uint128] = ACTIONS(1405), - [anon_sym_float] = ACTIONS(1405), - [anon_sym_double] = ACTIONS(1405), - [anon_sym_float16] = ACTIONS(1405), - [anon_sym_bfloat16] = ACTIONS(1405), - [anon_sym_float128] = ACTIONS(1405), - [anon_sym_iptr] = ACTIONS(1405), - [anon_sym_uptr] = ACTIONS(1405), - [anon_sym_isz] = ACTIONS(1405), - [anon_sym_usz] = ACTIONS(1405), - [anon_sym_anyfault] = ACTIONS(1405), - [anon_sym_any] = ACTIONS(1405), - [anon_sym_DOLLARtypeof] = ACTIONS(1405), - [anon_sym_DOLLARtypefrom] = ACTIONS(1405), - [anon_sym_DOLLARvatype] = ACTIONS(1405), - [anon_sym_DOLLARevaltype] = ACTIONS(1405), - [sym_real_literal] = ACTIONS(1407), - }, - [596] = { - [sym_line_comment] = STATE(596), - [sym_doc_comment] = STATE(596), - [sym_block_comment] = STATE(596), - [sym_ident] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1679), - [anon_sym_BQUOTE] = ACTIONS(1679), - [sym_bytes_literal] = ACTIONS(1679), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1677), - [sym_at_ident] = ACTIONS(1679), - [sym_hash_ident] = ACTIONS(1679), - [sym_type_ident] = ACTIONS(1679), - [sym_ct_type_ident] = ACTIONS(1679), - [sym_const_ident] = ACTIONS(1677), - [sym_builtin] = ACTIONS(1679), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1677), - [anon_sym_static] = ACTIONS(1677), - [anon_sym_tlocal] = ACTIONS(1677), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_fn] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_const] = ACTIONS(1677), - [anon_sym_var] = ACTIONS(1677), - [anon_sym_return] = ACTIONS(1677), - [anon_sym_continue] = ACTIONS(1677), - [anon_sym_break] = ACTIONS(1677), - [anon_sym_defer] = ACTIONS(1677), - [anon_sym_assert] = ACTIONS(1677), - [anon_sym_nextcase] = ACTIONS(1677), - [anon_sym_switch] = ACTIONS(1677), - [anon_sym_AMP_AMP] = ACTIONS(1679), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_for] = ACTIONS(1677), - [anon_sym_foreach] = ACTIONS(1677), - [anon_sym_foreach_r] = ACTIONS(1677), - [anon_sym_while] = ACTIONS(1677), - [anon_sym_do] = ACTIONS(1677), - [anon_sym_int] = ACTIONS(1677), - [anon_sym_PLUS] = ACTIONS(1677), - [anon_sym_DASH] = ACTIONS(1677), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_asm] = ACTIONS(1677), - [anon_sym_DOLLARassert] = ACTIONS(1677), - [anon_sym_DOLLARerror] = ACTIONS(1677), - [anon_sym_DOLLARecho] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1677), - [anon_sym_DOLLARswitch] = ACTIONS(1677), - [anon_sym_DOLLARfor] = ACTIONS(1677), - [anon_sym_DOLLARendfor] = ACTIONS(1677), - [anon_sym_DOLLARforeach] = ACTIONS(1677), - [anon_sym_DOLLARalignof] = ACTIONS(1677), - [anon_sym_DOLLARextnameof] = ACTIONS(1677), - [anon_sym_DOLLARnameof] = ACTIONS(1677), - [anon_sym_DOLLARoffsetof] = ACTIONS(1677), - [anon_sym_DOLLARqnameof] = ACTIONS(1677), - [anon_sym_DOLLAReval] = ACTIONS(1677), - [anon_sym_DOLLARdefined] = ACTIONS(1677), - [anon_sym_DOLLARsizeof] = ACTIONS(1677), - [anon_sym_DOLLARstringify] = ACTIONS(1677), - [anon_sym_DOLLARis_const] = ACTIONS(1677), - [anon_sym_DOLLARvaconst] = ACTIONS(1677), - [anon_sym_DOLLARvaarg] = ACTIONS(1677), - [anon_sym_DOLLARvaref] = ACTIONS(1677), - [anon_sym_DOLLARvaexpr] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1677), - [anon_sym_false] = ACTIONS(1677), - [anon_sym_null] = ACTIONS(1677), - [anon_sym_DOLLARvacount] = ACTIONS(1677), - [anon_sym_DOLLARfeature] = ACTIONS(1677), - [anon_sym_DOLLARand] = ACTIONS(1677), - [anon_sym_DOLLARor] = ACTIONS(1677), - [anon_sym_DOLLARassignable] = ACTIONS(1677), - [anon_sym_DOLLARembed] = ACTIONS(1677), - [anon_sym_BANG] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1679), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), - [anon_sym_typeid] = ACTIONS(1677), - [anon_sym_LBRACE_PIPE] = ACTIONS(1679), - [anon_sym_void] = ACTIONS(1677), - [anon_sym_bool] = ACTIONS(1677), - [anon_sym_char] = ACTIONS(1677), - [anon_sym_ichar] = ACTIONS(1677), - [anon_sym_short] = ACTIONS(1677), - [anon_sym_ushort] = ACTIONS(1677), - [anon_sym_uint] = ACTIONS(1677), - [anon_sym_long] = ACTIONS(1677), - [anon_sym_ulong] = ACTIONS(1677), - [anon_sym_int128] = ACTIONS(1677), - [anon_sym_uint128] = ACTIONS(1677), - [anon_sym_float] = ACTIONS(1677), - [anon_sym_double] = ACTIONS(1677), - [anon_sym_float16] = ACTIONS(1677), - [anon_sym_bfloat16] = ACTIONS(1677), - [anon_sym_float128] = ACTIONS(1677), - [anon_sym_iptr] = ACTIONS(1677), - [anon_sym_uptr] = ACTIONS(1677), - [anon_sym_isz] = ACTIONS(1677), - [anon_sym_usz] = ACTIONS(1677), - [anon_sym_anyfault] = ACTIONS(1677), - [anon_sym_any] = ACTIONS(1677), - [anon_sym_DOLLARtypeof] = ACTIONS(1677), - [anon_sym_DOLLARtypefrom] = ACTIONS(1677), - [anon_sym_DOLLARvatype] = ACTIONS(1677), - [anon_sym_DOLLARevaltype] = ACTIONS(1677), - [sym_real_literal] = ACTIONS(1679), - }, - [597] = { - [sym_line_comment] = STATE(597), - [sym_doc_comment] = STATE(597), - [sym_block_comment] = STATE(597), - [sym_ident] = ACTIONS(1681), - [sym_integer_literal] = ACTIONS(1683), - [anon_sym_SQUOTE] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(1683), - [anon_sym_BQUOTE] = ACTIONS(1683), - [sym_bytes_literal] = ACTIONS(1683), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1681), - [sym_at_ident] = ACTIONS(1683), - [sym_hash_ident] = ACTIONS(1683), - [sym_type_ident] = ACTIONS(1683), - [sym_ct_type_ident] = ACTIONS(1683), - [sym_const_ident] = ACTIONS(1681), - [sym_builtin] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_static] = ACTIONS(1681), - [anon_sym_tlocal] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_fn] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [anon_sym_var] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_defer] = ACTIONS(1681), - [anon_sym_assert] = ACTIONS(1681), - [anon_sym_nextcase] = ACTIONS(1681), - [anon_sym_switch] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1683), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_foreach] = ACTIONS(1681), - [anon_sym_foreach_r] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1681), - [anon_sym_int] = ACTIONS(1681), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1683), - [anon_sym_asm] = ACTIONS(1681), - [anon_sym_DOLLARassert] = ACTIONS(1681), - [anon_sym_DOLLARerror] = ACTIONS(1681), - [anon_sym_DOLLARecho] = ACTIONS(1681), - [anon_sym_DOLLARif] = ACTIONS(1681), - [anon_sym_DOLLARswitch] = ACTIONS(1681), - [anon_sym_DOLLARfor] = ACTIONS(1681), - [anon_sym_DOLLARendfor] = ACTIONS(1681), - [anon_sym_DOLLARforeach] = ACTIONS(1681), - [anon_sym_DOLLARalignof] = ACTIONS(1681), - [anon_sym_DOLLARextnameof] = ACTIONS(1681), - [anon_sym_DOLLARnameof] = ACTIONS(1681), - [anon_sym_DOLLARoffsetof] = ACTIONS(1681), - [anon_sym_DOLLARqnameof] = ACTIONS(1681), - [anon_sym_DOLLAReval] = ACTIONS(1681), - [anon_sym_DOLLARdefined] = ACTIONS(1681), - [anon_sym_DOLLARsizeof] = ACTIONS(1681), - [anon_sym_DOLLARstringify] = ACTIONS(1681), - [anon_sym_DOLLARis_const] = ACTIONS(1681), - [anon_sym_DOLLARvaconst] = ACTIONS(1681), - [anon_sym_DOLLARvaarg] = ACTIONS(1681), - [anon_sym_DOLLARvaref] = ACTIONS(1681), - [anon_sym_DOLLARvaexpr] = ACTIONS(1681), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_null] = ACTIONS(1681), - [anon_sym_DOLLARvacount] = ACTIONS(1681), - [anon_sym_DOLLARfeature] = ACTIONS(1681), - [anon_sym_DOLLARand] = ACTIONS(1681), - [anon_sym_DOLLARor] = ACTIONS(1681), - [anon_sym_DOLLARassignable] = ACTIONS(1681), - [anon_sym_DOLLARembed] = ACTIONS(1681), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_typeid] = ACTIONS(1681), - [anon_sym_LBRACE_PIPE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1681), - [anon_sym_bool] = ACTIONS(1681), - [anon_sym_char] = ACTIONS(1681), - [anon_sym_ichar] = ACTIONS(1681), - [anon_sym_short] = ACTIONS(1681), - [anon_sym_ushort] = ACTIONS(1681), - [anon_sym_uint] = ACTIONS(1681), - [anon_sym_long] = ACTIONS(1681), - [anon_sym_ulong] = ACTIONS(1681), - [anon_sym_int128] = ACTIONS(1681), - [anon_sym_uint128] = ACTIONS(1681), - [anon_sym_float] = ACTIONS(1681), - [anon_sym_double] = ACTIONS(1681), - [anon_sym_float16] = ACTIONS(1681), - [anon_sym_bfloat16] = ACTIONS(1681), - [anon_sym_float128] = ACTIONS(1681), - [anon_sym_iptr] = ACTIONS(1681), - [anon_sym_uptr] = ACTIONS(1681), - [anon_sym_isz] = ACTIONS(1681), - [anon_sym_usz] = ACTIONS(1681), - [anon_sym_anyfault] = ACTIONS(1681), - [anon_sym_any] = ACTIONS(1681), - [anon_sym_DOLLARtypeof] = ACTIONS(1681), - [anon_sym_DOLLARtypefrom] = ACTIONS(1681), - [anon_sym_DOLLARvatype] = ACTIONS(1681), - [anon_sym_DOLLARevaltype] = ACTIONS(1681), - [sym_real_literal] = ACTIONS(1683), - }, - [598] = { - [sym_line_comment] = STATE(598), - [sym_doc_comment] = STATE(598), - [sym_block_comment] = STATE(598), - [sym_ident] = ACTIONS(1463), - [sym_integer_literal] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1465), - [sym_bytes_literal] = ACTIONS(1465), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1463), - [sym_at_ident] = ACTIONS(1465), - [sym_hash_ident] = ACTIONS(1465), - [sym_type_ident] = ACTIONS(1465), - [sym_ct_type_ident] = ACTIONS(1465), - [sym_const_ident] = ACTIONS(1463), - [sym_builtin] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_static] = ACTIONS(1463), - [anon_sym_tlocal] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_var] = ACTIONS(1463), - [anon_sym_return] = ACTIONS(1463), - [anon_sym_continue] = ACTIONS(1463), - [anon_sym_break] = ACTIONS(1463), - [anon_sym_defer] = ACTIONS(1463), - [anon_sym_assert] = ACTIONS(1463), - [anon_sym_nextcase] = ACTIONS(1463), - [anon_sym_switch] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1463), - [anon_sym_for] = ACTIONS(1463), - [anon_sym_foreach] = ACTIONS(1463), - [anon_sym_foreach_r] = ACTIONS(1463), - [anon_sym_while] = ACTIONS(1463), - [anon_sym_do] = ACTIONS(1463), - [anon_sym_int] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_asm] = ACTIONS(1463), - [anon_sym_DOLLARassert] = ACTIONS(1463), - [anon_sym_DOLLARerror] = ACTIONS(1463), - [anon_sym_DOLLARecho] = ACTIONS(1463), - [anon_sym_DOLLARif] = ACTIONS(1463), - [anon_sym_DOLLARendif] = ACTIONS(1463), - [anon_sym_DOLLARswitch] = ACTIONS(1463), - [anon_sym_DOLLARfor] = ACTIONS(1463), - [anon_sym_DOLLARforeach] = ACTIONS(1463), - [anon_sym_DOLLARalignof] = ACTIONS(1463), - [anon_sym_DOLLARextnameof] = ACTIONS(1463), - [anon_sym_DOLLARnameof] = ACTIONS(1463), - [anon_sym_DOLLARoffsetof] = ACTIONS(1463), - [anon_sym_DOLLARqnameof] = ACTIONS(1463), - [anon_sym_DOLLAReval] = ACTIONS(1463), - [anon_sym_DOLLARdefined] = ACTIONS(1463), - [anon_sym_DOLLARsizeof] = ACTIONS(1463), - [anon_sym_DOLLARstringify] = ACTIONS(1463), - [anon_sym_DOLLARis_const] = ACTIONS(1463), - [anon_sym_DOLLARvaconst] = ACTIONS(1463), - [anon_sym_DOLLARvaarg] = ACTIONS(1463), - [anon_sym_DOLLARvaref] = ACTIONS(1463), - [anon_sym_DOLLARvaexpr] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1463), - [anon_sym_false] = ACTIONS(1463), - [anon_sym_null] = ACTIONS(1463), - [anon_sym_DOLLARvacount] = ACTIONS(1463), - [anon_sym_DOLLARfeature] = ACTIONS(1463), - [anon_sym_DOLLARand] = ACTIONS(1463), - [anon_sym_DOLLARor] = ACTIONS(1463), - [anon_sym_DOLLARassignable] = ACTIONS(1463), - [anon_sym_DOLLARembed] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1465), - [anon_sym_PLUS_PLUS] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1465), - [anon_sym_typeid] = ACTIONS(1463), - [anon_sym_LBRACE_PIPE] = ACTIONS(1465), - [anon_sym_void] = ACTIONS(1463), - [anon_sym_bool] = ACTIONS(1463), - [anon_sym_char] = ACTIONS(1463), - [anon_sym_ichar] = ACTIONS(1463), - [anon_sym_short] = ACTIONS(1463), - [anon_sym_ushort] = ACTIONS(1463), - [anon_sym_uint] = ACTIONS(1463), - [anon_sym_long] = ACTIONS(1463), - [anon_sym_ulong] = ACTIONS(1463), - [anon_sym_int128] = ACTIONS(1463), - [anon_sym_uint128] = ACTIONS(1463), - [anon_sym_float] = ACTIONS(1463), - [anon_sym_double] = ACTIONS(1463), - [anon_sym_float16] = ACTIONS(1463), - [anon_sym_bfloat16] = ACTIONS(1463), - [anon_sym_float128] = ACTIONS(1463), - [anon_sym_iptr] = ACTIONS(1463), - [anon_sym_uptr] = ACTIONS(1463), - [anon_sym_isz] = ACTIONS(1463), - [anon_sym_usz] = ACTIONS(1463), - [anon_sym_anyfault] = ACTIONS(1463), - [anon_sym_any] = ACTIONS(1463), - [anon_sym_DOLLARtypeof] = ACTIONS(1463), - [anon_sym_DOLLARtypefrom] = ACTIONS(1463), - [anon_sym_DOLLARvatype] = ACTIONS(1463), - [anon_sym_DOLLARevaltype] = ACTIONS(1463), - [sym_real_literal] = ACTIONS(1465), - }, - [599] = { - [sym_line_comment] = STATE(599), - [sym_doc_comment] = STATE(599), - [sym_block_comment] = STATE(599), - [sym_ident] = ACTIONS(1503), - [sym_integer_literal] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_BQUOTE] = ACTIONS(1505), - [sym_bytes_literal] = ACTIONS(1505), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1503), - [sym_at_ident] = ACTIONS(1505), - [sym_hash_ident] = ACTIONS(1505), - [sym_type_ident] = ACTIONS(1505), - [sym_ct_type_ident] = ACTIONS(1505), - [sym_const_ident] = ACTIONS(1503), - [sym_builtin] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1503), - [anon_sym_tlocal] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym_fn] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_var] = ACTIONS(1503), - [anon_sym_return] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1503), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_defer] = ACTIONS(1503), - [anon_sym_assert] = ACTIONS(1503), - [anon_sym_nextcase] = ACTIONS(1503), - [anon_sym_switch] = ACTIONS(1503), - [anon_sym_AMP_AMP] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1503), - [anon_sym_for] = ACTIONS(1503), - [anon_sym_foreach] = ACTIONS(1503), - [anon_sym_foreach_r] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_do] = ACTIONS(1503), - [anon_sym_int] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_asm] = ACTIONS(1503), - [anon_sym_DOLLARassert] = ACTIONS(1503), - [anon_sym_DOLLARerror] = ACTIONS(1503), - [anon_sym_DOLLARecho] = ACTIONS(1503), - [anon_sym_DOLLARif] = ACTIONS(1503), - [anon_sym_DOLLARswitch] = ACTIONS(1503), - [anon_sym_DOLLARfor] = ACTIONS(1503), - [anon_sym_DOLLARendfor] = ACTIONS(1503), - [anon_sym_DOLLARforeach] = ACTIONS(1503), - [anon_sym_DOLLARalignof] = ACTIONS(1503), - [anon_sym_DOLLARextnameof] = ACTIONS(1503), - [anon_sym_DOLLARnameof] = ACTIONS(1503), - [anon_sym_DOLLARoffsetof] = ACTIONS(1503), - [anon_sym_DOLLARqnameof] = ACTIONS(1503), - [anon_sym_DOLLAReval] = ACTIONS(1503), - [anon_sym_DOLLARdefined] = ACTIONS(1503), - [anon_sym_DOLLARsizeof] = ACTIONS(1503), - [anon_sym_DOLLARstringify] = ACTIONS(1503), - [anon_sym_DOLLARis_const] = ACTIONS(1503), - [anon_sym_DOLLARvaconst] = ACTIONS(1503), - [anon_sym_DOLLARvaarg] = ACTIONS(1503), - [anon_sym_DOLLARvaref] = ACTIONS(1503), - [anon_sym_DOLLARvaexpr] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1503), - [anon_sym_false] = ACTIONS(1503), - [anon_sym_null] = ACTIONS(1503), - [anon_sym_DOLLARvacount] = ACTIONS(1503), - [anon_sym_DOLLARfeature] = ACTIONS(1503), - [anon_sym_DOLLARand] = ACTIONS(1503), - [anon_sym_DOLLARor] = ACTIONS(1503), - [anon_sym_DOLLARassignable] = ACTIONS(1503), - [anon_sym_DOLLARembed] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1505), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [anon_sym_typeid] = ACTIONS(1503), - [anon_sym_LBRACE_PIPE] = ACTIONS(1505), - [anon_sym_void] = ACTIONS(1503), - [anon_sym_bool] = ACTIONS(1503), - [anon_sym_char] = ACTIONS(1503), - [anon_sym_ichar] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [anon_sym_ushort] = ACTIONS(1503), - [anon_sym_uint] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_ulong] = ACTIONS(1503), - [anon_sym_int128] = ACTIONS(1503), - [anon_sym_uint128] = ACTIONS(1503), - [anon_sym_float] = ACTIONS(1503), - [anon_sym_double] = ACTIONS(1503), - [anon_sym_float16] = ACTIONS(1503), - [anon_sym_bfloat16] = ACTIONS(1503), - [anon_sym_float128] = ACTIONS(1503), - [anon_sym_iptr] = ACTIONS(1503), - [anon_sym_uptr] = ACTIONS(1503), - [anon_sym_isz] = ACTIONS(1503), - [anon_sym_usz] = ACTIONS(1503), - [anon_sym_anyfault] = ACTIONS(1503), - [anon_sym_any] = ACTIONS(1503), - [anon_sym_DOLLARtypeof] = ACTIONS(1503), - [anon_sym_DOLLARtypefrom] = ACTIONS(1503), - [anon_sym_DOLLARvatype] = ACTIONS(1503), - [anon_sym_DOLLARevaltype] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1401), + [anon_sym_ushort] = ACTIONS(1401), + [anon_sym_uint] = ACTIONS(1401), + [anon_sym_long] = ACTIONS(1401), + [anon_sym_ulong] = ACTIONS(1401), + [anon_sym_int128] = ACTIONS(1401), + [anon_sym_uint128] = ACTIONS(1401), + [anon_sym_float] = ACTIONS(1401), + [anon_sym_double] = ACTIONS(1401), + [anon_sym_float16] = ACTIONS(1401), + [anon_sym_bfloat16] = ACTIONS(1401), + [anon_sym_float128] = ACTIONS(1401), + [anon_sym_iptr] = ACTIONS(1401), + [anon_sym_uptr] = ACTIONS(1401), + [anon_sym_isz] = ACTIONS(1401), + [anon_sym_usz] = ACTIONS(1401), + [anon_sym_anyfault] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_DOLLARtypeof] = ACTIONS(1401), + [anon_sym_DOLLARtypefrom] = ACTIONS(1401), + [anon_sym_DOLLARevaltype] = ACTIONS(1401), + [anon_sym_DOLLARvatype] = ACTIONS(1401), + [sym_real_literal] = ACTIONS(1403), }, - [600] = { - [sym_line_comment] = STATE(600), - [sym_doc_comment] = STATE(600), - [sym_block_comment] = STATE(600), - [sym_ident] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1427), - [anon_sym_SQUOTE] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1427), - [anon_sym_BQUOTE] = ACTIONS(1427), - [sym_bytes_literal] = ACTIONS(1427), + [611] = { + [sym_line_comment] = STATE(611), + [sym_doc_comment] = STATE(611), + [sym_block_comment] = STATE(611), + [sym_ident] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_BQUOTE] = ACTIONS(1407), + [sym_bytes_literal] = ACTIONS(1407), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1425), - [sym_at_ident] = ACTIONS(1427), - [sym_hash_ident] = ACTIONS(1427), - [sym_type_ident] = ACTIONS(1427), - [sym_ct_type_ident] = ACTIONS(1427), - [sym_const_ident] = ACTIONS(1425), - [sym_builtin] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_tlocal] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_fn] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_var] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_defer] = ACTIONS(1425), - [anon_sym_assert] = ACTIONS(1425), - [anon_sym_nextcase] = ACTIONS(1425), - [anon_sym_switch] = ACTIONS(1425), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_foreach] = ACTIONS(1425), - [anon_sym_foreach_r] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_do] = ACTIONS(1425), - [anon_sym_int] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_asm] = ACTIONS(1425), - [anon_sym_DOLLARassert] = ACTIONS(1425), - [anon_sym_DOLLARerror] = ACTIONS(1425), - [anon_sym_DOLLARecho] = ACTIONS(1425), - [anon_sym_DOLLARif] = ACTIONS(1425), - [anon_sym_DOLLARswitch] = ACTIONS(1425), - [anon_sym_DOLLARfor] = ACTIONS(1425), - [anon_sym_DOLLARendfor] = ACTIONS(1425), - [anon_sym_DOLLARforeach] = ACTIONS(1425), - [anon_sym_DOLLARalignof] = ACTIONS(1425), - [anon_sym_DOLLARextnameof] = ACTIONS(1425), - [anon_sym_DOLLARnameof] = ACTIONS(1425), - [anon_sym_DOLLARoffsetof] = ACTIONS(1425), - [anon_sym_DOLLARqnameof] = ACTIONS(1425), - [anon_sym_DOLLAReval] = ACTIONS(1425), - [anon_sym_DOLLARdefined] = ACTIONS(1425), - [anon_sym_DOLLARsizeof] = ACTIONS(1425), - [anon_sym_DOLLARstringify] = ACTIONS(1425), - [anon_sym_DOLLARis_const] = ACTIONS(1425), - [anon_sym_DOLLARvaconst] = ACTIONS(1425), - [anon_sym_DOLLARvaarg] = ACTIONS(1425), - [anon_sym_DOLLARvaref] = ACTIONS(1425), - [anon_sym_DOLLARvaexpr] = ACTIONS(1425), - [anon_sym_true] = ACTIONS(1425), - [anon_sym_false] = ACTIONS(1425), - [anon_sym_null] = ACTIONS(1425), - [anon_sym_DOLLARvacount] = ACTIONS(1425), - [anon_sym_DOLLARfeature] = ACTIONS(1425), - [anon_sym_DOLLARand] = ACTIONS(1425), - [anon_sym_DOLLARor] = ACTIONS(1425), - [anon_sym_DOLLARassignable] = ACTIONS(1425), - [anon_sym_DOLLARembed] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_typeid] = ACTIONS(1425), - [anon_sym_LBRACE_PIPE] = ACTIONS(1427), - [anon_sym_void] = ACTIONS(1425), - [anon_sym_bool] = ACTIONS(1425), - [anon_sym_char] = ACTIONS(1425), - [anon_sym_ichar] = ACTIONS(1425), - [anon_sym_short] = ACTIONS(1425), - [anon_sym_ushort] = ACTIONS(1425), - [anon_sym_uint] = ACTIONS(1425), - [anon_sym_long] = ACTIONS(1425), - [anon_sym_ulong] = ACTIONS(1425), - [anon_sym_int128] = ACTIONS(1425), - [anon_sym_uint128] = ACTIONS(1425), - [anon_sym_float] = ACTIONS(1425), - [anon_sym_double] = ACTIONS(1425), - [anon_sym_float16] = ACTIONS(1425), - [anon_sym_bfloat16] = ACTIONS(1425), - [anon_sym_float128] = ACTIONS(1425), - [anon_sym_iptr] = ACTIONS(1425), - [anon_sym_uptr] = ACTIONS(1425), - [anon_sym_isz] = ACTIONS(1425), - [anon_sym_usz] = ACTIONS(1425), - [anon_sym_anyfault] = ACTIONS(1425), - [anon_sym_any] = ACTIONS(1425), - [anon_sym_DOLLARtypeof] = ACTIONS(1425), - [anon_sym_DOLLARtypefrom] = ACTIONS(1425), - [anon_sym_DOLLARvatype] = ACTIONS(1425), - [anon_sym_DOLLARevaltype] = ACTIONS(1425), - [sym_real_literal] = ACTIONS(1427), + [sym_ct_ident] = ACTIONS(1405), + [sym_at_ident] = ACTIONS(1407), + [sym_hash_ident] = ACTIONS(1407), + [sym_type_ident] = ACTIONS(1407), + [sym_ct_type_ident] = ACTIONS(1407), + [sym_const_ident] = ACTIONS(1405), + [sym_builtin] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_static] = ACTIONS(1405), + [anon_sym_tlocal] = ACTIONS(1405), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_fn] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_var] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1405), + [anon_sym_continue] = ACTIONS(1405), + [anon_sym_break] = ACTIONS(1405), + [anon_sym_defer] = ACTIONS(1405), + [anon_sym_assert] = ACTIONS(1405), + [anon_sym_nextcase] = ACTIONS(1405), + [anon_sym_switch] = ACTIONS(1405), + [anon_sym_AMP_AMP] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_foreach] = ACTIONS(1405), + [anon_sym_foreach_r] = ACTIONS(1405), + [anon_sym_while] = ACTIONS(1405), + [anon_sym_do] = ACTIONS(1405), + [anon_sym_int] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_asm] = ACTIONS(1405), + [anon_sym_DOLLARassert] = ACTIONS(1405), + [anon_sym_DOLLARerror] = ACTIONS(1405), + [anon_sym_DOLLARecho] = ACTIONS(1405), + [anon_sym_DOLLARif] = ACTIONS(1405), + [anon_sym_DOLLARswitch] = ACTIONS(1405), + [anon_sym_DOLLARfor] = ACTIONS(1405), + [anon_sym_DOLLARendfor] = ACTIONS(1405), + [anon_sym_DOLLARforeach] = ACTIONS(1405), + [anon_sym_DOLLARalignof] = ACTIONS(1405), + [anon_sym_DOLLARextnameof] = ACTIONS(1405), + [anon_sym_DOLLARnameof] = ACTIONS(1405), + [anon_sym_DOLLARoffsetof] = ACTIONS(1405), + [anon_sym_DOLLARqnameof] = ACTIONS(1405), + [anon_sym_DOLLARvaconst] = ACTIONS(1405), + [anon_sym_DOLLARvaarg] = ACTIONS(1405), + [anon_sym_DOLLARvaref] = ACTIONS(1405), + [anon_sym_DOLLARvaexpr] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1405), + [anon_sym_false] = ACTIONS(1405), + [anon_sym_null] = ACTIONS(1405), + [anon_sym_DOLLARvacount] = ACTIONS(1405), + [anon_sym_DOLLAReval] = ACTIONS(1405), + [anon_sym_DOLLARis_const] = ACTIONS(1405), + [anon_sym_DOLLARsizeof] = ACTIONS(1405), + [anon_sym_DOLLARstringify] = ACTIONS(1405), + [anon_sym_DOLLARappend] = ACTIONS(1405), + [anon_sym_DOLLARconcat] = ACTIONS(1405), + [anon_sym_DOLLARdefined] = ACTIONS(1405), + [anon_sym_DOLLARembed] = ACTIONS(1405), + [anon_sym_DOLLARand] = ACTIONS(1405), + [anon_sym_DOLLARor] = ACTIONS(1405), + [anon_sym_DOLLARfeature] = ACTIONS(1405), + [anon_sym_DOLLARassignable] = ACTIONS(1405), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1407), + [anon_sym_typeid] = ACTIONS(1405), + [anon_sym_LBRACE_PIPE] = ACTIONS(1407), + [anon_sym_void] = ACTIONS(1405), + [anon_sym_bool] = ACTIONS(1405), + [anon_sym_char] = ACTIONS(1405), + [anon_sym_ichar] = ACTIONS(1405), + [anon_sym_short] = ACTIONS(1405), + [anon_sym_ushort] = ACTIONS(1405), + [anon_sym_uint] = ACTIONS(1405), + [anon_sym_long] = ACTIONS(1405), + [anon_sym_ulong] = ACTIONS(1405), + [anon_sym_int128] = ACTIONS(1405), + [anon_sym_uint128] = ACTIONS(1405), + [anon_sym_float] = ACTIONS(1405), + [anon_sym_double] = ACTIONS(1405), + [anon_sym_float16] = ACTIONS(1405), + [anon_sym_bfloat16] = ACTIONS(1405), + [anon_sym_float128] = ACTIONS(1405), + [anon_sym_iptr] = ACTIONS(1405), + [anon_sym_uptr] = ACTIONS(1405), + [anon_sym_isz] = ACTIONS(1405), + [anon_sym_usz] = ACTIONS(1405), + [anon_sym_anyfault] = ACTIONS(1405), + [anon_sym_any] = ACTIONS(1405), + [anon_sym_DOLLARtypeof] = ACTIONS(1405), + [anon_sym_DOLLARtypefrom] = ACTIONS(1405), + [anon_sym_DOLLARevaltype] = ACTIONS(1405), + [anon_sym_DOLLARvatype] = ACTIONS(1405), + [sym_real_literal] = ACTIONS(1407), }, - [601] = { - [sym_line_comment] = STATE(601), - [sym_doc_comment] = STATE(601), - [sym_block_comment] = STATE(601), + [612] = { + [sym_line_comment] = STATE(612), + [sym_doc_comment] = STATE(612), + [sym_block_comment] = STATE(612), [sym_ident] = ACTIONS(1409), [sym_integer_literal] = ACTIONS(1411), [anon_sym_SQUOTE] = ACTIONS(1411), @@ -94586,7 +95955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1411), [sym_bytes_literal] = ACTIONS(1411), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1409), [sym_at_ident] = ACTIONS(1411), @@ -94627,20 +95996,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1409), [anon_sym_DOLLARecho] = ACTIONS(1409), [anon_sym_DOLLARif] = ACTIONS(1409), - [anon_sym_DOLLARendif] = ACTIONS(1409), [anon_sym_DOLLARswitch] = ACTIONS(1409), [anon_sym_DOLLARfor] = ACTIONS(1409), + [anon_sym_DOLLARendfor] = ACTIONS(1409), [anon_sym_DOLLARforeach] = ACTIONS(1409), [anon_sym_DOLLARalignof] = ACTIONS(1409), [anon_sym_DOLLARextnameof] = ACTIONS(1409), [anon_sym_DOLLARnameof] = ACTIONS(1409), [anon_sym_DOLLARoffsetof] = ACTIONS(1409), [anon_sym_DOLLARqnameof] = ACTIONS(1409), - [anon_sym_DOLLAReval] = ACTIONS(1409), - [anon_sym_DOLLARdefined] = ACTIONS(1409), - [anon_sym_DOLLARsizeof] = ACTIONS(1409), - [anon_sym_DOLLARstringify] = ACTIONS(1409), - [anon_sym_DOLLARis_const] = ACTIONS(1409), [anon_sym_DOLLARvaconst] = ACTIONS(1409), [anon_sym_DOLLARvaarg] = ACTIONS(1409), [anon_sym_DOLLARvaref] = ACTIONS(1409), @@ -94649,11 +96013,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1409), [anon_sym_null] = ACTIONS(1409), [anon_sym_DOLLARvacount] = ACTIONS(1409), - [anon_sym_DOLLARfeature] = ACTIONS(1409), + [anon_sym_DOLLAReval] = ACTIONS(1409), + [anon_sym_DOLLARis_const] = ACTIONS(1409), + [anon_sym_DOLLARsizeof] = ACTIONS(1409), + [anon_sym_DOLLARstringify] = ACTIONS(1409), + [anon_sym_DOLLARappend] = ACTIONS(1409), + [anon_sym_DOLLARconcat] = ACTIONS(1409), + [anon_sym_DOLLARdefined] = ACTIONS(1409), + [anon_sym_DOLLARembed] = ACTIONS(1409), [anon_sym_DOLLARand] = ACTIONS(1409), [anon_sym_DOLLARor] = ACTIONS(1409), + [anon_sym_DOLLARfeature] = ACTIONS(1409), [anon_sym_DOLLARassignable] = ACTIONS(1409), - [anon_sym_DOLLARembed] = ACTIONS(1409), [anon_sym_BANG] = ACTIONS(1411), [anon_sym_TILDE] = ACTIONS(1411), [anon_sym_PLUS_PLUS] = ACTIONS(1411), @@ -94684,127 +96055,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1409), [anon_sym_DOLLARtypeof] = ACTIONS(1409), [anon_sym_DOLLARtypefrom] = ACTIONS(1409), - [anon_sym_DOLLARvatype] = ACTIONS(1409), [anon_sym_DOLLARevaltype] = ACTIONS(1409), + [anon_sym_DOLLARvatype] = ACTIONS(1409), [sym_real_literal] = ACTIONS(1411), }, - [602] = { - [sym_line_comment] = STATE(602), - [sym_doc_comment] = STATE(602), - [sym_block_comment] = STATE(602), - [sym_ident] = ACTIONS(1631), - [sym_integer_literal] = ACTIONS(1633), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_bytes_literal] = ACTIONS(1633), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1631), - [sym_at_ident] = ACTIONS(1633), - [sym_hash_ident] = ACTIONS(1633), - [sym_type_ident] = ACTIONS(1633), - [sym_ct_type_ident] = ACTIONS(1633), - [sym_const_ident] = ACTIONS(1631), - [sym_builtin] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_AMP] = ACTIONS(1631), - [anon_sym_static] = ACTIONS(1631), - [anon_sym_tlocal] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_defer] = ACTIONS(1631), - [anon_sym_assert] = ACTIONS(1631), - [anon_sym_nextcase] = ACTIONS(1631), - [anon_sym_switch] = ACTIONS(1631), - [anon_sym_AMP_AMP] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_foreach] = ACTIONS(1631), - [anon_sym_foreach_r] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_int] = ACTIONS(1631), - [anon_sym_PLUS] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_asm] = ACTIONS(1631), - [anon_sym_DOLLARassert] = ACTIONS(1631), - [anon_sym_DOLLARerror] = ACTIONS(1631), - [anon_sym_DOLLARecho] = ACTIONS(1631), - [anon_sym_DOLLARif] = ACTIONS(1631), - [anon_sym_DOLLARswitch] = ACTIONS(1631), - [anon_sym_DOLLARfor] = ACTIONS(1631), - [anon_sym_DOLLARendfor] = ACTIONS(1631), - [anon_sym_DOLLARforeach] = ACTIONS(1631), - [anon_sym_DOLLARalignof] = ACTIONS(1631), - [anon_sym_DOLLARextnameof] = ACTIONS(1631), - [anon_sym_DOLLARnameof] = ACTIONS(1631), - [anon_sym_DOLLARoffsetof] = ACTIONS(1631), - [anon_sym_DOLLARqnameof] = ACTIONS(1631), - [anon_sym_DOLLAReval] = ACTIONS(1631), - [anon_sym_DOLLARdefined] = ACTIONS(1631), - [anon_sym_DOLLARsizeof] = ACTIONS(1631), - [anon_sym_DOLLARstringify] = ACTIONS(1631), - [anon_sym_DOLLARis_const] = ACTIONS(1631), - [anon_sym_DOLLARvaconst] = ACTIONS(1631), - [anon_sym_DOLLARvaarg] = ACTIONS(1631), - [anon_sym_DOLLARvaref] = ACTIONS(1631), - [anon_sym_DOLLARvaexpr] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1631), - [anon_sym_false] = ACTIONS(1631), - [anon_sym_null] = ACTIONS(1631), - [anon_sym_DOLLARvacount] = ACTIONS(1631), - [anon_sym_DOLLARfeature] = ACTIONS(1631), - [anon_sym_DOLLARand] = ACTIONS(1631), - [anon_sym_DOLLARor] = ACTIONS(1631), - [anon_sym_DOLLARassignable] = ACTIONS(1631), - [anon_sym_DOLLARembed] = ACTIONS(1631), - [anon_sym_BANG] = ACTIONS(1633), - [anon_sym_TILDE] = ACTIONS(1633), - [anon_sym_PLUS_PLUS] = ACTIONS(1633), - [anon_sym_DASH_DASH] = ACTIONS(1633), - [anon_sym_typeid] = ACTIONS(1631), - [anon_sym_LBRACE_PIPE] = ACTIONS(1633), - [anon_sym_void] = ACTIONS(1631), - [anon_sym_bool] = ACTIONS(1631), - [anon_sym_char] = ACTIONS(1631), - [anon_sym_ichar] = ACTIONS(1631), - [anon_sym_short] = ACTIONS(1631), - [anon_sym_ushort] = ACTIONS(1631), - [anon_sym_uint] = ACTIONS(1631), - [anon_sym_long] = ACTIONS(1631), - [anon_sym_ulong] = ACTIONS(1631), - [anon_sym_int128] = ACTIONS(1631), - [anon_sym_uint128] = ACTIONS(1631), - [anon_sym_float] = ACTIONS(1631), - [anon_sym_double] = ACTIONS(1631), - [anon_sym_float16] = ACTIONS(1631), - [anon_sym_bfloat16] = ACTIONS(1631), - [anon_sym_float128] = ACTIONS(1631), - [anon_sym_iptr] = ACTIONS(1631), - [anon_sym_uptr] = ACTIONS(1631), - [anon_sym_isz] = ACTIONS(1631), - [anon_sym_usz] = ACTIONS(1631), - [anon_sym_anyfault] = ACTIONS(1631), - [anon_sym_any] = ACTIONS(1631), - [anon_sym_DOLLARtypeof] = ACTIONS(1631), - [anon_sym_DOLLARtypefrom] = ACTIONS(1631), - [anon_sym_DOLLARvatype] = ACTIONS(1631), - [anon_sym_DOLLARevaltype] = ACTIONS(1631), - [sym_real_literal] = ACTIONS(1633), - }, - [603] = { - [sym_line_comment] = STATE(603), - [sym_doc_comment] = STATE(603), - [sym_block_comment] = STATE(603), + [613] = { + [sym_line_comment] = STATE(613), + [sym_doc_comment] = STATE(613), + [sym_block_comment] = STATE(613), [sym_ident] = ACTIONS(1413), [sym_integer_literal] = ACTIONS(1415), [anon_sym_SQUOTE] = ACTIONS(1415), @@ -94812,7 +96070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1415), [sym_bytes_literal] = ACTIONS(1415), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1413), [sym_at_ident] = ACTIONS(1415), @@ -94853,20 +96111,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1413), [anon_sym_DOLLARecho] = ACTIONS(1413), [anon_sym_DOLLARif] = ACTIONS(1413), - [anon_sym_DOLLARendif] = ACTIONS(1413), [anon_sym_DOLLARswitch] = ACTIONS(1413), [anon_sym_DOLLARfor] = ACTIONS(1413), + [anon_sym_DOLLARendfor] = ACTIONS(1413), [anon_sym_DOLLARforeach] = ACTIONS(1413), [anon_sym_DOLLARalignof] = ACTIONS(1413), [anon_sym_DOLLARextnameof] = ACTIONS(1413), [anon_sym_DOLLARnameof] = ACTIONS(1413), [anon_sym_DOLLARoffsetof] = ACTIONS(1413), [anon_sym_DOLLARqnameof] = ACTIONS(1413), - [anon_sym_DOLLAReval] = ACTIONS(1413), - [anon_sym_DOLLARdefined] = ACTIONS(1413), - [anon_sym_DOLLARsizeof] = ACTIONS(1413), - [anon_sym_DOLLARstringify] = ACTIONS(1413), - [anon_sym_DOLLARis_const] = ACTIONS(1413), [anon_sym_DOLLARvaconst] = ACTIONS(1413), [anon_sym_DOLLARvaarg] = ACTIONS(1413), [anon_sym_DOLLARvaref] = ACTIONS(1413), @@ -94875,11 +96128,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1413), [anon_sym_null] = ACTIONS(1413), [anon_sym_DOLLARvacount] = ACTIONS(1413), - [anon_sym_DOLLARfeature] = ACTIONS(1413), + [anon_sym_DOLLAReval] = ACTIONS(1413), + [anon_sym_DOLLARis_const] = ACTIONS(1413), + [anon_sym_DOLLARsizeof] = ACTIONS(1413), + [anon_sym_DOLLARstringify] = ACTIONS(1413), + [anon_sym_DOLLARappend] = ACTIONS(1413), + [anon_sym_DOLLARconcat] = ACTIONS(1413), + [anon_sym_DOLLARdefined] = ACTIONS(1413), + [anon_sym_DOLLARembed] = ACTIONS(1413), [anon_sym_DOLLARand] = ACTIONS(1413), [anon_sym_DOLLARor] = ACTIONS(1413), + [anon_sym_DOLLARfeature] = ACTIONS(1413), [anon_sym_DOLLARassignable] = ACTIONS(1413), - [anon_sym_DOLLARembed] = ACTIONS(1413), [anon_sym_BANG] = ACTIONS(1415), [anon_sym_TILDE] = ACTIONS(1415), [anon_sym_PLUS_PLUS] = ACTIONS(1415), @@ -94910,14 +96170,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1413), [anon_sym_DOLLARtypeof] = ACTIONS(1413), [anon_sym_DOLLARtypefrom] = ACTIONS(1413), - [anon_sym_DOLLARvatype] = ACTIONS(1413), [anon_sym_DOLLARevaltype] = ACTIONS(1413), + [anon_sym_DOLLARvatype] = ACTIONS(1413), [sym_real_literal] = ACTIONS(1415), }, - [604] = { - [sym_line_comment] = STATE(604), - [sym_doc_comment] = STATE(604), - [sym_block_comment] = STATE(604), + [614] = { + [sym_line_comment] = STATE(614), + [sym_doc_comment] = STATE(614), + [sym_block_comment] = STATE(614), [sym_ident] = ACTIONS(1417), [sym_integer_literal] = ACTIONS(1419), [anon_sym_SQUOTE] = ACTIONS(1419), @@ -94925,7 +96185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1419), [sym_bytes_literal] = ACTIONS(1419), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1417), [sym_at_ident] = ACTIONS(1419), @@ -94966,20 +96226,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1417), [anon_sym_DOLLARecho] = ACTIONS(1417), [anon_sym_DOLLARif] = ACTIONS(1417), - [anon_sym_DOLLARendif] = ACTIONS(1417), [anon_sym_DOLLARswitch] = ACTIONS(1417), [anon_sym_DOLLARfor] = ACTIONS(1417), + [anon_sym_DOLLARendfor] = ACTIONS(1417), [anon_sym_DOLLARforeach] = ACTIONS(1417), [anon_sym_DOLLARalignof] = ACTIONS(1417), [anon_sym_DOLLARextnameof] = ACTIONS(1417), [anon_sym_DOLLARnameof] = ACTIONS(1417), [anon_sym_DOLLARoffsetof] = ACTIONS(1417), [anon_sym_DOLLARqnameof] = ACTIONS(1417), - [anon_sym_DOLLAReval] = ACTIONS(1417), - [anon_sym_DOLLARdefined] = ACTIONS(1417), - [anon_sym_DOLLARsizeof] = ACTIONS(1417), - [anon_sym_DOLLARstringify] = ACTIONS(1417), - [anon_sym_DOLLARis_const] = ACTIONS(1417), [anon_sym_DOLLARvaconst] = ACTIONS(1417), [anon_sym_DOLLARvaarg] = ACTIONS(1417), [anon_sym_DOLLARvaref] = ACTIONS(1417), @@ -94988,11 +96243,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1417), [anon_sym_null] = ACTIONS(1417), [anon_sym_DOLLARvacount] = ACTIONS(1417), - [anon_sym_DOLLARfeature] = ACTIONS(1417), + [anon_sym_DOLLAReval] = ACTIONS(1417), + [anon_sym_DOLLARis_const] = ACTIONS(1417), + [anon_sym_DOLLARsizeof] = ACTIONS(1417), + [anon_sym_DOLLARstringify] = ACTIONS(1417), + [anon_sym_DOLLARappend] = ACTIONS(1417), + [anon_sym_DOLLARconcat] = ACTIONS(1417), + [anon_sym_DOLLARdefined] = ACTIONS(1417), + [anon_sym_DOLLARembed] = ACTIONS(1417), [anon_sym_DOLLARand] = ACTIONS(1417), [anon_sym_DOLLARor] = ACTIONS(1417), + [anon_sym_DOLLARfeature] = ACTIONS(1417), [anon_sym_DOLLARassignable] = ACTIONS(1417), - [anon_sym_DOLLARembed] = ACTIONS(1417), [anon_sym_BANG] = ACTIONS(1419), [anon_sym_TILDE] = ACTIONS(1419), [anon_sym_PLUS_PLUS] = ACTIONS(1419), @@ -95023,127 +96285,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1417), [anon_sym_DOLLARtypeof] = ACTIONS(1417), [anon_sym_DOLLARtypefrom] = ACTIONS(1417), - [anon_sym_DOLLARvatype] = ACTIONS(1417), [anon_sym_DOLLARevaltype] = ACTIONS(1417), + [anon_sym_DOLLARvatype] = ACTIONS(1417), [sym_real_literal] = ACTIONS(1419), }, - [605] = { - [sym_line_comment] = STATE(605), - [sym_doc_comment] = STATE(605), - [sym_block_comment] = STATE(605), - [sym_ident] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [anon_sym_BQUOTE] = ACTIONS(1629), - [sym_bytes_literal] = ACTIONS(1629), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1627), - [sym_at_ident] = ACTIONS(1629), - [sym_hash_ident] = ACTIONS(1629), - [sym_type_ident] = ACTIONS(1629), - [sym_ct_type_ident] = ACTIONS(1629), - [sym_const_ident] = ACTIONS(1627), - [sym_builtin] = ACTIONS(1629), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_AMP] = ACTIONS(1627), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_tlocal] = ACTIONS(1627), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_fn] = ACTIONS(1627), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_const] = ACTIONS(1627), - [anon_sym_var] = ACTIONS(1627), - [anon_sym_return] = ACTIONS(1627), - [anon_sym_continue] = ACTIONS(1627), - [anon_sym_break] = ACTIONS(1627), - [anon_sym_defer] = ACTIONS(1627), - [anon_sym_assert] = ACTIONS(1627), - [anon_sym_nextcase] = ACTIONS(1627), - [anon_sym_switch] = ACTIONS(1627), - [anon_sym_AMP_AMP] = ACTIONS(1629), - [anon_sym_if] = ACTIONS(1627), - [anon_sym_for] = ACTIONS(1627), - [anon_sym_foreach] = ACTIONS(1627), - [anon_sym_foreach_r] = ACTIONS(1627), - [anon_sym_while] = ACTIONS(1627), - [anon_sym_do] = ACTIONS(1627), - [anon_sym_int] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_STAR] = ACTIONS(1629), - [anon_sym_asm] = ACTIONS(1627), - [anon_sym_DOLLARassert] = ACTIONS(1627), - [anon_sym_DOLLARerror] = ACTIONS(1627), - [anon_sym_DOLLARecho] = ACTIONS(1627), - [anon_sym_DOLLARif] = ACTIONS(1627), - [anon_sym_DOLLARswitch] = ACTIONS(1627), - [anon_sym_DOLLARfor] = ACTIONS(1627), - [anon_sym_DOLLARendfor] = ACTIONS(1627), - [anon_sym_DOLLARforeach] = ACTIONS(1627), - [anon_sym_DOLLARalignof] = ACTIONS(1627), - [anon_sym_DOLLARextnameof] = ACTIONS(1627), - [anon_sym_DOLLARnameof] = ACTIONS(1627), - [anon_sym_DOLLARoffsetof] = ACTIONS(1627), - [anon_sym_DOLLARqnameof] = ACTIONS(1627), - [anon_sym_DOLLAReval] = ACTIONS(1627), - [anon_sym_DOLLARdefined] = ACTIONS(1627), - [anon_sym_DOLLARsizeof] = ACTIONS(1627), - [anon_sym_DOLLARstringify] = ACTIONS(1627), - [anon_sym_DOLLARis_const] = ACTIONS(1627), - [anon_sym_DOLLARvaconst] = ACTIONS(1627), - [anon_sym_DOLLARvaarg] = ACTIONS(1627), - [anon_sym_DOLLARvaref] = ACTIONS(1627), - [anon_sym_DOLLARvaexpr] = ACTIONS(1627), - [anon_sym_true] = ACTIONS(1627), - [anon_sym_false] = ACTIONS(1627), - [anon_sym_null] = ACTIONS(1627), - [anon_sym_DOLLARvacount] = ACTIONS(1627), - [anon_sym_DOLLARfeature] = ACTIONS(1627), - [anon_sym_DOLLARand] = ACTIONS(1627), - [anon_sym_DOLLARor] = ACTIONS(1627), - [anon_sym_DOLLARassignable] = ACTIONS(1627), - [anon_sym_DOLLARembed] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1629), - [anon_sym_TILDE] = ACTIONS(1629), - [anon_sym_PLUS_PLUS] = ACTIONS(1629), - [anon_sym_DASH_DASH] = ACTIONS(1629), - [anon_sym_typeid] = ACTIONS(1627), - [anon_sym_LBRACE_PIPE] = ACTIONS(1629), - [anon_sym_void] = ACTIONS(1627), - [anon_sym_bool] = ACTIONS(1627), - [anon_sym_char] = ACTIONS(1627), - [anon_sym_ichar] = ACTIONS(1627), - [anon_sym_short] = ACTIONS(1627), - [anon_sym_ushort] = ACTIONS(1627), - [anon_sym_uint] = ACTIONS(1627), - [anon_sym_long] = ACTIONS(1627), - [anon_sym_ulong] = ACTIONS(1627), - [anon_sym_int128] = ACTIONS(1627), - [anon_sym_uint128] = ACTIONS(1627), - [anon_sym_float] = ACTIONS(1627), - [anon_sym_double] = ACTIONS(1627), - [anon_sym_float16] = ACTIONS(1627), - [anon_sym_bfloat16] = ACTIONS(1627), - [anon_sym_float128] = ACTIONS(1627), - [anon_sym_iptr] = ACTIONS(1627), - [anon_sym_uptr] = ACTIONS(1627), - [anon_sym_isz] = ACTIONS(1627), - [anon_sym_usz] = ACTIONS(1627), - [anon_sym_anyfault] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_DOLLARtypeof] = ACTIONS(1627), - [anon_sym_DOLLARtypefrom] = ACTIONS(1627), - [anon_sym_DOLLARvatype] = ACTIONS(1627), - [anon_sym_DOLLARevaltype] = ACTIONS(1627), - [sym_real_literal] = ACTIONS(1629), - }, - [606] = { - [sym_line_comment] = STATE(606), - [sym_doc_comment] = STATE(606), - [sym_block_comment] = STATE(606), + [615] = { + [sym_line_comment] = STATE(615), + [sym_doc_comment] = STATE(615), + [sym_block_comment] = STATE(615), [sym_ident] = ACTIONS(1421), [sym_integer_literal] = ACTIONS(1423), [anon_sym_SQUOTE] = ACTIONS(1423), @@ -95151,7 +96300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1423), [sym_bytes_literal] = ACTIONS(1423), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1421), [sym_at_ident] = ACTIONS(1423), @@ -95192,410 +96341,303 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1421), [anon_sym_DOLLARecho] = ACTIONS(1421), [anon_sym_DOLLARif] = ACTIONS(1421), - [anon_sym_DOLLARendif] = ACTIONS(1421), [anon_sym_DOLLARswitch] = ACTIONS(1421), [anon_sym_DOLLARfor] = ACTIONS(1421), + [anon_sym_DOLLARendfor] = ACTIONS(1421), [anon_sym_DOLLARforeach] = ACTIONS(1421), - [anon_sym_DOLLARalignof] = ACTIONS(1421), - [anon_sym_DOLLARextnameof] = ACTIONS(1421), - [anon_sym_DOLLARnameof] = ACTIONS(1421), - [anon_sym_DOLLARoffsetof] = ACTIONS(1421), - [anon_sym_DOLLARqnameof] = ACTIONS(1421), - [anon_sym_DOLLAReval] = ACTIONS(1421), - [anon_sym_DOLLARdefined] = ACTIONS(1421), - [anon_sym_DOLLARsizeof] = ACTIONS(1421), - [anon_sym_DOLLARstringify] = ACTIONS(1421), - [anon_sym_DOLLARis_const] = ACTIONS(1421), - [anon_sym_DOLLARvaconst] = ACTIONS(1421), - [anon_sym_DOLLARvaarg] = ACTIONS(1421), - [anon_sym_DOLLARvaref] = ACTIONS(1421), - [anon_sym_DOLLARvaexpr] = ACTIONS(1421), - [anon_sym_true] = ACTIONS(1421), - [anon_sym_false] = ACTIONS(1421), - [anon_sym_null] = ACTIONS(1421), - [anon_sym_DOLLARvacount] = ACTIONS(1421), - [anon_sym_DOLLARfeature] = ACTIONS(1421), - [anon_sym_DOLLARand] = ACTIONS(1421), - [anon_sym_DOLLARor] = ACTIONS(1421), - [anon_sym_DOLLARassignable] = ACTIONS(1421), - [anon_sym_DOLLARembed] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_TILDE] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1423), - [anon_sym_typeid] = ACTIONS(1421), - [anon_sym_LBRACE_PIPE] = ACTIONS(1423), - [anon_sym_void] = ACTIONS(1421), - [anon_sym_bool] = ACTIONS(1421), - [anon_sym_char] = ACTIONS(1421), - [anon_sym_ichar] = ACTIONS(1421), - [anon_sym_short] = ACTIONS(1421), - [anon_sym_ushort] = ACTIONS(1421), - [anon_sym_uint] = ACTIONS(1421), - [anon_sym_long] = ACTIONS(1421), - [anon_sym_ulong] = ACTIONS(1421), - [anon_sym_int128] = ACTIONS(1421), - [anon_sym_uint128] = ACTIONS(1421), - [anon_sym_float] = ACTIONS(1421), - [anon_sym_double] = ACTIONS(1421), - [anon_sym_float16] = ACTIONS(1421), - [anon_sym_bfloat16] = ACTIONS(1421), - [anon_sym_float128] = ACTIONS(1421), - [anon_sym_iptr] = ACTIONS(1421), - [anon_sym_uptr] = ACTIONS(1421), - [anon_sym_isz] = ACTIONS(1421), - [anon_sym_usz] = ACTIONS(1421), - [anon_sym_anyfault] = ACTIONS(1421), - [anon_sym_any] = ACTIONS(1421), - [anon_sym_DOLLARtypeof] = ACTIONS(1421), - [anon_sym_DOLLARtypefrom] = ACTIONS(1421), - [anon_sym_DOLLARvatype] = ACTIONS(1421), - [anon_sym_DOLLARevaltype] = ACTIONS(1421), - [sym_real_literal] = ACTIONS(1423), - }, - [607] = { - [sym_line_comment] = STATE(607), - [sym_doc_comment] = STATE(607), - [sym_block_comment] = STATE(607), - [sym_ident] = ACTIONS(1619), - [sym_integer_literal] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_BQUOTE] = ACTIONS(1621), - [sym_bytes_literal] = ACTIONS(1621), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1619), - [sym_at_ident] = ACTIONS(1621), - [sym_hash_ident] = ACTIONS(1621), - [sym_type_ident] = ACTIONS(1621), - [sym_ct_type_ident] = ACTIONS(1621), - [sym_const_ident] = ACTIONS(1619), - [sym_builtin] = ACTIONS(1621), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_static] = ACTIONS(1619), - [anon_sym_tlocal] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_fn] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1619), - [anon_sym_const] = ACTIONS(1619), - [anon_sym_var] = ACTIONS(1619), - [anon_sym_return] = ACTIONS(1619), - [anon_sym_continue] = ACTIONS(1619), - [anon_sym_break] = ACTIONS(1619), - [anon_sym_defer] = ACTIONS(1619), - [anon_sym_assert] = ACTIONS(1619), - [anon_sym_nextcase] = ACTIONS(1619), - [anon_sym_switch] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1619), - [anon_sym_for] = ACTIONS(1619), - [anon_sym_foreach] = ACTIONS(1619), - [anon_sym_foreach_r] = ACTIONS(1619), - [anon_sym_while] = ACTIONS(1619), - [anon_sym_do] = ACTIONS(1619), - [anon_sym_int] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_asm] = ACTIONS(1619), - [anon_sym_DOLLARassert] = ACTIONS(1619), - [anon_sym_DOLLARerror] = ACTIONS(1619), - [anon_sym_DOLLARecho] = ACTIONS(1619), - [anon_sym_DOLLARif] = ACTIONS(1619), - [anon_sym_DOLLARswitch] = ACTIONS(1619), - [anon_sym_DOLLARfor] = ACTIONS(1619), - [anon_sym_DOLLARendfor] = ACTIONS(1619), - [anon_sym_DOLLARforeach] = ACTIONS(1619), - [anon_sym_DOLLARalignof] = ACTIONS(1619), - [anon_sym_DOLLARextnameof] = ACTIONS(1619), - [anon_sym_DOLLARnameof] = ACTIONS(1619), - [anon_sym_DOLLARoffsetof] = ACTIONS(1619), - [anon_sym_DOLLARqnameof] = ACTIONS(1619), - [anon_sym_DOLLAReval] = ACTIONS(1619), - [anon_sym_DOLLARdefined] = ACTIONS(1619), - [anon_sym_DOLLARsizeof] = ACTIONS(1619), - [anon_sym_DOLLARstringify] = ACTIONS(1619), - [anon_sym_DOLLARis_const] = ACTIONS(1619), - [anon_sym_DOLLARvaconst] = ACTIONS(1619), - [anon_sym_DOLLARvaarg] = ACTIONS(1619), - [anon_sym_DOLLARvaref] = ACTIONS(1619), - [anon_sym_DOLLARvaexpr] = ACTIONS(1619), - [anon_sym_true] = ACTIONS(1619), - [anon_sym_false] = ACTIONS(1619), - [anon_sym_null] = ACTIONS(1619), - [anon_sym_DOLLARvacount] = ACTIONS(1619), - [anon_sym_DOLLARfeature] = ACTIONS(1619), - [anon_sym_DOLLARand] = ACTIONS(1619), - [anon_sym_DOLLARor] = ACTIONS(1619), - [anon_sym_DOLLARassignable] = ACTIONS(1619), - [anon_sym_DOLLARembed] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_typeid] = ACTIONS(1619), - [anon_sym_LBRACE_PIPE] = ACTIONS(1621), - [anon_sym_void] = ACTIONS(1619), - [anon_sym_bool] = ACTIONS(1619), - [anon_sym_char] = ACTIONS(1619), - [anon_sym_ichar] = ACTIONS(1619), - [anon_sym_short] = ACTIONS(1619), - [anon_sym_ushort] = ACTIONS(1619), - [anon_sym_uint] = ACTIONS(1619), - [anon_sym_long] = ACTIONS(1619), - [anon_sym_ulong] = ACTIONS(1619), - [anon_sym_int128] = ACTIONS(1619), - [anon_sym_uint128] = ACTIONS(1619), - [anon_sym_float] = ACTIONS(1619), - [anon_sym_double] = ACTIONS(1619), - [anon_sym_float16] = ACTIONS(1619), - [anon_sym_bfloat16] = ACTIONS(1619), - [anon_sym_float128] = ACTIONS(1619), - [anon_sym_iptr] = ACTIONS(1619), - [anon_sym_uptr] = ACTIONS(1619), - [anon_sym_isz] = ACTIONS(1619), - [anon_sym_usz] = ACTIONS(1619), - [anon_sym_anyfault] = ACTIONS(1619), - [anon_sym_any] = ACTIONS(1619), - [anon_sym_DOLLARtypeof] = ACTIONS(1619), - [anon_sym_DOLLARtypefrom] = ACTIONS(1619), - [anon_sym_DOLLARvatype] = ACTIONS(1619), - [anon_sym_DOLLARevaltype] = ACTIONS(1619), - [sym_real_literal] = ACTIONS(1621), - }, - [608] = { - [sym_line_comment] = STATE(608), - [sym_doc_comment] = STATE(608), - [sym_block_comment] = STATE(608), - [sym_ident] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1435), - [anon_sym_DQUOTE] = ACTIONS(1435), - [anon_sym_BQUOTE] = ACTIONS(1435), - [sym_bytes_literal] = ACTIONS(1435), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1433), - [sym_at_ident] = ACTIONS(1435), - [sym_hash_ident] = ACTIONS(1435), - [sym_type_ident] = ACTIONS(1435), - [sym_ct_type_ident] = ACTIONS(1435), - [sym_const_ident] = ACTIONS(1433), - [sym_builtin] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_tlocal] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_var] = ACTIONS(1433), - [anon_sym_return] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_defer] = ACTIONS(1433), - [anon_sym_assert] = ACTIONS(1433), - [anon_sym_nextcase] = ACTIONS(1433), - [anon_sym_switch] = ACTIONS(1433), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_foreach] = ACTIONS(1433), - [anon_sym_foreach_r] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_do] = ACTIONS(1433), - [anon_sym_int] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_asm] = ACTIONS(1433), - [anon_sym_DOLLARassert] = ACTIONS(1433), - [anon_sym_DOLLARerror] = ACTIONS(1433), - [anon_sym_DOLLARecho] = ACTIONS(1433), - [anon_sym_DOLLARif] = ACTIONS(1433), - [anon_sym_DOLLARendif] = ACTIONS(1433), - [anon_sym_DOLLARswitch] = ACTIONS(1433), - [anon_sym_DOLLARfor] = ACTIONS(1433), - [anon_sym_DOLLARforeach] = ACTIONS(1433), - [anon_sym_DOLLARalignof] = ACTIONS(1433), - [anon_sym_DOLLARextnameof] = ACTIONS(1433), - [anon_sym_DOLLARnameof] = ACTIONS(1433), - [anon_sym_DOLLARoffsetof] = ACTIONS(1433), - [anon_sym_DOLLARqnameof] = ACTIONS(1433), - [anon_sym_DOLLAReval] = ACTIONS(1433), - [anon_sym_DOLLARdefined] = ACTIONS(1433), - [anon_sym_DOLLARsizeof] = ACTIONS(1433), - [anon_sym_DOLLARstringify] = ACTIONS(1433), - [anon_sym_DOLLARis_const] = ACTIONS(1433), - [anon_sym_DOLLARvaconst] = ACTIONS(1433), - [anon_sym_DOLLARvaarg] = ACTIONS(1433), - [anon_sym_DOLLARvaref] = ACTIONS(1433), - [anon_sym_DOLLARvaexpr] = ACTIONS(1433), - [anon_sym_true] = ACTIONS(1433), - [anon_sym_false] = ACTIONS(1433), - [anon_sym_null] = ACTIONS(1433), - [anon_sym_DOLLARvacount] = ACTIONS(1433), - [anon_sym_DOLLARfeature] = ACTIONS(1433), - [anon_sym_DOLLARand] = ACTIONS(1433), - [anon_sym_DOLLARor] = ACTIONS(1433), - [anon_sym_DOLLARassignable] = ACTIONS(1433), - [anon_sym_DOLLARembed] = ACTIONS(1433), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_typeid] = ACTIONS(1433), - [anon_sym_LBRACE_PIPE] = ACTIONS(1435), - [anon_sym_void] = ACTIONS(1433), - [anon_sym_bool] = ACTIONS(1433), - [anon_sym_char] = ACTIONS(1433), - [anon_sym_ichar] = ACTIONS(1433), - [anon_sym_short] = ACTIONS(1433), - [anon_sym_ushort] = ACTIONS(1433), - [anon_sym_uint] = ACTIONS(1433), - [anon_sym_long] = ACTIONS(1433), - [anon_sym_ulong] = ACTIONS(1433), - [anon_sym_int128] = ACTIONS(1433), - [anon_sym_uint128] = ACTIONS(1433), - [anon_sym_float] = ACTIONS(1433), - [anon_sym_double] = ACTIONS(1433), - [anon_sym_float16] = ACTIONS(1433), - [anon_sym_bfloat16] = ACTIONS(1433), - [anon_sym_float128] = ACTIONS(1433), - [anon_sym_iptr] = ACTIONS(1433), - [anon_sym_uptr] = ACTIONS(1433), - [anon_sym_isz] = ACTIONS(1433), - [anon_sym_usz] = ACTIONS(1433), - [anon_sym_anyfault] = ACTIONS(1433), - [anon_sym_any] = ACTIONS(1433), - [anon_sym_DOLLARtypeof] = ACTIONS(1433), - [anon_sym_DOLLARtypefrom] = ACTIONS(1433), - [anon_sym_DOLLARvatype] = ACTIONS(1433), - [anon_sym_DOLLARevaltype] = ACTIONS(1433), - [sym_real_literal] = ACTIONS(1435), + [anon_sym_DOLLARalignof] = ACTIONS(1421), + [anon_sym_DOLLARextnameof] = ACTIONS(1421), + [anon_sym_DOLLARnameof] = ACTIONS(1421), + [anon_sym_DOLLARoffsetof] = ACTIONS(1421), + [anon_sym_DOLLARqnameof] = ACTIONS(1421), + [anon_sym_DOLLARvaconst] = ACTIONS(1421), + [anon_sym_DOLLARvaarg] = ACTIONS(1421), + [anon_sym_DOLLARvaref] = ACTIONS(1421), + [anon_sym_DOLLARvaexpr] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [anon_sym_null] = ACTIONS(1421), + [anon_sym_DOLLARvacount] = ACTIONS(1421), + [anon_sym_DOLLAReval] = ACTIONS(1421), + [anon_sym_DOLLARis_const] = ACTIONS(1421), + [anon_sym_DOLLARsizeof] = ACTIONS(1421), + [anon_sym_DOLLARstringify] = ACTIONS(1421), + [anon_sym_DOLLARappend] = ACTIONS(1421), + [anon_sym_DOLLARconcat] = ACTIONS(1421), + [anon_sym_DOLLARdefined] = ACTIONS(1421), + [anon_sym_DOLLARembed] = ACTIONS(1421), + [anon_sym_DOLLARand] = ACTIONS(1421), + [anon_sym_DOLLARor] = ACTIONS(1421), + [anon_sym_DOLLARfeature] = ACTIONS(1421), + [anon_sym_DOLLARassignable] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(1423), + [anon_sym_PLUS_PLUS] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1423), + [anon_sym_typeid] = ACTIONS(1421), + [anon_sym_LBRACE_PIPE] = ACTIONS(1423), + [anon_sym_void] = ACTIONS(1421), + [anon_sym_bool] = ACTIONS(1421), + [anon_sym_char] = ACTIONS(1421), + [anon_sym_ichar] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_ushort] = ACTIONS(1421), + [anon_sym_uint] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_ulong] = ACTIONS(1421), + [anon_sym_int128] = ACTIONS(1421), + [anon_sym_uint128] = ACTIONS(1421), + [anon_sym_float] = ACTIONS(1421), + [anon_sym_double] = ACTIONS(1421), + [anon_sym_float16] = ACTIONS(1421), + [anon_sym_bfloat16] = ACTIONS(1421), + [anon_sym_float128] = ACTIONS(1421), + [anon_sym_iptr] = ACTIONS(1421), + [anon_sym_uptr] = ACTIONS(1421), + [anon_sym_isz] = ACTIONS(1421), + [anon_sym_usz] = ACTIONS(1421), + [anon_sym_anyfault] = ACTIONS(1421), + [anon_sym_any] = ACTIONS(1421), + [anon_sym_DOLLARtypeof] = ACTIONS(1421), + [anon_sym_DOLLARtypefrom] = ACTIONS(1421), + [anon_sym_DOLLARevaltype] = ACTIONS(1421), + [anon_sym_DOLLARvatype] = ACTIONS(1421), + [sym_real_literal] = ACTIONS(1423), }, - [609] = { - [sym_line_comment] = STATE(609), - [sym_doc_comment] = STATE(609), - [sym_block_comment] = STATE(609), - [sym_ident] = ACTIONS(1437), - [sym_integer_literal] = ACTIONS(1439), - [anon_sym_SQUOTE] = ACTIONS(1439), - [anon_sym_DQUOTE] = ACTIONS(1439), - [anon_sym_BQUOTE] = ACTIONS(1439), - [sym_bytes_literal] = ACTIONS(1439), + [616] = { + [sym_line_comment] = STATE(616), + [sym_doc_comment] = STATE(616), + [sym_block_comment] = STATE(616), + [sym_ident] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(1427), + [anon_sym_BQUOTE] = ACTIONS(1427), + [sym_bytes_literal] = ACTIONS(1427), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1437), - [sym_at_ident] = ACTIONS(1439), - [sym_hash_ident] = ACTIONS(1439), - [sym_type_ident] = ACTIONS(1439), - [sym_ct_type_ident] = ACTIONS(1439), - [sym_const_ident] = ACTIONS(1437), - [sym_builtin] = ACTIONS(1439), - [anon_sym_LPAREN] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_tlocal] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1439), - [anon_sym_fn] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_var] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_defer] = ACTIONS(1437), - [anon_sym_assert] = ACTIONS(1437), - [anon_sym_nextcase] = ACTIONS(1437), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_foreach] = ACTIONS(1437), - [anon_sym_foreach_r] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_do] = ACTIONS(1437), - [anon_sym_int] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_asm] = ACTIONS(1437), - [anon_sym_DOLLARassert] = ACTIONS(1437), - [anon_sym_DOLLARerror] = ACTIONS(1437), - [anon_sym_DOLLARecho] = ACTIONS(1437), - [anon_sym_DOLLARif] = ACTIONS(1437), - [anon_sym_DOLLARendif] = ACTIONS(1437), - [anon_sym_DOLLARswitch] = ACTIONS(1437), - [anon_sym_DOLLARfor] = ACTIONS(1437), - [anon_sym_DOLLARforeach] = ACTIONS(1437), - [anon_sym_DOLLARalignof] = ACTIONS(1437), - [anon_sym_DOLLARextnameof] = ACTIONS(1437), - [anon_sym_DOLLARnameof] = ACTIONS(1437), - [anon_sym_DOLLARoffsetof] = ACTIONS(1437), - [anon_sym_DOLLARqnameof] = ACTIONS(1437), - [anon_sym_DOLLAReval] = ACTIONS(1437), - [anon_sym_DOLLARdefined] = ACTIONS(1437), - [anon_sym_DOLLARsizeof] = ACTIONS(1437), - [anon_sym_DOLLARstringify] = ACTIONS(1437), - [anon_sym_DOLLARis_const] = ACTIONS(1437), - [anon_sym_DOLLARvaconst] = ACTIONS(1437), - [anon_sym_DOLLARvaarg] = ACTIONS(1437), - [anon_sym_DOLLARvaref] = ACTIONS(1437), - [anon_sym_DOLLARvaexpr] = ACTIONS(1437), - [anon_sym_true] = ACTIONS(1437), - [anon_sym_false] = ACTIONS(1437), - [anon_sym_null] = ACTIONS(1437), - [anon_sym_DOLLARvacount] = ACTIONS(1437), - [anon_sym_DOLLARfeature] = ACTIONS(1437), - [anon_sym_DOLLARand] = ACTIONS(1437), - [anon_sym_DOLLARor] = ACTIONS(1437), - [anon_sym_DOLLARassignable] = ACTIONS(1437), - [anon_sym_DOLLARembed] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_TILDE] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_typeid] = ACTIONS(1437), - [anon_sym_LBRACE_PIPE] = ACTIONS(1439), - [anon_sym_void] = ACTIONS(1437), - [anon_sym_bool] = ACTIONS(1437), - [anon_sym_char] = ACTIONS(1437), - [anon_sym_ichar] = ACTIONS(1437), - [anon_sym_short] = ACTIONS(1437), - [anon_sym_ushort] = ACTIONS(1437), - [anon_sym_uint] = ACTIONS(1437), - [anon_sym_long] = ACTIONS(1437), - [anon_sym_ulong] = ACTIONS(1437), - [anon_sym_int128] = ACTIONS(1437), - [anon_sym_uint128] = ACTIONS(1437), - [anon_sym_float] = ACTIONS(1437), - [anon_sym_double] = ACTIONS(1437), - [anon_sym_float16] = ACTIONS(1437), - [anon_sym_bfloat16] = ACTIONS(1437), - [anon_sym_float128] = ACTIONS(1437), - [anon_sym_iptr] = ACTIONS(1437), - [anon_sym_uptr] = ACTIONS(1437), - [anon_sym_isz] = ACTIONS(1437), - [anon_sym_usz] = ACTIONS(1437), - [anon_sym_anyfault] = ACTIONS(1437), - [anon_sym_any] = ACTIONS(1437), - [anon_sym_DOLLARtypeof] = ACTIONS(1437), - [anon_sym_DOLLARtypefrom] = ACTIONS(1437), - [anon_sym_DOLLARvatype] = ACTIONS(1437), - [anon_sym_DOLLARevaltype] = ACTIONS(1437), - [sym_real_literal] = ACTIONS(1439), + [sym_ct_ident] = ACTIONS(1425), + [sym_at_ident] = ACTIONS(1427), + [sym_hash_ident] = ACTIONS(1427), + [sym_type_ident] = ACTIONS(1427), + [sym_ct_type_ident] = ACTIONS(1427), + [sym_const_ident] = ACTIONS(1425), + [sym_builtin] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_tlocal] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_fn] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_var] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_defer] = ACTIONS(1425), + [anon_sym_assert] = ACTIONS(1425), + [anon_sym_nextcase] = ACTIONS(1425), + [anon_sym_switch] = ACTIONS(1425), + [anon_sym_AMP_AMP] = ACTIONS(1427), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_foreach] = ACTIONS(1425), + [anon_sym_foreach_r] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_int] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_asm] = ACTIONS(1425), + [anon_sym_DOLLARassert] = ACTIONS(1425), + [anon_sym_DOLLARerror] = ACTIONS(1425), + [anon_sym_DOLLARecho] = ACTIONS(1425), + [anon_sym_DOLLARif] = ACTIONS(1425), + [anon_sym_DOLLARswitch] = ACTIONS(1425), + [anon_sym_DOLLARfor] = ACTIONS(1425), + [anon_sym_DOLLARendfor] = ACTIONS(1425), + [anon_sym_DOLLARforeach] = ACTIONS(1425), + [anon_sym_DOLLARalignof] = ACTIONS(1425), + [anon_sym_DOLLARextnameof] = ACTIONS(1425), + [anon_sym_DOLLARnameof] = ACTIONS(1425), + [anon_sym_DOLLARoffsetof] = ACTIONS(1425), + [anon_sym_DOLLARqnameof] = ACTIONS(1425), + [anon_sym_DOLLARvaconst] = ACTIONS(1425), + [anon_sym_DOLLARvaarg] = ACTIONS(1425), + [anon_sym_DOLLARvaref] = ACTIONS(1425), + [anon_sym_DOLLARvaexpr] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_DOLLARvacount] = ACTIONS(1425), + [anon_sym_DOLLAReval] = ACTIONS(1425), + [anon_sym_DOLLARis_const] = ACTIONS(1425), + [anon_sym_DOLLARsizeof] = ACTIONS(1425), + [anon_sym_DOLLARstringify] = ACTIONS(1425), + [anon_sym_DOLLARappend] = ACTIONS(1425), + [anon_sym_DOLLARconcat] = ACTIONS(1425), + [anon_sym_DOLLARdefined] = ACTIONS(1425), + [anon_sym_DOLLARembed] = ACTIONS(1425), + [anon_sym_DOLLARand] = ACTIONS(1425), + [anon_sym_DOLLARor] = ACTIONS(1425), + [anon_sym_DOLLARfeature] = ACTIONS(1425), + [anon_sym_DOLLARassignable] = ACTIONS(1425), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1427), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_typeid] = ACTIONS(1425), + [anon_sym_LBRACE_PIPE] = ACTIONS(1427), + [anon_sym_void] = ACTIONS(1425), + [anon_sym_bool] = ACTIONS(1425), + [anon_sym_char] = ACTIONS(1425), + [anon_sym_ichar] = ACTIONS(1425), + [anon_sym_short] = ACTIONS(1425), + [anon_sym_ushort] = ACTIONS(1425), + [anon_sym_uint] = ACTIONS(1425), + [anon_sym_long] = ACTIONS(1425), + [anon_sym_ulong] = ACTIONS(1425), + [anon_sym_int128] = ACTIONS(1425), + [anon_sym_uint128] = ACTIONS(1425), + [anon_sym_float] = ACTIONS(1425), + [anon_sym_double] = ACTIONS(1425), + [anon_sym_float16] = ACTIONS(1425), + [anon_sym_bfloat16] = ACTIONS(1425), + [anon_sym_float128] = ACTIONS(1425), + [anon_sym_iptr] = ACTIONS(1425), + [anon_sym_uptr] = ACTIONS(1425), + [anon_sym_isz] = ACTIONS(1425), + [anon_sym_usz] = ACTIONS(1425), + [anon_sym_anyfault] = ACTIONS(1425), + [anon_sym_any] = ACTIONS(1425), + [anon_sym_DOLLARtypeof] = ACTIONS(1425), + [anon_sym_DOLLARtypefrom] = ACTIONS(1425), + [anon_sym_DOLLARevaltype] = ACTIONS(1425), + [anon_sym_DOLLARvatype] = ACTIONS(1425), + [sym_real_literal] = ACTIONS(1427), }, - [610] = { - [sym_line_comment] = STATE(610), - [sym_doc_comment] = STATE(610), - [sym_block_comment] = STATE(610), + [617] = { + [sym_line_comment] = STATE(617), + [sym_doc_comment] = STATE(617), + [sym_block_comment] = STATE(617), + [sym_ident] = ACTIONS(1429), + [sym_integer_literal] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [anon_sym_BQUOTE] = ACTIONS(1431), + [sym_bytes_literal] = ACTIONS(1431), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1429), + [sym_at_ident] = ACTIONS(1431), + [sym_hash_ident] = ACTIONS(1431), + [sym_type_ident] = ACTIONS(1431), + [sym_ct_type_ident] = ACTIONS(1431), + [sym_const_ident] = ACTIONS(1429), + [sym_builtin] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1429), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_tlocal] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_fn] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_var] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_defer] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1429), + [anon_sym_nextcase] = ACTIONS(1429), + [anon_sym_switch] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_foreach] = ACTIONS(1429), + [anon_sym_foreach_r] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_int] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_asm] = ACTIONS(1429), + [anon_sym_DOLLARassert] = ACTIONS(1429), + [anon_sym_DOLLARerror] = ACTIONS(1429), + [anon_sym_DOLLARecho] = ACTIONS(1429), + [anon_sym_DOLLARif] = ACTIONS(1429), + [anon_sym_DOLLARswitch] = ACTIONS(1429), + [anon_sym_DOLLARfor] = ACTIONS(1429), + [anon_sym_DOLLARendfor] = ACTIONS(1429), + [anon_sym_DOLLARforeach] = ACTIONS(1429), + [anon_sym_DOLLARalignof] = ACTIONS(1429), + [anon_sym_DOLLARextnameof] = ACTIONS(1429), + [anon_sym_DOLLARnameof] = ACTIONS(1429), + [anon_sym_DOLLARoffsetof] = ACTIONS(1429), + [anon_sym_DOLLARqnameof] = ACTIONS(1429), + [anon_sym_DOLLARvaconst] = ACTIONS(1429), + [anon_sym_DOLLARvaarg] = ACTIONS(1429), + [anon_sym_DOLLARvaref] = ACTIONS(1429), + [anon_sym_DOLLARvaexpr] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1429), + [anon_sym_DOLLARvacount] = ACTIONS(1429), + [anon_sym_DOLLAReval] = ACTIONS(1429), + [anon_sym_DOLLARis_const] = ACTIONS(1429), + [anon_sym_DOLLARsizeof] = ACTIONS(1429), + [anon_sym_DOLLARstringify] = ACTIONS(1429), + [anon_sym_DOLLARappend] = ACTIONS(1429), + [anon_sym_DOLLARconcat] = ACTIONS(1429), + [anon_sym_DOLLARdefined] = ACTIONS(1429), + [anon_sym_DOLLARembed] = ACTIONS(1429), + [anon_sym_DOLLARand] = ACTIONS(1429), + [anon_sym_DOLLARor] = ACTIONS(1429), + [anon_sym_DOLLARfeature] = ACTIONS(1429), + [anon_sym_DOLLARassignable] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_typeid] = ACTIONS(1429), + [anon_sym_LBRACE_PIPE] = ACTIONS(1431), + [anon_sym_void] = ACTIONS(1429), + [anon_sym_bool] = ACTIONS(1429), + [anon_sym_char] = ACTIONS(1429), + [anon_sym_ichar] = ACTIONS(1429), + [anon_sym_short] = ACTIONS(1429), + [anon_sym_ushort] = ACTIONS(1429), + [anon_sym_uint] = ACTIONS(1429), + [anon_sym_long] = ACTIONS(1429), + [anon_sym_ulong] = ACTIONS(1429), + [anon_sym_int128] = ACTIONS(1429), + [anon_sym_uint128] = ACTIONS(1429), + [anon_sym_float] = ACTIONS(1429), + [anon_sym_double] = ACTIONS(1429), + [anon_sym_float16] = ACTIONS(1429), + [anon_sym_bfloat16] = ACTIONS(1429), + [anon_sym_float128] = ACTIONS(1429), + [anon_sym_iptr] = ACTIONS(1429), + [anon_sym_uptr] = ACTIONS(1429), + [anon_sym_isz] = ACTIONS(1429), + [anon_sym_usz] = ACTIONS(1429), + [anon_sym_anyfault] = ACTIONS(1429), + [anon_sym_any] = ACTIONS(1429), + [anon_sym_DOLLARtypeof] = ACTIONS(1429), + [anon_sym_DOLLARtypefrom] = ACTIONS(1429), + [anon_sym_DOLLARevaltype] = ACTIONS(1429), + [anon_sym_DOLLARvatype] = ACTIONS(1429), + [sym_real_literal] = ACTIONS(1431), + }, + [618] = { + [sym_line_comment] = STATE(618), + [sym_doc_comment] = STATE(618), + [sym_block_comment] = STATE(618), [sym_ident] = ACTIONS(1441), [sym_integer_literal] = ACTIONS(1443), [anon_sym_SQUOTE] = ACTIONS(1443), @@ -95603,7 +96645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1443), [sym_bytes_literal] = ACTIONS(1443), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1441), [sym_at_ident] = ACTIONS(1443), @@ -95644,20 +96686,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1441), [anon_sym_DOLLARecho] = ACTIONS(1441), [anon_sym_DOLLARif] = ACTIONS(1441), - [anon_sym_DOLLARendif] = ACTIONS(1441), [anon_sym_DOLLARswitch] = ACTIONS(1441), [anon_sym_DOLLARfor] = ACTIONS(1441), + [anon_sym_DOLLARendfor] = ACTIONS(1441), [anon_sym_DOLLARforeach] = ACTIONS(1441), [anon_sym_DOLLARalignof] = ACTIONS(1441), [anon_sym_DOLLARextnameof] = ACTIONS(1441), [anon_sym_DOLLARnameof] = ACTIONS(1441), [anon_sym_DOLLARoffsetof] = ACTIONS(1441), [anon_sym_DOLLARqnameof] = ACTIONS(1441), - [anon_sym_DOLLAReval] = ACTIONS(1441), - [anon_sym_DOLLARdefined] = ACTIONS(1441), - [anon_sym_DOLLARsizeof] = ACTIONS(1441), - [anon_sym_DOLLARstringify] = ACTIONS(1441), - [anon_sym_DOLLARis_const] = ACTIONS(1441), [anon_sym_DOLLARvaconst] = ACTIONS(1441), [anon_sym_DOLLARvaarg] = ACTIONS(1441), [anon_sym_DOLLARvaref] = ACTIONS(1441), @@ -95666,11 +96703,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1441), [anon_sym_null] = ACTIONS(1441), [anon_sym_DOLLARvacount] = ACTIONS(1441), - [anon_sym_DOLLARfeature] = ACTIONS(1441), + [anon_sym_DOLLAReval] = ACTIONS(1441), + [anon_sym_DOLLARis_const] = ACTIONS(1441), + [anon_sym_DOLLARsizeof] = ACTIONS(1441), + [anon_sym_DOLLARstringify] = ACTIONS(1441), + [anon_sym_DOLLARappend] = ACTIONS(1441), + [anon_sym_DOLLARconcat] = ACTIONS(1441), + [anon_sym_DOLLARdefined] = ACTIONS(1441), + [anon_sym_DOLLARembed] = ACTIONS(1441), [anon_sym_DOLLARand] = ACTIONS(1441), [anon_sym_DOLLARor] = ACTIONS(1441), + [anon_sym_DOLLARfeature] = ACTIONS(1441), [anon_sym_DOLLARassignable] = ACTIONS(1441), - [anon_sym_DOLLARembed] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(1443), [anon_sym_TILDE] = ACTIONS(1443), [anon_sym_PLUS_PLUS] = ACTIONS(1443), @@ -95701,127 +96745,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1441), [anon_sym_DOLLARtypeof] = ACTIONS(1441), [anon_sym_DOLLARtypefrom] = ACTIONS(1441), - [anon_sym_DOLLARvatype] = ACTIONS(1441), [anon_sym_DOLLARevaltype] = ACTIONS(1441), + [anon_sym_DOLLARvatype] = ACTIONS(1441), [sym_real_literal] = ACTIONS(1443), }, - [611] = { - [sym_line_comment] = STATE(611), - [sym_doc_comment] = STATE(611), - [sym_block_comment] = STATE(611), - [sym_ident] = ACTIONS(1453), - [sym_integer_literal] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [anon_sym_BQUOTE] = ACTIONS(1455), - [sym_bytes_literal] = ACTIONS(1455), + [619] = { + [sym_line_comment] = STATE(619), + [sym_doc_comment] = STATE(619), + [sym_block_comment] = STATE(619), + [sym_ident] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [anon_sym_BQUOTE] = ACTIONS(1447), + [sym_bytes_literal] = ACTIONS(1447), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1445), + [sym_at_ident] = ACTIONS(1447), + [sym_hash_ident] = ACTIONS(1447), + [sym_type_ident] = ACTIONS(1447), + [sym_ct_type_ident] = ACTIONS(1447), + [sym_const_ident] = ACTIONS(1445), + [sym_builtin] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_tlocal] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_var] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_defer] = ACTIONS(1445), + [anon_sym_assert] = ACTIONS(1445), + [anon_sym_nextcase] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_foreach] = ACTIONS(1445), + [anon_sym_foreach_r] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_int] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_asm] = ACTIONS(1445), + [anon_sym_DOLLARassert] = ACTIONS(1445), + [anon_sym_DOLLARerror] = ACTIONS(1445), + [anon_sym_DOLLARecho] = ACTIONS(1445), + [anon_sym_DOLLARif] = ACTIONS(1445), + [anon_sym_DOLLARswitch] = ACTIONS(1445), + [anon_sym_DOLLARfor] = ACTIONS(1445), + [anon_sym_DOLLARendfor] = ACTIONS(1445), + [anon_sym_DOLLARforeach] = ACTIONS(1445), + [anon_sym_DOLLARalignof] = ACTIONS(1445), + [anon_sym_DOLLARextnameof] = ACTIONS(1445), + [anon_sym_DOLLARnameof] = ACTIONS(1445), + [anon_sym_DOLLARoffsetof] = ACTIONS(1445), + [anon_sym_DOLLARqnameof] = ACTIONS(1445), + [anon_sym_DOLLARvaconst] = ACTIONS(1445), + [anon_sym_DOLLARvaarg] = ACTIONS(1445), + [anon_sym_DOLLARvaref] = ACTIONS(1445), + [anon_sym_DOLLARvaexpr] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_null] = ACTIONS(1445), + [anon_sym_DOLLARvacount] = ACTIONS(1445), + [anon_sym_DOLLAReval] = ACTIONS(1445), + [anon_sym_DOLLARis_const] = ACTIONS(1445), + [anon_sym_DOLLARsizeof] = ACTIONS(1445), + [anon_sym_DOLLARstringify] = ACTIONS(1445), + [anon_sym_DOLLARappend] = ACTIONS(1445), + [anon_sym_DOLLARconcat] = ACTIONS(1445), + [anon_sym_DOLLARdefined] = ACTIONS(1445), + [anon_sym_DOLLARembed] = ACTIONS(1445), + [anon_sym_DOLLARand] = ACTIONS(1445), + [anon_sym_DOLLARor] = ACTIONS(1445), + [anon_sym_DOLLARfeature] = ACTIONS(1445), + [anon_sym_DOLLARassignable] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_typeid] = ACTIONS(1445), + [anon_sym_LBRACE_PIPE] = ACTIONS(1447), + [anon_sym_void] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_ichar] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [anon_sym_ushort] = ACTIONS(1445), + [anon_sym_uint] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_ulong] = ACTIONS(1445), + [anon_sym_int128] = ACTIONS(1445), + [anon_sym_uint128] = ACTIONS(1445), + [anon_sym_float] = ACTIONS(1445), + [anon_sym_double] = ACTIONS(1445), + [anon_sym_float16] = ACTIONS(1445), + [anon_sym_bfloat16] = ACTIONS(1445), + [anon_sym_float128] = ACTIONS(1445), + [anon_sym_iptr] = ACTIONS(1445), + [anon_sym_uptr] = ACTIONS(1445), + [anon_sym_isz] = ACTIONS(1445), + [anon_sym_usz] = ACTIONS(1445), + [anon_sym_anyfault] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_DOLLARtypeof] = ACTIONS(1445), + [anon_sym_DOLLARtypefrom] = ACTIONS(1445), + [anon_sym_DOLLARevaltype] = ACTIONS(1445), + [anon_sym_DOLLARvatype] = ACTIONS(1445), + [sym_real_literal] = ACTIONS(1447), + }, + [620] = { + [sym_line_comment] = STATE(620), + [sym_doc_comment] = STATE(620), + [sym_block_comment] = STATE(620), + [sym_ident] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_BQUOTE] = ACTIONS(1451), + [sym_bytes_literal] = ACTIONS(1451), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1453), - [sym_at_ident] = ACTIONS(1455), - [sym_hash_ident] = ACTIONS(1455), - [sym_type_ident] = ACTIONS(1455), - [sym_ct_type_ident] = ACTIONS(1455), - [sym_const_ident] = ACTIONS(1453), - [sym_builtin] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1453), - [anon_sym_tlocal] = ACTIONS(1453), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym_fn] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [anon_sym_var] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_defer] = ACTIONS(1453), - [anon_sym_assert] = ACTIONS(1453), - [anon_sym_nextcase] = ACTIONS(1453), - [anon_sym_switch] = ACTIONS(1453), - [anon_sym_AMP_AMP] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_foreach] = ACTIONS(1453), - [anon_sym_foreach_r] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_int] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_asm] = ACTIONS(1453), - [anon_sym_DOLLARassert] = ACTIONS(1453), - [anon_sym_DOLLARerror] = ACTIONS(1453), - [anon_sym_DOLLARecho] = ACTIONS(1453), - [anon_sym_DOLLARif] = ACTIONS(1453), - [anon_sym_DOLLARendif] = ACTIONS(1453), - [anon_sym_DOLLARswitch] = ACTIONS(1453), - [anon_sym_DOLLARfor] = ACTIONS(1453), - [anon_sym_DOLLARforeach] = ACTIONS(1453), - [anon_sym_DOLLARalignof] = ACTIONS(1453), - [anon_sym_DOLLARextnameof] = ACTIONS(1453), - [anon_sym_DOLLARnameof] = ACTIONS(1453), - [anon_sym_DOLLARoffsetof] = ACTIONS(1453), - [anon_sym_DOLLARqnameof] = ACTIONS(1453), - [anon_sym_DOLLAReval] = ACTIONS(1453), - [anon_sym_DOLLARdefined] = ACTIONS(1453), - [anon_sym_DOLLARsizeof] = ACTIONS(1453), - [anon_sym_DOLLARstringify] = ACTIONS(1453), - [anon_sym_DOLLARis_const] = ACTIONS(1453), - [anon_sym_DOLLARvaconst] = ACTIONS(1453), - [anon_sym_DOLLARvaarg] = ACTIONS(1453), - [anon_sym_DOLLARvaref] = ACTIONS(1453), - [anon_sym_DOLLARvaexpr] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_DOLLARvacount] = ACTIONS(1453), - [anon_sym_DOLLARfeature] = ACTIONS(1453), - [anon_sym_DOLLARand] = ACTIONS(1453), - [anon_sym_DOLLARor] = ACTIONS(1453), - [anon_sym_DOLLARassignable] = ACTIONS(1453), - [anon_sym_DOLLARembed] = ACTIONS(1453), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_TILDE] = ACTIONS(1455), - [anon_sym_PLUS_PLUS] = ACTIONS(1455), - [anon_sym_DASH_DASH] = ACTIONS(1455), - [anon_sym_typeid] = ACTIONS(1453), - [anon_sym_LBRACE_PIPE] = ACTIONS(1455), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_bool] = ACTIONS(1453), - [anon_sym_char] = ACTIONS(1453), - [anon_sym_ichar] = ACTIONS(1453), - [anon_sym_short] = ACTIONS(1453), - [anon_sym_ushort] = ACTIONS(1453), - [anon_sym_uint] = ACTIONS(1453), - [anon_sym_long] = ACTIONS(1453), - [anon_sym_ulong] = ACTIONS(1453), - [anon_sym_int128] = ACTIONS(1453), - [anon_sym_uint128] = ACTIONS(1453), - [anon_sym_float] = ACTIONS(1453), - [anon_sym_double] = ACTIONS(1453), - [anon_sym_float16] = ACTIONS(1453), - [anon_sym_bfloat16] = ACTIONS(1453), - [anon_sym_float128] = ACTIONS(1453), - [anon_sym_iptr] = ACTIONS(1453), - [anon_sym_uptr] = ACTIONS(1453), - [anon_sym_isz] = ACTIONS(1453), - [anon_sym_usz] = ACTIONS(1453), - [anon_sym_anyfault] = ACTIONS(1453), - [anon_sym_any] = ACTIONS(1453), - [anon_sym_DOLLARtypeof] = ACTIONS(1453), - [anon_sym_DOLLARtypefrom] = ACTIONS(1453), - [anon_sym_DOLLARvatype] = ACTIONS(1453), - [anon_sym_DOLLARevaltype] = ACTIONS(1453), - [sym_real_literal] = ACTIONS(1455), + [sym_ct_ident] = ACTIONS(1449), + [sym_at_ident] = ACTIONS(1451), + [sym_hash_ident] = ACTIONS(1451), + [sym_type_ident] = ACTIONS(1451), + [sym_ct_type_ident] = ACTIONS(1451), + [sym_const_ident] = ACTIONS(1449), + [sym_builtin] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_tlocal] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_defer] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1449), + [anon_sym_nextcase] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_foreach] = ACTIONS(1449), + [anon_sym_foreach_r] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_int] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_asm] = ACTIONS(1449), + [anon_sym_DOLLARassert] = ACTIONS(1449), + [anon_sym_DOLLARerror] = ACTIONS(1449), + [anon_sym_DOLLARecho] = ACTIONS(1449), + [anon_sym_DOLLARif] = ACTIONS(1449), + [anon_sym_DOLLARswitch] = ACTIONS(1449), + [anon_sym_DOLLARfor] = ACTIONS(1449), + [anon_sym_DOLLARendfor] = ACTIONS(1449), + [anon_sym_DOLLARforeach] = ACTIONS(1449), + [anon_sym_DOLLARalignof] = ACTIONS(1449), + [anon_sym_DOLLARextnameof] = ACTIONS(1449), + [anon_sym_DOLLARnameof] = ACTIONS(1449), + [anon_sym_DOLLARoffsetof] = ACTIONS(1449), + [anon_sym_DOLLARqnameof] = ACTIONS(1449), + [anon_sym_DOLLARvaconst] = ACTIONS(1449), + [anon_sym_DOLLARvaarg] = ACTIONS(1449), + [anon_sym_DOLLARvaref] = ACTIONS(1449), + [anon_sym_DOLLARvaexpr] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_null] = ACTIONS(1449), + [anon_sym_DOLLARvacount] = ACTIONS(1449), + [anon_sym_DOLLAReval] = ACTIONS(1449), + [anon_sym_DOLLARis_const] = ACTIONS(1449), + [anon_sym_DOLLARsizeof] = ACTIONS(1449), + [anon_sym_DOLLARstringify] = ACTIONS(1449), + [anon_sym_DOLLARappend] = ACTIONS(1449), + [anon_sym_DOLLARconcat] = ACTIONS(1449), + [anon_sym_DOLLARdefined] = ACTIONS(1449), + [anon_sym_DOLLARembed] = ACTIONS(1449), + [anon_sym_DOLLARand] = ACTIONS(1449), + [anon_sym_DOLLARor] = ACTIONS(1449), + [anon_sym_DOLLARfeature] = ACTIONS(1449), + [anon_sym_DOLLARassignable] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_typeid] = ACTIONS(1449), + [anon_sym_LBRACE_PIPE] = ACTIONS(1451), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_ichar] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_ushort] = ACTIONS(1449), + [anon_sym_uint] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_ulong] = ACTIONS(1449), + [anon_sym_int128] = ACTIONS(1449), + [anon_sym_uint128] = ACTIONS(1449), + [anon_sym_float] = ACTIONS(1449), + [anon_sym_double] = ACTIONS(1449), + [anon_sym_float16] = ACTIONS(1449), + [anon_sym_bfloat16] = ACTIONS(1449), + [anon_sym_float128] = ACTIONS(1449), + [anon_sym_iptr] = ACTIONS(1449), + [anon_sym_uptr] = ACTIONS(1449), + [anon_sym_isz] = ACTIONS(1449), + [anon_sym_usz] = ACTIONS(1449), + [anon_sym_anyfault] = ACTIONS(1449), + [anon_sym_any] = ACTIONS(1449), + [anon_sym_DOLLARtypeof] = ACTIONS(1449), + [anon_sym_DOLLARtypefrom] = ACTIONS(1449), + [anon_sym_DOLLARevaltype] = ACTIONS(1449), + [anon_sym_DOLLARvatype] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1451), }, - [612] = { - [sym_line_comment] = STATE(612), - [sym_doc_comment] = STATE(612), - [sym_block_comment] = STATE(612), + [621] = { + [sym_line_comment] = STATE(621), + [sym_doc_comment] = STATE(621), + [sym_block_comment] = STATE(621), [sym_ident] = ACTIONS(1457), [sym_integer_literal] = ACTIONS(1459), [anon_sym_SQUOTE] = ACTIONS(1459), @@ -95829,7 +96990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1459), [sym_bytes_literal] = ACTIONS(1459), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1457), [sym_at_ident] = ACTIONS(1459), @@ -95870,20 +97031,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1457), [anon_sym_DOLLARecho] = ACTIONS(1457), [anon_sym_DOLLARif] = ACTIONS(1457), - [anon_sym_DOLLARendif] = ACTIONS(1457), [anon_sym_DOLLARswitch] = ACTIONS(1457), [anon_sym_DOLLARfor] = ACTIONS(1457), + [anon_sym_DOLLARendfor] = ACTIONS(1457), [anon_sym_DOLLARforeach] = ACTIONS(1457), [anon_sym_DOLLARalignof] = ACTIONS(1457), [anon_sym_DOLLARextnameof] = ACTIONS(1457), [anon_sym_DOLLARnameof] = ACTIONS(1457), [anon_sym_DOLLARoffsetof] = ACTIONS(1457), [anon_sym_DOLLARqnameof] = ACTIONS(1457), - [anon_sym_DOLLAReval] = ACTIONS(1457), - [anon_sym_DOLLARdefined] = ACTIONS(1457), - [anon_sym_DOLLARsizeof] = ACTIONS(1457), - [anon_sym_DOLLARstringify] = ACTIONS(1457), - [anon_sym_DOLLARis_const] = ACTIONS(1457), [anon_sym_DOLLARvaconst] = ACTIONS(1457), [anon_sym_DOLLARvaarg] = ACTIONS(1457), [anon_sym_DOLLARvaref] = ACTIONS(1457), @@ -95892,11 +97048,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1457), [anon_sym_null] = ACTIONS(1457), [anon_sym_DOLLARvacount] = ACTIONS(1457), - [anon_sym_DOLLARfeature] = ACTIONS(1457), + [anon_sym_DOLLAReval] = ACTIONS(1457), + [anon_sym_DOLLARis_const] = ACTIONS(1457), + [anon_sym_DOLLARsizeof] = ACTIONS(1457), + [anon_sym_DOLLARstringify] = ACTIONS(1457), + [anon_sym_DOLLARappend] = ACTIONS(1457), + [anon_sym_DOLLARconcat] = ACTIONS(1457), + [anon_sym_DOLLARdefined] = ACTIONS(1457), + [anon_sym_DOLLARembed] = ACTIONS(1457), [anon_sym_DOLLARand] = ACTIONS(1457), [anon_sym_DOLLARor] = ACTIONS(1457), + [anon_sym_DOLLARfeature] = ACTIONS(1457), [anon_sym_DOLLARassignable] = ACTIONS(1457), - [anon_sym_DOLLARembed] = ACTIONS(1457), [anon_sym_BANG] = ACTIONS(1459), [anon_sym_TILDE] = ACTIONS(1459), [anon_sym_PLUS_PLUS] = ACTIONS(1459), @@ -95927,8037 +97090,5994 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1457), [anon_sym_DOLLARtypeof] = ACTIONS(1457), [anon_sym_DOLLARtypefrom] = ACTIONS(1457), - [anon_sym_DOLLARvatype] = ACTIONS(1457), [anon_sym_DOLLARevaltype] = ACTIONS(1457), + [anon_sym_DOLLARvatype] = ACTIONS(1457), [sym_real_literal] = ACTIONS(1459), }, - [613] = { - [sym_line_comment] = STATE(613), - [sym_doc_comment] = STATE(613), - [sym_block_comment] = STATE(613), - [sym_ident] = ACTIONS(1615), - [sym_integer_literal] = ACTIONS(1617), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_DQUOTE] = ACTIONS(1617), - [anon_sym_BQUOTE] = ACTIONS(1617), - [sym_bytes_literal] = ACTIONS(1617), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1615), - [sym_at_ident] = ACTIONS(1617), - [sym_hash_ident] = ACTIONS(1617), - [sym_type_ident] = ACTIONS(1617), - [sym_ct_type_ident] = ACTIONS(1617), - [sym_const_ident] = ACTIONS(1615), - [sym_builtin] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1615), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_tlocal] = ACTIONS(1615), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_fn] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1615), - [anon_sym_const] = ACTIONS(1615), - [anon_sym_var] = ACTIONS(1615), - [anon_sym_return] = ACTIONS(1615), - [anon_sym_continue] = ACTIONS(1615), - [anon_sym_break] = ACTIONS(1615), - [anon_sym_defer] = ACTIONS(1615), - [anon_sym_assert] = ACTIONS(1615), - [anon_sym_nextcase] = ACTIONS(1615), - [anon_sym_switch] = ACTIONS(1615), - [anon_sym_AMP_AMP] = ACTIONS(1617), - [anon_sym_if] = ACTIONS(1615), - [anon_sym_for] = ACTIONS(1615), - [anon_sym_foreach] = ACTIONS(1615), - [anon_sym_foreach_r] = ACTIONS(1615), - [anon_sym_while] = ACTIONS(1615), - [anon_sym_do] = ACTIONS(1615), - [anon_sym_int] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1617), - [anon_sym_asm] = ACTIONS(1615), - [anon_sym_DOLLARassert] = ACTIONS(1615), - [anon_sym_DOLLARerror] = ACTIONS(1615), - [anon_sym_DOLLARecho] = ACTIONS(1615), - [anon_sym_DOLLARif] = ACTIONS(1615), - [anon_sym_DOLLARswitch] = ACTIONS(1615), - [anon_sym_DOLLARfor] = ACTIONS(1615), - [anon_sym_DOLLARendfor] = ACTIONS(1615), - [anon_sym_DOLLARforeach] = ACTIONS(1615), - [anon_sym_DOLLARalignof] = ACTIONS(1615), - [anon_sym_DOLLARextnameof] = ACTIONS(1615), - [anon_sym_DOLLARnameof] = ACTIONS(1615), - [anon_sym_DOLLARoffsetof] = ACTIONS(1615), - [anon_sym_DOLLARqnameof] = ACTIONS(1615), - [anon_sym_DOLLAReval] = ACTIONS(1615), - [anon_sym_DOLLARdefined] = ACTIONS(1615), - [anon_sym_DOLLARsizeof] = ACTIONS(1615), - [anon_sym_DOLLARstringify] = ACTIONS(1615), - [anon_sym_DOLLARis_const] = ACTIONS(1615), - [anon_sym_DOLLARvaconst] = ACTIONS(1615), - [anon_sym_DOLLARvaarg] = ACTIONS(1615), - [anon_sym_DOLLARvaref] = ACTIONS(1615), - [anon_sym_DOLLARvaexpr] = ACTIONS(1615), - [anon_sym_true] = ACTIONS(1615), - [anon_sym_false] = ACTIONS(1615), - [anon_sym_null] = ACTIONS(1615), - [anon_sym_DOLLARvacount] = ACTIONS(1615), - [anon_sym_DOLLARfeature] = ACTIONS(1615), - [anon_sym_DOLLARand] = ACTIONS(1615), - [anon_sym_DOLLARor] = ACTIONS(1615), - [anon_sym_DOLLARassignable] = ACTIONS(1615), - [anon_sym_DOLLARembed] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_typeid] = ACTIONS(1615), - [anon_sym_LBRACE_PIPE] = ACTIONS(1617), - [anon_sym_void] = ACTIONS(1615), - [anon_sym_bool] = ACTIONS(1615), - [anon_sym_char] = ACTIONS(1615), - [anon_sym_ichar] = ACTIONS(1615), - [anon_sym_short] = ACTIONS(1615), - [anon_sym_ushort] = ACTIONS(1615), - [anon_sym_uint] = ACTIONS(1615), - [anon_sym_long] = ACTIONS(1615), - [anon_sym_ulong] = ACTIONS(1615), - [anon_sym_int128] = ACTIONS(1615), - [anon_sym_uint128] = ACTIONS(1615), - [anon_sym_float] = ACTIONS(1615), - [anon_sym_double] = ACTIONS(1615), - [anon_sym_float16] = ACTIONS(1615), - [anon_sym_bfloat16] = ACTIONS(1615), - [anon_sym_float128] = ACTIONS(1615), - [anon_sym_iptr] = ACTIONS(1615), - [anon_sym_uptr] = ACTIONS(1615), - [anon_sym_isz] = ACTIONS(1615), - [anon_sym_usz] = ACTIONS(1615), - [anon_sym_anyfault] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_DOLLARtypeof] = ACTIONS(1615), - [anon_sym_DOLLARtypefrom] = ACTIONS(1615), - [anon_sym_DOLLARvatype] = ACTIONS(1615), - [anon_sym_DOLLARevaltype] = ACTIONS(1615), - [sym_real_literal] = ACTIONS(1617), - }, - [614] = { - [sym_line_comment] = STATE(614), - [sym_doc_comment] = STATE(614), - [sym_block_comment] = STATE(614), - [sym_ident] = ACTIONS(1491), - [sym_integer_literal] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_BQUOTE] = ACTIONS(1493), - [sym_bytes_literal] = ACTIONS(1493), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1491), - [sym_at_ident] = ACTIONS(1493), - [sym_hash_ident] = ACTIONS(1493), - [sym_type_ident] = ACTIONS(1493), - [sym_ct_type_ident] = ACTIONS(1493), - [sym_const_ident] = ACTIONS(1491), - [sym_builtin] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_tlocal] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_fn] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_var] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_defer] = ACTIONS(1491), - [anon_sym_assert] = ACTIONS(1491), - [anon_sym_nextcase] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_foreach] = ACTIONS(1491), - [anon_sym_foreach_r] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_int] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_asm] = ACTIONS(1491), - [anon_sym_DOLLARassert] = ACTIONS(1491), - [anon_sym_DOLLARerror] = ACTIONS(1491), - [anon_sym_DOLLARecho] = ACTIONS(1491), - [anon_sym_DOLLARif] = ACTIONS(1491), - [anon_sym_DOLLARendif] = ACTIONS(1491), - [anon_sym_DOLLARswitch] = ACTIONS(1491), - [anon_sym_DOLLARfor] = ACTIONS(1491), - [anon_sym_DOLLARforeach] = ACTIONS(1491), - [anon_sym_DOLLARalignof] = ACTIONS(1491), - [anon_sym_DOLLARextnameof] = ACTIONS(1491), - [anon_sym_DOLLARnameof] = ACTIONS(1491), - [anon_sym_DOLLARoffsetof] = ACTIONS(1491), - [anon_sym_DOLLARqnameof] = ACTIONS(1491), - [anon_sym_DOLLAReval] = ACTIONS(1491), - [anon_sym_DOLLARdefined] = ACTIONS(1491), - [anon_sym_DOLLARsizeof] = ACTIONS(1491), - [anon_sym_DOLLARstringify] = ACTIONS(1491), - [anon_sym_DOLLARis_const] = ACTIONS(1491), - [anon_sym_DOLLARvaconst] = ACTIONS(1491), - [anon_sym_DOLLARvaarg] = ACTIONS(1491), - [anon_sym_DOLLARvaref] = ACTIONS(1491), - [anon_sym_DOLLARvaexpr] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1491), - [anon_sym_DOLLARvacount] = ACTIONS(1491), - [anon_sym_DOLLARfeature] = ACTIONS(1491), - [anon_sym_DOLLARand] = ACTIONS(1491), - [anon_sym_DOLLARor] = ACTIONS(1491), - [anon_sym_DOLLARassignable] = ACTIONS(1491), - [anon_sym_DOLLARembed] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_typeid] = ACTIONS(1491), - [anon_sym_LBRACE_PIPE] = ACTIONS(1493), - [anon_sym_void] = ACTIONS(1491), - [anon_sym_bool] = ACTIONS(1491), - [anon_sym_char] = ACTIONS(1491), - [anon_sym_ichar] = ACTIONS(1491), - [anon_sym_short] = ACTIONS(1491), - [anon_sym_ushort] = ACTIONS(1491), - [anon_sym_uint] = ACTIONS(1491), - [anon_sym_long] = ACTIONS(1491), - [anon_sym_ulong] = ACTIONS(1491), - [anon_sym_int128] = ACTIONS(1491), - [anon_sym_uint128] = ACTIONS(1491), - [anon_sym_float] = ACTIONS(1491), - [anon_sym_double] = ACTIONS(1491), - [anon_sym_float16] = ACTIONS(1491), - [anon_sym_bfloat16] = ACTIONS(1491), - [anon_sym_float128] = ACTIONS(1491), - [anon_sym_iptr] = ACTIONS(1491), - [anon_sym_uptr] = ACTIONS(1491), - [anon_sym_isz] = ACTIONS(1491), - [anon_sym_usz] = ACTIONS(1491), - [anon_sym_anyfault] = ACTIONS(1491), - [anon_sym_any] = ACTIONS(1491), - [anon_sym_DOLLARtypeof] = ACTIONS(1491), - [anon_sym_DOLLARtypefrom] = ACTIONS(1491), - [anon_sym_DOLLARvatype] = ACTIONS(1491), - [anon_sym_DOLLARevaltype] = ACTIONS(1491), - [sym_real_literal] = ACTIONS(1493), - }, - [615] = { - [sym_line_comment] = STATE(615), - [sym_doc_comment] = STATE(615), - [sym_block_comment] = STATE(615), - [sym_ident] = ACTIONS(1607), - [sym_integer_literal] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1609), - [anon_sym_BQUOTE] = ACTIONS(1609), - [sym_bytes_literal] = ACTIONS(1609), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1607), - [sym_at_ident] = ACTIONS(1609), - [sym_hash_ident] = ACTIONS(1609), - [sym_type_ident] = ACTIONS(1609), - [sym_ct_type_ident] = ACTIONS(1609), - [sym_const_ident] = ACTIONS(1607), - [sym_builtin] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1607), - [anon_sym_tlocal] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_fn] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [anon_sym_var] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_defer] = ACTIONS(1607), - [anon_sym_assert] = ACTIONS(1607), - [anon_sym_nextcase] = ACTIONS(1607), - [anon_sym_switch] = ACTIONS(1607), - [anon_sym_AMP_AMP] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_foreach] = ACTIONS(1607), - [anon_sym_foreach_r] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [anon_sym_do] = ACTIONS(1607), - [anon_sym_int] = ACTIONS(1607), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1609), - [anon_sym_asm] = ACTIONS(1607), - [anon_sym_DOLLARassert] = ACTIONS(1607), - [anon_sym_DOLLARerror] = ACTIONS(1607), - [anon_sym_DOLLARecho] = ACTIONS(1607), - [anon_sym_DOLLARif] = ACTIONS(1607), - [anon_sym_DOLLARswitch] = ACTIONS(1607), - [anon_sym_DOLLARfor] = ACTIONS(1607), - [anon_sym_DOLLARendfor] = ACTIONS(1607), - [anon_sym_DOLLARforeach] = ACTIONS(1607), - [anon_sym_DOLLARalignof] = ACTIONS(1607), - [anon_sym_DOLLARextnameof] = ACTIONS(1607), - [anon_sym_DOLLARnameof] = ACTIONS(1607), - [anon_sym_DOLLARoffsetof] = ACTIONS(1607), - [anon_sym_DOLLARqnameof] = ACTIONS(1607), - [anon_sym_DOLLAReval] = ACTIONS(1607), - [anon_sym_DOLLARdefined] = ACTIONS(1607), - [anon_sym_DOLLARsizeof] = ACTIONS(1607), - [anon_sym_DOLLARstringify] = ACTIONS(1607), - [anon_sym_DOLLARis_const] = ACTIONS(1607), - [anon_sym_DOLLARvaconst] = ACTIONS(1607), - [anon_sym_DOLLARvaarg] = ACTIONS(1607), - [anon_sym_DOLLARvaref] = ACTIONS(1607), - [anon_sym_DOLLARvaexpr] = ACTIONS(1607), - [anon_sym_true] = ACTIONS(1607), - [anon_sym_false] = ACTIONS(1607), - [anon_sym_null] = ACTIONS(1607), - [anon_sym_DOLLARvacount] = ACTIONS(1607), - [anon_sym_DOLLARfeature] = ACTIONS(1607), - [anon_sym_DOLLARand] = ACTIONS(1607), - [anon_sym_DOLLARor] = ACTIONS(1607), - [anon_sym_DOLLARassignable] = ACTIONS(1607), - [anon_sym_DOLLARembed] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_TILDE] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym_typeid] = ACTIONS(1607), - [anon_sym_LBRACE_PIPE] = ACTIONS(1609), - [anon_sym_void] = ACTIONS(1607), - [anon_sym_bool] = ACTIONS(1607), - [anon_sym_char] = ACTIONS(1607), - [anon_sym_ichar] = ACTIONS(1607), - [anon_sym_short] = ACTIONS(1607), - [anon_sym_ushort] = ACTIONS(1607), - [anon_sym_uint] = ACTIONS(1607), - [anon_sym_long] = ACTIONS(1607), - [anon_sym_ulong] = ACTIONS(1607), - [anon_sym_int128] = ACTIONS(1607), - [anon_sym_uint128] = ACTIONS(1607), - [anon_sym_float] = ACTIONS(1607), - [anon_sym_double] = ACTIONS(1607), - [anon_sym_float16] = ACTIONS(1607), - [anon_sym_bfloat16] = ACTIONS(1607), - [anon_sym_float128] = ACTIONS(1607), - [anon_sym_iptr] = ACTIONS(1607), - [anon_sym_uptr] = ACTIONS(1607), - [anon_sym_isz] = ACTIONS(1607), - [anon_sym_usz] = ACTIONS(1607), - [anon_sym_anyfault] = ACTIONS(1607), - [anon_sym_any] = ACTIONS(1607), - [anon_sym_DOLLARtypeof] = ACTIONS(1607), - [anon_sym_DOLLARtypefrom] = ACTIONS(1607), - [anon_sym_DOLLARvatype] = ACTIONS(1607), - [anon_sym_DOLLARevaltype] = ACTIONS(1607), - [sym_real_literal] = ACTIONS(1609), - }, - [616] = { - [sym_line_comment] = STATE(616), - [sym_doc_comment] = STATE(616), - [sym_block_comment] = STATE(616), - [sym_ident] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1497), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [anon_sym_BQUOTE] = ACTIONS(1497), - [sym_bytes_literal] = ACTIONS(1497), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1495), - [sym_at_ident] = ACTIONS(1497), - [sym_hash_ident] = ACTIONS(1497), - [sym_type_ident] = ACTIONS(1497), - [sym_ct_type_ident] = ACTIONS(1497), - [sym_const_ident] = ACTIONS(1495), - [sym_builtin] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_tlocal] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1497), - [anon_sym_fn] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_var] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_defer] = ACTIONS(1495), - [anon_sym_assert] = ACTIONS(1495), - [anon_sym_nextcase] = ACTIONS(1495), - [anon_sym_switch] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_foreach] = ACTIONS(1495), - [anon_sym_foreach_r] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_int] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_asm] = ACTIONS(1495), - [anon_sym_DOLLARassert] = ACTIONS(1495), - [anon_sym_DOLLARerror] = ACTIONS(1495), - [anon_sym_DOLLARecho] = ACTIONS(1495), - [anon_sym_DOLLARif] = ACTIONS(1495), - [anon_sym_DOLLARendif] = ACTIONS(1495), - [anon_sym_DOLLARswitch] = ACTIONS(1495), - [anon_sym_DOLLARfor] = ACTIONS(1495), - [anon_sym_DOLLARforeach] = ACTIONS(1495), - [anon_sym_DOLLARalignof] = ACTIONS(1495), - [anon_sym_DOLLARextnameof] = ACTIONS(1495), - [anon_sym_DOLLARnameof] = ACTIONS(1495), - [anon_sym_DOLLARoffsetof] = ACTIONS(1495), - [anon_sym_DOLLARqnameof] = ACTIONS(1495), - [anon_sym_DOLLAReval] = ACTIONS(1495), - [anon_sym_DOLLARdefined] = ACTIONS(1495), - [anon_sym_DOLLARsizeof] = ACTIONS(1495), - [anon_sym_DOLLARstringify] = ACTIONS(1495), - [anon_sym_DOLLARis_const] = ACTIONS(1495), - [anon_sym_DOLLARvaconst] = ACTIONS(1495), - [anon_sym_DOLLARvaarg] = ACTIONS(1495), - [anon_sym_DOLLARvaref] = ACTIONS(1495), - [anon_sym_DOLLARvaexpr] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_DOLLARvacount] = ACTIONS(1495), - [anon_sym_DOLLARfeature] = ACTIONS(1495), - [anon_sym_DOLLARand] = ACTIONS(1495), - [anon_sym_DOLLARor] = ACTIONS(1495), - [anon_sym_DOLLARassignable] = ACTIONS(1495), - [anon_sym_DOLLARembed] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_TILDE] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [anon_sym_typeid] = ACTIONS(1495), - [anon_sym_LBRACE_PIPE] = ACTIONS(1497), - [anon_sym_void] = ACTIONS(1495), - [anon_sym_bool] = ACTIONS(1495), - [anon_sym_char] = ACTIONS(1495), - [anon_sym_ichar] = ACTIONS(1495), - [anon_sym_short] = ACTIONS(1495), - [anon_sym_ushort] = ACTIONS(1495), - [anon_sym_uint] = ACTIONS(1495), - [anon_sym_long] = ACTIONS(1495), - [anon_sym_ulong] = ACTIONS(1495), - [anon_sym_int128] = ACTIONS(1495), - [anon_sym_uint128] = ACTIONS(1495), - [anon_sym_float] = ACTIONS(1495), - [anon_sym_double] = ACTIONS(1495), - [anon_sym_float16] = ACTIONS(1495), - [anon_sym_bfloat16] = ACTIONS(1495), - [anon_sym_float128] = ACTIONS(1495), - [anon_sym_iptr] = ACTIONS(1495), - [anon_sym_uptr] = ACTIONS(1495), - [anon_sym_isz] = ACTIONS(1495), - [anon_sym_usz] = ACTIONS(1495), - [anon_sym_anyfault] = ACTIONS(1495), - [anon_sym_any] = ACTIONS(1495), - [anon_sym_DOLLARtypeof] = ACTIONS(1495), - [anon_sym_DOLLARtypefrom] = ACTIONS(1495), - [anon_sym_DOLLARvatype] = ACTIONS(1495), - [anon_sym_DOLLARevaltype] = ACTIONS(1495), - [sym_real_literal] = ACTIONS(1497), - }, - [617] = { - [sym_line_comment] = STATE(617), - [sym_doc_comment] = STATE(617), - [sym_block_comment] = STATE(617), - [sym_ident] = ACTIONS(1571), - [sym_integer_literal] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_BQUOTE] = ACTIONS(1573), - [sym_bytes_literal] = ACTIONS(1573), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1571), - [sym_at_ident] = ACTIONS(1573), - [sym_hash_ident] = ACTIONS(1573), - [sym_type_ident] = ACTIONS(1573), - [sym_ct_type_ident] = ACTIONS(1573), - [sym_const_ident] = ACTIONS(1571), - [sym_builtin] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_static] = ACTIONS(1571), - [anon_sym_tlocal] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_fn] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_const] = ACTIONS(1571), - [anon_sym_var] = ACTIONS(1571), - [anon_sym_return] = ACTIONS(1571), - [anon_sym_continue] = ACTIONS(1571), - [anon_sym_break] = ACTIONS(1571), - [anon_sym_defer] = ACTIONS(1571), - [anon_sym_assert] = ACTIONS(1571), - [anon_sym_nextcase] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1571), - [anon_sym_AMP_AMP] = ACTIONS(1573), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_for] = ACTIONS(1571), - [anon_sym_foreach] = ACTIONS(1571), - [anon_sym_foreach_r] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1571), - [anon_sym_do] = ACTIONS(1571), - [anon_sym_int] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_asm] = ACTIONS(1571), - [anon_sym_DOLLARassert] = ACTIONS(1571), - [anon_sym_DOLLARerror] = ACTIONS(1571), - [anon_sym_DOLLARecho] = ACTIONS(1571), - [anon_sym_DOLLARif] = ACTIONS(1571), - [anon_sym_DOLLARswitch] = ACTIONS(1571), - [anon_sym_DOLLARfor] = ACTIONS(1571), - [anon_sym_DOLLARendfor] = ACTIONS(1571), - [anon_sym_DOLLARforeach] = ACTIONS(1571), - [anon_sym_DOLLARalignof] = ACTIONS(1571), - [anon_sym_DOLLARextnameof] = ACTIONS(1571), - [anon_sym_DOLLARnameof] = ACTIONS(1571), - [anon_sym_DOLLARoffsetof] = ACTIONS(1571), - [anon_sym_DOLLARqnameof] = ACTIONS(1571), - [anon_sym_DOLLAReval] = ACTIONS(1571), - [anon_sym_DOLLARdefined] = ACTIONS(1571), - [anon_sym_DOLLARsizeof] = ACTIONS(1571), - [anon_sym_DOLLARstringify] = ACTIONS(1571), - [anon_sym_DOLLARis_const] = ACTIONS(1571), - [anon_sym_DOLLARvaconst] = ACTIONS(1571), - [anon_sym_DOLLARvaarg] = ACTIONS(1571), - [anon_sym_DOLLARvaref] = ACTIONS(1571), - [anon_sym_DOLLARvaexpr] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [anon_sym_DOLLARvacount] = ACTIONS(1571), - [anon_sym_DOLLARfeature] = ACTIONS(1571), - [anon_sym_DOLLARand] = ACTIONS(1571), - [anon_sym_DOLLARor] = ACTIONS(1571), - [anon_sym_DOLLARassignable] = ACTIONS(1571), - [anon_sym_DOLLARembed] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_PLUS_PLUS] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1573), - [anon_sym_typeid] = ACTIONS(1571), - [anon_sym_LBRACE_PIPE] = ACTIONS(1573), - [anon_sym_void] = ACTIONS(1571), - [anon_sym_bool] = ACTIONS(1571), - [anon_sym_char] = ACTIONS(1571), - [anon_sym_ichar] = ACTIONS(1571), - [anon_sym_short] = ACTIONS(1571), - [anon_sym_ushort] = ACTIONS(1571), - [anon_sym_uint] = ACTIONS(1571), - [anon_sym_long] = ACTIONS(1571), - [anon_sym_ulong] = ACTIONS(1571), - [anon_sym_int128] = ACTIONS(1571), - [anon_sym_uint128] = ACTIONS(1571), - [anon_sym_float] = ACTIONS(1571), - [anon_sym_double] = ACTIONS(1571), - [anon_sym_float16] = ACTIONS(1571), - [anon_sym_bfloat16] = ACTIONS(1571), - [anon_sym_float128] = ACTIONS(1571), - [anon_sym_iptr] = ACTIONS(1571), - [anon_sym_uptr] = ACTIONS(1571), - [anon_sym_isz] = ACTIONS(1571), - [anon_sym_usz] = ACTIONS(1571), - [anon_sym_anyfault] = ACTIONS(1571), - [anon_sym_any] = ACTIONS(1571), - [anon_sym_DOLLARtypeof] = ACTIONS(1571), - [anon_sym_DOLLARtypefrom] = ACTIONS(1571), - [anon_sym_DOLLARvatype] = ACTIONS(1571), - [anon_sym_DOLLARevaltype] = ACTIONS(1571), - [sym_real_literal] = ACTIONS(1573), - }, - [618] = { - [sym_line_comment] = STATE(618), - [sym_doc_comment] = STATE(618), - [sym_block_comment] = STATE(618), - [sym_ident] = ACTIONS(1511), - [sym_integer_literal] = ACTIONS(1513), - [anon_sym_SQUOTE] = ACTIONS(1513), - [anon_sym_DQUOTE] = ACTIONS(1513), - [anon_sym_BQUOTE] = ACTIONS(1513), - [sym_bytes_literal] = ACTIONS(1513), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1511), - [sym_at_ident] = ACTIONS(1513), - [sym_hash_ident] = ACTIONS(1513), - [sym_type_ident] = ACTIONS(1513), - [sym_ct_type_ident] = ACTIONS(1513), - [sym_const_ident] = ACTIONS(1511), - [sym_builtin] = ACTIONS(1513), - [anon_sym_LPAREN] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_tlocal] = ACTIONS(1511), - [anon_sym_SEMI] = ACTIONS(1513), - [anon_sym_fn] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_var] = ACTIONS(1511), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_defer] = ACTIONS(1511), - [anon_sym_assert] = ACTIONS(1511), - [anon_sym_nextcase] = ACTIONS(1511), - [anon_sym_switch] = ACTIONS(1511), - [anon_sym_AMP_AMP] = ACTIONS(1513), - [anon_sym_if] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_foreach] = ACTIONS(1511), - [anon_sym_foreach_r] = ACTIONS(1511), - [anon_sym_while] = ACTIONS(1511), - [anon_sym_do] = ACTIONS(1511), - [anon_sym_int] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_asm] = ACTIONS(1511), - [anon_sym_DOLLARassert] = ACTIONS(1511), - [anon_sym_DOLLARerror] = ACTIONS(1511), - [anon_sym_DOLLARecho] = ACTIONS(1511), - [anon_sym_DOLLARif] = ACTIONS(1511), - [anon_sym_DOLLARendif] = ACTIONS(1511), - [anon_sym_DOLLARswitch] = ACTIONS(1511), - [anon_sym_DOLLARfor] = ACTIONS(1511), - [anon_sym_DOLLARforeach] = ACTIONS(1511), - [anon_sym_DOLLARalignof] = ACTIONS(1511), - [anon_sym_DOLLARextnameof] = ACTIONS(1511), - [anon_sym_DOLLARnameof] = ACTIONS(1511), - [anon_sym_DOLLARoffsetof] = ACTIONS(1511), - [anon_sym_DOLLARqnameof] = ACTIONS(1511), - [anon_sym_DOLLAReval] = ACTIONS(1511), - [anon_sym_DOLLARdefined] = ACTIONS(1511), - [anon_sym_DOLLARsizeof] = ACTIONS(1511), - [anon_sym_DOLLARstringify] = ACTIONS(1511), - [anon_sym_DOLLARis_const] = ACTIONS(1511), - [anon_sym_DOLLARvaconst] = ACTIONS(1511), - [anon_sym_DOLLARvaarg] = ACTIONS(1511), - [anon_sym_DOLLARvaref] = ACTIONS(1511), - [anon_sym_DOLLARvaexpr] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1511), - [anon_sym_false] = ACTIONS(1511), - [anon_sym_null] = ACTIONS(1511), - [anon_sym_DOLLARvacount] = ACTIONS(1511), - [anon_sym_DOLLARfeature] = ACTIONS(1511), - [anon_sym_DOLLARand] = ACTIONS(1511), - [anon_sym_DOLLARor] = ACTIONS(1511), - [anon_sym_DOLLARassignable] = ACTIONS(1511), - [anon_sym_DOLLARembed] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_TILDE] = ACTIONS(1513), - [anon_sym_PLUS_PLUS] = ACTIONS(1513), - [anon_sym_DASH_DASH] = ACTIONS(1513), - [anon_sym_typeid] = ACTIONS(1511), - [anon_sym_LBRACE_PIPE] = ACTIONS(1513), - [anon_sym_void] = ACTIONS(1511), - [anon_sym_bool] = ACTIONS(1511), - [anon_sym_char] = ACTIONS(1511), - [anon_sym_ichar] = ACTIONS(1511), - [anon_sym_short] = ACTIONS(1511), - [anon_sym_ushort] = ACTIONS(1511), - [anon_sym_uint] = ACTIONS(1511), - [anon_sym_long] = ACTIONS(1511), - [anon_sym_ulong] = ACTIONS(1511), - [anon_sym_int128] = ACTIONS(1511), - [anon_sym_uint128] = ACTIONS(1511), - [anon_sym_float] = ACTIONS(1511), - [anon_sym_double] = ACTIONS(1511), - [anon_sym_float16] = ACTIONS(1511), - [anon_sym_bfloat16] = ACTIONS(1511), - [anon_sym_float128] = ACTIONS(1511), - [anon_sym_iptr] = ACTIONS(1511), - [anon_sym_uptr] = ACTIONS(1511), - [anon_sym_isz] = ACTIONS(1511), - [anon_sym_usz] = ACTIONS(1511), - [anon_sym_anyfault] = ACTIONS(1511), - [anon_sym_any] = ACTIONS(1511), - [anon_sym_DOLLARtypeof] = ACTIONS(1511), - [anon_sym_DOLLARtypefrom] = ACTIONS(1511), - [anon_sym_DOLLARvatype] = ACTIONS(1511), - [anon_sym_DOLLARevaltype] = ACTIONS(1511), - [sym_real_literal] = ACTIONS(1513), - }, - [619] = { - [sym_line_comment] = STATE(619), - [sym_doc_comment] = STATE(619), - [sym_block_comment] = STATE(619), - [sym_ident] = ACTIONS(1523), - [sym_integer_literal] = ACTIONS(1525), - [anon_sym_SQUOTE] = ACTIONS(1525), - [anon_sym_DQUOTE] = ACTIONS(1525), - [anon_sym_BQUOTE] = ACTIONS(1525), - [sym_bytes_literal] = ACTIONS(1525), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1523), - [sym_at_ident] = ACTIONS(1525), - [sym_hash_ident] = ACTIONS(1525), - [sym_type_ident] = ACTIONS(1525), - [sym_ct_type_ident] = ACTIONS(1525), - [sym_const_ident] = ACTIONS(1523), - [sym_builtin] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_tlocal] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_fn] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_var] = ACTIONS(1523), - [anon_sym_return] = ACTIONS(1523), - [anon_sym_continue] = ACTIONS(1523), - [anon_sym_break] = ACTIONS(1523), - [anon_sym_defer] = ACTIONS(1523), - [anon_sym_assert] = ACTIONS(1523), - [anon_sym_nextcase] = ACTIONS(1523), - [anon_sym_switch] = ACTIONS(1523), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_if] = ACTIONS(1523), - [anon_sym_for] = ACTIONS(1523), - [anon_sym_foreach] = ACTIONS(1523), - [anon_sym_foreach_r] = ACTIONS(1523), - [anon_sym_while] = ACTIONS(1523), - [anon_sym_do] = ACTIONS(1523), - [anon_sym_int] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1523), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_asm] = ACTIONS(1523), - [anon_sym_DOLLARassert] = ACTIONS(1523), - [anon_sym_DOLLARerror] = ACTIONS(1523), - [anon_sym_DOLLARecho] = ACTIONS(1523), - [anon_sym_DOLLARif] = ACTIONS(1523), - [anon_sym_DOLLARswitch] = ACTIONS(1523), - [anon_sym_DOLLARfor] = ACTIONS(1523), - [anon_sym_DOLLARendfor] = ACTIONS(1523), - [anon_sym_DOLLARforeach] = ACTIONS(1523), - [anon_sym_DOLLARalignof] = ACTIONS(1523), - [anon_sym_DOLLARextnameof] = ACTIONS(1523), - [anon_sym_DOLLARnameof] = ACTIONS(1523), - [anon_sym_DOLLARoffsetof] = ACTIONS(1523), - [anon_sym_DOLLARqnameof] = ACTIONS(1523), - [anon_sym_DOLLAReval] = ACTIONS(1523), - [anon_sym_DOLLARdefined] = ACTIONS(1523), - [anon_sym_DOLLARsizeof] = ACTIONS(1523), - [anon_sym_DOLLARstringify] = ACTIONS(1523), - [anon_sym_DOLLARis_const] = ACTIONS(1523), - [anon_sym_DOLLARvaconst] = ACTIONS(1523), - [anon_sym_DOLLARvaarg] = ACTIONS(1523), - [anon_sym_DOLLARvaref] = ACTIONS(1523), - [anon_sym_DOLLARvaexpr] = ACTIONS(1523), - [anon_sym_true] = ACTIONS(1523), - [anon_sym_false] = ACTIONS(1523), - [anon_sym_null] = ACTIONS(1523), - [anon_sym_DOLLARvacount] = ACTIONS(1523), - [anon_sym_DOLLARfeature] = ACTIONS(1523), - [anon_sym_DOLLARand] = ACTIONS(1523), - [anon_sym_DOLLARor] = ACTIONS(1523), - [anon_sym_DOLLARassignable] = ACTIONS(1523), - [anon_sym_DOLLARembed] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1525), - [anon_sym_TILDE] = ACTIONS(1525), - [anon_sym_PLUS_PLUS] = ACTIONS(1525), - [anon_sym_DASH_DASH] = ACTIONS(1525), - [anon_sym_typeid] = ACTIONS(1523), - [anon_sym_LBRACE_PIPE] = ACTIONS(1525), - [anon_sym_void] = ACTIONS(1523), - [anon_sym_bool] = ACTIONS(1523), - [anon_sym_char] = ACTIONS(1523), - [anon_sym_ichar] = ACTIONS(1523), - [anon_sym_short] = ACTIONS(1523), - [anon_sym_ushort] = ACTIONS(1523), - [anon_sym_uint] = ACTIONS(1523), - [anon_sym_long] = ACTIONS(1523), - [anon_sym_ulong] = ACTIONS(1523), - [anon_sym_int128] = ACTIONS(1523), - [anon_sym_uint128] = ACTIONS(1523), - [anon_sym_float] = ACTIONS(1523), - [anon_sym_double] = ACTIONS(1523), - [anon_sym_float16] = ACTIONS(1523), - [anon_sym_bfloat16] = ACTIONS(1523), - [anon_sym_float128] = ACTIONS(1523), - [anon_sym_iptr] = ACTIONS(1523), - [anon_sym_uptr] = ACTIONS(1523), - [anon_sym_isz] = ACTIONS(1523), - [anon_sym_usz] = ACTIONS(1523), - [anon_sym_anyfault] = ACTIONS(1523), - [anon_sym_any] = ACTIONS(1523), - [anon_sym_DOLLARtypeof] = ACTIONS(1523), - [anon_sym_DOLLARtypefrom] = ACTIONS(1523), - [anon_sym_DOLLARvatype] = ACTIONS(1523), - [anon_sym_DOLLARevaltype] = ACTIONS(1523), - [sym_real_literal] = ACTIONS(1525), - }, - [620] = { - [sym_line_comment] = STATE(620), - [sym_doc_comment] = STATE(620), - [sym_block_comment] = STATE(620), - [sym_ident] = ACTIONS(1499), - [sym_integer_literal] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1501), - [anon_sym_BQUOTE] = ACTIONS(1501), - [sym_bytes_literal] = ACTIONS(1501), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1499), - [sym_at_ident] = ACTIONS(1501), - [sym_hash_ident] = ACTIONS(1501), - [sym_type_ident] = ACTIONS(1501), - [sym_ct_type_ident] = ACTIONS(1501), - [sym_const_ident] = ACTIONS(1499), - [sym_builtin] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_static] = ACTIONS(1499), - [anon_sym_tlocal] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1501), - [anon_sym_fn] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_var] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_defer] = ACTIONS(1499), - [anon_sym_assert] = ACTIONS(1499), - [anon_sym_nextcase] = ACTIONS(1499), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_foreach] = ACTIONS(1499), - [anon_sym_foreach_r] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_do] = ACTIONS(1499), - [anon_sym_int] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_asm] = ACTIONS(1499), - [anon_sym_DOLLARassert] = ACTIONS(1499), - [anon_sym_DOLLARerror] = ACTIONS(1499), - [anon_sym_DOLLARecho] = ACTIONS(1499), - [anon_sym_DOLLARif] = ACTIONS(1499), - [anon_sym_DOLLARswitch] = ACTIONS(1499), - [anon_sym_DOLLARfor] = ACTIONS(1499), - [anon_sym_DOLLARendfor] = ACTIONS(1499), - [anon_sym_DOLLARforeach] = ACTIONS(1499), - [anon_sym_DOLLARalignof] = ACTIONS(1499), - [anon_sym_DOLLARextnameof] = ACTIONS(1499), - [anon_sym_DOLLARnameof] = ACTIONS(1499), - [anon_sym_DOLLARoffsetof] = ACTIONS(1499), - [anon_sym_DOLLARqnameof] = ACTIONS(1499), - [anon_sym_DOLLAReval] = ACTIONS(1499), - [anon_sym_DOLLARdefined] = ACTIONS(1499), - [anon_sym_DOLLARsizeof] = ACTIONS(1499), - [anon_sym_DOLLARstringify] = ACTIONS(1499), - [anon_sym_DOLLARis_const] = ACTIONS(1499), - [anon_sym_DOLLARvaconst] = ACTIONS(1499), - [anon_sym_DOLLARvaarg] = ACTIONS(1499), - [anon_sym_DOLLARvaref] = ACTIONS(1499), - [anon_sym_DOLLARvaexpr] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [anon_sym_DOLLARvacount] = ACTIONS(1499), - [anon_sym_DOLLARfeature] = ACTIONS(1499), - [anon_sym_DOLLARand] = ACTIONS(1499), - [anon_sym_DOLLARor] = ACTIONS(1499), - [anon_sym_DOLLARassignable] = ACTIONS(1499), - [anon_sym_DOLLARembed] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_TILDE] = ACTIONS(1501), - [anon_sym_PLUS_PLUS] = ACTIONS(1501), - [anon_sym_DASH_DASH] = ACTIONS(1501), - [anon_sym_typeid] = ACTIONS(1499), - [anon_sym_LBRACE_PIPE] = ACTIONS(1501), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_bool] = ACTIONS(1499), - [anon_sym_char] = ACTIONS(1499), - [anon_sym_ichar] = ACTIONS(1499), - [anon_sym_short] = ACTIONS(1499), - [anon_sym_ushort] = ACTIONS(1499), - [anon_sym_uint] = ACTIONS(1499), - [anon_sym_long] = ACTIONS(1499), - [anon_sym_ulong] = ACTIONS(1499), - [anon_sym_int128] = ACTIONS(1499), - [anon_sym_uint128] = ACTIONS(1499), - [anon_sym_float] = ACTIONS(1499), - [anon_sym_double] = ACTIONS(1499), - [anon_sym_float16] = ACTIONS(1499), - [anon_sym_bfloat16] = ACTIONS(1499), - [anon_sym_float128] = ACTIONS(1499), - [anon_sym_iptr] = ACTIONS(1499), - [anon_sym_uptr] = ACTIONS(1499), - [anon_sym_isz] = ACTIONS(1499), - [anon_sym_usz] = ACTIONS(1499), - [anon_sym_anyfault] = ACTIONS(1499), - [anon_sym_any] = ACTIONS(1499), - [anon_sym_DOLLARtypeof] = ACTIONS(1499), - [anon_sym_DOLLARtypefrom] = ACTIONS(1499), - [anon_sym_DOLLARvatype] = ACTIONS(1499), - [anon_sym_DOLLARevaltype] = ACTIONS(1499), - [sym_real_literal] = ACTIONS(1501), - }, - [621] = { - [sym_line_comment] = STATE(621), - [sym_doc_comment] = STATE(621), - [sym_block_comment] = STATE(621), - [sym_ident] = ACTIONS(1515), - [sym_integer_literal] = ACTIONS(1517), - [anon_sym_SQUOTE] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(1517), - [anon_sym_BQUOTE] = ACTIONS(1517), - [sym_bytes_literal] = ACTIONS(1517), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1515), - [sym_at_ident] = ACTIONS(1517), - [sym_hash_ident] = ACTIONS(1517), - [sym_type_ident] = ACTIONS(1517), - [sym_ct_type_ident] = ACTIONS(1517), - [sym_const_ident] = ACTIONS(1515), - [sym_builtin] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_static] = ACTIONS(1515), - [anon_sym_tlocal] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1517), - [anon_sym_fn] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_var] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_defer] = ACTIONS(1515), - [anon_sym_assert] = ACTIONS(1515), - [anon_sym_nextcase] = ACTIONS(1515), - [anon_sym_switch] = ACTIONS(1515), - [anon_sym_AMP_AMP] = ACTIONS(1517), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_foreach] = ACTIONS(1515), - [anon_sym_foreach_r] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_int] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_asm] = ACTIONS(1515), - [anon_sym_DOLLARassert] = ACTIONS(1515), - [anon_sym_DOLLARerror] = ACTIONS(1515), - [anon_sym_DOLLARecho] = ACTIONS(1515), - [anon_sym_DOLLARif] = ACTIONS(1515), - [anon_sym_DOLLARendif] = ACTIONS(1515), - [anon_sym_DOLLARswitch] = ACTIONS(1515), - [anon_sym_DOLLARfor] = ACTIONS(1515), - [anon_sym_DOLLARforeach] = ACTIONS(1515), - [anon_sym_DOLLARalignof] = ACTIONS(1515), - [anon_sym_DOLLARextnameof] = ACTIONS(1515), - [anon_sym_DOLLARnameof] = ACTIONS(1515), - [anon_sym_DOLLARoffsetof] = ACTIONS(1515), - [anon_sym_DOLLARqnameof] = ACTIONS(1515), - [anon_sym_DOLLAReval] = ACTIONS(1515), - [anon_sym_DOLLARdefined] = ACTIONS(1515), - [anon_sym_DOLLARsizeof] = ACTIONS(1515), - [anon_sym_DOLLARstringify] = ACTIONS(1515), - [anon_sym_DOLLARis_const] = ACTIONS(1515), - [anon_sym_DOLLARvaconst] = ACTIONS(1515), - [anon_sym_DOLLARvaarg] = ACTIONS(1515), - [anon_sym_DOLLARvaref] = ACTIONS(1515), - [anon_sym_DOLLARvaexpr] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [anon_sym_null] = ACTIONS(1515), - [anon_sym_DOLLARvacount] = ACTIONS(1515), - [anon_sym_DOLLARfeature] = ACTIONS(1515), - [anon_sym_DOLLARand] = ACTIONS(1515), - [anon_sym_DOLLARor] = ACTIONS(1515), - [anon_sym_DOLLARassignable] = ACTIONS(1515), - [anon_sym_DOLLARembed] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [anon_sym_typeid] = ACTIONS(1515), - [anon_sym_LBRACE_PIPE] = ACTIONS(1517), - [anon_sym_void] = ACTIONS(1515), - [anon_sym_bool] = ACTIONS(1515), - [anon_sym_char] = ACTIONS(1515), - [anon_sym_ichar] = ACTIONS(1515), - [anon_sym_short] = ACTIONS(1515), - [anon_sym_ushort] = ACTIONS(1515), - [anon_sym_uint] = ACTIONS(1515), - [anon_sym_long] = ACTIONS(1515), - [anon_sym_ulong] = ACTIONS(1515), - [anon_sym_int128] = ACTIONS(1515), - [anon_sym_uint128] = ACTIONS(1515), - [anon_sym_float] = ACTIONS(1515), - [anon_sym_double] = ACTIONS(1515), - [anon_sym_float16] = ACTIONS(1515), - [anon_sym_bfloat16] = ACTIONS(1515), - [anon_sym_float128] = ACTIONS(1515), - [anon_sym_iptr] = ACTIONS(1515), - [anon_sym_uptr] = ACTIONS(1515), - [anon_sym_isz] = ACTIONS(1515), - [anon_sym_usz] = ACTIONS(1515), - [anon_sym_anyfault] = ACTIONS(1515), - [anon_sym_any] = ACTIONS(1515), - [anon_sym_DOLLARtypeof] = ACTIONS(1515), - [anon_sym_DOLLARtypefrom] = ACTIONS(1515), - [anon_sym_DOLLARvatype] = ACTIONS(1515), - [anon_sym_DOLLARevaltype] = ACTIONS(1515), - [sym_real_literal] = ACTIONS(1517), - }, [622] = { [sym_line_comment] = STATE(622), [sym_doc_comment] = STATE(622), [sym_block_comment] = STATE(622), - [sym_ident] = ACTIONS(1471), - [sym_integer_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1473), - [anon_sym_BQUOTE] = ACTIONS(1473), - [sym_bytes_literal] = ACTIONS(1473), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1471), - [sym_at_ident] = ACTIONS(1473), - [sym_hash_ident] = ACTIONS(1473), - [sym_type_ident] = ACTIONS(1473), - [sym_ct_type_ident] = ACTIONS(1473), - [sym_const_ident] = ACTIONS(1471), - [sym_builtin] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_tlocal] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1473), - [anon_sym_fn] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_const] = ACTIONS(1471), - [anon_sym_var] = ACTIONS(1471), - [anon_sym_return] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1471), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_defer] = ACTIONS(1471), - [anon_sym_assert] = ACTIONS(1471), - [anon_sym_nextcase] = ACTIONS(1471), - [anon_sym_switch] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1471), - [anon_sym_for] = ACTIONS(1471), - [anon_sym_foreach] = ACTIONS(1471), - [anon_sym_foreach_r] = ACTIONS(1471), - [anon_sym_while] = ACTIONS(1471), - [anon_sym_do] = ACTIONS(1471), - [anon_sym_int] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_asm] = ACTIONS(1471), - [anon_sym_DOLLARassert] = ACTIONS(1471), - [anon_sym_DOLLARerror] = ACTIONS(1471), - [anon_sym_DOLLARecho] = ACTIONS(1471), - [anon_sym_DOLLARif] = ACTIONS(1471), - [anon_sym_DOLLARswitch] = ACTIONS(1471), - [anon_sym_DOLLARfor] = ACTIONS(1471), - [anon_sym_DOLLARendfor] = ACTIONS(1471), - [anon_sym_DOLLARforeach] = ACTIONS(1471), - [anon_sym_DOLLARalignof] = ACTIONS(1471), - [anon_sym_DOLLARextnameof] = ACTIONS(1471), - [anon_sym_DOLLARnameof] = ACTIONS(1471), - [anon_sym_DOLLARoffsetof] = ACTIONS(1471), - [anon_sym_DOLLARqnameof] = ACTIONS(1471), - [anon_sym_DOLLAReval] = ACTIONS(1471), - [anon_sym_DOLLARdefined] = ACTIONS(1471), - [anon_sym_DOLLARsizeof] = ACTIONS(1471), - [anon_sym_DOLLARstringify] = ACTIONS(1471), - [anon_sym_DOLLARis_const] = ACTIONS(1471), - [anon_sym_DOLLARvaconst] = ACTIONS(1471), - [anon_sym_DOLLARvaarg] = ACTIONS(1471), - [anon_sym_DOLLARvaref] = ACTIONS(1471), - [anon_sym_DOLLARvaexpr] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1471), - [anon_sym_false] = ACTIONS(1471), - [anon_sym_null] = ACTIONS(1471), - [anon_sym_DOLLARvacount] = ACTIONS(1471), - [anon_sym_DOLLARfeature] = ACTIONS(1471), - [anon_sym_DOLLARand] = ACTIONS(1471), - [anon_sym_DOLLARor] = ACTIONS(1471), - [anon_sym_DOLLARassignable] = ACTIONS(1471), - [anon_sym_DOLLARembed] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1473), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), - [anon_sym_typeid] = ACTIONS(1471), - [anon_sym_LBRACE_PIPE] = ACTIONS(1473), - [anon_sym_void] = ACTIONS(1471), - [anon_sym_bool] = ACTIONS(1471), - [anon_sym_char] = ACTIONS(1471), - [anon_sym_ichar] = ACTIONS(1471), - [anon_sym_short] = ACTIONS(1471), - [anon_sym_ushort] = ACTIONS(1471), - [anon_sym_uint] = ACTIONS(1471), - [anon_sym_long] = ACTIONS(1471), - [anon_sym_ulong] = ACTIONS(1471), - [anon_sym_int128] = ACTIONS(1471), - [anon_sym_uint128] = ACTIONS(1471), - [anon_sym_float] = ACTIONS(1471), - [anon_sym_double] = ACTIONS(1471), - [anon_sym_float16] = ACTIONS(1471), - [anon_sym_bfloat16] = ACTIONS(1471), - [anon_sym_float128] = ACTIONS(1471), - [anon_sym_iptr] = ACTIONS(1471), - [anon_sym_uptr] = ACTIONS(1471), - [anon_sym_isz] = ACTIONS(1471), - [anon_sym_usz] = ACTIONS(1471), - [anon_sym_anyfault] = ACTIONS(1471), - [anon_sym_any] = ACTIONS(1471), - [anon_sym_DOLLARtypeof] = ACTIONS(1471), - [anon_sym_DOLLARtypefrom] = ACTIONS(1471), - [anon_sym_DOLLARvatype] = ACTIONS(1471), - [anon_sym_DOLLARevaltype] = ACTIONS(1471), - [sym_real_literal] = ACTIONS(1473), + [sym_ident] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_bytes_literal] = ACTIONS(1463), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1461), + [sym_at_ident] = ACTIONS(1463), + [sym_hash_ident] = ACTIONS(1463), + [sym_type_ident] = ACTIONS(1463), + [sym_ct_type_ident] = ACTIONS(1463), + [sym_const_ident] = ACTIONS(1461), + [sym_builtin] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_tlocal] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_defer] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1461), + [anon_sym_nextcase] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_foreach] = ACTIONS(1461), + [anon_sym_foreach_r] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_int] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_asm] = ACTIONS(1461), + [anon_sym_DOLLARassert] = ACTIONS(1461), + [anon_sym_DOLLARerror] = ACTIONS(1461), + [anon_sym_DOLLARecho] = ACTIONS(1461), + [anon_sym_DOLLARif] = ACTIONS(1461), + [anon_sym_DOLLARswitch] = ACTIONS(1461), + [anon_sym_DOLLARfor] = ACTIONS(1461), + [anon_sym_DOLLARendfor] = ACTIONS(1461), + [anon_sym_DOLLARforeach] = ACTIONS(1461), + [anon_sym_DOLLARalignof] = ACTIONS(1461), + [anon_sym_DOLLARextnameof] = ACTIONS(1461), + [anon_sym_DOLLARnameof] = ACTIONS(1461), + [anon_sym_DOLLARoffsetof] = ACTIONS(1461), + [anon_sym_DOLLARqnameof] = ACTIONS(1461), + [anon_sym_DOLLARvaconst] = ACTIONS(1461), + [anon_sym_DOLLARvaarg] = ACTIONS(1461), + [anon_sym_DOLLARvaref] = ACTIONS(1461), + [anon_sym_DOLLARvaexpr] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_DOLLARvacount] = ACTIONS(1461), + [anon_sym_DOLLAReval] = ACTIONS(1461), + [anon_sym_DOLLARis_const] = ACTIONS(1461), + [anon_sym_DOLLARsizeof] = ACTIONS(1461), + [anon_sym_DOLLARstringify] = ACTIONS(1461), + [anon_sym_DOLLARappend] = ACTIONS(1461), + [anon_sym_DOLLARconcat] = ACTIONS(1461), + [anon_sym_DOLLARdefined] = ACTIONS(1461), + [anon_sym_DOLLARembed] = ACTIONS(1461), + [anon_sym_DOLLARand] = ACTIONS(1461), + [anon_sym_DOLLARor] = ACTIONS(1461), + [anon_sym_DOLLARfeature] = ACTIONS(1461), + [anon_sym_DOLLARassignable] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_typeid] = ACTIONS(1461), + [anon_sym_LBRACE_PIPE] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_ichar] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [anon_sym_ushort] = ACTIONS(1461), + [anon_sym_uint] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_ulong] = ACTIONS(1461), + [anon_sym_int128] = ACTIONS(1461), + [anon_sym_uint128] = ACTIONS(1461), + [anon_sym_float] = ACTIONS(1461), + [anon_sym_double] = ACTIONS(1461), + [anon_sym_float16] = ACTIONS(1461), + [anon_sym_bfloat16] = ACTIONS(1461), + [anon_sym_float128] = ACTIONS(1461), + [anon_sym_iptr] = ACTIONS(1461), + [anon_sym_uptr] = ACTIONS(1461), + [anon_sym_isz] = ACTIONS(1461), + [anon_sym_usz] = ACTIONS(1461), + [anon_sym_anyfault] = ACTIONS(1461), + [anon_sym_any] = ACTIONS(1461), + [anon_sym_DOLLARtypeof] = ACTIONS(1461), + [anon_sym_DOLLARtypefrom] = ACTIONS(1461), + [anon_sym_DOLLARevaltype] = ACTIONS(1461), + [anon_sym_DOLLARvatype] = ACTIONS(1461), + [sym_real_literal] = ACTIONS(1463), }, [623] = { [sym_line_comment] = STATE(623), [sym_doc_comment] = STATE(623), [sym_block_comment] = STATE(623), - [sym_ident] = ACTIONS(1519), - [sym_integer_literal] = ACTIONS(1521), - [anon_sym_SQUOTE] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1521), - [anon_sym_BQUOTE] = ACTIONS(1521), - [sym_bytes_literal] = ACTIONS(1521), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1519), - [sym_at_ident] = ACTIONS(1521), - [sym_hash_ident] = ACTIONS(1521), - [sym_type_ident] = ACTIONS(1521), - [sym_ct_type_ident] = ACTIONS(1521), - [sym_const_ident] = ACTIONS(1519), - [sym_builtin] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_static] = ACTIONS(1519), - [anon_sym_tlocal] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_fn] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(1519), - [anon_sym_var] = ACTIONS(1519), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_defer] = ACTIONS(1519), - [anon_sym_assert] = ACTIONS(1519), - [anon_sym_nextcase] = ACTIONS(1519), - [anon_sym_switch] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_foreach] = ACTIONS(1519), - [anon_sym_foreach_r] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_do] = ACTIONS(1519), - [anon_sym_int] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1521), - [anon_sym_asm] = ACTIONS(1519), - [anon_sym_DOLLARassert] = ACTIONS(1519), - [anon_sym_DOLLARerror] = ACTIONS(1519), - [anon_sym_DOLLARecho] = ACTIONS(1519), - [anon_sym_DOLLARif] = ACTIONS(1519), - [anon_sym_DOLLARendif] = ACTIONS(1519), - [anon_sym_DOLLARswitch] = ACTIONS(1519), - [anon_sym_DOLLARfor] = ACTIONS(1519), - [anon_sym_DOLLARforeach] = ACTIONS(1519), - [anon_sym_DOLLARalignof] = ACTIONS(1519), - [anon_sym_DOLLARextnameof] = ACTIONS(1519), - [anon_sym_DOLLARnameof] = ACTIONS(1519), - [anon_sym_DOLLARoffsetof] = ACTIONS(1519), - [anon_sym_DOLLARqnameof] = ACTIONS(1519), - [anon_sym_DOLLAReval] = ACTIONS(1519), - [anon_sym_DOLLARdefined] = ACTIONS(1519), - [anon_sym_DOLLARsizeof] = ACTIONS(1519), - [anon_sym_DOLLARstringify] = ACTIONS(1519), - [anon_sym_DOLLARis_const] = ACTIONS(1519), - [anon_sym_DOLLARvaconst] = ACTIONS(1519), - [anon_sym_DOLLARvaarg] = ACTIONS(1519), - [anon_sym_DOLLARvaref] = ACTIONS(1519), - [anon_sym_DOLLARvaexpr] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1519), - [anon_sym_DOLLARvacount] = ACTIONS(1519), - [anon_sym_DOLLARfeature] = ACTIONS(1519), - [anon_sym_DOLLARand] = ACTIONS(1519), - [anon_sym_DOLLARor] = ACTIONS(1519), - [anon_sym_DOLLARassignable] = ACTIONS(1519), - [anon_sym_DOLLARembed] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1521), - [anon_sym_TILDE] = ACTIONS(1521), - [anon_sym_PLUS_PLUS] = ACTIONS(1521), - [anon_sym_DASH_DASH] = ACTIONS(1521), - [anon_sym_typeid] = ACTIONS(1519), - [anon_sym_LBRACE_PIPE] = ACTIONS(1521), - [anon_sym_void] = ACTIONS(1519), - [anon_sym_bool] = ACTIONS(1519), - [anon_sym_char] = ACTIONS(1519), - [anon_sym_ichar] = ACTIONS(1519), - [anon_sym_short] = ACTIONS(1519), - [anon_sym_ushort] = ACTIONS(1519), - [anon_sym_uint] = ACTIONS(1519), - [anon_sym_long] = ACTIONS(1519), - [anon_sym_ulong] = ACTIONS(1519), - [anon_sym_int128] = ACTIONS(1519), - [anon_sym_uint128] = ACTIONS(1519), - [anon_sym_float] = ACTIONS(1519), - [anon_sym_double] = ACTIONS(1519), - [anon_sym_float16] = ACTIONS(1519), - [anon_sym_bfloat16] = ACTIONS(1519), - [anon_sym_float128] = ACTIONS(1519), - [anon_sym_iptr] = ACTIONS(1519), - [anon_sym_uptr] = ACTIONS(1519), - [anon_sym_isz] = ACTIONS(1519), - [anon_sym_usz] = ACTIONS(1519), - [anon_sym_anyfault] = ACTIONS(1519), - [anon_sym_any] = ACTIONS(1519), - [anon_sym_DOLLARtypeof] = ACTIONS(1519), - [anon_sym_DOLLARtypefrom] = ACTIONS(1519), - [anon_sym_DOLLARvatype] = ACTIONS(1519), - [anon_sym_DOLLARevaltype] = ACTIONS(1519), - [sym_real_literal] = ACTIONS(1521), + [sym_ident] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_BQUOTE] = ACTIONS(1475), + [sym_bytes_literal] = ACTIONS(1475), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1473), + [sym_at_ident] = ACTIONS(1475), + [sym_hash_ident] = ACTIONS(1475), + [sym_type_ident] = ACTIONS(1475), + [sym_ct_type_ident] = ACTIONS(1475), + [sym_const_ident] = ACTIONS(1473), + [sym_builtin] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_tlocal] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_defer] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_nextcase] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_foreach] = ACTIONS(1473), + [anon_sym_foreach_r] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_asm] = ACTIONS(1473), + [anon_sym_DOLLARassert] = ACTIONS(1473), + [anon_sym_DOLLARerror] = ACTIONS(1473), + [anon_sym_DOLLARecho] = ACTIONS(1473), + [anon_sym_DOLLARif] = ACTIONS(1473), + [anon_sym_DOLLARswitch] = ACTIONS(1473), + [anon_sym_DOLLARfor] = ACTIONS(1473), + [anon_sym_DOLLARendfor] = ACTIONS(1473), + [anon_sym_DOLLARforeach] = ACTIONS(1473), + [anon_sym_DOLLARalignof] = ACTIONS(1473), + [anon_sym_DOLLARextnameof] = ACTIONS(1473), + [anon_sym_DOLLARnameof] = ACTIONS(1473), + [anon_sym_DOLLARoffsetof] = ACTIONS(1473), + [anon_sym_DOLLARqnameof] = ACTIONS(1473), + [anon_sym_DOLLARvaconst] = ACTIONS(1473), + [anon_sym_DOLLARvaarg] = ACTIONS(1473), + [anon_sym_DOLLARvaref] = ACTIONS(1473), + [anon_sym_DOLLARvaexpr] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_DOLLARvacount] = ACTIONS(1473), + [anon_sym_DOLLAReval] = ACTIONS(1473), + [anon_sym_DOLLARis_const] = ACTIONS(1473), + [anon_sym_DOLLARsizeof] = ACTIONS(1473), + [anon_sym_DOLLARstringify] = ACTIONS(1473), + [anon_sym_DOLLARappend] = ACTIONS(1473), + [anon_sym_DOLLARconcat] = ACTIONS(1473), + [anon_sym_DOLLARdefined] = ACTIONS(1473), + [anon_sym_DOLLARembed] = ACTIONS(1473), + [anon_sym_DOLLARand] = ACTIONS(1473), + [anon_sym_DOLLARor] = ACTIONS(1473), + [anon_sym_DOLLARfeature] = ACTIONS(1473), + [anon_sym_DOLLARassignable] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_typeid] = ACTIONS(1473), + [anon_sym_LBRACE_PIPE] = ACTIONS(1475), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_ichar] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_ushort] = ACTIONS(1473), + [anon_sym_uint] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_ulong] = ACTIONS(1473), + [anon_sym_int128] = ACTIONS(1473), + [anon_sym_uint128] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_float16] = ACTIONS(1473), + [anon_sym_bfloat16] = ACTIONS(1473), + [anon_sym_float128] = ACTIONS(1473), + [anon_sym_iptr] = ACTIONS(1473), + [anon_sym_uptr] = ACTIONS(1473), + [anon_sym_isz] = ACTIONS(1473), + [anon_sym_usz] = ACTIONS(1473), + [anon_sym_anyfault] = ACTIONS(1473), + [anon_sym_any] = ACTIONS(1473), + [anon_sym_DOLLARtypeof] = ACTIONS(1473), + [anon_sym_DOLLARtypefrom] = ACTIONS(1473), + [anon_sym_DOLLARevaltype] = ACTIONS(1473), + [anon_sym_DOLLARvatype] = ACTIONS(1473), + [sym_real_literal] = ACTIONS(1475), }, [624] = { [sym_line_comment] = STATE(624), [sym_doc_comment] = STATE(624), [sym_block_comment] = STATE(624), - [sym_ident] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_DQUOTE] = ACTIONS(1529), - [anon_sym_BQUOTE] = ACTIONS(1529), - [sym_bytes_literal] = ACTIONS(1529), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1527), - [sym_at_ident] = ACTIONS(1529), - [sym_hash_ident] = ACTIONS(1529), - [sym_type_ident] = ACTIONS(1529), - [sym_ct_type_ident] = ACTIONS(1529), - [sym_const_ident] = ACTIONS(1527), - [sym_builtin] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(1527), - [anon_sym_tlocal] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1529), - [anon_sym_fn] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_const] = ACTIONS(1527), - [anon_sym_var] = ACTIONS(1527), - [anon_sym_return] = ACTIONS(1527), - [anon_sym_continue] = ACTIONS(1527), - [anon_sym_break] = ACTIONS(1527), - [anon_sym_defer] = ACTIONS(1527), - [anon_sym_assert] = ACTIONS(1527), - [anon_sym_nextcase] = ACTIONS(1527), - [anon_sym_switch] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1527), - [anon_sym_for] = ACTIONS(1527), - [anon_sym_foreach] = ACTIONS(1527), - [anon_sym_foreach_r] = ACTIONS(1527), - [anon_sym_while] = ACTIONS(1527), - [anon_sym_do] = ACTIONS(1527), - [anon_sym_int] = ACTIONS(1527), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1529), - [anon_sym_asm] = ACTIONS(1527), - [anon_sym_DOLLARassert] = ACTIONS(1527), - [anon_sym_DOLLARerror] = ACTIONS(1527), - [anon_sym_DOLLARecho] = ACTIONS(1527), - [anon_sym_DOLLARif] = ACTIONS(1527), - [anon_sym_DOLLARendif] = ACTIONS(1527), - [anon_sym_DOLLARswitch] = ACTIONS(1527), - [anon_sym_DOLLARfor] = ACTIONS(1527), - [anon_sym_DOLLARforeach] = ACTIONS(1527), - [anon_sym_DOLLARalignof] = ACTIONS(1527), - [anon_sym_DOLLARextnameof] = ACTIONS(1527), - [anon_sym_DOLLARnameof] = ACTIONS(1527), - [anon_sym_DOLLARoffsetof] = ACTIONS(1527), - [anon_sym_DOLLARqnameof] = ACTIONS(1527), - [anon_sym_DOLLAReval] = ACTIONS(1527), - [anon_sym_DOLLARdefined] = ACTIONS(1527), - [anon_sym_DOLLARsizeof] = ACTIONS(1527), - [anon_sym_DOLLARstringify] = ACTIONS(1527), - [anon_sym_DOLLARis_const] = ACTIONS(1527), - [anon_sym_DOLLARvaconst] = ACTIONS(1527), - [anon_sym_DOLLARvaarg] = ACTIONS(1527), - [anon_sym_DOLLARvaref] = ACTIONS(1527), - [anon_sym_DOLLARvaexpr] = ACTIONS(1527), - [anon_sym_true] = ACTIONS(1527), - [anon_sym_false] = ACTIONS(1527), - [anon_sym_null] = ACTIONS(1527), - [anon_sym_DOLLARvacount] = ACTIONS(1527), - [anon_sym_DOLLARfeature] = ACTIONS(1527), - [anon_sym_DOLLARand] = ACTIONS(1527), - [anon_sym_DOLLARor] = ACTIONS(1527), - [anon_sym_DOLLARassignable] = ACTIONS(1527), - [anon_sym_DOLLARembed] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), - [anon_sym_typeid] = ACTIONS(1527), - [anon_sym_LBRACE_PIPE] = ACTIONS(1529), - [anon_sym_void] = ACTIONS(1527), - [anon_sym_bool] = ACTIONS(1527), - [anon_sym_char] = ACTIONS(1527), - [anon_sym_ichar] = ACTIONS(1527), - [anon_sym_short] = ACTIONS(1527), - [anon_sym_ushort] = ACTIONS(1527), - [anon_sym_uint] = ACTIONS(1527), - [anon_sym_long] = ACTIONS(1527), - [anon_sym_ulong] = ACTIONS(1527), - [anon_sym_int128] = ACTIONS(1527), - [anon_sym_uint128] = ACTIONS(1527), - [anon_sym_float] = ACTIONS(1527), - [anon_sym_double] = ACTIONS(1527), - [anon_sym_float16] = ACTIONS(1527), - [anon_sym_bfloat16] = ACTIONS(1527), - [anon_sym_float128] = ACTIONS(1527), - [anon_sym_iptr] = ACTIONS(1527), - [anon_sym_uptr] = ACTIONS(1527), - [anon_sym_isz] = ACTIONS(1527), - [anon_sym_usz] = ACTIONS(1527), - [anon_sym_anyfault] = ACTIONS(1527), - [anon_sym_any] = ACTIONS(1527), - [anon_sym_DOLLARtypeof] = ACTIONS(1527), - [anon_sym_DOLLARtypefrom] = ACTIONS(1527), - [anon_sym_DOLLARvatype] = ACTIONS(1527), - [anon_sym_DOLLARevaltype] = ACTIONS(1527), - [sym_real_literal] = ACTIONS(1529), + [sym_ident] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [sym_bytes_literal] = ACTIONS(1479), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1477), + [sym_at_ident] = ACTIONS(1479), + [sym_hash_ident] = ACTIONS(1479), + [sym_type_ident] = ACTIONS(1479), + [sym_ct_type_ident] = ACTIONS(1479), + [sym_const_ident] = ACTIONS(1477), + [sym_builtin] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_tlocal] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_var] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_defer] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1477), + [anon_sym_nextcase] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_foreach] = ACTIONS(1477), + [anon_sym_foreach_r] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_do] = ACTIONS(1477), + [anon_sym_int] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym_DOLLARassert] = ACTIONS(1477), + [anon_sym_DOLLARerror] = ACTIONS(1477), + [anon_sym_DOLLARecho] = ACTIONS(1477), + [anon_sym_DOLLARif] = ACTIONS(1477), + [anon_sym_DOLLARswitch] = ACTIONS(1477), + [anon_sym_DOLLARfor] = ACTIONS(1477), + [anon_sym_DOLLARendfor] = ACTIONS(1477), + [anon_sym_DOLLARforeach] = ACTIONS(1477), + [anon_sym_DOLLARalignof] = ACTIONS(1477), + [anon_sym_DOLLARextnameof] = ACTIONS(1477), + [anon_sym_DOLLARnameof] = ACTIONS(1477), + [anon_sym_DOLLARoffsetof] = ACTIONS(1477), + [anon_sym_DOLLARqnameof] = ACTIONS(1477), + [anon_sym_DOLLARvaconst] = ACTIONS(1477), + [anon_sym_DOLLARvaarg] = ACTIONS(1477), + [anon_sym_DOLLARvaref] = ACTIONS(1477), + [anon_sym_DOLLARvaexpr] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_DOLLARvacount] = ACTIONS(1477), + [anon_sym_DOLLAReval] = ACTIONS(1477), + [anon_sym_DOLLARis_const] = ACTIONS(1477), + [anon_sym_DOLLARsizeof] = ACTIONS(1477), + [anon_sym_DOLLARstringify] = ACTIONS(1477), + [anon_sym_DOLLARappend] = ACTIONS(1477), + [anon_sym_DOLLARconcat] = ACTIONS(1477), + [anon_sym_DOLLARdefined] = ACTIONS(1477), + [anon_sym_DOLLARembed] = ACTIONS(1477), + [anon_sym_DOLLARand] = ACTIONS(1477), + [anon_sym_DOLLARor] = ACTIONS(1477), + [anon_sym_DOLLARfeature] = ACTIONS(1477), + [anon_sym_DOLLARassignable] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_PLUS_PLUS] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_typeid] = ACTIONS(1477), + [anon_sym_LBRACE_PIPE] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_ichar] = ACTIONS(1477), + [anon_sym_short] = ACTIONS(1477), + [anon_sym_ushort] = ACTIONS(1477), + [anon_sym_uint] = ACTIONS(1477), + [anon_sym_long] = ACTIONS(1477), + [anon_sym_ulong] = ACTIONS(1477), + [anon_sym_int128] = ACTIONS(1477), + [anon_sym_uint128] = ACTIONS(1477), + [anon_sym_float] = ACTIONS(1477), + [anon_sym_double] = ACTIONS(1477), + [anon_sym_float16] = ACTIONS(1477), + [anon_sym_bfloat16] = ACTIONS(1477), + [anon_sym_float128] = ACTIONS(1477), + [anon_sym_iptr] = ACTIONS(1477), + [anon_sym_uptr] = ACTIONS(1477), + [anon_sym_isz] = ACTIONS(1477), + [anon_sym_usz] = ACTIONS(1477), + [anon_sym_anyfault] = ACTIONS(1477), + [anon_sym_any] = ACTIONS(1477), + [anon_sym_DOLLARtypeof] = ACTIONS(1477), + [anon_sym_DOLLARtypefrom] = ACTIONS(1477), + [anon_sym_DOLLARevaltype] = ACTIONS(1477), + [anon_sym_DOLLARvatype] = ACTIONS(1477), + [sym_real_literal] = ACTIONS(1479), }, [625] = { [sym_line_comment] = STATE(625), [sym_doc_comment] = STATE(625), [sym_block_comment] = STATE(625), - [sym_ident] = ACTIONS(1535), - [sym_integer_literal] = ACTIONS(1537), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [anon_sym_BQUOTE] = ACTIONS(1537), - [sym_bytes_literal] = ACTIONS(1537), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1535), - [sym_at_ident] = ACTIONS(1537), - [sym_hash_ident] = ACTIONS(1537), - [sym_type_ident] = ACTIONS(1537), - [sym_ct_type_ident] = ACTIONS(1537), - [sym_const_ident] = ACTIONS(1535), - [sym_builtin] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_tlocal] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_fn] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [anon_sym_var] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_defer] = ACTIONS(1535), - [anon_sym_assert] = ACTIONS(1535), - [anon_sym_nextcase] = ACTIONS(1535), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_foreach] = ACTIONS(1535), - [anon_sym_foreach_r] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_int] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_asm] = ACTIONS(1535), - [anon_sym_DOLLARassert] = ACTIONS(1535), - [anon_sym_DOLLARerror] = ACTIONS(1535), - [anon_sym_DOLLARecho] = ACTIONS(1535), - [anon_sym_DOLLARif] = ACTIONS(1535), - [anon_sym_DOLLARendif] = ACTIONS(1535), - [anon_sym_DOLLARswitch] = ACTIONS(1535), - [anon_sym_DOLLARfor] = ACTIONS(1535), - [anon_sym_DOLLARforeach] = ACTIONS(1535), - [anon_sym_DOLLARalignof] = ACTIONS(1535), - [anon_sym_DOLLARextnameof] = ACTIONS(1535), - [anon_sym_DOLLARnameof] = ACTIONS(1535), - [anon_sym_DOLLARoffsetof] = ACTIONS(1535), - [anon_sym_DOLLARqnameof] = ACTIONS(1535), - [anon_sym_DOLLAReval] = ACTIONS(1535), - [anon_sym_DOLLARdefined] = ACTIONS(1535), - [anon_sym_DOLLARsizeof] = ACTIONS(1535), - [anon_sym_DOLLARstringify] = ACTIONS(1535), - [anon_sym_DOLLARis_const] = ACTIONS(1535), - [anon_sym_DOLLARvaconst] = ACTIONS(1535), - [anon_sym_DOLLARvaarg] = ACTIONS(1535), - [anon_sym_DOLLARvaref] = ACTIONS(1535), - [anon_sym_DOLLARvaexpr] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1535), - [anon_sym_false] = ACTIONS(1535), - [anon_sym_null] = ACTIONS(1535), - [anon_sym_DOLLARvacount] = ACTIONS(1535), - [anon_sym_DOLLARfeature] = ACTIONS(1535), - [anon_sym_DOLLARand] = ACTIONS(1535), - [anon_sym_DOLLARor] = ACTIONS(1535), - [anon_sym_DOLLARassignable] = ACTIONS(1535), - [anon_sym_DOLLARembed] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_typeid] = ACTIONS(1535), - [anon_sym_LBRACE_PIPE] = ACTIONS(1537), - [anon_sym_void] = ACTIONS(1535), - [anon_sym_bool] = ACTIONS(1535), - [anon_sym_char] = ACTIONS(1535), - [anon_sym_ichar] = ACTIONS(1535), - [anon_sym_short] = ACTIONS(1535), - [anon_sym_ushort] = ACTIONS(1535), - [anon_sym_uint] = ACTIONS(1535), - [anon_sym_long] = ACTIONS(1535), - [anon_sym_ulong] = ACTIONS(1535), - [anon_sym_int128] = ACTIONS(1535), - [anon_sym_uint128] = ACTIONS(1535), - [anon_sym_float] = ACTIONS(1535), - [anon_sym_double] = ACTIONS(1535), - [anon_sym_float16] = ACTIONS(1535), - [anon_sym_bfloat16] = ACTIONS(1535), - [anon_sym_float128] = ACTIONS(1535), - [anon_sym_iptr] = ACTIONS(1535), - [anon_sym_uptr] = ACTIONS(1535), - [anon_sym_isz] = ACTIONS(1535), - [anon_sym_usz] = ACTIONS(1535), - [anon_sym_anyfault] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_DOLLARtypeof] = ACTIONS(1535), - [anon_sym_DOLLARtypefrom] = ACTIONS(1535), - [anon_sym_DOLLARvatype] = ACTIONS(1535), - [anon_sym_DOLLARevaltype] = ACTIONS(1535), - [sym_real_literal] = ACTIONS(1537), + [sym_ident] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_BQUOTE] = ACTIONS(1483), + [sym_bytes_literal] = ACTIONS(1483), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1481), + [sym_at_ident] = ACTIONS(1483), + [sym_hash_ident] = ACTIONS(1483), + [sym_type_ident] = ACTIONS(1483), + [sym_ct_type_ident] = ACTIONS(1483), + [sym_const_ident] = ACTIONS(1481), + [sym_builtin] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_tlocal] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_defer] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1481), + [anon_sym_nextcase] = ACTIONS(1481), + [anon_sym_switch] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_foreach] = ACTIONS(1481), + [anon_sym_foreach_r] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_int] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_asm] = ACTIONS(1481), + [anon_sym_DOLLARassert] = ACTIONS(1481), + [anon_sym_DOLLARerror] = ACTIONS(1481), + [anon_sym_DOLLARecho] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1481), + [anon_sym_DOLLARswitch] = ACTIONS(1481), + [anon_sym_DOLLARfor] = ACTIONS(1481), + [anon_sym_DOLLARendfor] = ACTIONS(1481), + [anon_sym_DOLLARforeach] = ACTIONS(1481), + [anon_sym_DOLLARalignof] = ACTIONS(1481), + [anon_sym_DOLLARextnameof] = ACTIONS(1481), + [anon_sym_DOLLARnameof] = ACTIONS(1481), + [anon_sym_DOLLARoffsetof] = ACTIONS(1481), + [anon_sym_DOLLARqnameof] = ACTIONS(1481), + [anon_sym_DOLLARvaconst] = ACTIONS(1481), + [anon_sym_DOLLARvaarg] = ACTIONS(1481), + [anon_sym_DOLLARvaref] = ACTIONS(1481), + [anon_sym_DOLLARvaexpr] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_DOLLARvacount] = ACTIONS(1481), + [anon_sym_DOLLAReval] = ACTIONS(1481), + [anon_sym_DOLLARis_const] = ACTIONS(1481), + [anon_sym_DOLLARsizeof] = ACTIONS(1481), + [anon_sym_DOLLARstringify] = ACTIONS(1481), + [anon_sym_DOLLARappend] = ACTIONS(1481), + [anon_sym_DOLLARconcat] = ACTIONS(1481), + [anon_sym_DOLLARdefined] = ACTIONS(1481), + [anon_sym_DOLLARembed] = ACTIONS(1481), + [anon_sym_DOLLARand] = ACTIONS(1481), + [anon_sym_DOLLARor] = ACTIONS(1481), + [anon_sym_DOLLARfeature] = ACTIONS(1481), + [anon_sym_DOLLARassignable] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_typeid] = ACTIONS(1481), + [anon_sym_LBRACE_PIPE] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_ichar] = ACTIONS(1481), + [anon_sym_short] = ACTIONS(1481), + [anon_sym_ushort] = ACTIONS(1481), + [anon_sym_uint] = ACTIONS(1481), + [anon_sym_long] = ACTIONS(1481), + [anon_sym_ulong] = ACTIONS(1481), + [anon_sym_int128] = ACTIONS(1481), + [anon_sym_uint128] = ACTIONS(1481), + [anon_sym_float] = ACTIONS(1481), + [anon_sym_double] = ACTIONS(1481), + [anon_sym_float16] = ACTIONS(1481), + [anon_sym_bfloat16] = ACTIONS(1481), + [anon_sym_float128] = ACTIONS(1481), + [anon_sym_iptr] = ACTIONS(1481), + [anon_sym_uptr] = ACTIONS(1481), + [anon_sym_isz] = ACTIONS(1481), + [anon_sym_usz] = ACTIONS(1481), + [anon_sym_anyfault] = ACTIONS(1481), + [anon_sym_any] = ACTIONS(1481), + [anon_sym_DOLLARtypeof] = ACTIONS(1481), + [anon_sym_DOLLARtypefrom] = ACTIONS(1481), + [anon_sym_DOLLARevaltype] = ACTIONS(1481), + [anon_sym_DOLLARvatype] = ACTIONS(1481), + [sym_real_literal] = ACTIONS(1483), }, [626] = { [sym_line_comment] = STATE(626), [sym_doc_comment] = STATE(626), [sym_block_comment] = STATE(626), - [sym_ident] = ACTIONS(1475), - [sym_integer_literal] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1477), - [sym_bytes_literal] = ACTIONS(1477), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1475), - [sym_at_ident] = ACTIONS(1477), - [sym_hash_ident] = ACTIONS(1477), - [sym_type_ident] = ACTIONS(1477), - [sym_ct_type_ident] = ACTIONS(1477), - [sym_const_ident] = ACTIONS(1475), - [sym_builtin] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_tlocal] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_fn] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_var] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_defer] = ACTIONS(1475), - [anon_sym_assert] = ACTIONS(1475), - [anon_sym_nextcase] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_foreach] = ACTIONS(1475), - [anon_sym_foreach_r] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_int] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_asm] = ACTIONS(1475), - [anon_sym_DOLLARassert] = ACTIONS(1475), - [anon_sym_DOLLARerror] = ACTIONS(1475), - [anon_sym_DOLLARecho] = ACTIONS(1475), - [anon_sym_DOLLARif] = ACTIONS(1475), - [anon_sym_DOLLARswitch] = ACTIONS(1475), - [anon_sym_DOLLARfor] = ACTIONS(1475), - [anon_sym_DOLLARendfor] = ACTIONS(1475), - [anon_sym_DOLLARforeach] = ACTIONS(1475), - [anon_sym_DOLLARalignof] = ACTIONS(1475), - [anon_sym_DOLLARextnameof] = ACTIONS(1475), - [anon_sym_DOLLARnameof] = ACTIONS(1475), - [anon_sym_DOLLARoffsetof] = ACTIONS(1475), - [anon_sym_DOLLARqnameof] = ACTIONS(1475), - [anon_sym_DOLLAReval] = ACTIONS(1475), - [anon_sym_DOLLARdefined] = ACTIONS(1475), - [anon_sym_DOLLARsizeof] = ACTIONS(1475), - [anon_sym_DOLLARstringify] = ACTIONS(1475), - [anon_sym_DOLLARis_const] = ACTIONS(1475), - [anon_sym_DOLLARvaconst] = ACTIONS(1475), - [anon_sym_DOLLARvaarg] = ACTIONS(1475), - [anon_sym_DOLLARvaref] = ACTIONS(1475), - [anon_sym_DOLLARvaexpr] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_DOLLARvacount] = ACTIONS(1475), - [anon_sym_DOLLARfeature] = ACTIONS(1475), - [anon_sym_DOLLARand] = ACTIONS(1475), - [anon_sym_DOLLARor] = ACTIONS(1475), - [anon_sym_DOLLARassignable] = ACTIONS(1475), - [anon_sym_DOLLARembed] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1477), - [anon_sym_DASH_DASH] = ACTIONS(1477), - [anon_sym_typeid] = ACTIONS(1475), - [anon_sym_LBRACE_PIPE] = ACTIONS(1477), - [anon_sym_void] = ACTIONS(1475), - [anon_sym_bool] = ACTIONS(1475), - [anon_sym_char] = ACTIONS(1475), - [anon_sym_ichar] = ACTIONS(1475), - [anon_sym_short] = ACTIONS(1475), - [anon_sym_ushort] = ACTIONS(1475), - [anon_sym_uint] = ACTIONS(1475), - [anon_sym_long] = ACTIONS(1475), - [anon_sym_ulong] = ACTIONS(1475), - [anon_sym_int128] = ACTIONS(1475), - [anon_sym_uint128] = ACTIONS(1475), - [anon_sym_float] = ACTIONS(1475), - [anon_sym_double] = ACTIONS(1475), - [anon_sym_float16] = ACTIONS(1475), - [anon_sym_bfloat16] = ACTIONS(1475), - [anon_sym_float128] = ACTIONS(1475), - [anon_sym_iptr] = ACTIONS(1475), - [anon_sym_uptr] = ACTIONS(1475), - [anon_sym_isz] = ACTIONS(1475), - [anon_sym_usz] = ACTIONS(1475), - [anon_sym_anyfault] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_DOLLARtypeof] = ACTIONS(1475), - [anon_sym_DOLLARtypefrom] = ACTIONS(1475), - [anon_sym_DOLLARvatype] = ACTIONS(1475), - [anon_sym_DOLLARevaltype] = ACTIONS(1475), - [sym_real_literal] = ACTIONS(1477), + [sym_ident] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_BQUOTE] = ACTIONS(1487), + [sym_bytes_literal] = ACTIONS(1487), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1485), + [sym_at_ident] = ACTIONS(1487), + [sym_hash_ident] = ACTIONS(1487), + [sym_type_ident] = ACTIONS(1487), + [sym_ct_type_ident] = ACTIONS(1487), + [sym_const_ident] = ACTIONS(1485), + [sym_builtin] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_tlocal] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_var] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_defer] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1485), + [anon_sym_nextcase] = ACTIONS(1485), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_foreach] = ACTIONS(1485), + [anon_sym_foreach_r] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_int] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_asm] = ACTIONS(1485), + [anon_sym_DOLLARassert] = ACTIONS(1485), + [anon_sym_DOLLARerror] = ACTIONS(1485), + [anon_sym_DOLLARecho] = ACTIONS(1485), + [anon_sym_DOLLARif] = ACTIONS(1485), + [anon_sym_DOLLARswitch] = ACTIONS(1485), + [anon_sym_DOLLARfor] = ACTIONS(1485), + [anon_sym_DOLLARendfor] = ACTIONS(1485), + [anon_sym_DOLLARforeach] = ACTIONS(1485), + [anon_sym_DOLLARalignof] = ACTIONS(1485), + [anon_sym_DOLLARextnameof] = ACTIONS(1485), + [anon_sym_DOLLARnameof] = ACTIONS(1485), + [anon_sym_DOLLARoffsetof] = ACTIONS(1485), + [anon_sym_DOLLARqnameof] = ACTIONS(1485), + [anon_sym_DOLLARvaconst] = ACTIONS(1485), + [anon_sym_DOLLARvaarg] = ACTIONS(1485), + [anon_sym_DOLLARvaref] = ACTIONS(1485), + [anon_sym_DOLLARvaexpr] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_DOLLARvacount] = ACTIONS(1485), + [anon_sym_DOLLAReval] = ACTIONS(1485), + [anon_sym_DOLLARis_const] = ACTIONS(1485), + [anon_sym_DOLLARsizeof] = ACTIONS(1485), + [anon_sym_DOLLARstringify] = ACTIONS(1485), + [anon_sym_DOLLARappend] = ACTIONS(1485), + [anon_sym_DOLLARconcat] = ACTIONS(1485), + [anon_sym_DOLLARdefined] = ACTIONS(1485), + [anon_sym_DOLLARembed] = ACTIONS(1485), + [anon_sym_DOLLARand] = ACTIONS(1485), + [anon_sym_DOLLARor] = ACTIONS(1485), + [anon_sym_DOLLARfeature] = ACTIONS(1485), + [anon_sym_DOLLARassignable] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_typeid] = ACTIONS(1485), + [anon_sym_LBRACE_PIPE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_ichar] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_ushort] = ACTIONS(1485), + [anon_sym_uint] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_ulong] = ACTIONS(1485), + [anon_sym_int128] = ACTIONS(1485), + [anon_sym_uint128] = ACTIONS(1485), + [anon_sym_float] = ACTIONS(1485), + [anon_sym_double] = ACTIONS(1485), + [anon_sym_float16] = ACTIONS(1485), + [anon_sym_bfloat16] = ACTIONS(1485), + [anon_sym_float128] = ACTIONS(1485), + [anon_sym_iptr] = ACTIONS(1485), + [anon_sym_uptr] = ACTIONS(1485), + [anon_sym_isz] = ACTIONS(1485), + [anon_sym_usz] = ACTIONS(1485), + [anon_sym_anyfault] = ACTIONS(1485), + [anon_sym_any] = ACTIONS(1485), + [anon_sym_DOLLARtypeof] = ACTIONS(1485), + [anon_sym_DOLLARtypefrom] = ACTIONS(1485), + [anon_sym_DOLLARevaltype] = ACTIONS(1485), + [anon_sym_DOLLARvatype] = ACTIONS(1485), + [sym_real_literal] = ACTIONS(1487), }, [627] = { [sym_line_comment] = STATE(627), [sym_doc_comment] = STATE(627), [sym_block_comment] = STATE(627), - [sym_ident] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1481), - [anon_sym_BQUOTE] = ACTIONS(1481), - [sym_bytes_literal] = ACTIONS(1481), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1479), - [sym_at_ident] = ACTIONS(1481), - [sym_hash_ident] = ACTIONS(1481), - [sym_type_ident] = ACTIONS(1481), - [sym_ct_type_ident] = ACTIONS(1481), - [sym_const_ident] = ACTIONS(1479), - [sym_builtin] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_tlocal] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_fn] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_defer] = ACTIONS(1479), - [anon_sym_assert] = ACTIONS(1479), - [anon_sym_nextcase] = ACTIONS(1479), - [anon_sym_switch] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_foreach] = ACTIONS(1479), - [anon_sym_foreach_r] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_do] = ACTIONS(1479), - [anon_sym_int] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1481), - [anon_sym_asm] = ACTIONS(1479), - [anon_sym_DOLLARassert] = ACTIONS(1479), - [anon_sym_DOLLARerror] = ACTIONS(1479), - [anon_sym_DOLLARecho] = ACTIONS(1479), - [anon_sym_DOLLARif] = ACTIONS(1479), - [anon_sym_DOLLARswitch] = ACTIONS(1479), - [anon_sym_DOLLARfor] = ACTIONS(1479), - [anon_sym_DOLLARendfor] = ACTIONS(1479), - [anon_sym_DOLLARforeach] = ACTIONS(1479), - [anon_sym_DOLLARalignof] = ACTIONS(1479), - [anon_sym_DOLLARextnameof] = ACTIONS(1479), - [anon_sym_DOLLARnameof] = ACTIONS(1479), - [anon_sym_DOLLARoffsetof] = ACTIONS(1479), - [anon_sym_DOLLARqnameof] = ACTIONS(1479), - [anon_sym_DOLLAReval] = ACTIONS(1479), - [anon_sym_DOLLARdefined] = ACTIONS(1479), - [anon_sym_DOLLARsizeof] = ACTIONS(1479), - [anon_sym_DOLLARstringify] = ACTIONS(1479), - [anon_sym_DOLLARis_const] = ACTIONS(1479), - [anon_sym_DOLLARvaconst] = ACTIONS(1479), - [anon_sym_DOLLARvaarg] = ACTIONS(1479), - [anon_sym_DOLLARvaref] = ACTIONS(1479), - [anon_sym_DOLLARvaexpr] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1479), - [anon_sym_false] = ACTIONS(1479), - [anon_sym_null] = ACTIONS(1479), - [anon_sym_DOLLARvacount] = ACTIONS(1479), - [anon_sym_DOLLARfeature] = ACTIONS(1479), - [anon_sym_DOLLARand] = ACTIONS(1479), - [anon_sym_DOLLARor] = ACTIONS(1479), - [anon_sym_DOLLARassignable] = ACTIONS(1479), - [anon_sym_DOLLARembed] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1481), - [anon_sym_typeid] = ACTIONS(1479), - [anon_sym_LBRACE_PIPE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1479), - [anon_sym_bool] = ACTIONS(1479), - [anon_sym_char] = ACTIONS(1479), - [anon_sym_ichar] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [anon_sym_ushort] = ACTIONS(1479), - [anon_sym_uint] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_ulong] = ACTIONS(1479), - [anon_sym_int128] = ACTIONS(1479), - [anon_sym_uint128] = ACTIONS(1479), - [anon_sym_float] = ACTIONS(1479), - [anon_sym_double] = ACTIONS(1479), - [anon_sym_float16] = ACTIONS(1479), - [anon_sym_bfloat16] = ACTIONS(1479), - [anon_sym_float128] = ACTIONS(1479), - [anon_sym_iptr] = ACTIONS(1479), - [anon_sym_uptr] = ACTIONS(1479), - [anon_sym_isz] = ACTIONS(1479), - [anon_sym_usz] = ACTIONS(1479), - [anon_sym_anyfault] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_DOLLARtypeof] = ACTIONS(1479), - [anon_sym_DOLLARtypefrom] = ACTIONS(1479), - [anon_sym_DOLLARvatype] = ACTIONS(1479), - [anon_sym_DOLLARevaltype] = ACTIONS(1479), - [sym_real_literal] = ACTIONS(1481), + [sym_ident] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_BQUOTE] = ACTIONS(1491), + [sym_bytes_literal] = ACTIONS(1491), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1489), + [sym_at_ident] = ACTIONS(1491), + [sym_hash_ident] = ACTIONS(1491), + [sym_type_ident] = ACTIONS(1491), + [sym_ct_type_ident] = ACTIONS(1491), + [sym_const_ident] = ACTIONS(1489), + [sym_builtin] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_tlocal] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_var] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_defer] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1489), + [anon_sym_nextcase] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_foreach] = ACTIONS(1489), + [anon_sym_foreach_r] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_int] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_asm] = ACTIONS(1489), + [anon_sym_DOLLARassert] = ACTIONS(1489), + [anon_sym_DOLLARerror] = ACTIONS(1489), + [anon_sym_DOLLARecho] = ACTIONS(1489), + [anon_sym_DOLLARif] = ACTIONS(1489), + [anon_sym_DOLLARswitch] = ACTIONS(1489), + [anon_sym_DOLLARfor] = ACTIONS(1489), + [anon_sym_DOLLARendfor] = ACTIONS(1489), + [anon_sym_DOLLARforeach] = ACTIONS(1489), + [anon_sym_DOLLARalignof] = ACTIONS(1489), + [anon_sym_DOLLARextnameof] = ACTIONS(1489), + [anon_sym_DOLLARnameof] = ACTIONS(1489), + [anon_sym_DOLLARoffsetof] = ACTIONS(1489), + [anon_sym_DOLLARqnameof] = ACTIONS(1489), + [anon_sym_DOLLARvaconst] = ACTIONS(1489), + [anon_sym_DOLLARvaarg] = ACTIONS(1489), + [anon_sym_DOLLARvaref] = ACTIONS(1489), + [anon_sym_DOLLARvaexpr] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_DOLLARvacount] = ACTIONS(1489), + [anon_sym_DOLLAReval] = ACTIONS(1489), + [anon_sym_DOLLARis_const] = ACTIONS(1489), + [anon_sym_DOLLARsizeof] = ACTIONS(1489), + [anon_sym_DOLLARstringify] = ACTIONS(1489), + [anon_sym_DOLLARappend] = ACTIONS(1489), + [anon_sym_DOLLARconcat] = ACTIONS(1489), + [anon_sym_DOLLARdefined] = ACTIONS(1489), + [anon_sym_DOLLARembed] = ACTIONS(1489), + [anon_sym_DOLLARand] = ACTIONS(1489), + [anon_sym_DOLLARor] = ACTIONS(1489), + [anon_sym_DOLLARfeature] = ACTIONS(1489), + [anon_sym_DOLLARassignable] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_typeid] = ACTIONS(1489), + [anon_sym_LBRACE_PIPE] = ACTIONS(1491), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_ichar] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_ushort] = ACTIONS(1489), + [anon_sym_uint] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_ulong] = ACTIONS(1489), + [anon_sym_int128] = ACTIONS(1489), + [anon_sym_uint128] = ACTIONS(1489), + [anon_sym_float] = ACTIONS(1489), + [anon_sym_double] = ACTIONS(1489), + [anon_sym_float16] = ACTIONS(1489), + [anon_sym_bfloat16] = ACTIONS(1489), + [anon_sym_float128] = ACTIONS(1489), + [anon_sym_iptr] = ACTIONS(1489), + [anon_sym_uptr] = ACTIONS(1489), + [anon_sym_isz] = ACTIONS(1489), + [anon_sym_usz] = ACTIONS(1489), + [anon_sym_anyfault] = ACTIONS(1489), + [anon_sym_any] = ACTIONS(1489), + [anon_sym_DOLLARtypeof] = ACTIONS(1489), + [anon_sym_DOLLARtypefrom] = ACTIONS(1489), + [anon_sym_DOLLARevaltype] = ACTIONS(1489), + [anon_sym_DOLLARvatype] = ACTIONS(1489), + [sym_real_literal] = ACTIONS(1491), }, [628] = { [sym_line_comment] = STATE(628), [sym_doc_comment] = STATE(628), [sym_block_comment] = STATE(628), - [sym_ident] = ACTIONS(1543), - [sym_integer_literal] = ACTIONS(1545), - [anon_sym_SQUOTE] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1545), - [anon_sym_BQUOTE] = ACTIONS(1545), - [sym_bytes_literal] = ACTIONS(1545), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1543), - [sym_at_ident] = ACTIONS(1545), - [sym_hash_ident] = ACTIONS(1545), - [sym_type_ident] = ACTIONS(1545), - [sym_ct_type_ident] = ACTIONS(1545), - [sym_const_ident] = ACTIONS(1543), - [sym_builtin] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_tlocal] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_fn] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1543), - [anon_sym_var] = ACTIONS(1543), - [anon_sym_return] = ACTIONS(1543), - [anon_sym_continue] = ACTIONS(1543), - [anon_sym_break] = ACTIONS(1543), - [anon_sym_defer] = ACTIONS(1543), - [anon_sym_assert] = ACTIONS(1543), - [anon_sym_nextcase] = ACTIONS(1543), - [anon_sym_switch] = ACTIONS(1543), - [anon_sym_AMP_AMP] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1543), - [anon_sym_foreach] = ACTIONS(1543), - [anon_sym_foreach_r] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1543), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_int] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1543), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_asm] = ACTIONS(1543), - [anon_sym_DOLLARassert] = ACTIONS(1543), - [anon_sym_DOLLARerror] = ACTIONS(1543), - [anon_sym_DOLLARecho] = ACTIONS(1543), - [anon_sym_DOLLARif] = ACTIONS(1543), - [anon_sym_DOLLARendif] = ACTIONS(1543), - [anon_sym_DOLLARswitch] = ACTIONS(1543), - [anon_sym_DOLLARfor] = ACTIONS(1543), - [anon_sym_DOLLARforeach] = ACTIONS(1543), - [anon_sym_DOLLARalignof] = ACTIONS(1543), - [anon_sym_DOLLARextnameof] = ACTIONS(1543), - [anon_sym_DOLLARnameof] = ACTIONS(1543), - [anon_sym_DOLLARoffsetof] = ACTIONS(1543), - [anon_sym_DOLLARqnameof] = ACTIONS(1543), - [anon_sym_DOLLAReval] = ACTIONS(1543), - [anon_sym_DOLLARdefined] = ACTIONS(1543), - [anon_sym_DOLLARsizeof] = ACTIONS(1543), - [anon_sym_DOLLARstringify] = ACTIONS(1543), - [anon_sym_DOLLARis_const] = ACTIONS(1543), - [anon_sym_DOLLARvaconst] = ACTIONS(1543), - [anon_sym_DOLLARvaarg] = ACTIONS(1543), - [anon_sym_DOLLARvaref] = ACTIONS(1543), - [anon_sym_DOLLARvaexpr] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(1543), - [anon_sym_false] = ACTIONS(1543), - [anon_sym_null] = ACTIONS(1543), - [anon_sym_DOLLARvacount] = ACTIONS(1543), - [anon_sym_DOLLARfeature] = ACTIONS(1543), - [anon_sym_DOLLARand] = ACTIONS(1543), - [anon_sym_DOLLARor] = ACTIONS(1543), - [anon_sym_DOLLARassignable] = ACTIONS(1543), - [anon_sym_DOLLARembed] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1545), - [anon_sym_TILDE] = ACTIONS(1545), - [anon_sym_PLUS_PLUS] = ACTIONS(1545), - [anon_sym_DASH_DASH] = ACTIONS(1545), - [anon_sym_typeid] = ACTIONS(1543), - [anon_sym_LBRACE_PIPE] = ACTIONS(1545), - [anon_sym_void] = ACTIONS(1543), - [anon_sym_bool] = ACTIONS(1543), - [anon_sym_char] = ACTIONS(1543), - [anon_sym_ichar] = ACTIONS(1543), - [anon_sym_short] = ACTIONS(1543), - [anon_sym_ushort] = ACTIONS(1543), - [anon_sym_uint] = ACTIONS(1543), - [anon_sym_long] = ACTIONS(1543), - [anon_sym_ulong] = ACTIONS(1543), - [anon_sym_int128] = ACTIONS(1543), - [anon_sym_uint128] = ACTIONS(1543), - [anon_sym_float] = ACTIONS(1543), - [anon_sym_double] = ACTIONS(1543), - [anon_sym_float16] = ACTIONS(1543), - [anon_sym_bfloat16] = ACTIONS(1543), - [anon_sym_float128] = ACTIONS(1543), - [anon_sym_iptr] = ACTIONS(1543), - [anon_sym_uptr] = ACTIONS(1543), - [anon_sym_isz] = ACTIONS(1543), - [anon_sym_usz] = ACTIONS(1543), - [anon_sym_anyfault] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_DOLLARtypeof] = ACTIONS(1543), - [anon_sym_DOLLARtypefrom] = ACTIONS(1543), - [anon_sym_DOLLARvatype] = ACTIONS(1543), - [anon_sym_DOLLARevaltype] = ACTIONS(1543), - [sym_real_literal] = ACTIONS(1545), + [sym_ident] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_BQUOTE] = ACTIONS(1495), + [sym_bytes_literal] = ACTIONS(1495), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1493), + [sym_at_ident] = ACTIONS(1495), + [sym_hash_ident] = ACTIONS(1495), + [sym_type_ident] = ACTIONS(1495), + [sym_ct_type_ident] = ACTIONS(1495), + [sym_const_ident] = ACTIONS(1493), + [sym_builtin] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_tlocal] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_var] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_defer] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_nextcase] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_foreach] = ACTIONS(1493), + [anon_sym_foreach_r] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_asm] = ACTIONS(1493), + [anon_sym_DOLLARassert] = ACTIONS(1493), + [anon_sym_DOLLARerror] = ACTIONS(1493), + [anon_sym_DOLLARecho] = ACTIONS(1493), + [anon_sym_DOLLARif] = ACTIONS(1493), + [anon_sym_DOLLARswitch] = ACTIONS(1493), + [anon_sym_DOLLARfor] = ACTIONS(1493), + [anon_sym_DOLLARendfor] = ACTIONS(1493), + [anon_sym_DOLLARforeach] = ACTIONS(1493), + [anon_sym_DOLLARalignof] = ACTIONS(1493), + [anon_sym_DOLLARextnameof] = ACTIONS(1493), + [anon_sym_DOLLARnameof] = ACTIONS(1493), + [anon_sym_DOLLARoffsetof] = ACTIONS(1493), + [anon_sym_DOLLARqnameof] = ACTIONS(1493), + [anon_sym_DOLLARvaconst] = ACTIONS(1493), + [anon_sym_DOLLARvaarg] = ACTIONS(1493), + [anon_sym_DOLLARvaref] = ACTIONS(1493), + [anon_sym_DOLLARvaexpr] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_DOLLARvacount] = ACTIONS(1493), + [anon_sym_DOLLAReval] = ACTIONS(1493), + [anon_sym_DOLLARis_const] = ACTIONS(1493), + [anon_sym_DOLLARsizeof] = ACTIONS(1493), + [anon_sym_DOLLARstringify] = ACTIONS(1493), + [anon_sym_DOLLARappend] = ACTIONS(1493), + [anon_sym_DOLLARconcat] = ACTIONS(1493), + [anon_sym_DOLLARdefined] = ACTIONS(1493), + [anon_sym_DOLLARembed] = ACTIONS(1493), + [anon_sym_DOLLARand] = ACTIONS(1493), + [anon_sym_DOLLARor] = ACTIONS(1493), + [anon_sym_DOLLARfeature] = ACTIONS(1493), + [anon_sym_DOLLARassignable] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_typeid] = ACTIONS(1493), + [anon_sym_LBRACE_PIPE] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_ichar] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_ushort] = ACTIONS(1493), + [anon_sym_uint] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_ulong] = ACTIONS(1493), + [anon_sym_int128] = ACTIONS(1493), + [anon_sym_uint128] = ACTIONS(1493), + [anon_sym_float] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_float16] = ACTIONS(1493), + [anon_sym_bfloat16] = ACTIONS(1493), + [anon_sym_float128] = ACTIONS(1493), + [anon_sym_iptr] = ACTIONS(1493), + [anon_sym_uptr] = ACTIONS(1493), + [anon_sym_isz] = ACTIONS(1493), + [anon_sym_usz] = ACTIONS(1493), + [anon_sym_anyfault] = ACTIONS(1493), + [anon_sym_any] = ACTIONS(1493), + [anon_sym_DOLLARtypeof] = ACTIONS(1493), + [anon_sym_DOLLARtypefrom] = ACTIONS(1493), + [anon_sym_DOLLARevaltype] = ACTIONS(1493), + [anon_sym_DOLLARvatype] = ACTIONS(1493), + [sym_real_literal] = ACTIONS(1495), }, [629] = { [sym_line_comment] = STATE(629), [sym_doc_comment] = STATE(629), [sym_block_comment] = STATE(629), - [sym_ident] = ACTIONS(1547), - [sym_integer_literal] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1549), - [anon_sym_BQUOTE] = ACTIONS(1549), - [sym_bytes_literal] = ACTIONS(1549), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1547), - [sym_at_ident] = ACTIONS(1549), - [sym_hash_ident] = ACTIONS(1549), - [sym_type_ident] = ACTIONS(1549), - [sym_ct_type_ident] = ACTIONS(1549), - [sym_const_ident] = ACTIONS(1547), - [sym_builtin] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1547), - [anon_sym_static] = ACTIONS(1547), - [anon_sym_tlocal] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_fn] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_const] = ACTIONS(1547), - [anon_sym_var] = ACTIONS(1547), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_continue] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1547), - [anon_sym_defer] = ACTIONS(1547), - [anon_sym_assert] = ACTIONS(1547), - [anon_sym_nextcase] = ACTIONS(1547), - [anon_sym_switch] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1547), - [anon_sym_for] = ACTIONS(1547), - [anon_sym_foreach] = ACTIONS(1547), - [anon_sym_foreach_r] = ACTIONS(1547), - [anon_sym_while] = ACTIONS(1547), - [anon_sym_do] = ACTIONS(1547), - [anon_sym_int] = ACTIONS(1547), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1549), - [anon_sym_asm] = ACTIONS(1547), - [anon_sym_DOLLARassert] = ACTIONS(1547), - [anon_sym_DOLLARerror] = ACTIONS(1547), - [anon_sym_DOLLARecho] = ACTIONS(1547), - [anon_sym_DOLLARif] = ACTIONS(1547), - [anon_sym_DOLLARendif] = ACTIONS(1547), - [anon_sym_DOLLARswitch] = ACTIONS(1547), - [anon_sym_DOLLARfor] = ACTIONS(1547), - [anon_sym_DOLLARforeach] = ACTIONS(1547), - [anon_sym_DOLLARalignof] = ACTIONS(1547), - [anon_sym_DOLLARextnameof] = ACTIONS(1547), - [anon_sym_DOLLARnameof] = ACTIONS(1547), - [anon_sym_DOLLARoffsetof] = ACTIONS(1547), - [anon_sym_DOLLARqnameof] = ACTIONS(1547), - [anon_sym_DOLLAReval] = ACTIONS(1547), - [anon_sym_DOLLARdefined] = ACTIONS(1547), - [anon_sym_DOLLARsizeof] = ACTIONS(1547), - [anon_sym_DOLLARstringify] = ACTIONS(1547), - [anon_sym_DOLLARis_const] = ACTIONS(1547), - [anon_sym_DOLLARvaconst] = ACTIONS(1547), - [anon_sym_DOLLARvaarg] = ACTIONS(1547), - [anon_sym_DOLLARvaref] = ACTIONS(1547), - [anon_sym_DOLLARvaexpr] = ACTIONS(1547), - [anon_sym_true] = ACTIONS(1547), - [anon_sym_false] = ACTIONS(1547), - [anon_sym_null] = ACTIONS(1547), - [anon_sym_DOLLARvacount] = ACTIONS(1547), - [anon_sym_DOLLARfeature] = ACTIONS(1547), - [anon_sym_DOLLARand] = ACTIONS(1547), - [anon_sym_DOLLARor] = ACTIONS(1547), - [anon_sym_DOLLARassignable] = ACTIONS(1547), - [anon_sym_DOLLARembed] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_typeid] = ACTIONS(1547), - [anon_sym_LBRACE_PIPE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1547), - [anon_sym_bool] = ACTIONS(1547), - [anon_sym_char] = ACTIONS(1547), - [anon_sym_ichar] = ACTIONS(1547), - [anon_sym_short] = ACTIONS(1547), - [anon_sym_ushort] = ACTIONS(1547), - [anon_sym_uint] = ACTIONS(1547), - [anon_sym_long] = ACTIONS(1547), - [anon_sym_ulong] = ACTIONS(1547), - [anon_sym_int128] = ACTIONS(1547), - [anon_sym_uint128] = ACTIONS(1547), - [anon_sym_float] = ACTIONS(1547), - [anon_sym_double] = ACTIONS(1547), - [anon_sym_float16] = ACTIONS(1547), - [anon_sym_bfloat16] = ACTIONS(1547), - [anon_sym_float128] = ACTIONS(1547), - [anon_sym_iptr] = ACTIONS(1547), - [anon_sym_uptr] = ACTIONS(1547), - [anon_sym_isz] = ACTIONS(1547), - [anon_sym_usz] = ACTIONS(1547), - [anon_sym_anyfault] = ACTIONS(1547), - [anon_sym_any] = ACTIONS(1547), - [anon_sym_DOLLARtypeof] = ACTIONS(1547), - [anon_sym_DOLLARtypefrom] = ACTIONS(1547), - [anon_sym_DOLLARvatype] = ACTIONS(1547), - [anon_sym_DOLLARevaltype] = ACTIONS(1547), - [sym_real_literal] = ACTIONS(1549), + [sym_ident] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1499), + [sym_bytes_literal] = ACTIONS(1499), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1497), + [sym_at_ident] = ACTIONS(1499), + [sym_hash_ident] = ACTIONS(1499), + [sym_type_ident] = ACTIONS(1499), + [sym_ct_type_ident] = ACTIONS(1499), + [sym_const_ident] = ACTIONS(1497), + [sym_builtin] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_tlocal] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_var] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_defer] = ACTIONS(1497), + [anon_sym_assert] = ACTIONS(1497), + [anon_sym_nextcase] = ACTIONS(1497), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_foreach] = ACTIONS(1497), + [anon_sym_foreach_r] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_int] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_asm] = ACTIONS(1497), + [anon_sym_DOLLARassert] = ACTIONS(1497), + [anon_sym_DOLLARerror] = ACTIONS(1497), + [anon_sym_DOLLARecho] = ACTIONS(1497), + [anon_sym_DOLLARif] = ACTIONS(1497), + [anon_sym_DOLLARswitch] = ACTIONS(1497), + [anon_sym_DOLLARfor] = ACTIONS(1497), + [anon_sym_DOLLARendfor] = ACTIONS(1497), + [anon_sym_DOLLARforeach] = ACTIONS(1497), + [anon_sym_DOLLARalignof] = ACTIONS(1497), + [anon_sym_DOLLARextnameof] = ACTIONS(1497), + [anon_sym_DOLLARnameof] = ACTIONS(1497), + [anon_sym_DOLLARoffsetof] = ACTIONS(1497), + [anon_sym_DOLLARqnameof] = ACTIONS(1497), + [anon_sym_DOLLARvaconst] = ACTIONS(1497), + [anon_sym_DOLLARvaarg] = ACTIONS(1497), + [anon_sym_DOLLARvaref] = ACTIONS(1497), + [anon_sym_DOLLARvaexpr] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_DOLLARvacount] = ACTIONS(1497), + [anon_sym_DOLLAReval] = ACTIONS(1497), + [anon_sym_DOLLARis_const] = ACTIONS(1497), + [anon_sym_DOLLARsizeof] = ACTIONS(1497), + [anon_sym_DOLLARstringify] = ACTIONS(1497), + [anon_sym_DOLLARappend] = ACTIONS(1497), + [anon_sym_DOLLARconcat] = ACTIONS(1497), + [anon_sym_DOLLARdefined] = ACTIONS(1497), + [anon_sym_DOLLARembed] = ACTIONS(1497), + [anon_sym_DOLLARand] = ACTIONS(1497), + [anon_sym_DOLLARor] = ACTIONS(1497), + [anon_sym_DOLLARfeature] = ACTIONS(1497), + [anon_sym_DOLLARassignable] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_typeid] = ACTIONS(1497), + [anon_sym_LBRACE_PIPE] = ACTIONS(1499), + [anon_sym_void] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_ichar] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [anon_sym_ushort] = ACTIONS(1497), + [anon_sym_uint] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_ulong] = ACTIONS(1497), + [anon_sym_int128] = ACTIONS(1497), + [anon_sym_uint128] = ACTIONS(1497), + [anon_sym_float] = ACTIONS(1497), + [anon_sym_double] = ACTIONS(1497), + [anon_sym_float16] = ACTIONS(1497), + [anon_sym_bfloat16] = ACTIONS(1497), + [anon_sym_float128] = ACTIONS(1497), + [anon_sym_iptr] = ACTIONS(1497), + [anon_sym_uptr] = ACTIONS(1497), + [anon_sym_isz] = ACTIONS(1497), + [anon_sym_usz] = ACTIONS(1497), + [anon_sym_anyfault] = ACTIONS(1497), + [anon_sym_any] = ACTIONS(1497), + [anon_sym_DOLLARtypeof] = ACTIONS(1497), + [anon_sym_DOLLARtypefrom] = ACTIONS(1497), + [anon_sym_DOLLARevaltype] = ACTIONS(1497), + [anon_sym_DOLLARvatype] = ACTIONS(1497), + [sym_real_literal] = ACTIONS(1499), }, [630] = { [sym_line_comment] = STATE(630), [sym_doc_comment] = STATE(630), [sym_block_comment] = STATE(630), - [sym_ident] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [anon_sym_BQUOTE] = ACTIONS(1485), - [sym_bytes_literal] = ACTIONS(1485), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1483), - [sym_at_ident] = ACTIONS(1485), - [sym_hash_ident] = ACTIONS(1485), - [sym_type_ident] = ACTIONS(1485), - [sym_ct_type_ident] = ACTIONS(1485), - [sym_const_ident] = ACTIONS(1483), - [sym_builtin] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_tlocal] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_fn] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_var] = ACTIONS(1483), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_defer] = ACTIONS(1483), - [anon_sym_assert] = ACTIONS(1483), - [anon_sym_nextcase] = ACTIONS(1483), - [anon_sym_switch] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_foreach] = ACTIONS(1483), - [anon_sym_foreach_r] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(1483), - [anon_sym_int] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_asm] = ACTIONS(1483), - [anon_sym_DOLLARassert] = ACTIONS(1483), - [anon_sym_DOLLARerror] = ACTIONS(1483), - [anon_sym_DOLLARecho] = ACTIONS(1483), - [anon_sym_DOLLARif] = ACTIONS(1483), - [anon_sym_DOLLARswitch] = ACTIONS(1483), - [anon_sym_DOLLARfor] = ACTIONS(1483), - [anon_sym_DOLLARendfor] = ACTIONS(1483), - [anon_sym_DOLLARforeach] = ACTIONS(1483), - [anon_sym_DOLLARalignof] = ACTIONS(1483), - [anon_sym_DOLLARextnameof] = ACTIONS(1483), - [anon_sym_DOLLARnameof] = ACTIONS(1483), - [anon_sym_DOLLARoffsetof] = ACTIONS(1483), - [anon_sym_DOLLARqnameof] = ACTIONS(1483), - [anon_sym_DOLLAReval] = ACTIONS(1483), - [anon_sym_DOLLARdefined] = ACTIONS(1483), - [anon_sym_DOLLARsizeof] = ACTIONS(1483), - [anon_sym_DOLLARstringify] = ACTIONS(1483), - [anon_sym_DOLLARis_const] = ACTIONS(1483), - [anon_sym_DOLLARvaconst] = ACTIONS(1483), - [anon_sym_DOLLARvaarg] = ACTIONS(1483), - [anon_sym_DOLLARvaref] = ACTIONS(1483), - [anon_sym_DOLLARvaexpr] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [anon_sym_DOLLARvacount] = ACTIONS(1483), - [anon_sym_DOLLARfeature] = ACTIONS(1483), - [anon_sym_DOLLARand] = ACTIONS(1483), - [anon_sym_DOLLARor] = ACTIONS(1483), - [anon_sym_DOLLARassignable] = ACTIONS(1483), - [anon_sym_DOLLARembed] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_TILDE] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_DASH_DASH] = ACTIONS(1485), - [anon_sym_typeid] = ACTIONS(1483), - [anon_sym_LBRACE_PIPE] = ACTIONS(1485), - [anon_sym_void] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_ichar] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [anon_sym_ushort] = ACTIONS(1483), - [anon_sym_uint] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_ulong] = ACTIONS(1483), - [anon_sym_int128] = ACTIONS(1483), - [anon_sym_uint128] = ACTIONS(1483), - [anon_sym_float] = ACTIONS(1483), - [anon_sym_double] = ACTIONS(1483), - [anon_sym_float16] = ACTIONS(1483), - [anon_sym_bfloat16] = ACTIONS(1483), - [anon_sym_float128] = ACTIONS(1483), - [anon_sym_iptr] = ACTIONS(1483), - [anon_sym_uptr] = ACTIONS(1483), - [anon_sym_isz] = ACTIONS(1483), - [anon_sym_usz] = ACTIONS(1483), - [anon_sym_anyfault] = ACTIONS(1483), - [anon_sym_any] = ACTIONS(1483), - [anon_sym_DOLLARtypeof] = ACTIONS(1483), - [anon_sym_DOLLARtypefrom] = ACTIONS(1483), - [anon_sym_DOLLARvatype] = ACTIONS(1483), - [anon_sym_DOLLARevaltype] = ACTIONS(1483), - [sym_real_literal] = ACTIONS(1485), + [sym_ident] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1503), + [anon_sym_BQUOTE] = ACTIONS(1503), + [sym_bytes_literal] = ACTIONS(1503), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1501), + [sym_at_ident] = ACTIONS(1503), + [sym_hash_ident] = ACTIONS(1503), + [sym_type_ident] = ACTIONS(1503), + [sym_ct_type_ident] = ACTIONS(1503), + [sym_const_ident] = ACTIONS(1501), + [sym_builtin] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_tlocal] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_var] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_defer] = ACTIONS(1501), + [anon_sym_assert] = ACTIONS(1501), + [anon_sym_nextcase] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_foreach] = ACTIONS(1501), + [anon_sym_foreach_r] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_int] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym_DOLLARassert] = ACTIONS(1501), + [anon_sym_DOLLARerror] = ACTIONS(1501), + [anon_sym_DOLLARecho] = ACTIONS(1501), + [anon_sym_DOLLARif] = ACTIONS(1501), + [anon_sym_DOLLARswitch] = ACTIONS(1501), + [anon_sym_DOLLARfor] = ACTIONS(1501), + [anon_sym_DOLLARendfor] = ACTIONS(1501), + [anon_sym_DOLLARforeach] = ACTIONS(1501), + [anon_sym_DOLLARalignof] = ACTIONS(1501), + [anon_sym_DOLLARextnameof] = ACTIONS(1501), + [anon_sym_DOLLARnameof] = ACTIONS(1501), + [anon_sym_DOLLARoffsetof] = ACTIONS(1501), + [anon_sym_DOLLARqnameof] = ACTIONS(1501), + [anon_sym_DOLLARvaconst] = ACTIONS(1501), + [anon_sym_DOLLARvaarg] = ACTIONS(1501), + [anon_sym_DOLLARvaref] = ACTIONS(1501), + [anon_sym_DOLLARvaexpr] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_DOLLARvacount] = ACTIONS(1501), + [anon_sym_DOLLAReval] = ACTIONS(1501), + [anon_sym_DOLLARis_const] = ACTIONS(1501), + [anon_sym_DOLLARsizeof] = ACTIONS(1501), + [anon_sym_DOLLARstringify] = ACTIONS(1501), + [anon_sym_DOLLARappend] = ACTIONS(1501), + [anon_sym_DOLLARconcat] = ACTIONS(1501), + [anon_sym_DOLLARdefined] = ACTIONS(1501), + [anon_sym_DOLLARembed] = ACTIONS(1501), + [anon_sym_DOLLARand] = ACTIONS(1501), + [anon_sym_DOLLARor] = ACTIONS(1501), + [anon_sym_DOLLARfeature] = ACTIONS(1501), + [anon_sym_DOLLARassignable] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_typeid] = ACTIONS(1501), + [anon_sym_LBRACE_PIPE] = ACTIONS(1503), + [anon_sym_void] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_ichar] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_ushort] = ACTIONS(1501), + [anon_sym_uint] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_ulong] = ACTIONS(1501), + [anon_sym_int128] = ACTIONS(1501), + [anon_sym_uint128] = ACTIONS(1501), + [anon_sym_float] = ACTIONS(1501), + [anon_sym_double] = ACTIONS(1501), + [anon_sym_float16] = ACTIONS(1501), + [anon_sym_bfloat16] = ACTIONS(1501), + [anon_sym_float128] = ACTIONS(1501), + [anon_sym_iptr] = ACTIONS(1501), + [anon_sym_uptr] = ACTIONS(1501), + [anon_sym_isz] = ACTIONS(1501), + [anon_sym_usz] = ACTIONS(1501), + [anon_sym_anyfault] = ACTIONS(1501), + [anon_sym_any] = ACTIONS(1501), + [anon_sym_DOLLARtypeof] = ACTIONS(1501), + [anon_sym_DOLLARtypefrom] = ACTIONS(1501), + [anon_sym_DOLLARevaltype] = ACTIONS(1501), + [anon_sym_DOLLARvatype] = ACTIONS(1501), + [sym_real_literal] = ACTIONS(1503), }, [631] = { [sym_line_comment] = STATE(631), [sym_doc_comment] = STATE(631), [sym_block_comment] = STATE(631), - [sym_ident] = ACTIONS(1551), - [sym_integer_literal] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1553), - [anon_sym_BQUOTE] = ACTIONS(1553), - [sym_bytes_literal] = ACTIONS(1553), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1551), - [sym_at_ident] = ACTIONS(1553), - [sym_hash_ident] = ACTIONS(1553), - [sym_type_ident] = ACTIONS(1553), - [sym_ct_type_ident] = ACTIONS(1553), - [sym_const_ident] = ACTIONS(1551), - [sym_builtin] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1551), - [anon_sym_tlocal] = ACTIONS(1551), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_fn] = ACTIONS(1551), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_const] = ACTIONS(1551), - [anon_sym_var] = ACTIONS(1551), - [anon_sym_return] = ACTIONS(1551), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_break] = ACTIONS(1551), - [anon_sym_defer] = ACTIONS(1551), - [anon_sym_assert] = ACTIONS(1551), - [anon_sym_nextcase] = ACTIONS(1551), - [anon_sym_switch] = ACTIONS(1551), - [anon_sym_AMP_AMP] = ACTIONS(1553), - [anon_sym_if] = ACTIONS(1551), - [anon_sym_for] = ACTIONS(1551), - [anon_sym_foreach] = ACTIONS(1551), - [anon_sym_foreach_r] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1551), - [anon_sym_do] = ACTIONS(1551), - [anon_sym_int] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(1553), - [anon_sym_asm] = ACTIONS(1551), - [anon_sym_DOLLARassert] = ACTIONS(1551), - [anon_sym_DOLLARerror] = ACTIONS(1551), - [anon_sym_DOLLARecho] = ACTIONS(1551), - [anon_sym_DOLLARif] = ACTIONS(1551), - [anon_sym_DOLLARendif] = ACTIONS(1551), - [anon_sym_DOLLARswitch] = ACTIONS(1551), - [anon_sym_DOLLARfor] = ACTIONS(1551), - [anon_sym_DOLLARforeach] = ACTIONS(1551), - [anon_sym_DOLLARalignof] = ACTIONS(1551), - [anon_sym_DOLLARextnameof] = ACTIONS(1551), - [anon_sym_DOLLARnameof] = ACTIONS(1551), - [anon_sym_DOLLARoffsetof] = ACTIONS(1551), - [anon_sym_DOLLARqnameof] = ACTIONS(1551), - [anon_sym_DOLLAReval] = ACTIONS(1551), - [anon_sym_DOLLARdefined] = ACTIONS(1551), - [anon_sym_DOLLARsizeof] = ACTIONS(1551), - [anon_sym_DOLLARstringify] = ACTIONS(1551), - [anon_sym_DOLLARis_const] = ACTIONS(1551), - [anon_sym_DOLLARvaconst] = ACTIONS(1551), - [anon_sym_DOLLARvaarg] = ACTIONS(1551), - [anon_sym_DOLLARvaref] = ACTIONS(1551), - [anon_sym_DOLLARvaexpr] = ACTIONS(1551), - [anon_sym_true] = ACTIONS(1551), - [anon_sym_false] = ACTIONS(1551), - [anon_sym_null] = ACTIONS(1551), - [anon_sym_DOLLARvacount] = ACTIONS(1551), - [anon_sym_DOLLARfeature] = ACTIONS(1551), - [anon_sym_DOLLARand] = ACTIONS(1551), - [anon_sym_DOLLARor] = ACTIONS(1551), - [anon_sym_DOLLARassignable] = ACTIONS(1551), - [anon_sym_DOLLARembed] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1553), - [anon_sym_TILDE] = ACTIONS(1553), - [anon_sym_PLUS_PLUS] = ACTIONS(1553), - [anon_sym_DASH_DASH] = ACTIONS(1553), - [anon_sym_typeid] = ACTIONS(1551), - [anon_sym_LBRACE_PIPE] = ACTIONS(1553), - [anon_sym_void] = ACTIONS(1551), - [anon_sym_bool] = ACTIONS(1551), - [anon_sym_char] = ACTIONS(1551), - [anon_sym_ichar] = ACTIONS(1551), - [anon_sym_short] = ACTIONS(1551), - [anon_sym_ushort] = ACTIONS(1551), - [anon_sym_uint] = ACTIONS(1551), - [anon_sym_long] = ACTIONS(1551), - [anon_sym_ulong] = ACTIONS(1551), - [anon_sym_int128] = ACTIONS(1551), - [anon_sym_uint128] = ACTIONS(1551), - [anon_sym_float] = ACTIONS(1551), - [anon_sym_double] = ACTIONS(1551), - [anon_sym_float16] = ACTIONS(1551), - [anon_sym_bfloat16] = ACTIONS(1551), - [anon_sym_float128] = ACTIONS(1551), - [anon_sym_iptr] = ACTIONS(1551), - [anon_sym_uptr] = ACTIONS(1551), - [anon_sym_isz] = ACTIONS(1551), - [anon_sym_usz] = ACTIONS(1551), - [anon_sym_anyfault] = ACTIONS(1551), - [anon_sym_any] = ACTIONS(1551), - [anon_sym_DOLLARtypeof] = ACTIONS(1551), - [anon_sym_DOLLARtypefrom] = ACTIONS(1551), - [anon_sym_DOLLARvatype] = ACTIONS(1551), - [anon_sym_DOLLARevaltype] = ACTIONS(1551), - [sym_real_literal] = ACTIONS(1553), + [sym_ident] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_bytes_literal] = ACTIONS(1507), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1505), + [sym_at_ident] = ACTIONS(1507), + [sym_hash_ident] = ACTIONS(1507), + [sym_type_ident] = ACTIONS(1507), + [sym_ct_type_ident] = ACTIONS(1507), + [sym_const_ident] = ACTIONS(1505), + [sym_builtin] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_tlocal] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_defer] = ACTIONS(1505), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_nextcase] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(1505), + [anon_sym_foreach_r] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_int] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_asm] = ACTIONS(1505), + [anon_sym_DOLLARassert] = ACTIONS(1505), + [anon_sym_DOLLARerror] = ACTIONS(1505), + [anon_sym_DOLLARecho] = ACTIONS(1505), + [anon_sym_DOLLARif] = ACTIONS(1505), + [anon_sym_DOLLARswitch] = ACTIONS(1505), + [anon_sym_DOLLARfor] = ACTIONS(1505), + [anon_sym_DOLLARendfor] = ACTIONS(1505), + [anon_sym_DOLLARforeach] = ACTIONS(1505), + [anon_sym_DOLLARalignof] = ACTIONS(1505), + [anon_sym_DOLLARextnameof] = ACTIONS(1505), + [anon_sym_DOLLARnameof] = ACTIONS(1505), + [anon_sym_DOLLARoffsetof] = ACTIONS(1505), + [anon_sym_DOLLARqnameof] = ACTIONS(1505), + [anon_sym_DOLLARvaconst] = ACTIONS(1505), + [anon_sym_DOLLARvaarg] = ACTIONS(1505), + [anon_sym_DOLLARvaref] = ACTIONS(1505), + [anon_sym_DOLLARvaexpr] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_DOLLARvacount] = ACTIONS(1505), + [anon_sym_DOLLAReval] = ACTIONS(1505), + [anon_sym_DOLLARis_const] = ACTIONS(1505), + [anon_sym_DOLLARsizeof] = ACTIONS(1505), + [anon_sym_DOLLARstringify] = ACTIONS(1505), + [anon_sym_DOLLARappend] = ACTIONS(1505), + [anon_sym_DOLLARconcat] = ACTIONS(1505), + [anon_sym_DOLLARdefined] = ACTIONS(1505), + [anon_sym_DOLLARembed] = ACTIONS(1505), + [anon_sym_DOLLARand] = ACTIONS(1505), + [anon_sym_DOLLARor] = ACTIONS(1505), + [anon_sym_DOLLARfeature] = ACTIONS(1505), + [anon_sym_DOLLARassignable] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_typeid] = ACTIONS(1505), + [anon_sym_LBRACE_PIPE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_ichar] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [anon_sym_ushort] = ACTIONS(1505), + [anon_sym_uint] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_ulong] = ACTIONS(1505), + [anon_sym_int128] = ACTIONS(1505), + [anon_sym_uint128] = ACTIONS(1505), + [anon_sym_float] = ACTIONS(1505), + [anon_sym_double] = ACTIONS(1505), + [anon_sym_float16] = ACTIONS(1505), + [anon_sym_bfloat16] = ACTIONS(1505), + [anon_sym_float128] = ACTIONS(1505), + [anon_sym_iptr] = ACTIONS(1505), + [anon_sym_uptr] = ACTIONS(1505), + [anon_sym_isz] = ACTIONS(1505), + [anon_sym_usz] = ACTIONS(1505), + [anon_sym_anyfault] = ACTIONS(1505), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_DOLLARtypeof] = ACTIONS(1505), + [anon_sym_DOLLARtypefrom] = ACTIONS(1505), + [anon_sym_DOLLARevaltype] = ACTIONS(1505), + [anon_sym_DOLLARvatype] = ACTIONS(1505), + [sym_real_literal] = ACTIONS(1507), }, [632] = { [sym_line_comment] = STATE(632), [sym_doc_comment] = STATE(632), [sym_block_comment] = STATE(632), - [sym_ident] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_BQUOTE] = ACTIONS(1489), - [sym_bytes_literal] = ACTIONS(1489), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1487), - [sym_at_ident] = ACTIONS(1489), - [sym_hash_ident] = ACTIONS(1489), - [sym_type_ident] = ACTIONS(1489), - [sym_ct_type_ident] = ACTIONS(1489), - [sym_const_ident] = ACTIONS(1487), - [sym_builtin] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_tlocal] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_fn] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_var] = ACTIONS(1487), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_defer] = ACTIONS(1487), - [anon_sym_assert] = ACTIONS(1487), - [anon_sym_nextcase] = ACTIONS(1487), - [anon_sym_switch] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_foreach] = ACTIONS(1487), - [anon_sym_foreach_r] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_do] = ACTIONS(1487), - [anon_sym_int] = ACTIONS(1487), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_asm] = ACTIONS(1487), - [anon_sym_DOLLARassert] = ACTIONS(1487), - [anon_sym_DOLLARerror] = ACTIONS(1487), - [anon_sym_DOLLARecho] = ACTIONS(1487), - [anon_sym_DOLLARif] = ACTIONS(1487), - [anon_sym_DOLLARswitch] = ACTIONS(1487), - [anon_sym_DOLLARfor] = ACTIONS(1487), - [anon_sym_DOLLARendfor] = ACTIONS(1487), - [anon_sym_DOLLARforeach] = ACTIONS(1487), - [anon_sym_DOLLARalignof] = ACTIONS(1487), - [anon_sym_DOLLARextnameof] = ACTIONS(1487), - [anon_sym_DOLLARnameof] = ACTIONS(1487), - [anon_sym_DOLLARoffsetof] = ACTIONS(1487), - [anon_sym_DOLLARqnameof] = ACTIONS(1487), - [anon_sym_DOLLAReval] = ACTIONS(1487), - [anon_sym_DOLLARdefined] = ACTIONS(1487), - [anon_sym_DOLLARsizeof] = ACTIONS(1487), - [anon_sym_DOLLARstringify] = ACTIONS(1487), - [anon_sym_DOLLARis_const] = ACTIONS(1487), - [anon_sym_DOLLARvaconst] = ACTIONS(1487), - [anon_sym_DOLLARvaarg] = ACTIONS(1487), - [anon_sym_DOLLARvaref] = ACTIONS(1487), - [anon_sym_DOLLARvaexpr] = ACTIONS(1487), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_null] = ACTIONS(1487), - [anon_sym_DOLLARvacount] = ACTIONS(1487), - [anon_sym_DOLLARfeature] = ACTIONS(1487), - [anon_sym_DOLLARand] = ACTIONS(1487), - [anon_sym_DOLLARor] = ACTIONS(1487), - [anon_sym_DOLLARassignable] = ACTIONS(1487), - [anon_sym_DOLLARembed] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1489), - [anon_sym_typeid] = ACTIONS(1487), - [anon_sym_LBRACE_PIPE] = ACTIONS(1489), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_ichar] = ACTIONS(1487), - [anon_sym_short] = ACTIONS(1487), - [anon_sym_ushort] = ACTIONS(1487), - [anon_sym_uint] = ACTIONS(1487), - [anon_sym_long] = ACTIONS(1487), - [anon_sym_ulong] = ACTIONS(1487), - [anon_sym_int128] = ACTIONS(1487), - [anon_sym_uint128] = ACTIONS(1487), - [anon_sym_float] = ACTIONS(1487), - [anon_sym_double] = ACTIONS(1487), - [anon_sym_float16] = ACTIONS(1487), - [anon_sym_bfloat16] = ACTIONS(1487), - [anon_sym_float128] = ACTIONS(1487), - [anon_sym_iptr] = ACTIONS(1487), - [anon_sym_uptr] = ACTIONS(1487), - [anon_sym_isz] = ACTIONS(1487), - [anon_sym_usz] = ACTIONS(1487), - [anon_sym_anyfault] = ACTIONS(1487), - [anon_sym_any] = ACTIONS(1487), - [anon_sym_DOLLARtypeof] = ACTIONS(1487), - [anon_sym_DOLLARtypefrom] = ACTIONS(1487), - [anon_sym_DOLLARvatype] = ACTIONS(1487), - [anon_sym_DOLLARevaltype] = ACTIONS(1487), - [sym_real_literal] = ACTIONS(1489), + [sym_ident] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_BQUOTE] = ACTIONS(1519), + [sym_bytes_literal] = ACTIONS(1519), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1517), + [sym_at_ident] = ACTIONS(1519), + [sym_hash_ident] = ACTIONS(1519), + [sym_type_ident] = ACTIONS(1519), + [sym_ct_type_ident] = ACTIONS(1519), + [sym_const_ident] = ACTIONS(1517), + [sym_builtin] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_tlocal] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_defer] = ACTIONS(1517), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_nextcase] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_foreach] = ACTIONS(1517), + [anon_sym_foreach_r] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_int] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_asm] = ACTIONS(1517), + [anon_sym_DOLLARassert] = ACTIONS(1517), + [anon_sym_DOLLARerror] = ACTIONS(1517), + [anon_sym_DOLLARecho] = ACTIONS(1517), + [anon_sym_DOLLARif] = ACTIONS(1517), + [anon_sym_DOLLARswitch] = ACTIONS(1517), + [anon_sym_DOLLARfor] = ACTIONS(1517), + [anon_sym_DOLLARendfor] = ACTIONS(1517), + [anon_sym_DOLLARforeach] = ACTIONS(1517), + [anon_sym_DOLLARalignof] = ACTIONS(1517), + [anon_sym_DOLLARextnameof] = ACTIONS(1517), + [anon_sym_DOLLARnameof] = ACTIONS(1517), + [anon_sym_DOLLARoffsetof] = ACTIONS(1517), + [anon_sym_DOLLARqnameof] = ACTIONS(1517), + [anon_sym_DOLLARvaconst] = ACTIONS(1517), + [anon_sym_DOLLARvaarg] = ACTIONS(1517), + [anon_sym_DOLLARvaref] = ACTIONS(1517), + [anon_sym_DOLLARvaexpr] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_DOLLARvacount] = ACTIONS(1517), + [anon_sym_DOLLAReval] = ACTIONS(1517), + [anon_sym_DOLLARis_const] = ACTIONS(1517), + [anon_sym_DOLLARsizeof] = ACTIONS(1517), + [anon_sym_DOLLARstringify] = ACTIONS(1517), + [anon_sym_DOLLARappend] = ACTIONS(1517), + [anon_sym_DOLLARconcat] = ACTIONS(1517), + [anon_sym_DOLLARdefined] = ACTIONS(1517), + [anon_sym_DOLLARembed] = ACTIONS(1517), + [anon_sym_DOLLARand] = ACTIONS(1517), + [anon_sym_DOLLARor] = ACTIONS(1517), + [anon_sym_DOLLARfeature] = ACTIONS(1517), + [anon_sym_DOLLARassignable] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_typeid] = ACTIONS(1517), + [anon_sym_LBRACE_PIPE] = ACTIONS(1519), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_ichar] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [anon_sym_ushort] = ACTIONS(1517), + [anon_sym_uint] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_ulong] = ACTIONS(1517), + [anon_sym_int128] = ACTIONS(1517), + [anon_sym_uint128] = ACTIONS(1517), + [anon_sym_float] = ACTIONS(1517), + [anon_sym_double] = ACTIONS(1517), + [anon_sym_float16] = ACTIONS(1517), + [anon_sym_bfloat16] = ACTIONS(1517), + [anon_sym_float128] = ACTIONS(1517), + [anon_sym_iptr] = ACTIONS(1517), + [anon_sym_uptr] = ACTIONS(1517), + [anon_sym_isz] = ACTIONS(1517), + [anon_sym_usz] = ACTIONS(1517), + [anon_sym_anyfault] = ACTIONS(1517), + [anon_sym_any] = ACTIONS(1517), + [anon_sym_DOLLARtypeof] = ACTIONS(1517), + [anon_sym_DOLLARtypefrom] = ACTIONS(1517), + [anon_sym_DOLLARevaltype] = ACTIONS(1517), + [anon_sym_DOLLARvatype] = ACTIONS(1517), + [sym_real_literal] = ACTIONS(1519), }, [633] = { [sym_line_comment] = STATE(633), [sym_doc_comment] = STATE(633), [sym_block_comment] = STATE(633), - [sym_ident] = ACTIONS(1563), - [sym_integer_literal] = ACTIONS(1565), - [anon_sym_SQUOTE] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1565), - [anon_sym_BQUOTE] = ACTIONS(1565), - [sym_bytes_literal] = ACTIONS(1565), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1563), - [sym_at_ident] = ACTIONS(1565), - [sym_hash_ident] = ACTIONS(1565), - [sym_type_ident] = ACTIONS(1565), - [sym_ct_type_ident] = ACTIONS(1565), - [sym_const_ident] = ACTIONS(1563), - [sym_builtin] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_static] = ACTIONS(1563), - [anon_sym_tlocal] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_fn] = ACTIONS(1563), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_const] = ACTIONS(1563), - [anon_sym_var] = ACTIONS(1563), - [anon_sym_return] = ACTIONS(1563), - [anon_sym_continue] = ACTIONS(1563), - [anon_sym_break] = ACTIONS(1563), - [anon_sym_defer] = ACTIONS(1563), - [anon_sym_assert] = ACTIONS(1563), - [anon_sym_nextcase] = ACTIONS(1563), - [anon_sym_switch] = ACTIONS(1563), - [anon_sym_AMP_AMP] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1563), - [anon_sym_for] = ACTIONS(1563), - [anon_sym_foreach] = ACTIONS(1563), - [anon_sym_foreach_r] = ACTIONS(1563), - [anon_sym_while] = ACTIONS(1563), - [anon_sym_do] = ACTIONS(1563), - [anon_sym_int] = ACTIONS(1563), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_asm] = ACTIONS(1563), - [anon_sym_DOLLARassert] = ACTIONS(1563), - [anon_sym_DOLLARerror] = ACTIONS(1563), - [anon_sym_DOLLARecho] = ACTIONS(1563), - [anon_sym_DOLLARif] = ACTIONS(1563), - [anon_sym_DOLLARendif] = ACTIONS(1563), - [anon_sym_DOLLARswitch] = ACTIONS(1563), - [anon_sym_DOLLARfor] = ACTIONS(1563), - [anon_sym_DOLLARforeach] = ACTIONS(1563), - [anon_sym_DOLLARalignof] = ACTIONS(1563), - [anon_sym_DOLLARextnameof] = ACTIONS(1563), - [anon_sym_DOLLARnameof] = ACTIONS(1563), - [anon_sym_DOLLARoffsetof] = ACTIONS(1563), - [anon_sym_DOLLARqnameof] = ACTIONS(1563), - [anon_sym_DOLLAReval] = ACTIONS(1563), - [anon_sym_DOLLARdefined] = ACTIONS(1563), - [anon_sym_DOLLARsizeof] = ACTIONS(1563), - [anon_sym_DOLLARstringify] = ACTIONS(1563), - [anon_sym_DOLLARis_const] = ACTIONS(1563), - [anon_sym_DOLLARvaconst] = ACTIONS(1563), - [anon_sym_DOLLARvaarg] = ACTIONS(1563), - [anon_sym_DOLLARvaref] = ACTIONS(1563), - [anon_sym_DOLLARvaexpr] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1563), - [anon_sym_false] = ACTIONS(1563), - [anon_sym_null] = ACTIONS(1563), - [anon_sym_DOLLARvacount] = ACTIONS(1563), - [anon_sym_DOLLARfeature] = ACTIONS(1563), - [anon_sym_DOLLARand] = ACTIONS(1563), - [anon_sym_DOLLARor] = ACTIONS(1563), - [anon_sym_DOLLARassignable] = ACTIONS(1563), - [anon_sym_DOLLARembed] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_typeid] = ACTIONS(1563), - [anon_sym_LBRACE_PIPE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1563), - [anon_sym_bool] = ACTIONS(1563), - [anon_sym_char] = ACTIONS(1563), - [anon_sym_ichar] = ACTIONS(1563), - [anon_sym_short] = ACTIONS(1563), - [anon_sym_ushort] = ACTIONS(1563), - [anon_sym_uint] = ACTIONS(1563), - [anon_sym_long] = ACTIONS(1563), - [anon_sym_ulong] = ACTIONS(1563), - [anon_sym_int128] = ACTIONS(1563), - [anon_sym_uint128] = ACTIONS(1563), - [anon_sym_float] = ACTIONS(1563), - [anon_sym_double] = ACTIONS(1563), - [anon_sym_float16] = ACTIONS(1563), - [anon_sym_bfloat16] = ACTIONS(1563), - [anon_sym_float128] = ACTIONS(1563), - [anon_sym_iptr] = ACTIONS(1563), - [anon_sym_uptr] = ACTIONS(1563), - [anon_sym_isz] = ACTIONS(1563), - [anon_sym_usz] = ACTIONS(1563), - [anon_sym_anyfault] = ACTIONS(1563), - [anon_sym_any] = ACTIONS(1563), - [anon_sym_DOLLARtypeof] = ACTIONS(1563), - [anon_sym_DOLLARtypefrom] = ACTIONS(1563), - [anon_sym_DOLLARvatype] = ACTIONS(1563), - [anon_sym_DOLLARevaltype] = ACTIONS(1563), - [sym_real_literal] = ACTIONS(1565), + [sym_ident] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_bytes_literal] = ACTIONS(1653), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1651), + [sym_at_ident] = ACTIONS(1653), + [sym_hash_ident] = ACTIONS(1653), + [sym_type_ident] = ACTIONS(1653), + [sym_ct_type_ident] = ACTIONS(1653), + [sym_const_ident] = ACTIONS(1651), + [sym_builtin] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_static] = ACTIONS(1651), + [anon_sym_tlocal] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [anon_sym_var] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_defer] = ACTIONS(1651), + [anon_sym_assert] = ACTIONS(1651), + [anon_sym_nextcase] = ACTIONS(1651), + [anon_sym_switch] = ACTIONS(1651), + [anon_sym_AMP_AMP] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_foreach] = ACTIONS(1651), + [anon_sym_foreach_r] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_int] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1653), + [anon_sym_asm] = ACTIONS(1651), + [anon_sym_DOLLARassert] = ACTIONS(1651), + [anon_sym_DOLLARerror] = ACTIONS(1651), + [anon_sym_DOLLARecho] = ACTIONS(1651), + [anon_sym_DOLLARif] = ACTIONS(1651), + [anon_sym_DOLLARswitch] = ACTIONS(1651), + [anon_sym_DOLLARfor] = ACTIONS(1651), + [anon_sym_DOLLARendfor] = ACTIONS(1651), + [anon_sym_DOLLARforeach] = ACTIONS(1651), + [anon_sym_DOLLARalignof] = ACTIONS(1651), + [anon_sym_DOLLARextnameof] = ACTIONS(1651), + [anon_sym_DOLLARnameof] = ACTIONS(1651), + [anon_sym_DOLLARoffsetof] = ACTIONS(1651), + [anon_sym_DOLLARqnameof] = ACTIONS(1651), + [anon_sym_DOLLARvaconst] = ACTIONS(1651), + [anon_sym_DOLLARvaarg] = ACTIONS(1651), + [anon_sym_DOLLARvaref] = ACTIONS(1651), + [anon_sym_DOLLARvaexpr] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_DOLLARvacount] = ACTIONS(1651), + [anon_sym_DOLLAReval] = ACTIONS(1651), + [anon_sym_DOLLARis_const] = ACTIONS(1651), + [anon_sym_DOLLARsizeof] = ACTIONS(1651), + [anon_sym_DOLLARstringify] = ACTIONS(1651), + [anon_sym_DOLLARappend] = ACTIONS(1651), + [anon_sym_DOLLARconcat] = ACTIONS(1651), + [anon_sym_DOLLARdefined] = ACTIONS(1651), + [anon_sym_DOLLARembed] = ACTIONS(1651), + [anon_sym_DOLLARand] = ACTIONS(1651), + [anon_sym_DOLLARor] = ACTIONS(1651), + [anon_sym_DOLLARfeature] = ACTIONS(1651), + [anon_sym_DOLLARassignable] = ACTIONS(1651), + [anon_sym_BANG] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_typeid] = ACTIONS(1651), + [anon_sym_LBRACE_PIPE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1651), + [anon_sym_bool] = ACTIONS(1651), + [anon_sym_char] = ACTIONS(1651), + [anon_sym_ichar] = ACTIONS(1651), + [anon_sym_short] = ACTIONS(1651), + [anon_sym_ushort] = ACTIONS(1651), + [anon_sym_uint] = ACTIONS(1651), + [anon_sym_long] = ACTIONS(1651), + [anon_sym_ulong] = ACTIONS(1651), + [anon_sym_int128] = ACTIONS(1651), + [anon_sym_uint128] = ACTIONS(1651), + [anon_sym_float] = ACTIONS(1651), + [anon_sym_double] = ACTIONS(1651), + [anon_sym_float16] = ACTIONS(1651), + [anon_sym_bfloat16] = ACTIONS(1651), + [anon_sym_float128] = ACTIONS(1651), + [anon_sym_iptr] = ACTIONS(1651), + [anon_sym_uptr] = ACTIONS(1651), + [anon_sym_isz] = ACTIONS(1651), + [anon_sym_usz] = ACTIONS(1651), + [anon_sym_anyfault] = ACTIONS(1651), + [anon_sym_any] = ACTIONS(1651), + [anon_sym_DOLLARtypeof] = ACTIONS(1651), + [anon_sym_DOLLARtypefrom] = ACTIONS(1651), + [anon_sym_DOLLARevaltype] = ACTIONS(1651), + [anon_sym_DOLLARvatype] = ACTIONS(1651), + [sym_real_literal] = ACTIONS(1653), }, [634] = { [sym_line_comment] = STATE(634), [sym_doc_comment] = STATE(634), [sym_block_comment] = STATE(634), - [sym_ident] = ACTIONS(1575), - [sym_integer_literal] = ACTIONS(1577), - [anon_sym_SQUOTE] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1577), - [anon_sym_BQUOTE] = ACTIONS(1577), - [sym_bytes_literal] = ACTIONS(1577), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1575), - [sym_at_ident] = ACTIONS(1577), - [sym_hash_ident] = ACTIONS(1577), - [sym_type_ident] = ACTIONS(1577), - [sym_ct_type_ident] = ACTIONS(1577), - [sym_const_ident] = ACTIONS(1575), - [sym_builtin] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1575), - [anon_sym_static] = ACTIONS(1575), - [anon_sym_tlocal] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_fn] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [anon_sym_var] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_defer] = ACTIONS(1575), - [anon_sym_assert] = ACTIONS(1575), - [anon_sym_nextcase] = ACTIONS(1575), - [anon_sym_switch] = ACTIONS(1575), - [anon_sym_AMP_AMP] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_foreach] = ACTIONS(1575), - [anon_sym_foreach_r] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_do] = ACTIONS(1575), - [anon_sym_int] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_asm] = ACTIONS(1575), - [anon_sym_DOLLARassert] = ACTIONS(1575), - [anon_sym_DOLLARerror] = ACTIONS(1575), - [anon_sym_DOLLARecho] = ACTIONS(1575), - [anon_sym_DOLLARif] = ACTIONS(1575), - [anon_sym_DOLLARendif] = ACTIONS(1575), - [anon_sym_DOLLARswitch] = ACTIONS(1575), - [anon_sym_DOLLARfor] = ACTIONS(1575), - [anon_sym_DOLLARforeach] = ACTIONS(1575), - [anon_sym_DOLLARalignof] = ACTIONS(1575), - [anon_sym_DOLLARextnameof] = ACTIONS(1575), - [anon_sym_DOLLARnameof] = ACTIONS(1575), - [anon_sym_DOLLARoffsetof] = ACTIONS(1575), - [anon_sym_DOLLARqnameof] = ACTIONS(1575), - [anon_sym_DOLLAReval] = ACTIONS(1575), - [anon_sym_DOLLARdefined] = ACTIONS(1575), - [anon_sym_DOLLARsizeof] = ACTIONS(1575), - [anon_sym_DOLLARstringify] = ACTIONS(1575), - [anon_sym_DOLLARis_const] = ACTIONS(1575), - [anon_sym_DOLLARvaconst] = ACTIONS(1575), - [anon_sym_DOLLARvaarg] = ACTIONS(1575), - [anon_sym_DOLLARvaref] = ACTIONS(1575), - [anon_sym_DOLLARvaexpr] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_DOLLARvacount] = ACTIONS(1575), - [anon_sym_DOLLARfeature] = ACTIONS(1575), - [anon_sym_DOLLARand] = ACTIONS(1575), - [anon_sym_DOLLARor] = ACTIONS(1575), - [anon_sym_DOLLARassignable] = ACTIONS(1575), - [anon_sym_DOLLARembed] = ACTIONS(1575), - [anon_sym_BANG] = ACTIONS(1577), - [anon_sym_TILDE] = ACTIONS(1577), - [anon_sym_PLUS_PLUS] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1577), - [anon_sym_typeid] = ACTIONS(1575), - [anon_sym_LBRACE_PIPE] = ACTIONS(1577), - [anon_sym_void] = ACTIONS(1575), - [anon_sym_bool] = ACTIONS(1575), - [anon_sym_char] = ACTIONS(1575), - [anon_sym_ichar] = ACTIONS(1575), - [anon_sym_short] = ACTIONS(1575), - [anon_sym_ushort] = ACTIONS(1575), - [anon_sym_uint] = ACTIONS(1575), - [anon_sym_long] = ACTIONS(1575), - [anon_sym_ulong] = ACTIONS(1575), - [anon_sym_int128] = ACTIONS(1575), - [anon_sym_uint128] = ACTIONS(1575), - [anon_sym_float] = ACTIONS(1575), - [anon_sym_double] = ACTIONS(1575), - [anon_sym_float16] = ACTIONS(1575), - [anon_sym_bfloat16] = ACTIONS(1575), - [anon_sym_float128] = ACTIONS(1575), - [anon_sym_iptr] = ACTIONS(1575), - [anon_sym_uptr] = ACTIONS(1575), - [anon_sym_isz] = ACTIONS(1575), - [anon_sym_usz] = ACTIONS(1575), - [anon_sym_anyfault] = ACTIONS(1575), - [anon_sym_any] = ACTIONS(1575), - [anon_sym_DOLLARtypeof] = ACTIONS(1575), - [anon_sym_DOLLARtypefrom] = ACTIONS(1575), - [anon_sym_DOLLARvatype] = ACTIONS(1575), - [anon_sym_DOLLARevaltype] = ACTIONS(1575), - [sym_real_literal] = ACTIONS(1577), + [sym_ident] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), + [anon_sym_BQUOTE] = ACTIONS(1527), + [sym_bytes_literal] = ACTIONS(1527), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1525), + [sym_at_ident] = ACTIONS(1527), + [sym_hash_ident] = ACTIONS(1527), + [sym_type_ident] = ACTIONS(1527), + [sym_ct_type_ident] = ACTIONS(1527), + [sym_const_ident] = ACTIONS(1525), + [sym_builtin] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_tlocal] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_fn] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_var] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_defer] = ACTIONS(1525), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_nextcase] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_foreach] = ACTIONS(1525), + [anon_sym_foreach_r] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_int] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym_DOLLARassert] = ACTIONS(1525), + [anon_sym_DOLLARerror] = ACTIONS(1525), + [anon_sym_DOLLARecho] = ACTIONS(1525), + [anon_sym_DOLLARif] = ACTIONS(1525), + [anon_sym_DOLLARswitch] = ACTIONS(1525), + [anon_sym_DOLLARfor] = ACTIONS(1525), + [anon_sym_DOLLARendfor] = ACTIONS(1525), + [anon_sym_DOLLARforeach] = ACTIONS(1525), + [anon_sym_DOLLARalignof] = ACTIONS(1525), + [anon_sym_DOLLARextnameof] = ACTIONS(1525), + [anon_sym_DOLLARnameof] = ACTIONS(1525), + [anon_sym_DOLLARoffsetof] = ACTIONS(1525), + [anon_sym_DOLLARqnameof] = ACTIONS(1525), + [anon_sym_DOLLARvaconst] = ACTIONS(1525), + [anon_sym_DOLLARvaarg] = ACTIONS(1525), + [anon_sym_DOLLARvaref] = ACTIONS(1525), + [anon_sym_DOLLARvaexpr] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_DOLLARvacount] = ACTIONS(1525), + [anon_sym_DOLLAReval] = ACTIONS(1525), + [anon_sym_DOLLARis_const] = ACTIONS(1525), + [anon_sym_DOLLARsizeof] = ACTIONS(1525), + [anon_sym_DOLLARstringify] = ACTIONS(1525), + [anon_sym_DOLLARappend] = ACTIONS(1525), + [anon_sym_DOLLARconcat] = ACTIONS(1525), + [anon_sym_DOLLARdefined] = ACTIONS(1525), + [anon_sym_DOLLARembed] = ACTIONS(1525), + [anon_sym_DOLLARand] = ACTIONS(1525), + [anon_sym_DOLLARor] = ACTIONS(1525), + [anon_sym_DOLLARfeature] = ACTIONS(1525), + [anon_sym_DOLLARassignable] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_typeid] = ACTIONS(1525), + [anon_sym_LBRACE_PIPE] = ACTIONS(1527), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_bool] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_ichar] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [anon_sym_ushort] = ACTIONS(1525), + [anon_sym_uint] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_ulong] = ACTIONS(1525), + [anon_sym_int128] = ACTIONS(1525), + [anon_sym_uint128] = ACTIONS(1525), + [anon_sym_float] = ACTIONS(1525), + [anon_sym_double] = ACTIONS(1525), + [anon_sym_float16] = ACTIONS(1525), + [anon_sym_bfloat16] = ACTIONS(1525), + [anon_sym_float128] = ACTIONS(1525), + [anon_sym_iptr] = ACTIONS(1525), + [anon_sym_uptr] = ACTIONS(1525), + [anon_sym_isz] = ACTIONS(1525), + [anon_sym_usz] = ACTIONS(1525), + [anon_sym_anyfault] = ACTIONS(1525), + [anon_sym_any] = ACTIONS(1525), + [anon_sym_DOLLARtypeof] = ACTIONS(1525), + [anon_sym_DOLLARtypefrom] = ACTIONS(1525), + [anon_sym_DOLLARevaltype] = ACTIONS(1525), + [anon_sym_DOLLARvatype] = ACTIONS(1525), + [sym_real_literal] = ACTIONS(1527), }, [635] = { [sym_line_comment] = STATE(635), [sym_doc_comment] = STATE(635), [sym_block_comment] = STATE(635), - [sym_ident] = ACTIONS(1579), - [sym_integer_literal] = ACTIONS(1581), - [anon_sym_SQUOTE] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1581), - [anon_sym_BQUOTE] = ACTIONS(1581), - [sym_bytes_literal] = ACTIONS(1581), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1579), - [sym_at_ident] = ACTIONS(1581), - [sym_hash_ident] = ACTIONS(1581), - [sym_type_ident] = ACTIONS(1581), - [sym_ct_type_ident] = ACTIONS(1581), - [sym_const_ident] = ACTIONS(1579), - [sym_builtin] = ACTIONS(1581), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_tlocal] = ACTIONS(1579), - [anon_sym_SEMI] = ACTIONS(1581), - [anon_sym_fn] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_var] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_defer] = ACTIONS(1579), - [anon_sym_assert] = ACTIONS(1579), - [anon_sym_nextcase] = ACTIONS(1579), - [anon_sym_switch] = ACTIONS(1579), - [anon_sym_AMP_AMP] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_foreach] = ACTIONS(1579), - [anon_sym_foreach_r] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_int] = ACTIONS(1579), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_STAR] = ACTIONS(1581), - [anon_sym_asm] = ACTIONS(1579), - [anon_sym_DOLLARassert] = ACTIONS(1579), - [anon_sym_DOLLARerror] = ACTIONS(1579), - [anon_sym_DOLLARecho] = ACTIONS(1579), - [anon_sym_DOLLARif] = ACTIONS(1579), - [anon_sym_DOLLARendif] = ACTIONS(1579), - [anon_sym_DOLLARswitch] = ACTIONS(1579), - [anon_sym_DOLLARfor] = ACTIONS(1579), - [anon_sym_DOLLARforeach] = ACTIONS(1579), - [anon_sym_DOLLARalignof] = ACTIONS(1579), - [anon_sym_DOLLARextnameof] = ACTIONS(1579), - [anon_sym_DOLLARnameof] = ACTIONS(1579), - [anon_sym_DOLLARoffsetof] = ACTIONS(1579), - [anon_sym_DOLLARqnameof] = ACTIONS(1579), - [anon_sym_DOLLAReval] = ACTIONS(1579), - [anon_sym_DOLLARdefined] = ACTIONS(1579), - [anon_sym_DOLLARsizeof] = ACTIONS(1579), - [anon_sym_DOLLARstringify] = ACTIONS(1579), - [anon_sym_DOLLARis_const] = ACTIONS(1579), - [anon_sym_DOLLARvaconst] = ACTIONS(1579), - [anon_sym_DOLLARvaarg] = ACTIONS(1579), - [anon_sym_DOLLARvaref] = ACTIONS(1579), - [anon_sym_DOLLARvaexpr] = ACTIONS(1579), - [anon_sym_true] = ACTIONS(1579), - [anon_sym_false] = ACTIONS(1579), - [anon_sym_null] = ACTIONS(1579), - [anon_sym_DOLLARvacount] = ACTIONS(1579), - [anon_sym_DOLLARfeature] = ACTIONS(1579), - [anon_sym_DOLLARand] = ACTIONS(1579), - [anon_sym_DOLLARor] = ACTIONS(1579), - [anon_sym_DOLLARassignable] = ACTIONS(1579), - [anon_sym_DOLLARembed] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1581), - [anon_sym_TILDE] = ACTIONS(1581), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [anon_sym_typeid] = ACTIONS(1579), - [anon_sym_LBRACE_PIPE] = ACTIONS(1581), - [anon_sym_void] = ACTIONS(1579), - [anon_sym_bool] = ACTIONS(1579), - [anon_sym_char] = ACTIONS(1579), - [anon_sym_ichar] = ACTIONS(1579), - [anon_sym_short] = ACTIONS(1579), - [anon_sym_ushort] = ACTIONS(1579), - [anon_sym_uint] = ACTIONS(1579), - [anon_sym_long] = ACTIONS(1579), - [anon_sym_ulong] = ACTIONS(1579), - [anon_sym_int128] = ACTIONS(1579), - [anon_sym_uint128] = ACTIONS(1579), - [anon_sym_float] = ACTIONS(1579), - [anon_sym_double] = ACTIONS(1579), - [anon_sym_float16] = ACTIONS(1579), - [anon_sym_bfloat16] = ACTIONS(1579), - [anon_sym_float128] = ACTIONS(1579), - [anon_sym_iptr] = ACTIONS(1579), - [anon_sym_uptr] = ACTIONS(1579), - [anon_sym_isz] = ACTIONS(1579), - [anon_sym_usz] = ACTIONS(1579), - [anon_sym_anyfault] = ACTIONS(1579), - [anon_sym_any] = ACTIONS(1579), - [anon_sym_DOLLARtypeof] = ACTIONS(1579), - [anon_sym_DOLLARtypefrom] = ACTIONS(1579), - [anon_sym_DOLLARvatype] = ACTIONS(1579), - [anon_sym_DOLLARevaltype] = ACTIONS(1579), - [sym_real_literal] = ACTIONS(1581), + [sym_ident] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_bytes_literal] = ACTIONS(1547), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1545), + [sym_at_ident] = ACTIONS(1547), + [sym_hash_ident] = ACTIONS(1547), + [sym_type_ident] = ACTIONS(1547), + [sym_ct_type_ident] = ACTIONS(1547), + [sym_const_ident] = ACTIONS(1545), + [sym_builtin] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_tlocal] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_fn] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_defer] = ACTIONS(1545), + [anon_sym_assert] = ACTIONS(1545), + [anon_sym_nextcase] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_foreach] = ACTIONS(1545), + [anon_sym_foreach_r] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_int] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_asm] = ACTIONS(1545), + [anon_sym_DOLLARassert] = ACTIONS(1545), + [anon_sym_DOLLARerror] = ACTIONS(1545), + [anon_sym_DOLLARecho] = ACTIONS(1545), + [anon_sym_DOLLARif] = ACTIONS(1545), + [anon_sym_DOLLARswitch] = ACTIONS(1545), + [anon_sym_DOLLARfor] = ACTIONS(1545), + [anon_sym_DOLLARendfor] = ACTIONS(1545), + [anon_sym_DOLLARforeach] = ACTIONS(1545), + [anon_sym_DOLLARalignof] = ACTIONS(1545), + [anon_sym_DOLLARextnameof] = ACTIONS(1545), + [anon_sym_DOLLARnameof] = ACTIONS(1545), + [anon_sym_DOLLARoffsetof] = ACTIONS(1545), + [anon_sym_DOLLARqnameof] = ACTIONS(1545), + [anon_sym_DOLLARvaconst] = ACTIONS(1545), + [anon_sym_DOLLARvaarg] = ACTIONS(1545), + [anon_sym_DOLLARvaref] = ACTIONS(1545), + [anon_sym_DOLLARvaexpr] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_DOLLARvacount] = ACTIONS(1545), + [anon_sym_DOLLAReval] = ACTIONS(1545), + [anon_sym_DOLLARis_const] = ACTIONS(1545), + [anon_sym_DOLLARsizeof] = ACTIONS(1545), + [anon_sym_DOLLARstringify] = ACTIONS(1545), + [anon_sym_DOLLARappend] = ACTIONS(1545), + [anon_sym_DOLLARconcat] = ACTIONS(1545), + [anon_sym_DOLLARdefined] = ACTIONS(1545), + [anon_sym_DOLLARembed] = ACTIONS(1545), + [anon_sym_DOLLARand] = ACTIONS(1545), + [anon_sym_DOLLARor] = ACTIONS(1545), + [anon_sym_DOLLARfeature] = ACTIONS(1545), + [anon_sym_DOLLARassignable] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1547), + [anon_sym_typeid] = ACTIONS(1545), + [anon_sym_LBRACE_PIPE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_ichar] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [anon_sym_ushort] = ACTIONS(1545), + [anon_sym_uint] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_ulong] = ACTIONS(1545), + [anon_sym_int128] = ACTIONS(1545), + [anon_sym_uint128] = ACTIONS(1545), + [anon_sym_float] = ACTIONS(1545), + [anon_sym_double] = ACTIONS(1545), + [anon_sym_float16] = ACTIONS(1545), + [anon_sym_bfloat16] = ACTIONS(1545), + [anon_sym_float128] = ACTIONS(1545), + [anon_sym_iptr] = ACTIONS(1545), + [anon_sym_uptr] = ACTIONS(1545), + [anon_sym_isz] = ACTIONS(1545), + [anon_sym_usz] = ACTIONS(1545), + [anon_sym_anyfault] = ACTIONS(1545), + [anon_sym_any] = ACTIONS(1545), + [anon_sym_DOLLARtypeof] = ACTIONS(1545), + [anon_sym_DOLLARtypefrom] = ACTIONS(1545), + [anon_sym_DOLLARevaltype] = ACTIONS(1545), + [anon_sym_DOLLARvatype] = ACTIONS(1545), + [sym_real_literal] = ACTIONS(1547), }, [636] = { [sym_line_comment] = STATE(636), [sym_doc_comment] = STATE(636), [sym_block_comment] = STATE(636), - [sym_ident] = ACTIONS(1507), - [sym_integer_literal] = ACTIONS(1509), - [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(1509), - [anon_sym_BQUOTE] = ACTIONS(1509), - [sym_bytes_literal] = ACTIONS(1509), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1507), - [sym_at_ident] = ACTIONS(1509), - [sym_hash_ident] = ACTIONS(1509), - [sym_type_ident] = ACTIONS(1509), - [sym_ct_type_ident] = ACTIONS(1509), - [sym_const_ident] = ACTIONS(1507), - [sym_builtin] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_static] = ACTIONS(1507), - [anon_sym_tlocal] = ACTIONS(1507), - [anon_sym_SEMI] = ACTIONS(1509), - [anon_sym_fn] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [anon_sym_var] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_defer] = ACTIONS(1507), - [anon_sym_assert] = ACTIONS(1507), - [anon_sym_nextcase] = ACTIONS(1507), - [anon_sym_switch] = ACTIONS(1507), - [anon_sym_AMP_AMP] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_foreach] = ACTIONS(1507), - [anon_sym_foreach_r] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_do] = ACTIONS(1507), - [anon_sym_int] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_asm] = ACTIONS(1507), - [anon_sym_DOLLARassert] = ACTIONS(1507), - [anon_sym_DOLLARerror] = ACTIONS(1507), - [anon_sym_DOLLARecho] = ACTIONS(1507), - [anon_sym_DOLLARif] = ACTIONS(1507), - [anon_sym_DOLLARswitch] = ACTIONS(1507), - [anon_sym_DOLLARfor] = ACTIONS(1507), - [anon_sym_DOLLARendfor] = ACTIONS(1507), - [anon_sym_DOLLARforeach] = ACTIONS(1507), - [anon_sym_DOLLARalignof] = ACTIONS(1507), - [anon_sym_DOLLARextnameof] = ACTIONS(1507), - [anon_sym_DOLLARnameof] = ACTIONS(1507), - [anon_sym_DOLLARoffsetof] = ACTIONS(1507), - [anon_sym_DOLLARqnameof] = ACTIONS(1507), - [anon_sym_DOLLAReval] = ACTIONS(1507), - [anon_sym_DOLLARdefined] = ACTIONS(1507), - [anon_sym_DOLLARsizeof] = ACTIONS(1507), - [anon_sym_DOLLARstringify] = ACTIONS(1507), - [anon_sym_DOLLARis_const] = ACTIONS(1507), - [anon_sym_DOLLARvaconst] = ACTIONS(1507), - [anon_sym_DOLLARvaarg] = ACTIONS(1507), - [anon_sym_DOLLARvaref] = ACTIONS(1507), - [anon_sym_DOLLARvaexpr] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [anon_sym_null] = ACTIONS(1507), - [anon_sym_DOLLARvacount] = ACTIONS(1507), - [anon_sym_DOLLARfeature] = ACTIONS(1507), - [anon_sym_DOLLARand] = ACTIONS(1507), - [anon_sym_DOLLARor] = ACTIONS(1507), - [anon_sym_DOLLARassignable] = ACTIONS(1507), - [anon_sym_DOLLARembed] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_TILDE] = ACTIONS(1509), - [anon_sym_PLUS_PLUS] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_typeid] = ACTIONS(1507), - [anon_sym_LBRACE_PIPE] = ACTIONS(1509), - [anon_sym_void] = ACTIONS(1507), - [anon_sym_bool] = ACTIONS(1507), - [anon_sym_char] = ACTIONS(1507), - [anon_sym_ichar] = ACTIONS(1507), - [anon_sym_short] = ACTIONS(1507), - [anon_sym_ushort] = ACTIONS(1507), - [anon_sym_uint] = ACTIONS(1507), - [anon_sym_long] = ACTIONS(1507), - [anon_sym_ulong] = ACTIONS(1507), - [anon_sym_int128] = ACTIONS(1507), - [anon_sym_uint128] = ACTIONS(1507), - [anon_sym_float] = ACTIONS(1507), - [anon_sym_double] = ACTIONS(1507), - [anon_sym_float16] = ACTIONS(1507), - [anon_sym_bfloat16] = ACTIONS(1507), - [anon_sym_float128] = ACTIONS(1507), - [anon_sym_iptr] = ACTIONS(1507), - [anon_sym_uptr] = ACTIONS(1507), - [anon_sym_isz] = ACTIONS(1507), - [anon_sym_usz] = ACTIONS(1507), - [anon_sym_anyfault] = ACTIONS(1507), - [anon_sym_any] = ACTIONS(1507), - [anon_sym_DOLLARtypeof] = ACTIONS(1507), - [anon_sym_DOLLARtypefrom] = ACTIONS(1507), - [anon_sym_DOLLARvatype] = ACTIONS(1507), - [anon_sym_DOLLARevaltype] = ACTIONS(1507), - [sym_real_literal] = ACTIONS(1509), + [sym_ident] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [anon_sym_BQUOTE] = ACTIONS(1551), + [sym_bytes_literal] = ACTIONS(1551), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1549), + [sym_at_ident] = ACTIONS(1551), + [sym_hash_ident] = ACTIONS(1551), + [sym_type_ident] = ACTIONS(1551), + [sym_ct_type_ident] = ACTIONS(1551), + [sym_const_ident] = ACTIONS(1549), + [sym_builtin] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_tlocal] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_defer] = ACTIONS(1549), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_nextcase] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_foreach] = ACTIONS(1549), + [anon_sym_foreach_r] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_int] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_asm] = ACTIONS(1549), + [anon_sym_DOLLARassert] = ACTIONS(1549), + [anon_sym_DOLLARerror] = ACTIONS(1549), + [anon_sym_DOLLARecho] = ACTIONS(1549), + [anon_sym_DOLLARif] = ACTIONS(1549), + [anon_sym_DOLLARswitch] = ACTIONS(1549), + [anon_sym_DOLLARfor] = ACTIONS(1549), + [anon_sym_DOLLARendfor] = ACTIONS(1549), + [anon_sym_DOLLARforeach] = ACTIONS(1549), + [anon_sym_DOLLARalignof] = ACTIONS(1549), + [anon_sym_DOLLARextnameof] = ACTIONS(1549), + [anon_sym_DOLLARnameof] = ACTIONS(1549), + [anon_sym_DOLLARoffsetof] = ACTIONS(1549), + [anon_sym_DOLLARqnameof] = ACTIONS(1549), + [anon_sym_DOLLARvaconst] = ACTIONS(1549), + [anon_sym_DOLLARvaarg] = ACTIONS(1549), + [anon_sym_DOLLARvaref] = ACTIONS(1549), + [anon_sym_DOLLARvaexpr] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_null] = ACTIONS(1549), + [anon_sym_DOLLARvacount] = ACTIONS(1549), + [anon_sym_DOLLAReval] = ACTIONS(1549), + [anon_sym_DOLLARis_const] = ACTIONS(1549), + [anon_sym_DOLLARsizeof] = ACTIONS(1549), + [anon_sym_DOLLARstringify] = ACTIONS(1549), + [anon_sym_DOLLARappend] = ACTIONS(1549), + [anon_sym_DOLLARconcat] = ACTIONS(1549), + [anon_sym_DOLLARdefined] = ACTIONS(1549), + [anon_sym_DOLLARembed] = ACTIONS(1549), + [anon_sym_DOLLARand] = ACTIONS(1549), + [anon_sym_DOLLARor] = ACTIONS(1549), + [anon_sym_DOLLARfeature] = ACTIONS(1549), + [anon_sym_DOLLARassignable] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_typeid] = ACTIONS(1549), + [anon_sym_LBRACE_PIPE] = ACTIONS(1551), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_ichar] = ACTIONS(1549), + [anon_sym_short] = ACTIONS(1549), + [anon_sym_ushort] = ACTIONS(1549), + [anon_sym_uint] = ACTIONS(1549), + [anon_sym_long] = ACTIONS(1549), + [anon_sym_ulong] = ACTIONS(1549), + [anon_sym_int128] = ACTIONS(1549), + [anon_sym_uint128] = ACTIONS(1549), + [anon_sym_float] = ACTIONS(1549), + [anon_sym_double] = ACTIONS(1549), + [anon_sym_float16] = ACTIONS(1549), + [anon_sym_bfloat16] = ACTIONS(1549), + [anon_sym_float128] = ACTIONS(1549), + [anon_sym_iptr] = ACTIONS(1549), + [anon_sym_uptr] = ACTIONS(1549), + [anon_sym_isz] = ACTIONS(1549), + [anon_sym_usz] = ACTIONS(1549), + [anon_sym_anyfault] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_DOLLARtypeof] = ACTIONS(1549), + [anon_sym_DOLLARtypefrom] = ACTIONS(1549), + [anon_sym_DOLLARevaltype] = ACTIONS(1549), + [anon_sym_DOLLARvatype] = ACTIONS(1549), + [sym_real_literal] = ACTIONS(1551), }, [637] = { [sym_line_comment] = STATE(637), [sym_doc_comment] = STATE(637), [sym_block_comment] = STATE(637), - [sym_ident] = ACTIONS(1587), - [sym_integer_literal] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [anon_sym_BQUOTE] = ACTIONS(1589), - [sym_bytes_literal] = ACTIONS(1589), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1587), - [sym_at_ident] = ACTIONS(1589), - [sym_hash_ident] = ACTIONS(1589), - [sym_type_ident] = ACTIONS(1589), - [sym_ct_type_ident] = ACTIONS(1589), - [sym_const_ident] = ACTIONS(1587), - [sym_builtin] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_static] = ACTIONS(1587), - [anon_sym_tlocal] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_fn] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [anon_sym_var] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_defer] = ACTIONS(1587), - [anon_sym_assert] = ACTIONS(1587), - [anon_sym_nextcase] = ACTIONS(1587), - [anon_sym_switch] = ACTIONS(1587), - [anon_sym_AMP_AMP] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_foreach] = ACTIONS(1587), - [anon_sym_foreach_r] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_int] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_asm] = ACTIONS(1587), - [anon_sym_DOLLARassert] = ACTIONS(1587), - [anon_sym_DOLLARerror] = ACTIONS(1587), - [anon_sym_DOLLARecho] = ACTIONS(1587), - [anon_sym_DOLLARif] = ACTIONS(1587), - [anon_sym_DOLLARendif] = ACTIONS(1587), - [anon_sym_DOLLARswitch] = ACTIONS(1587), - [anon_sym_DOLLARfor] = ACTIONS(1587), - [anon_sym_DOLLARforeach] = ACTIONS(1587), - [anon_sym_DOLLARalignof] = ACTIONS(1587), - [anon_sym_DOLLARextnameof] = ACTIONS(1587), - [anon_sym_DOLLARnameof] = ACTIONS(1587), - [anon_sym_DOLLARoffsetof] = ACTIONS(1587), - [anon_sym_DOLLARqnameof] = ACTIONS(1587), - [anon_sym_DOLLAReval] = ACTIONS(1587), - [anon_sym_DOLLARdefined] = ACTIONS(1587), - [anon_sym_DOLLARsizeof] = ACTIONS(1587), - [anon_sym_DOLLARstringify] = ACTIONS(1587), - [anon_sym_DOLLARis_const] = ACTIONS(1587), - [anon_sym_DOLLARvaconst] = ACTIONS(1587), - [anon_sym_DOLLARvaarg] = ACTIONS(1587), - [anon_sym_DOLLARvaref] = ACTIONS(1587), - [anon_sym_DOLLARvaexpr] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [anon_sym_DOLLARvacount] = ACTIONS(1587), - [anon_sym_DOLLARfeature] = ACTIONS(1587), - [anon_sym_DOLLARand] = ACTIONS(1587), - [anon_sym_DOLLARor] = ACTIONS(1587), - [anon_sym_DOLLARassignable] = ACTIONS(1587), - [anon_sym_DOLLARembed] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_typeid] = ACTIONS(1587), - [anon_sym_LBRACE_PIPE] = ACTIONS(1589), - [anon_sym_void] = ACTIONS(1587), - [anon_sym_bool] = ACTIONS(1587), - [anon_sym_char] = ACTIONS(1587), - [anon_sym_ichar] = ACTIONS(1587), - [anon_sym_short] = ACTIONS(1587), - [anon_sym_ushort] = ACTIONS(1587), - [anon_sym_uint] = ACTIONS(1587), - [anon_sym_long] = ACTIONS(1587), - [anon_sym_ulong] = ACTIONS(1587), - [anon_sym_int128] = ACTIONS(1587), - [anon_sym_uint128] = ACTIONS(1587), - [anon_sym_float] = ACTIONS(1587), - [anon_sym_double] = ACTIONS(1587), - [anon_sym_float16] = ACTIONS(1587), - [anon_sym_bfloat16] = ACTIONS(1587), - [anon_sym_float128] = ACTIONS(1587), - [anon_sym_iptr] = ACTIONS(1587), - [anon_sym_uptr] = ACTIONS(1587), - [anon_sym_isz] = ACTIONS(1587), - [anon_sym_usz] = ACTIONS(1587), - [anon_sym_anyfault] = ACTIONS(1587), - [anon_sym_any] = ACTIONS(1587), - [anon_sym_DOLLARtypeof] = ACTIONS(1587), - [anon_sym_DOLLARtypefrom] = ACTIONS(1587), - [anon_sym_DOLLARvatype] = ACTIONS(1587), - [anon_sym_DOLLARevaltype] = ACTIONS(1587), - [sym_real_literal] = ACTIONS(1589), + [sym_ident] = ACTIONS(1557), + [sym_integer_literal] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [sym_bytes_literal] = ACTIONS(1559), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1557), + [sym_at_ident] = ACTIONS(1559), + [sym_hash_ident] = ACTIONS(1559), + [sym_type_ident] = ACTIONS(1559), + [sym_ct_type_ident] = ACTIONS(1559), + [sym_const_ident] = ACTIONS(1557), + [sym_builtin] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_static] = ACTIONS(1557), + [anon_sym_tlocal] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_fn] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_defer] = ACTIONS(1557), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_nextcase] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_foreach] = ACTIONS(1557), + [anon_sym_foreach_r] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_int] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_asm] = ACTIONS(1557), + [anon_sym_DOLLARassert] = ACTIONS(1557), + [anon_sym_DOLLARerror] = ACTIONS(1557), + [anon_sym_DOLLARecho] = ACTIONS(1557), + [anon_sym_DOLLARif] = ACTIONS(1557), + [anon_sym_DOLLARswitch] = ACTIONS(1557), + [anon_sym_DOLLARfor] = ACTIONS(1557), + [anon_sym_DOLLARendfor] = ACTIONS(1557), + [anon_sym_DOLLARforeach] = ACTIONS(1557), + [anon_sym_DOLLARalignof] = ACTIONS(1557), + [anon_sym_DOLLARextnameof] = ACTIONS(1557), + [anon_sym_DOLLARnameof] = ACTIONS(1557), + [anon_sym_DOLLARoffsetof] = ACTIONS(1557), + [anon_sym_DOLLARqnameof] = ACTIONS(1557), + [anon_sym_DOLLARvaconst] = ACTIONS(1557), + [anon_sym_DOLLARvaarg] = ACTIONS(1557), + [anon_sym_DOLLARvaref] = ACTIONS(1557), + [anon_sym_DOLLARvaexpr] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_DOLLARvacount] = ACTIONS(1557), + [anon_sym_DOLLAReval] = ACTIONS(1557), + [anon_sym_DOLLARis_const] = ACTIONS(1557), + [anon_sym_DOLLARsizeof] = ACTIONS(1557), + [anon_sym_DOLLARstringify] = ACTIONS(1557), + [anon_sym_DOLLARappend] = ACTIONS(1557), + [anon_sym_DOLLARconcat] = ACTIONS(1557), + [anon_sym_DOLLARdefined] = ACTIONS(1557), + [anon_sym_DOLLARembed] = ACTIONS(1557), + [anon_sym_DOLLARand] = ACTIONS(1557), + [anon_sym_DOLLARor] = ACTIONS(1557), + [anon_sym_DOLLARfeature] = ACTIONS(1557), + [anon_sym_DOLLARassignable] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_typeid] = ACTIONS(1557), + [anon_sym_LBRACE_PIPE] = ACTIONS(1559), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_bool] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_ichar] = ACTIONS(1557), + [anon_sym_short] = ACTIONS(1557), + [anon_sym_ushort] = ACTIONS(1557), + [anon_sym_uint] = ACTIONS(1557), + [anon_sym_long] = ACTIONS(1557), + [anon_sym_ulong] = ACTIONS(1557), + [anon_sym_int128] = ACTIONS(1557), + [anon_sym_uint128] = ACTIONS(1557), + [anon_sym_float] = ACTIONS(1557), + [anon_sym_double] = ACTIONS(1557), + [anon_sym_float16] = ACTIONS(1557), + [anon_sym_bfloat16] = ACTIONS(1557), + [anon_sym_float128] = ACTIONS(1557), + [anon_sym_iptr] = ACTIONS(1557), + [anon_sym_uptr] = ACTIONS(1557), + [anon_sym_isz] = ACTIONS(1557), + [anon_sym_usz] = ACTIONS(1557), + [anon_sym_anyfault] = ACTIONS(1557), + [anon_sym_any] = ACTIONS(1557), + [anon_sym_DOLLARtypeof] = ACTIONS(1557), + [anon_sym_DOLLARtypefrom] = ACTIONS(1557), + [anon_sym_DOLLARevaltype] = ACTIONS(1557), + [anon_sym_DOLLARvatype] = ACTIONS(1557), + [sym_real_literal] = ACTIONS(1559), }, [638] = { [sym_line_comment] = STATE(638), [sym_doc_comment] = STATE(638), [sym_block_comment] = STATE(638), - [sym_ident] = ACTIONS(1531), - [sym_integer_literal] = ACTIONS(1533), - [anon_sym_SQUOTE] = ACTIONS(1533), - [anon_sym_DQUOTE] = ACTIONS(1533), - [anon_sym_BQUOTE] = ACTIONS(1533), - [sym_bytes_literal] = ACTIONS(1533), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1531), - [sym_at_ident] = ACTIONS(1533), - [sym_hash_ident] = ACTIONS(1533), - [sym_type_ident] = ACTIONS(1533), - [sym_ct_type_ident] = ACTIONS(1533), - [sym_const_ident] = ACTIONS(1531), - [sym_builtin] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1531), - [anon_sym_static] = ACTIONS(1531), - [anon_sym_tlocal] = ACTIONS(1531), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_fn] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_const] = ACTIONS(1531), - [anon_sym_var] = ACTIONS(1531), - [anon_sym_return] = ACTIONS(1531), - [anon_sym_continue] = ACTIONS(1531), - [anon_sym_break] = ACTIONS(1531), - [anon_sym_defer] = ACTIONS(1531), - [anon_sym_assert] = ACTIONS(1531), - [anon_sym_nextcase] = ACTIONS(1531), - [anon_sym_switch] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1531), - [anon_sym_for] = ACTIONS(1531), - [anon_sym_foreach] = ACTIONS(1531), - [anon_sym_foreach_r] = ACTIONS(1531), - [anon_sym_while] = ACTIONS(1531), - [anon_sym_do] = ACTIONS(1531), - [anon_sym_int] = ACTIONS(1531), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_asm] = ACTIONS(1531), - [anon_sym_DOLLARassert] = ACTIONS(1531), - [anon_sym_DOLLARerror] = ACTIONS(1531), - [anon_sym_DOLLARecho] = ACTIONS(1531), - [anon_sym_DOLLARif] = ACTIONS(1531), - [anon_sym_DOLLARswitch] = ACTIONS(1531), - [anon_sym_DOLLARfor] = ACTIONS(1531), - [anon_sym_DOLLARendfor] = ACTIONS(1531), - [anon_sym_DOLLARforeach] = ACTIONS(1531), - [anon_sym_DOLLARalignof] = ACTIONS(1531), - [anon_sym_DOLLARextnameof] = ACTIONS(1531), - [anon_sym_DOLLARnameof] = ACTIONS(1531), - [anon_sym_DOLLARoffsetof] = ACTIONS(1531), - [anon_sym_DOLLARqnameof] = ACTIONS(1531), - [anon_sym_DOLLAReval] = ACTIONS(1531), - [anon_sym_DOLLARdefined] = ACTIONS(1531), - [anon_sym_DOLLARsizeof] = ACTIONS(1531), - [anon_sym_DOLLARstringify] = ACTIONS(1531), - [anon_sym_DOLLARis_const] = ACTIONS(1531), - [anon_sym_DOLLARvaconst] = ACTIONS(1531), - [anon_sym_DOLLARvaarg] = ACTIONS(1531), - [anon_sym_DOLLARvaref] = ACTIONS(1531), - [anon_sym_DOLLARvaexpr] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1531), - [anon_sym_false] = ACTIONS(1531), - [anon_sym_null] = ACTIONS(1531), - [anon_sym_DOLLARvacount] = ACTIONS(1531), - [anon_sym_DOLLARfeature] = ACTIONS(1531), - [anon_sym_DOLLARand] = ACTIONS(1531), - [anon_sym_DOLLARor] = ACTIONS(1531), - [anon_sym_DOLLARassignable] = ACTIONS(1531), - [anon_sym_DOLLARembed] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_typeid] = ACTIONS(1531), - [anon_sym_LBRACE_PIPE] = ACTIONS(1533), - [anon_sym_void] = ACTIONS(1531), - [anon_sym_bool] = ACTIONS(1531), - [anon_sym_char] = ACTIONS(1531), - [anon_sym_ichar] = ACTIONS(1531), - [anon_sym_short] = ACTIONS(1531), - [anon_sym_ushort] = ACTIONS(1531), - [anon_sym_uint] = ACTIONS(1531), - [anon_sym_long] = ACTIONS(1531), - [anon_sym_ulong] = ACTIONS(1531), - [anon_sym_int128] = ACTIONS(1531), - [anon_sym_uint128] = ACTIONS(1531), - [anon_sym_float] = ACTIONS(1531), - [anon_sym_double] = ACTIONS(1531), - [anon_sym_float16] = ACTIONS(1531), - [anon_sym_bfloat16] = ACTIONS(1531), - [anon_sym_float128] = ACTIONS(1531), - [anon_sym_iptr] = ACTIONS(1531), - [anon_sym_uptr] = ACTIONS(1531), - [anon_sym_isz] = ACTIONS(1531), - [anon_sym_usz] = ACTIONS(1531), - [anon_sym_anyfault] = ACTIONS(1531), - [anon_sym_any] = ACTIONS(1531), - [anon_sym_DOLLARtypeof] = ACTIONS(1531), - [anon_sym_DOLLARtypefrom] = ACTIONS(1531), - [anon_sym_DOLLARvatype] = ACTIONS(1531), - [anon_sym_DOLLARevaltype] = ACTIONS(1531), - [sym_real_literal] = ACTIONS(1533), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARendfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), }, [639] = { [sym_line_comment] = STATE(639), [sym_doc_comment] = STATE(639), [sym_block_comment] = STATE(639), - [sym_ident] = ACTIONS(1467), - [sym_integer_literal] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_BQUOTE] = ACTIONS(1469), - [sym_bytes_literal] = ACTIONS(1469), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1467), - [sym_at_ident] = ACTIONS(1469), - [sym_hash_ident] = ACTIONS(1469), - [sym_type_ident] = ACTIONS(1469), - [sym_ct_type_ident] = ACTIONS(1469), - [sym_const_ident] = ACTIONS(1467), - [sym_builtin] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_static] = ACTIONS(1467), - [anon_sym_tlocal] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_fn] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_const] = ACTIONS(1467), - [anon_sym_var] = ACTIONS(1467), - [anon_sym_return] = ACTIONS(1467), - [anon_sym_continue] = ACTIONS(1467), - [anon_sym_break] = ACTIONS(1467), - [anon_sym_defer] = ACTIONS(1467), - [anon_sym_assert] = ACTIONS(1467), - [anon_sym_nextcase] = ACTIONS(1467), - [anon_sym_switch] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_for] = ACTIONS(1467), - [anon_sym_foreach] = ACTIONS(1467), - [anon_sym_foreach_r] = ACTIONS(1467), - [anon_sym_while] = ACTIONS(1467), - [anon_sym_do] = ACTIONS(1467), - [anon_sym_int] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_asm] = ACTIONS(1467), - [anon_sym_DOLLARassert] = ACTIONS(1467), - [anon_sym_DOLLARerror] = ACTIONS(1467), - [anon_sym_DOLLARecho] = ACTIONS(1467), - [anon_sym_DOLLARif] = ACTIONS(1467), - [anon_sym_DOLLARswitch] = ACTIONS(1467), - [anon_sym_DOLLARfor] = ACTIONS(1467), - [anon_sym_DOLLARforeach] = ACTIONS(1467), - [anon_sym_DOLLARendforeach] = ACTIONS(1467), - [anon_sym_DOLLARalignof] = ACTIONS(1467), - [anon_sym_DOLLARextnameof] = ACTIONS(1467), - [anon_sym_DOLLARnameof] = ACTIONS(1467), - [anon_sym_DOLLARoffsetof] = ACTIONS(1467), - [anon_sym_DOLLARqnameof] = ACTIONS(1467), - [anon_sym_DOLLAReval] = ACTIONS(1467), - [anon_sym_DOLLARdefined] = ACTIONS(1467), - [anon_sym_DOLLARsizeof] = ACTIONS(1467), - [anon_sym_DOLLARstringify] = ACTIONS(1467), - [anon_sym_DOLLARis_const] = ACTIONS(1467), - [anon_sym_DOLLARvaconst] = ACTIONS(1467), - [anon_sym_DOLLARvaarg] = ACTIONS(1467), - [anon_sym_DOLLARvaref] = ACTIONS(1467), - [anon_sym_DOLLARvaexpr] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1467), - [anon_sym_false] = ACTIONS(1467), - [anon_sym_null] = ACTIONS(1467), - [anon_sym_DOLLARvacount] = ACTIONS(1467), - [anon_sym_DOLLARfeature] = ACTIONS(1467), - [anon_sym_DOLLARand] = ACTIONS(1467), - [anon_sym_DOLLARor] = ACTIONS(1467), - [anon_sym_DOLLARassignable] = ACTIONS(1467), - [anon_sym_DOLLARembed] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_PLUS_PLUS] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1469), - [anon_sym_typeid] = ACTIONS(1467), - [anon_sym_LBRACE_PIPE] = ACTIONS(1469), - [anon_sym_void] = ACTIONS(1467), - [anon_sym_bool] = ACTIONS(1467), - [anon_sym_char] = ACTIONS(1467), - [anon_sym_ichar] = ACTIONS(1467), - [anon_sym_short] = ACTIONS(1467), - [anon_sym_ushort] = ACTIONS(1467), - [anon_sym_uint] = ACTIONS(1467), - [anon_sym_long] = ACTIONS(1467), - [anon_sym_ulong] = ACTIONS(1467), - [anon_sym_int128] = ACTIONS(1467), - [anon_sym_uint128] = ACTIONS(1467), - [anon_sym_float] = ACTIONS(1467), - [anon_sym_double] = ACTIONS(1467), - [anon_sym_float16] = ACTIONS(1467), - [anon_sym_bfloat16] = ACTIONS(1467), - [anon_sym_float128] = ACTIONS(1467), - [anon_sym_iptr] = ACTIONS(1467), - [anon_sym_uptr] = ACTIONS(1467), - [anon_sym_isz] = ACTIONS(1467), - [anon_sym_usz] = ACTIONS(1467), - [anon_sym_anyfault] = ACTIONS(1467), - [anon_sym_any] = ACTIONS(1467), - [anon_sym_DOLLARtypeof] = ACTIONS(1467), - [anon_sym_DOLLARtypefrom] = ACTIONS(1467), - [anon_sym_DOLLARvatype] = ACTIONS(1467), - [anon_sym_DOLLARevaltype] = ACTIONS(1467), - [sym_real_literal] = ACTIONS(1469), + [sym_ident] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [anon_sym_BQUOTE] = ACTIONS(1567), + [sym_bytes_literal] = ACTIONS(1567), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1565), + [sym_at_ident] = ACTIONS(1567), + [sym_hash_ident] = ACTIONS(1567), + [sym_type_ident] = ACTIONS(1567), + [sym_ct_type_ident] = ACTIONS(1567), + [sym_const_ident] = ACTIONS(1565), + [sym_builtin] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_tlocal] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_fn] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_var] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_defer] = ACTIONS(1565), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_nextcase] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_foreach] = ACTIONS(1565), + [anon_sym_foreach_r] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_int] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_asm] = ACTIONS(1565), + [anon_sym_DOLLARassert] = ACTIONS(1565), + [anon_sym_DOLLARerror] = ACTIONS(1565), + [anon_sym_DOLLARecho] = ACTIONS(1565), + [anon_sym_DOLLARif] = ACTIONS(1565), + [anon_sym_DOLLARswitch] = ACTIONS(1565), + [anon_sym_DOLLARfor] = ACTIONS(1565), + [anon_sym_DOLLARendfor] = ACTIONS(1565), + [anon_sym_DOLLARforeach] = ACTIONS(1565), + [anon_sym_DOLLARalignof] = ACTIONS(1565), + [anon_sym_DOLLARextnameof] = ACTIONS(1565), + [anon_sym_DOLLARnameof] = ACTIONS(1565), + [anon_sym_DOLLARoffsetof] = ACTIONS(1565), + [anon_sym_DOLLARqnameof] = ACTIONS(1565), + [anon_sym_DOLLARvaconst] = ACTIONS(1565), + [anon_sym_DOLLARvaarg] = ACTIONS(1565), + [anon_sym_DOLLARvaref] = ACTIONS(1565), + [anon_sym_DOLLARvaexpr] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_DOLLARvacount] = ACTIONS(1565), + [anon_sym_DOLLAReval] = ACTIONS(1565), + [anon_sym_DOLLARis_const] = ACTIONS(1565), + [anon_sym_DOLLARsizeof] = ACTIONS(1565), + [anon_sym_DOLLARstringify] = ACTIONS(1565), + [anon_sym_DOLLARappend] = ACTIONS(1565), + [anon_sym_DOLLARconcat] = ACTIONS(1565), + [anon_sym_DOLLARdefined] = ACTIONS(1565), + [anon_sym_DOLLARembed] = ACTIONS(1565), + [anon_sym_DOLLARand] = ACTIONS(1565), + [anon_sym_DOLLARor] = ACTIONS(1565), + [anon_sym_DOLLARfeature] = ACTIONS(1565), + [anon_sym_DOLLARassignable] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_typeid] = ACTIONS(1565), + [anon_sym_LBRACE_PIPE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_bool] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_ichar] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [anon_sym_ushort] = ACTIONS(1565), + [anon_sym_uint] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_ulong] = ACTIONS(1565), + [anon_sym_int128] = ACTIONS(1565), + [anon_sym_uint128] = ACTIONS(1565), + [anon_sym_float] = ACTIONS(1565), + [anon_sym_double] = ACTIONS(1565), + [anon_sym_float16] = ACTIONS(1565), + [anon_sym_bfloat16] = ACTIONS(1565), + [anon_sym_float128] = ACTIONS(1565), + [anon_sym_iptr] = ACTIONS(1565), + [anon_sym_uptr] = ACTIONS(1565), + [anon_sym_isz] = ACTIONS(1565), + [anon_sym_usz] = ACTIONS(1565), + [anon_sym_anyfault] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1565), + [anon_sym_DOLLARtypeof] = ACTIONS(1565), + [anon_sym_DOLLARtypefrom] = ACTIONS(1565), + [anon_sym_DOLLARevaltype] = ACTIONS(1565), + [anon_sym_DOLLARvatype] = ACTIONS(1565), + [sym_real_literal] = ACTIONS(1567), }, [640] = { [sym_line_comment] = STATE(640), [sym_doc_comment] = STATE(640), [sym_block_comment] = STATE(640), - [sym_ident] = ACTIONS(1539), - [sym_integer_literal] = ACTIONS(1541), - [anon_sym_SQUOTE] = ACTIONS(1541), - [anon_sym_DQUOTE] = ACTIONS(1541), - [anon_sym_BQUOTE] = ACTIONS(1541), - [sym_bytes_literal] = ACTIONS(1541), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1539), - [sym_at_ident] = ACTIONS(1541), - [sym_hash_ident] = ACTIONS(1541), - [sym_type_ident] = ACTIONS(1541), - [sym_ct_type_ident] = ACTIONS(1541), - [sym_const_ident] = ACTIONS(1539), - [sym_builtin] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1539), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_tlocal] = ACTIONS(1539), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_fn] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_defer] = ACTIONS(1539), - [anon_sym_assert] = ACTIONS(1539), - [anon_sym_nextcase] = ACTIONS(1539), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_AMP_AMP] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_foreach] = ACTIONS(1539), - [anon_sym_foreach_r] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_int] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1539), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_asm] = ACTIONS(1539), - [anon_sym_DOLLARassert] = ACTIONS(1539), - [anon_sym_DOLLARerror] = ACTIONS(1539), - [anon_sym_DOLLARecho] = ACTIONS(1539), - [anon_sym_DOLLARif] = ACTIONS(1539), - [anon_sym_DOLLARswitch] = ACTIONS(1539), - [anon_sym_DOLLARfor] = ACTIONS(1539), - [anon_sym_DOLLARendfor] = ACTIONS(1539), - [anon_sym_DOLLARforeach] = ACTIONS(1539), - [anon_sym_DOLLARalignof] = ACTIONS(1539), - [anon_sym_DOLLARextnameof] = ACTIONS(1539), - [anon_sym_DOLLARnameof] = ACTIONS(1539), - [anon_sym_DOLLARoffsetof] = ACTIONS(1539), - [anon_sym_DOLLARqnameof] = ACTIONS(1539), - [anon_sym_DOLLAReval] = ACTIONS(1539), - [anon_sym_DOLLARdefined] = ACTIONS(1539), - [anon_sym_DOLLARsizeof] = ACTIONS(1539), - [anon_sym_DOLLARstringify] = ACTIONS(1539), - [anon_sym_DOLLARis_const] = ACTIONS(1539), - [anon_sym_DOLLARvaconst] = ACTIONS(1539), - [anon_sym_DOLLARvaarg] = ACTIONS(1539), - [anon_sym_DOLLARvaref] = ACTIONS(1539), - [anon_sym_DOLLARvaexpr] = ACTIONS(1539), - [anon_sym_true] = ACTIONS(1539), - [anon_sym_false] = ACTIONS(1539), - [anon_sym_null] = ACTIONS(1539), - [anon_sym_DOLLARvacount] = ACTIONS(1539), - [anon_sym_DOLLARfeature] = ACTIONS(1539), - [anon_sym_DOLLARand] = ACTIONS(1539), - [anon_sym_DOLLARor] = ACTIONS(1539), - [anon_sym_DOLLARassignable] = ACTIONS(1539), - [anon_sym_DOLLARembed] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1541), - [anon_sym_DASH_DASH] = ACTIONS(1541), - [anon_sym_typeid] = ACTIONS(1539), - [anon_sym_LBRACE_PIPE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1539), - [anon_sym_bool] = ACTIONS(1539), - [anon_sym_char] = ACTIONS(1539), - [anon_sym_ichar] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [anon_sym_ushort] = ACTIONS(1539), - [anon_sym_uint] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_ulong] = ACTIONS(1539), - [anon_sym_int128] = ACTIONS(1539), - [anon_sym_uint128] = ACTIONS(1539), - [anon_sym_float] = ACTIONS(1539), - [anon_sym_double] = ACTIONS(1539), - [anon_sym_float16] = ACTIONS(1539), - [anon_sym_bfloat16] = ACTIONS(1539), - [anon_sym_float128] = ACTIONS(1539), - [anon_sym_iptr] = ACTIONS(1539), - [anon_sym_uptr] = ACTIONS(1539), - [anon_sym_isz] = ACTIONS(1539), - [anon_sym_usz] = ACTIONS(1539), - [anon_sym_anyfault] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_DOLLARtypeof] = ACTIONS(1539), - [anon_sym_DOLLARtypefrom] = ACTIONS(1539), - [anon_sym_DOLLARvatype] = ACTIONS(1539), - [anon_sym_DOLLARevaltype] = ACTIONS(1539), - [sym_real_literal] = ACTIONS(1541), + [sym_ident] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [anon_sym_BQUOTE] = ACTIONS(1571), + [sym_bytes_literal] = ACTIONS(1571), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1569), + [sym_at_ident] = ACTIONS(1571), + [sym_hash_ident] = ACTIONS(1571), + [sym_type_ident] = ACTIONS(1571), + [sym_ct_type_ident] = ACTIONS(1571), + [sym_const_ident] = ACTIONS(1569), + [sym_builtin] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_tlocal] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_var] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_defer] = ACTIONS(1569), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_nextcase] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_foreach] = ACTIONS(1569), + [anon_sym_foreach_r] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_int] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_asm] = ACTIONS(1569), + [anon_sym_DOLLARassert] = ACTIONS(1569), + [anon_sym_DOLLARerror] = ACTIONS(1569), + [anon_sym_DOLLARecho] = ACTIONS(1569), + [anon_sym_DOLLARif] = ACTIONS(1569), + [anon_sym_DOLLARswitch] = ACTIONS(1569), + [anon_sym_DOLLARfor] = ACTIONS(1569), + [anon_sym_DOLLARendfor] = ACTIONS(1569), + [anon_sym_DOLLARforeach] = ACTIONS(1569), + [anon_sym_DOLLARalignof] = ACTIONS(1569), + [anon_sym_DOLLARextnameof] = ACTIONS(1569), + [anon_sym_DOLLARnameof] = ACTIONS(1569), + [anon_sym_DOLLARoffsetof] = ACTIONS(1569), + [anon_sym_DOLLARqnameof] = ACTIONS(1569), + [anon_sym_DOLLARvaconst] = ACTIONS(1569), + [anon_sym_DOLLARvaarg] = ACTIONS(1569), + [anon_sym_DOLLARvaref] = ACTIONS(1569), + [anon_sym_DOLLARvaexpr] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [anon_sym_DOLLARvacount] = ACTIONS(1569), + [anon_sym_DOLLAReval] = ACTIONS(1569), + [anon_sym_DOLLARis_const] = ACTIONS(1569), + [anon_sym_DOLLARsizeof] = ACTIONS(1569), + [anon_sym_DOLLARstringify] = ACTIONS(1569), + [anon_sym_DOLLARappend] = ACTIONS(1569), + [anon_sym_DOLLARconcat] = ACTIONS(1569), + [anon_sym_DOLLARdefined] = ACTIONS(1569), + [anon_sym_DOLLARembed] = ACTIONS(1569), + [anon_sym_DOLLARand] = ACTIONS(1569), + [anon_sym_DOLLARor] = ACTIONS(1569), + [anon_sym_DOLLARfeature] = ACTIONS(1569), + [anon_sym_DOLLARassignable] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_typeid] = ACTIONS(1569), + [anon_sym_LBRACE_PIPE] = ACTIONS(1571), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_bool] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_ichar] = ACTIONS(1569), + [anon_sym_short] = ACTIONS(1569), + [anon_sym_ushort] = ACTIONS(1569), + [anon_sym_uint] = ACTIONS(1569), + [anon_sym_long] = ACTIONS(1569), + [anon_sym_ulong] = ACTIONS(1569), + [anon_sym_int128] = ACTIONS(1569), + [anon_sym_uint128] = ACTIONS(1569), + [anon_sym_float] = ACTIONS(1569), + [anon_sym_double] = ACTIONS(1569), + [anon_sym_float16] = ACTIONS(1569), + [anon_sym_bfloat16] = ACTIONS(1569), + [anon_sym_float128] = ACTIONS(1569), + [anon_sym_iptr] = ACTIONS(1569), + [anon_sym_uptr] = ACTIONS(1569), + [anon_sym_isz] = ACTIONS(1569), + [anon_sym_usz] = ACTIONS(1569), + [anon_sym_anyfault] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1569), + [anon_sym_DOLLARtypeof] = ACTIONS(1569), + [anon_sym_DOLLARtypefrom] = ACTIONS(1569), + [anon_sym_DOLLARevaltype] = ACTIONS(1569), + [anon_sym_DOLLARvatype] = ACTIONS(1569), + [sym_real_literal] = ACTIONS(1571), }, [641] = { [sym_line_comment] = STATE(641), [sym_doc_comment] = STATE(641), [sym_block_comment] = STATE(641), - [sym_ident] = ACTIONS(1463), - [sym_integer_literal] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1465), - [sym_bytes_literal] = ACTIONS(1465), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1463), - [sym_at_ident] = ACTIONS(1465), - [sym_hash_ident] = ACTIONS(1465), - [sym_type_ident] = ACTIONS(1465), - [sym_ct_type_ident] = ACTIONS(1465), - [sym_const_ident] = ACTIONS(1463), - [sym_builtin] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_static] = ACTIONS(1463), - [anon_sym_tlocal] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_var] = ACTIONS(1463), - [anon_sym_return] = ACTIONS(1463), - [anon_sym_continue] = ACTIONS(1463), - [anon_sym_break] = ACTIONS(1463), - [anon_sym_defer] = ACTIONS(1463), - [anon_sym_assert] = ACTIONS(1463), - [anon_sym_nextcase] = ACTIONS(1463), - [anon_sym_switch] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1463), - [anon_sym_for] = ACTIONS(1463), - [anon_sym_foreach] = ACTIONS(1463), - [anon_sym_foreach_r] = ACTIONS(1463), - [anon_sym_while] = ACTIONS(1463), - [anon_sym_do] = ACTIONS(1463), - [anon_sym_int] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_asm] = ACTIONS(1463), - [anon_sym_DOLLARassert] = ACTIONS(1463), - [anon_sym_DOLLARerror] = ACTIONS(1463), - [anon_sym_DOLLARecho] = ACTIONS(1463), - [anon_sym_DOLLARif] = ACTIONS(1463), - [anon_sym_DOLLARswitch] = ACTIONS(1463), - [anon_sym_DOLLARfor] = ACTIONS(1463), - [anon_sym_DOLLARforeach] = ACTIONS(1463), - [anon_sym_DOLLARendforeach] = ACTIONS(1463), - [anon_sym_DOLLARalignof] = ACTIONS(1463), - [anon_sym_DOLLARextnameof] = ACTIONS(1463), - [anon_sym_DOLLARnameof] = ACTIONS(1463), - [anon_sym_DOLLARoffsetof] = ACTIONS(1463), - [anon_sym_DOLLARqnameof] = ACTIONS(1463), - [anon_sym_DOLLAReval] = ACTIONS(1463), - [anon_sym_DOLLARdefined] = ACTIONS(1463), - [anon_sym_DOLLARsizeof] = ACTIONS(1463), - [anon_sym_DOLLARstringify] = ACTIONS(1463), - [anon_sym_DOLLARis_const] = ACTIONS(1463), - [anon_sym_DOLLARvaconst] = ACTIONS(1463), - [anon_sym_DOLLARvaarg] = ACTIONS(1463), - [anon_sym_DOLLARvaref] = ACTIONS(1463), - [anon_sym_DOLLARvaexpr] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1463), - [anon_sym_false] = ACTIONS(1463), - [anon_sym_null] = ACTIONS(1463), - [anon_sym_DOLLARvacount] = ACTIONS(1463), - [anon_sym_DOLLARfeature] = ACTIONS(1463), - [anon_sym_DOLLARand] = ACTIONS(1463), - [anon_sym_DOLLARor] = ACTIONS(1463), - [anon_sym_DOLLARassignable] = ACTIONS(1463), - [anon_sym_DOLLARembed] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1465), - [anon_sym_PLUS_PLUS] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1465), - [anon_sym_typeid] = ACTIONS(1463), - [anon_sym_LBRACE_PIPE] = ACTIONS(1465), - [anon_sym_void] = ACTIONS(1463), - [anon_sym_bool] = ACTIONS(1463), - [anon_sym_char] = ACTIONS(1463), - [anon_sym_ichar] = ACTIONS(1463), - [anon_sym_short] = ACTIONS(1463), - [anon_sym_ushort] = ACTIONS(1463), - [anon_sym_uint] = ACTIONS(1463), - [anon_sym_long] = ACTIONS(1463), - [anon_sym_ulong] = ACTIONS(1463), - [anon_sym_int128] = ACTIONS(1463), - [anon_sym_uint128] = ACTIONS(1463), - [anon_sym_float] = ACTIONS(1463), - [anon_sym_double] = ACTIONS(1463), - [anon_sym_float16] = ACTIONS(1463), - [anon_sym_bfloat16] = ACTIONS(1463), - [anon_sym_float128] = ACTIONS(1463), - [anon_sym_iptr] = ACTIONS(1463), - [anon_sym_uptr] = ACTIONS(1463), - [anon_sym_isz] = ACTIONS(1463), - [anon_sym_usz] = ACTIONS(1463), - [anon_sym_anyfault] = ACTIONS(1463), - [anon_sym_any] = ACTIONS(1463), - [anon_sym_DOLLARtypeof] = ACTIONS(1463), - [anon_sym_DOLLARtypefrom] = ACTIONS(1463), - [anon_sym_DOLLARvatype] = ACTIONS(1463), - [anon_sym_DOLLARevaltype] = ACTIONS(1463), - [sym_real_literal] = ACTIONS(1465), + [sym_ident] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_bytes_literal] = ACTIONS(1583), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1581), + [sym_at_ident] = ACTIONS(1583), + [sym_hash_ident] = ACTIONS(1583), + [sym_type_ident] = ACTIONS(1583), + [sym_ct_type_ident] = ACTIONS(1583), + [sym_const_ident] = ACTIONS(1581), + [sym_builtin] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_tlocal] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_fn] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_var] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_defer] = ACTIONS(1581), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_nextcase] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_AMP_AMP] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_foreach] = ACTIONS(1581), + [anon_sym_foreach_r] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_int] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_asm] = ACTIONS(1581), + [anon_sym_DOLLARassert] = ACTIONS(1581), + [anon_sym_DOLLARerror] = ACTIONS(1581), + [anon_sym_DOLLARecho] = ACTIONS(1581), + [anon_sym_DOLLARif] = ACTIONS(1581), + [anon_sym_DOLLARswitch] = ACTIONS(1581), + [anon_sym_DOLLARfor] = ACTIONS(1581), + [anon_sym_DOLLARendfor] = ACTIONS(1581), + [anon_sym_DOLLARforeach] = ACTIONS(1581), + [anon_sym_DOLLARalignof] = ACTIONS(1581), + [anon_sym_DOLLARextnameof] = ACTIONS(1581), + [anon_sym_DOLLARnameof] = ACTIONS(1581), + [anon_sym_DOLLARoffsetof] = ACTIONS(1581), + [anon_sym_DOLLARqnameof] = ACTIONS(1581), + [anon_sym_DOLLARvaconst] = ACTIONS(1581), + [anon_sym_DOLLARvaarg] = ACTIONS(1581), + [anon_sym_DOLLARvaref] = ACTIONS(1581), + [anon_sym_DOLLARvaexpr] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_DOLLARvacount] = ACTIONS(1581), + [anon_sym_DOLLAReval] = ACTIONS(1581), + [anon_sym_DOLLARis_const] = ACTIONS(1581), + [anon_sym_DOLLARsizeof] = ACTIONS(1581), + [anon_sym_DOLLARstringify] = ACTIONS(1581), + [anon_sym_DOLLARappend] = ACTIONS(1581), + [anon_sym_DOLLARconcat] = ACTIONS(1581), + [anon_sym_DOLLARdefined] = ACTIONS(1581), + [anon_sym_DOLLARembed] = ACTIONS(1581), + [anon_sym_DOLLARand] = ACTIONS(1581), + [anon_sym_DOLLARor] = ACTIONS(1581), + [anon_sym_DOLLARfeature] = ACTIONS(1581), + [anon_sym_DOLLARassignable] = ACTIONS(1581), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_typeid] = ACTIONS(1581), + [anon_sym_LBRACE_PIPE] = ACTIONS(1583), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_bool] = ACTIONS(1581), + [anon_sym_char] = ACTIONS(1581), + [anon_sym_ichar] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [anon_sym_ushort] = ACTIONS(1581), + [anon_sym_uint] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_ulong] = ACTIONS(1581), + [anon_sym_int128] = ACTIONS(1581), + [anon_sym_uint128] = ACTIONS(1581), + [anon_sym_float] = ACTIONS(1581), + [anon_sym_double] = ACTIONS(1581), + [anon_sym_float16] = ACTIONS(1581), + [anon_sym_bfloat16] = ACTIONS(1581), + [anon_sym_float128] = ACTIONS(1581), + [anon_sym_iptr] = ACTIONS(1581), + [anon_sym_uptr] = ACTIONS(1581), + [anon_sym_isz] = ACTIONS(1581), + [anon_sym_usz] = ACTIONS(1581), + [anon_sym_anyfault] = ACTIONS(1581), + [anon_sym_any] = ACTIONS(1581), + [anon_sym_DOLLARtypeof] = ACTIONS(1581), + [anon_sym_DOLLARtypefrom] = ACTIONS(1581), + [anon_sym_DOLLARevaltype] = ACTIONS(1581), + [anon_sym_DOLLARvatype] = ACTIONS(1581), + [sym_real_literal] = ACTIONS(1583), }, [642] = { [sym_line_comment] = STATE(642), [sym_doc_comment] = STATE(642), [sym_block_comment] = STATE(642), - [sym_ident] = ACTIONS(1365), - [sym_integer_literal] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1367), - [sym_bytes_literal] = ACTIONS(1367), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1365), - [sym_at_ident] = ACTIONS(1367), - [sym_hash_ident] = ACTIONS(1367), - [sym_type_ident] = ACTIONS(1367), - [sym_ct_type_ident] = ACTIONS(1367), - [sym_const_ident] = ACTIONS(1365), - [sym_builtin] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_tlocal] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_fn] = ACTIONS(1365), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_var] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_defer] = ACTIONS(1365), - [anon_sym_assert] = ACTIONS(1365), - [anon_sym_nextcase] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_foreach] = ACTIONS(1365), - [anon_sym_foreach_r] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_do] = ACTIONS(1365), - [anon_sym_int] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_asm] = ACTIONS(1365), - [anon_sym_DOLLARassert] = ACTIONS(1365), - [anon_sym_DOLLARerror] = ACTIONS(1365), - [anon_sym_DOLLARecho] = ACTIONS(1365), - [anon_sym_DOLLARif] = ACTIONS(1365), - [anon_sym_DOLLARswitch] = ACTIONS(1365), - [anon_sym_DOLLARfor] = ACTIONS(1365), - [anon_sym_DOLLARendfor] = ACTIONS(1365), - [anon_sym_DOLLARforeach] = ACTIONS(1365), - [anon_sym_DOLLARalignof] = ACTIONS(1365), - [anon_sym_DOLLARextnameof] = ACTIONS(1365), - [anon_sym_DOLLARnameof] = ACTIONS(1365), - [anon_sym_DOLLARoffsetof] = ACTIONS(1365), - [anon_sym_DOLLARqnameof] = ACTIONS(1365), - [anon_sym_DOLLAReval] = ACTIONS(1365), - [anon_sym_DOLLARdefined] = ACTIONS(1365), - [anon_sym_DOLLARsizeof] = ACTIONS(1365), - [anon_sym_DOLLARstringify] = ACTIONS(1365), - [anon_sym_DOLLARis_const] = ACTIONS(1365), - [anon_sym_DOLLARvaconst] = ACTIONS(1365), - [anon_sym_DOLLARvaarg] = ACTIONS(1365), - [anon_sym_DOLLARvaref] = ACTIONS(1365), - [anon_sym_DOLLARvaexpr] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1365), - [anon_sym_false] = ACTIONS(1365), - [anon_sym_null] = ACTIONS(1365), - [anon_sym_DOLLARvacount] = ACTIONS(1365), - [anon_sym_DOLLARfeature] = ACTIONS(1365), - [anon_sym_DOLLARand] = ACTIONS(1365), - [anon_sym_DOLLARor] = ACTIONS(1365), - [anon_sym_DOLLARassignable] = ACTIONS(1365), - [anon_sym_DOLLARembed] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_typeid] = ACTIONS(1365), - [anon_sym_LBRACE_PIPE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1365), - [anon_sym_bool] = ACTIONS(1365), - [anon_sym_char] = ACTIONS(1365), - [anon_sym_ichar] = ACTIONS(1365), - [anon_sym_short] = ACTIONS(1365), - [anon_sym_ushort] = ACTIONS(1365), - [anon_sym_uint] = ACTIONS(1365), - [anon_sym_long] = ACTIONS(1365), - [anon_sym_ulong] = ACTIONS(1365), - [anon_sym_int128] = ACTIONS(1365), - [anon_sym_uint128] = ACTIONS(1365), - [anon_sym_float] = ACTIONS(1365), - [anon_sym_double] = ACTIONS(1365), - [anon_sym_float16] = ACTIONS(1365), - [anon_sym_bfloat16] = ACTIONS(1365), - [anon_sym_float128] = ACTIONS(1365), - [anon_sym_iptr] = ACTIONS(1365), - [anon_sym_uptr] = ACTIONS(1365), - [anon_sym_isz] = ACTIONS(1365), - [anon_sym_usz] = ACTIONS(1365), - [anon_sym_anyfault] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1365), - [anon_sym_DOLLARtypeof] = ACTIONS(1365), - [anon_sym_DOLLARtypefrom] = ACTIONS(1365), - [anon_sym_DOLLARvatype] = ACTIONS(1365), - [anon_sym_DOLLARevaltype] = ACTIONS(1365), - [sym_real_literal] = ACTIONS(1367), + [sym_ident] = ACTIONS(1597), + [sym_integer_literal] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_bytes_literal] = ACTIONS(1599), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1597), + [sym_at_ident] = ACTIONS(1599), + [sym_hash_ident] = ACTIONS(1599), + [sym_type_ident] = ACTIONS(1599), + [sym_ct_type_ident] = ACTIONS(1599), + [sym_const_ident] = ACTIONS(1597), + [sym_builtin] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_tlocal] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_fn] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_var] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_defer] = ACTIONS(1597), + [anon_sym_assert] = ACTIONS(1597), + [anon_sym_nextcase] = ACTIONS(1597), + [anon_sym_switch] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_foreach] = ACTIONS(1597), + [anon_sym_foreach_r] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_int] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_asm] = ACTIONS(1597), + [anon_sym_DOLLARassert] = ACTIONS(1597), + [anon_sym_DOLLARerror] = ACTIONS(1597), + [anon_sym_DOLLARecho] = ACTIONS(1597), + [anon_sym_DOLLARif] = ACTIONS(1597), + [anon_sym_DOLLARswitch] = ACTIONS(1597), + [anon_sym_DOLLARfor] = ACTIONS(1597), + [anon_sym_DOLLARendfor] = ACTIONS(1597), + [anon_sym_DOLLARforeach] = ACTIONS(1597), + [anon_sym_DOLLARalignof] = ACTIONS(1597), + [anon_sym_DOLLARextnameof] = ACTIONS(1597), + [anon_sym_DOLLARnameof] = ACTIONS(1597), + [anon_sym_DOLLARoffsetof] = ACTIONS(1597), + [anon_sym_DOLLARqnameof] = ACTIONS(1597), + [anon_sym_DOLLARvaconst] = ACTIONS(1597), + [anon_sym_DOLLARvaarg] = ACTIONS(1597), + [anon_sym_DOLLARvaref] = ACTIONS(1597), + [anon_sym_DOLLARvaexpr] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_DOLLARvacount] = ACTIONS(1597), + [anon_sym_DOLLAReval] = ACTIONS(1597), + [anon_sym_DOLLARis_const] = ACTIONS(1597), + [anon_sym_DOLLARsizeof] = ACTIONS(1597), + [anon_sym_DOLLARstringify] = ACTIONS(1597), + [anon_sym_DOLLARappend] = ACTIONS(1597), + [anon_sym_DOLLARconcat] = ACTIONS(1597), + [anon_sym_DOLLARdefined] = ACTIONS(1597), + [anon_sym_DOLLARembed] = ACTIONS(1597), + [anon_sym_DOLLARand] = ACTIONS(1597), + [anon_sym_DOLLARor] = ACTIONS(1597), + [anon_sym_DOLLARfeature] = ACTIONS(1597), + [anon_sym_DOLLARassignable] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_typeid] = ACTIONS(1597), + [anon_sym_LBRACE_PIPE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1597), + [anon_sym_bool] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_ichar] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [anon_sym_ushort] = ACTIONS(1597), + [anon_sym_uint] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_ulong] = ACTIONS(1597), + [anon_sym_int128] = ACTIONS(1597), + [anon_sym_uint128] = ACTIONS(1597), + [anon_sym_float] = ACTIONS(1597), + [anon_sym_double] = ACTIONS(1597), + [anon_sym_float16] = ACTIONS(1597), + [anon_sym_bfloat16] = ACTIONS(1597), + [anon_sym_float128] = ACTIONS(1597), + [anon_sym_iptr] = ACTIONS(1597), + [anon_sym_uptr] = ACTIONS(1597), + [anon_sym_isz] = ACTIONS(1597), + [anon_sym_usz] = ACTIONS(1597), + [anon_sym_anyfault] = ACTIONS(1597), + [anon_sym_any] = ACTIONS(1597), + [anon_sym_DOLLARtypeof] = ACTIONS(1597), + [anon_sym_DOLLARtypefrom] = ACTIONS(1597), + [anon_sym_DOLLARevaltype] = ACTIONS(1597), + [anon_sym_DOLLARvatype] = ACTIONS(1597), + [sym_real_literal] = ACTIONS(1599), }, [643] = { [sym_line_comment] = STATE(643), [sym_doc_comment] = STATE(643), [sym_block_comment] = STATE(643), - [sym_ident] = ACTIONS(1381), - [sym_integer_literal] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1383), - [anon_sym_BQUOTE] = ACTIONS(1383), - [sym_bytes_literal] = ACTIONS(1383), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1381), - [sym_at_ident] = ACTIONS(1383), - [sym_hash_ident] = ACTIONS(1383), - [sym_type_ident] = ACTIONS(1383), - [sym_ct_type_ident] = ACTIONS(1383), - [sym_const_ident] = ACTIONS(1381), - [sym_builtin] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_tlocal] = ACTIONS(1381), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_fn] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_const] = ACTIONS(1381), - [anon_sym_var] = ACTIONS(1381), - [anon_sym_return] = ACTIONS(1381), - [anon_sym_continue] = ACTIONS(1381), - [anon_sym_break] = ACTIONS(1381), - [anon_sym_defer] = ACTIONS(1381), - [anon_sym_assert] = ACTIONS(1381), - [anon_sym_nextcase] = ACTIONS(1381), - [anon_sym_switch] = ACTIONS(1381), - [anon_sym_AMP_AMP] = ACTIONS(1383), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_for] = ACTIONS(1381), - [anon_sym_foreach] = ACTIONS(1381), - [anon_sym_foreach_r] = ACTIONS(1381), - [anon_sym_while] = ACTIONS(1381), - [anon_sym_do] = ACTIONS(1381), - [anon_sym_int] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1381), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_asm] = ACTIONS(1381), - [anon_sym_DOLLARassert] = ACTIONS(1381), - [anon_sym_DOLLARerror] = ACTIONS(1381), - [anon_sym_DOLLARecho] = ACTIONS(1381), - [anon_sym_DOLLARif] = ACTIONS(1381), - [anon_sym_DOLLARendif] = ACTIONS(1381), - [anon_sym_DOLLARswitch] = ACTIONS(1381), - [anon_sym_DOLLARfor] = ACTIONS(1381), - [anon_sym_DOLLARforeach] = ACTIONS(1381), - [anon_sym_DOLLARalignof] = ACTIONS(1381), - [anon_sym_DOLLARextnameof] = ACTIONS(1381), - [anon_sym_DOLLARnameof] = ACTIONS(1381), - [anon_sym_DOLLARoffsetof] = ACTIONS(1381), - [anon_sym_DOLLARqnameof] = ACTIONS(1381), - [anon_sym_DOLLAReval] = ACTIONS(1381), - [anon_sym_DOLLARdefined] = ACTIONS(1381), - [anon_sym_DOLLARsizeof] = ACTIONS(1381), - [anon_sym_DOLLARstringify] = ACTIONS(1381), - [anon_sym_DOLLARis_const] = ACTIONS(1381), - [anon_sym_DOLLARvaconst] = ACTIONS(1381), - [anon_sym_DOLLARvaarg] = ACTIONS(1381), - [anon_sym_DOLLARvaref] = ACTIONS(1381), - [anon_sym_DOLLARvaexpr] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1381), - [anon_sym_false] = ACTIONS(1381), - [anon_sym_null] = ACTIONS(1381), - [anon_sym_DOLLARvacount] = ACTIONS(1381), - [anon_sym_DOLLARfeature] = ACTIONS(1381), - [anon_sym_DOLLARand] = ACTIONS(1381), - [anon_sym_DOLLARor] = ACTIONS(1381), - [anon_sym_DOLLARassignable] = ACTIONS(1381), - [anon_sym_DOLLARembed] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_TILDE] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1383), - [anon_sym_DASH_DASH] = ACTIONS(1383), - [anon_sym_typeid] = ACTIONS(1381), - [anon_sym_LBRACE_PIPE] = ACTIONS(1383), - [anon_sym_void] = ACTIONS(1381), - [anon_sym_bool] = ACTIONS(1381), - [anon_sym_char] = ACTIONS(1381), - [anon_sym_ichar] = ACTIONS(1381), - [anon_sym_short] = ACTIONS(1381), - [anon_sym_ushort] = ACTIONS(1381), - [anon_sym_uint] = ACTIONS(1381), - [anon_sym_long] = ACTIONS(1381), - [anon_sym_ulong] = ACTIONS(1381), - [anon_sym_int128] = ACTIONS(1381), - [anon_sym_uint128] = ACTIONS(1381), - [anon_sym_float] = ACTIONS(1381), - [anon_sym_double] = ACTIONS(1381), - [anon_sym_float16] = ACTIONS(1381), - [anon_sym_bfloat16] = ACTIONS(1381), - [anon_sym_float128] = ACTIONS(1381), - [anon_sym_iptr] = ACTIONS(1381), - [anon_sym_uptr] = ACTIONS(1381), - [anon_sym_isz] = ACTIONS(1381), - [anon_sym_usz] = ACTIONS(1381), - [anon_sym_anyfault] = ACTIONS(1381), - [anon_sym_any] = ACTIONS(1381), - [anon_sym_DOLLARtypeof] = ACTIONS(1381), - [anon_sym_DOLLARtypefrom] = ACTIONS(1381), - [anon_sym_DOLLARvatype] = ACTIONS(1381), - [anon_sym_DOLLARevaltype] = ACTIONS(1381), - [sym_real_literal] = ACTIONS(1383), + [sym_ident] = ACTIONS(1601), + [sym_integer_literal] = ACTIONS(1603), + [anon_sym_SQUOTE] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [anon_sym_BQUOTE] = ACTIONS(1603), + [sym_bytes_literal] = ACTIONS(1603), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1601), + [sym_at_ident] = ACTIONS(1603), + [sym_hash_ident] = ACTIONS(1603), + [sym_type_ident] = ACTIONS(1603), + [sym_ct_type_ident] = ACTIONS(1603), + [sym_const_ident] = ACTIONS(1601), + [sym_builtin] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_static] = ACTIONS(1601), + [anon_sym_tlocal] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_fn] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1601), + [anon_sym_var] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_continue] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1601), + [anon_sym_defer] = ACTIONS(1601), + [anon_sym_assert] = ACTIONS(1601), + [anon_sym_nextcase] = ACTIONS(1601), + [anon_sym_switch] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_for] = ACTIONS(1601), + [anon_sym_foreach] = ACTIONS(1601), + [anon_sym_foreach_r] = ACTIONS(1601), + [anon_sym_while] = ACTIONS(1601), + [anon_sym_do] = ACTIONS(1601), + [anon_sym_int] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_asm] = ACTIONS(1601), + [anon_sym_DOLLARassert] = ACTIONS(1601), + [anon_sym_DOLLARerror] = ACTIONS(1601), + [anon_sym_DOLLARecho] = ACTIONS(1601), + [anon_sym_DOLLARif] = ACTIONS(1601), + [anon_sym_DOLLARswitch] = ACTIONS(1601), + [anon_sym_DOLLARfor] = ACTIONS(1601), + [anon_sym_DOLLARendfor] = ACTIONS(1601), + [anon_sym_DOLLARforeach] = ACTIONS(1601), + [anon_sym_DOLLARalignof] = ACTIONS(1601), + [anon_sym_DOLLARextnameof] = ACTIONS(1601), + [anon_sym_DOLLARnameof] = ACTIONS(1601), + [anon_sym_DOLLARoffsetof] = ACTIONS(1601), + [anon_sym_DOLLARqnameof] = ACTIONS(1601), + [anon_sym_DOLLARvaconst] = ACTIONS(1601), + [anon_sym_DOLLARvaarg] = ACTIONS(1601), + [anon_sym_DOLLARvaref] = ACTIONS(1601), + [anon_sym_DOLLARvaexpr] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_DOLLARvacount] = ACTIONS(1601), + [anon_sym_DOLLAReval] = ACTIONS(1601), + [anon_sym_DOLLARis_const] = ACTIONS(1601), + [anon_sym_DOLLARsizeof] = ACTIONS(1601), + [anon_sym_DOLLARstringify] = ACTIONS(1601), + [anon_sym_DOLLARappend] = ACTIONS(1601), + [anon_sym_DOLLARconcat] = ACTIONS(1601), + [anon_sym_DOLLARdefined] = ACTIONS(1601), + [anon_sym_DOLLARembed] = ACTIONS(1601), + [anon_sym_DOLLARand] = ACTIONS(1601), + [anon_sym_DOLLARor] = ACTIONS(1601), + [anon_sym_DOLLARfeature] = ACTIONS(1601), + [anon_sym_DOLLARassignable] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_typeid] = ACTIONS(1601), + [anon_sym_LBRACE_PIPE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_bool] = ACTIONS(1601), + [anon_sym_char] = ACTIONS(1601), + [anon_sym_ichar] = ACTIONS(1601), + [anon_sym_short] = ACTIONS(1601), + [anon_sym_ushort] = ACTIONS(1601), + [anon_sym_uint] = ACTIONS(1601), + [anon_sym_long] = ACTIONS(1601), + [anon_sym_ulong] = ACTIONS(1601), + [anon_sym_int128] = ACTIONS(1601), + [anon_sym_uint128] = ACTIONS(1601), + [anon_sym_float] = ACTIONS(1601), + [anon_sym_double] = ACTIONS(1601), + [anon_sym_float16] = ACTIONS(1601), + [anon_sym_bfloat16] = ACTIONS(1601), + [anon_sym_float128] = ACTIONS(1601), + [anon_sym_iptr] = ACTIONS(1601), + [anon_sym_uptr] = ACTIONS(1601), + [anon_sym_isz] = ACTIONS(1601), + [anon_sym_usz] = ACTIONS(1601), + [anon_sym_anyfault] = ACTIONS(1601), + [anon_sym_any] = ACTIONS(1601), + [anon_sym_DOLLARtypeof] = ACTIONS(1601), + [anon_sym_DOLLARtypefrom] = ACTIONS(1601), + [anon_sym_DOLLARevaltype] = ACTIONS(1601), + [anon_sym_DOLLARvatype] = ACTIONS(1601), + [sym_real_literal] = ACTIONS(1603), }, [644] = { [sym_line_comment] = STATE(644), [sym_doc_comment] = STATE(644), [sym_block_comment] = STATE(644), - [sym_ident] = ACTIONS(1623), - [sym_integer_literal] = ACTIONS(1625), - [anon_sym_SQUOTE] = ACTIONS(1625), - [anon_sym_DQUOTE] = ACTIONS(1625), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_bytes_literal] = ACTIONS(1625), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1623), - [sym_at_ident] = ACTIONS(1625), - [sym_hash_ident] = ACTIONS(1625), - [sym_type_ident] = ACTIONS(1625), - [sym_ct_type_ident] = ACTIONS(1625), - [sym_const_ident] = ACTIONS(1623), - [sym_builtin] = ACTIONS(1625), - [anon_sym_LPAREN] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_static] = ACTIONS(1623), - [anon_sym_tlocal] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1625), - [anon_sym_fn] = ACTIONS(1623), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_const] = ACTIONS(1623), - [anon_sym_var] = ACTIONS(1623), - [anon_sym_return] = ACTIONS(1623), - [anon_sym_continue] = ACTIONS(1623), - [anon_sym_break] = ACTIONS(1623), - [anon_sym_defer] = ACTIONS(1623), - [anon_sym_assert] = ACTIONS(1623), - [anon_sym_nextcase] = ACTIONS(1623), - [anon_sym_switch] = ACTIONS(1623), - [anon_sym_AMP_AMP] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1623), - [anon_sym_for] = ACTIONS(1623), - [anon_sym_foreach] = ACTIONS(1623), - [anon_sym_foreach_r] = ACTIONS(1623), - [anon_sym_while] = ACTIONS(1623), - [anon_sym_do] = ACTIONS(1623), - [anon_sym_int] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_asm] = ACTIONS(1623), - [anon_sym_DOLLARassert] = ACTIONS(1623), - [anon_sym_DOLLARerror] = ACTIONS(1623), - [anon_sym_DOLLARecho] = ACTIONS(1623), - [anon_sym_DOLLARif] = ACTIONS(1623), - [anon_sym_DOLLARendif] = ACTIONS(1623), - [anon_sym_DOLLARswitch] = ACTIONS(1623), - [anon_sym_DOLLARfor] = ACTIONS(1623), - [anon_sym_DOLLARforeach] = ACTIONS(1623), - [anon_sym_DOLLARalignof] = ACTIONS(1623), - [anon_sym_DOLLARextnameof] = ACTIONS(1623), - [anon_sym_DOLLARnameof] = ACTIONS(1623), - [anon_sym_DOLLARoffsetof] = ACTIONS(1623), - [anon_sym_DOLLARqnameof] = ACTIONS(1623), - [anon_sym_DOLLAReval] = ACTIONS(1623), - [anon_sym_DOLLARdefined] = ACTIONS(1623), - [anon_sym_DOLLARsizeof] = ACTIONS(1623), - [anon_sym_DOLLARstringify] = ACTIONS(1623), - [anon_sym_DOLLARis_const] = ACTIONS(1623), - [anon_sym_DOLLARvaconst] = ACTIONS(1623), - [anon_sym_DOLLARvaarg] = ACTIONS(1623), - [anon_sym_DOLLARvaref] = ACTIONS(1623), - [anon_sym_DOLLARvaexpr] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_null] = ACTIONS(1623), - [anon_sym_DOLLARvacount] = ACTIONS(1623), - [anon_sym_DOLLARfeature] = ACTIONS(1623), - [anon_sym_DOLLARand] = ACTIONS(1623), - [anon_sym_DOLLARor] = ACTIONS(1623), - [anon_sym_DOLLARassignable] = ACTIONS(1623), - [anon_sym_DOLLARembed] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1625), - [anon_sym_TILDE] = ACTIONS(1625), - [anon_sym_PLUS_PLUS] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1625), - [anon_sym_typeid] = ACTIONS(1623), - [anon_sym_LBRACE_PIPE] = ACTIONS(1625), - [anon_sym_void] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_ichar] = ACTIONS(1623), - [anon_sym_short] = ACTIONS(1623), - [anon_sym_ushort] = ACTIONS(1623), - [anon_sym_uint] = ACTIONS(1623), - [anon_sym_long] = ACTIONS(1623), - [anon_sym_ulong] = ACTIONS(1623), - [anon_sym_int128] = ACTIONS(1623), - [anon_sym_uint128] = ACTIONS(1623), - [anon_sym_float] = ACTIONS(1623), - [anon_sym_double] = ACTIONS(1623), - [anon_sym_float16] = ACTIONS(1623), - [anon_sym_bfloat16] = ACTIONS(1623), - [anon_sym_float128] = ACTIONS(1623), - [anon_sym_iptr] = ACTIONS(1623), - [anon_sym_uptr] = ACTIONS(1623), - [anon_sym_isz] = ACTIONS(1623), - [anon_sym_usz] = ACTIONS(1623), - [anon_sym_anyfault] = ACTIONS(1623), - [anon_sym_any] = ACTIONS(1623), - [anon_sym_DOLLARtypeof] = ACTIONS(1623), - [anon_sym_DOLLARtypefrom] = ACTIONS(1623), - [anon_sym_DOLLARvatype] = ACTIONS(1623), - [anon_sym_DOLLARevaltype] = ACTIONS(1623), - [sym_real_literal] = ACTIONS(1625), + [sym_ident] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1607), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [anon_sym_BQUOTE] = ACTIONS(1607), + [sym_bytes_literal] = ACTIONS(1607), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1605), + [sym_at_ident] = ACTIONS(1607), + [sym_hash_ident] = ACTIONS(1607), + [sym_type_ident] = ACTIONS(1607), + [sym_ct_type_ident] = ACTIONS(1607), + [sym_const_ident] = ACTIONS(1605), + [sym_builtin] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_tlocal] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_var] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_defer] = ACTIONS(1605), + [anon_sym_assert] = ACTIONS(1605), + [anon_sym_nextcase] = ACTIONS(1605), + [anon_sym_switch] = ACTIONS(1605), + [anon_sym_AMP_AMP] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_foreach] = ACTIONS(1605), + [anon_sym_foreach_r] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_int] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_asm] = ACTIONS(1605), + [anon_sym_DOLLARassert] = ACTIONS(1605), + [anon_sym_DOLLARerror] = ACTIONS(1605), + [anon_sym_DOLLARecho] = ACTIONS(1605), + [anon_sym_DOLLARif] = ACTIONS(1605), + [anon_sym_DOLLARswitch] = ACTIONS(1605), + [anon_sym_DOLLARfor] = ACTIONS(1605), + [anon_sym_DOLLARendfor] = ACTIONS(1605), + [anon_sym_DOLLARforeach] = ACTIONS(1605), + [anon_sym_DOLLARalignof] = ACTIONS(1605), + [anon_sym_DOLLARextnameof] = ACTIONS(1605), + [anon_sym_DOLLARnameof] = ACTIONS(1605), + [anon_sym_DOLLARoffsetof] = ACTIONS(1605), + [anon_sym_DOLLARqnameof] = ACTIONS(1605), + [anon_sym_DOLLARvaconst] = ACTIONS(1605), + [anon_sym_DOLLARvaarg] = ACTIONS(1605), + [anon_sym_DOLLARvaref] = ACTIONS(1605), + [anon_sym_DOLLARvaexpr] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1605), + [anon_sym_false] = ACTIONS(1605), + [anon_sym_null] = ACTIONS(1605), + [anon_sym_DOLLARvacount] = ACTIONS(1605), + [anon_sym_DOLLAReval] = ACTIONS(1605), + [anon_sym_DOLLARis_const] = ACTIONS(1605), + [anon_sym_DOLLARsizeof] = ACTIONS(1605), + [anon_sym_DOLLARstringify] = ACTIONS(1605), + [anon_sym_DOLLARappend] = ACTIONS(1605), + [anon_sym_DOLLARconcat] = ACTIONS(1605), + [anon_sym_DOLLARdefined] = ACTIONS(1605), + [anon_sym_DOLLARembed] = ACTIONS(1605), + [anon_sym_DOLLARand] = ACTIONS(1605), + [anon_sym_DOLLARor] = ACTIONS(1605), + [anon_sym_DOLLARfeature] = ACTIONS(1605), + [anon_sym_DOLLARassignable] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_typeid] = ACTIONS(1605), + [anon_sym_LBRACE_PIPE] = ACTIONS(1607), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_bool] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_ichar] = ACTIONS(1605), + [anon_sym_short] = ACTIONS(1605), + [anon_sym_ushort] = ACTIONS(1605), + [anon_sym_uint] = ACTIONS(1605), + [anon_sym_long] = ACTIONS(1605), + [anon_sym_ulong] = ACTIONS(1605), + [anon_sym_int128] = ACTIONS(1605), + [anon_sym_uint128] = ACTIONS(1605), + [anon_sym_float] = ACTIONS(1605), + [anon_sym_double] = ACTIONS(1605), + [anon_sym_float16] = ACTIONS(1605), + [anon_sym_bfloat16] = ACTIONS(1605), + [anon_sym_float128] = ACTIONS(1605), + [anon_sym_iptr] = ACTIONS(1605), + [anon_sym_uptr] = ACTIONS(1605), + [anon_sym_isz] = ACTIONS(1605), + [anon_sym_usz] = ACTIONS(1605), + [anon_sym_anyfault] = ACTIONS(1605), + [anon_sym_any] = ACTIONS(1605), + [anon_sym_DOLLARtypeof] = ACTIONS(1605), + [anon_sym_DOLLARtypefrom] = ACTIONS(1605), + [anon_sym_DOLLARevaltype] = ACTIONS(1605), + [anon_sym_DOLLARvatype] = ACTIONS(1605), + [sym_real_literal] = ACTIONS(1607), }, [645] = { [sym_line_comment] = STATE(645), [sym_doc_comment] = STATE(645), [sym_block_comment] = STATE(645), - [sym_ident] = ACTIONS(1611), - [sym_integer_literal] = ACTIONS(1613), - [anon_sym_SQUOTE] = ACTIONS(1613), - [anon_sym_DQUOTE] = ACTIONS(1613), - [anon_sym_BQUOTE] = ACTIONS(1613), - [sym_bytes_literal] = ACTIONS(1613), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1611), - [sym_at_ident] = ACTIONS(1613), - [sym_hash_ident] = ACTIONS(1613), - [sym_type_ident] = ACTIONS(1613), - [sym_ct_type_ident] = ACTIONS(1613), - [sym_const_ident] = ACTIONS(1611), - [sym_builtin] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(1611), - [anon_sym_tlocal] = ACTIONS(1611), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_const] = ACTIONS(1611), - [anon_sym_var] = ACTIONS(1611), - [anon_sym_return] = ACTIONS(1611), - [anon_sym_continue] = ACTIONS(1611), - [anon_sym_break] = ACTIONS(1611), - [anon_sym_defer] = ACTIONS(1611), - [anon_sym_assert] = ACTIONS(1611), - [anon_sym_nextcase] = ACTIONS(1611), - [anon_sym_switch] = ACTIONS(1611), - [anon_sym_AMP_AMP] = ACTIONS(1613), - [anon_sym_if] = ACTIONS(1611), - [anon_sym_for] = ACTIONS(1611), - [anon_sym_foreach] = ACTIONS(1611), - [anon_sym_foreach_r] = ACTIONS(1611), - [anon_sym_while] = ACTIONS(1611), - [anon_sym_do] = ACTIONS(1611), - [anon_sym_int] = ACTIONS(1611), - [anon_sym_PLUS] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1611), - [anon_sym_STAR] = ACTIONS(1613), - [anon_sym_asm] = ACTIONS(1611), - [anon_sym_DOLLARassert] = ACTIONS(1611), - [anon_sym_DOLLARerror] = ACTIONS(1611), - [anon_sym_DOLLARecho] = ACTIONS(1611), - [anon_sym_DOLLARif] = ACTIONS(1611), - [anon_sym_DOLLARendif] = ACTIONS(1611), - [anon_sym_DOLLARswitch] = ACTIONS(1611), - [anon_sym_DOLLARfor] = ACTIONS(1611), - [anon_sym_DOLLARforeach] = ACTIONS(1611), - [anon_sym_DOLLARalignof] = ACTIONS(1611), - [anon_sym_DOLLARextnameof] = ACTIONS(1611), - [anon_sym_DOLLARnameof] = ACTIONS(1611), - [anon_sym_DOLLARoffsetof] = ACTIONS(1611), - [anon_sym_DOLLARqnameof] = ACTIONS(1611), - [anon_sym_DOLLAReval] = ACTIONS(1611), - [anon_sym_DOLLARdefined] = ACTIONS(1611), - [anon_sym_DOLLARsizeof] = ACTIONS(1611), - [anon_sym_DOLLARstringify] = ACTIONS(1611), - [anon_sym_DOLLARis_const] = ACTIONS(1611), - [anon_sym_DOLLARvaconst] = ACTIONS(1611), - [anon_sym_DOLLARvaarg] = ACTIONS(1611), - [anon_sym_DOLLARvaref] = ACTIONS(1611), - [anon_sym_DOLLARvaexpr] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1611), - [anon_sym_false] = ACTIONS(1611), - [anon_sym_null] = ACTIONS(1611), - [anon_sym_DOLLARvacount] = ACTIONS(1611), - [anon_sym_DOLLARfeature] = ACTIONS(1611), - [anon_sym_DOLLARand] = ACTIONS(1611), - [anon_sym_DOLLARor] = ACTIONS(1611), - [anon_sym_DOLLARassignable] = ACTIONS(1611), - [anon_sym_DOLLARembed] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1613), - [anon_sym_TILDE] = ACTIONS(1613), - [anon_sym_PLUS_PLUS] = ACTIONS(1613), - [anon_sym_DASH_DASH] = ACTIONS(1613), - [anon_sym_typeid] = ACTIONS(1611), - [anon_sym_LBRACE_PIPE] = ACTIONS(1613), - [anon_sym_void] = ACTIONS(1611), - [anon_sym_bool] = ACTIONS(1611), - [anon_sym_char] = ACTIONS(1611), - [anon_sym_ichar] = ACTIONS(1611), - [anon_sym_short] = ACTIONS(1611), - [anon_sym_ushort] = ACTIONS(1611), - [anon_sym_uint] = ACTIONS(1611), - [anon_sym_long] = ACTIONS(1611), - [anon_sym_ulong] = ACTIONS(1611), - [anon_sym_int128] = ACTIONS(1611), - [anon_sym_uint128] = ACTIONS(1611), - [anon_sym_float] = ACTIONS(1611), - [anon_sym_double] = ACTIONS(1611), - [anon_sym_float16] = ACTIONS(1611), - [anon_sym_bfloat16] = ACTIONS(1611), - [anon_sym_float128] = ACTIONS(1611), - [anon_sym_iptr] = ACTIONS(1611), - [anon_sym_uptr] = ACTIONS(1611), - [anon_sym_isz] = ACTIONS(1611), - [anon_sym_usz] = ACTIONS(1611), - [anon_sym_anyfault] = ACTIONS(1611), - [anon_sym_any] = ACTIONS(1611), - [anon_sym_DOLLARtypeof] = ACTIONS(1611), - [anon_sym_DOLLARtypefrom] = ACTIONS(1611), - [anon_sym_DOLLARvatype] = ACTIONS(1611), - [anon_sym_DOLLARevaltype] = ACTIONS(1611), - [sym_real_literal] = ACTIONS(1613), + [sym_ident] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [sym_bytes_literal] = ACTIONS(1611), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1609), + [sym_at_ident] = ACTIONS(1611), + [sym_hash_ident] = ACTIONS(1611), + [sym_type_ident] = ACTIONS(1611), + [sym_ct_type_ident] = ACTIONS(1611), + [sym_const_ident] = ACTIONS(1609), + [sym_builtin] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_static] = ACTIONS(1609), + [anon_sym_tlocal] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_fn] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_const] = ACTIONS(1609), + [anon_sym_var] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1609), + [anon_sym_defer] = ACTIONS(1609), + [anon_sym_assert] = ACTIONS(1609), + [anon_sym_nextcase] = ACTIONS(1609), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_for] = ACTIONS(1609), + [anon_sym_foreach] = ACTIONS(1609), + [anon_sym_foreach_r] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_do] = ACTIONS(1609), + [anon_sym_int] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1609), + [anon_sym_DOLLARassert] = ACTIONS(1609), + [anon_sym_DOLLARerror] = ACTIONS(1609), + [anon_sym_DOLLARecho] = ACTIONS(1609), + [anon_sym_DOLLARif] = ACTIONS(1609), + [anon_sym_DOLLARswitch] = ACTIONS(1609), + [anon_sym_DOLLARfor] = ACTIONS(1609), + [anon_sym_DOLLARendfor] = ACTIONS(1609), + [anon_sym_DOLLARforeach] = ACTIONS(1609), + [anon_sym_DOLLARalignof] = ACTIONS(1609), + [anon_sym_DOLLARextnameof] = ACTIONS(1609), + [anon_sym_DOLLARnameof] = ACTIONS(1609), + [anon_sym_DOLLARoffsetof] = ACTIONS(1609), + [anon_sym_DOLLARqnameof] = ACTIONS(1609), + [anon_sym_DOLLARvaconst] = ACTIONS(1609), + [anon_sym_DOLLARvaarg] = ACTIONS(1609), + [anon_sym_DOLLARvaref] = ACTIONS(1609), + [anon_sym_DOLLARvaexpr] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_DOLLARvacount] = ACTIONS(1609), + [anon_sym_DOLLAReval] = ACTIONS(1609), + [anon_sym_DOLLARis_const] = ACTIONS(1609), + [anon_sym_DOLLARsizeof] = ACTIONS(1609), + [anon_sym_DOLLARstringify] = ACTIONS(1609), + [anon_sym_DOLLARappend] = ACTIONS(1609), + [anon_sym_DOLLARconcat] = ACTIONS(1609), + [anon_sym_DOLLARdefined] = ACTIONS(1609), + [anon_sym_DOLLARembed] = ACTIONS(1609), + [anon_sym_DOLLARand] = ACTIONS(1609), + [anon_sym_DOLLARor] = ACTIONS(1609), + [anon_sym_DOLLARfeature] = ACTIONS(1609), + [anon_sym_DOLLARassignable] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_TILDE] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_typeid] = ACTIONS(1609), + [anon_sym_LBRACE_PIPE] = ACTIONS(1611), + [anon_sym_void] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_ichar] = ACTIONS(1609), + [anon_sym_short] = ACTIONS(1609), + [anon_sym_ushort] = ACTIONS(1609), + [anon_sym_uint] = ACTIONS(1609), + [anon_sym_long] = ACTIONS(1609), + [anon_sym_ulong] = ACTIONS(1609), + [anon_sym_int128] = ACTIONS(1609), + [anon_sym_uint128] = ACTIONS(1609), + [anon_sym_float] = ACTIONS(1609), + [anon_sym_double] = ACTIONS(1609), + [anon_sym_float16] = ACTIONS(1609), + [anon_sym_bfloat16] = ACTIONS(1609), + [anon_sym_float128] = ACTIONS(1609), + [anon_sym_iptr] = ACTIONS(1609), + [anon_sym_uptr] = ACTIONS(1609), + [anon_sym_isz] = ACTIONS(1609), + [anon_sym_usz] = ACTIONS(1609), + [anon_sym_anyfault] = ACTIONS(1609), + [anon_sym_any] = ACTIONS(1609), + [anon_sym_DOLLARtypeof] = ACTIONS(1609), + [anon_sym_DOLLARtypefrom] = ACTIONS(1609), + [anon_sym_DOLLARevaltype] = ACTIONS(1609), + [anon_sym_DOLLARvatype] = ACTIONS(1609), + [sym_real_literal] = ACTIONS(1611), }, [646] = { [sym_line_comment] = STATE(646), [sym_doc_comment] = STATE(646), [sym_block_comment] = STATE(646), - [sym_ident] = ACTIONS(1603), - [sym_integer_literal] = ACTIONS(1605), - [anon_sym_SQUOTE] = ACTIONS(1605), - [anon_sym_DQUOTE] = ACTIONS(1605), - [anon_sym_BQUOTE] = ACTIONS(1605), - [sym_bytes_literal] = ACTIONS(1605), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1603), - [sym_at_ident] = ACTIONS(1605), - [sym_hash_ident] = ACTIONS(1605), - [sym_type_ident] = ACTIONS(1605), - [sym_ct_type_ident] = ACTIONS(1605), - [sym_const_ident] = ACTIONS(1603), - [sym_builtin] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1605), - [anon_sym_AMP] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1603), - [anon_sym_tlocal] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1605), - [anon_sym_fn] = ACTIONS(1603), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_const] = ACTIONS(1603), - [anon_sym_var] = ACTIONS(1603), - [anon_sym_return] = ACTIONS(1603), - [anon_sym_continue] = ACTIONS(1603), - [anon_sym_break] = ACTIONS(1603), - [anon_sym_defer] = ACTIONS(1603), - [anon_sym_assert] = ACTIONS(1603), - [anon_sym_nextcase] = ACTIONS(1603), - [anon_sym_switch] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1603), - [anon_sym_for] = ACTIONS(1603), - [anon_sym_foreach] = ACTIONS(1603), - [anon_sym_foreach_r] = ACTIONS(1603), - [anon_sym_while] = ACTIONS(1603), - [anon_sym_do] = ACTIONS(1603), - [anon_sym_int] = ACTIONS(1603), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_asm] = ACTIONS(1603), - [anon_sym_DOLLARassert] = ACTIONS(1603), - [anon_sym_DOLLARerror] = ACTIONS(1603), - [anon_sym_DOLLARecho] = ACTIONS(1603), - [anon_sym_DOLLARif] = ACTIONS(1603), - [anon_sym_DOLLARendif] = ACTIONS(1603), - [anon_sym_DOLLARswitch] = ACTIONS(1603), - [anon_sym_DOLLARfor] = ACTIONS(1603), - [anon_sym_DOLLARforeach] = ACTIONS(1603), - [anon_sym_DOLLARalignof] = ACTIONS(1603), - [anon_sym_DOLLARextnameof] = ACTIONS(1603), - [anon_sym_DOLLARnameof] = ACTIONS(1603), - [anon_sym_DOLLARoffsetof] = ACTIONS(1603), - [anon_sym_DOLLARqnameof] = ACTIONS(1603), - [anon_sym_DOLLAReval] = ACTIONS(1603), - [anon_sym_DOLLARdefined] = ACTIONS(1603), - [anon_sym_DOLLARsizeof] = ACTIONS(1603), - [anon_sym_DOLLARstringify] = ACTIONS(1603), - [anon_sym_DOLLARis_const] = ACTIONS(1603), - [anon_sym_DOLLARvaconst] = ACTIONS(1603), - [anon_sym_DOLLARvaarg] = ACTIONS(1603), - [anon_sym_DOLLARvaref] = ACTIONS(1603), - [anon_sym_DOLLARvaexpr] = ACTIONS(1603), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [anon_sym_null] = ACTIONS(1603), - [anon_sym_DOLLARvacount] = ACTIONS(1603), - [anon_sym_DOLLARfeature] = ACTIONS(1603), - [anon_sym_DOLLARand] = ACTIONS(1603), - [anon_sym_DOLLARor] = ACTIONS(1603), - [anon_sym_DOLLARassignable] = ACTIONS(1603), - [anon_sym_DOLLARembed] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1605), - [anon_sym_DASH_DASH] = ACTIONS(1605), - [anon_sym_typeid] = ACTIONS(1603), - [anon_sym_LBRACE_PIPE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_ichar] = ACTIONS(1603), - [anon_sym_short] = ACTIONS(1603), - [anon_sym_ushort] = ACTIONS(1603), - [anon_sym_uint] = ACTIONS(1603), - [anon_sym_long] = ACTIONS(1603), - [anon_sym_ulong] = ACTIONS(1603), - [anon_sym_int128] = ACTIONS(1603), - [anon_sym_uint128] = ACTIONS(1603), - [anon_sym_float] = ACTIONS(1603), - [anon_sym_double] = ACTIONS(1603), - [anon_sym_float16] = ACTIONS(1603), - [anon_sym_bfloat16] = ACTIONS(1603), - [anon_sym_float128] = ACTIONS(1603), - [anon_sym_iptr] = ACTIONS(1603), - [anon_sym_uptr] = ACTIONS(1603), - [anon_sym_isz] = ACTIONS(1603), - [anon_sym_usz] = ACTIONS(1603), - [anon_sym_anyfault] = ACTIONS(1603), - [anon_sym_any] = ACTIONS(1603), - [anon_sym_DOLLARtypeof] = ACTIONS(1603), - [anon_sym_DOLLARtypefrom] = ACTIONS(1603), - [anon_sym_DOLLARvatype] = ACTIONS(1603), - [anon_sym_DOLLARevaltype] = ACTIONS(1603), - [sym_real_literal] = ACTIONS(1605), + [sym_ident] = ACTIONS(1433), + [sym_integer_literal] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_DQUOTE] = ACTIONS(1435), + [anon_sym_BQUOTE] = ACTIONS(1435), + [sym_bytes_literal] = ACTIONS(1435), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1433), + [sym_at_ident] = ACTIONS(1435), + [sym_hash_ident] = ACTIONS(1435), + [sym_type_ident] = ACTIONS(1435), + [sym_ct_type_ident] = ACTIONS(1435), + [sym_const_ident] = ACTIONS(1433), + [sym_builtin] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_tlocal] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_fn] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_var] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_defer] = ACTIONS(1433), + [anon_sym_assert] = ACTIONS(1433), + [anon_sym_nextcase] = ACTIONS(1433), + [anon_sym_switch] = ACTIONS(1433), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_foreach] = ACTIONS(1433), + [anon_sym_foreach_r] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_do] = ACTIONS(1433), + [anon_sym_int] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_asm] = ACTIONS(1433), + [anon_sym_DOLLARassert] = ACTIONS(1433), + [anon_sym_DOLLARerror] = ACTIONS(1433), + [anon_sym_DOLLARecho] = ACTIONS(1433), + [anon_sym_DOLLARif] = ACTIONS(1433), + [anon_sym_DOLLARswitch] = ACTIONS(1433), + [anon_sym_DOLLARfor] = ACTIONS(1433), + [anon_sym_DOLLARforeach] = ACTIONS(1433), + [anon_sym_DOLLARendforeach] = ACTIONS(1433), + [anon_sym_DOLLARalignof] = ACTIONS(1433), + [anon_sym_DOLLARextnameof] = ACTIONS(1433), + [anon_sym_DOLLARnameof] = ACTIONS(1433), + [anon_sym_DOLLARoffsetof] = ACTIONS(1433), + [anon_sym_DOLLARqnameof] = ACTIONS(1433), + [anon_sym_DOLLARvaconst] = ACTIONS(1433), + [anon_sym_DOLLARvaarg] = ACTIONS(1433), + [anon_sym_DOLLARvaref] = ACTIONS(1433), + [anon_sym_DOLLARvaexpr] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [anon_sym_null] = ACTIONS(1433), + [anon_sym_DOLLARvacount] = ACTIONS(1433), + [anon_sym_DOLLAReval] = ACTIONS(1433), + [anon_sym_DOLLARis_const] = ACTIONS(1433), + [anon_sym_DOLLARsizeof] = ACTIONS(1433), + [anon_sym_DOLLARstringify] = ACTIONS(1433), + [anon_sym_DOLLARappend] = ACTIONS(1433), + [anon_sym_DOLLARconcat] = ACTIONS(1433), + [anon_sym_DOLLARdefined] = ACTIONS(1433), + [anon_sym_DOLLARembed] = ACTIONS(1433), + [anon_sym_DOLLARand] = ACTIONS(1433), + [anon_sym_DOLLARor] = ACTIONS(1433), + [anon_sym_DOLLARfeature] = ACTIONS(1433), + [anon_sym_DOLLARassignable] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_TILDE] = ACTIONS(1435), + [anon_sym_PLUS_PLUS] = ACTIONS(1435), + [anon_sym_DASH_DASH] = ACTIONS(1435), + [anon_sym_typeid] = ACTIONS(1433), + [anon_sym_LBRACE_PIPE] = ACTIONS(1435), + [anon_sym_void] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_ichar] = ACTIONS(1433), + [anon_sym_short] = ACTIONS(1433), + [anon_sym_ushort] = ACTIONS(1433), + [anon_sym_uint] = ACTIONS(1433), + [anon_sym_long] = ACTIONS(1433), + [anon_sym_ulong] = ACTIONS(1433), + [anon_sym_int128] = ACTIONS(1433), + [anon_sym_uint128] = ACTIONS(1433), + [anon_sym_float] = ACTIONS(1433), + [anon_sym_double] = ACTIONS(1433), + [anon_sym_float16] = ACTIONS(1433), + [anon_sym_bfloat16] = ACTIONS(1433), + [anon_sym_float128] = ACTIONS(1433), + [anon_sym_iptr] = ACTIONS(1433), + [anon_sym_uptr] = ACTIONS(1433), + [anon_sym_isz] = ACTIONS(1433), + [anon_sym_usz] = ACTIONS(1433), + [anon_sym_anyfault] = ACTIONS(1433), + [anon_sym_any] = ACTIONS(1433), + [anon_sym_DOLLARtypeof] = ACTIONS(1433), + [anon_sym_DOLLARtypefrom] = ACTIONS(1433), + [anon_sym_DOLLARevaltype] = ACTIONS(1433), + [anon_sym_DOLLARvatype] = ACTIONS(1433), + [sym_real_literal] = ACTIONS(1435), }, [647] = { [sym_line_comment] = STATE(647), [sym_doc_comment] = STATE(647), [sym_block_comment] = STATE(647), - [sym_ident] = ACTIONS(1555), - [sym_integer_literal] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_BQUOTE] = ACTIONS(1557), - [sym_bytes_literal] = ACTIONS(1557), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1555), - [sym_at_ident] = ACTIONS(1557), - [sym_hash_ident] = ACTIONS(1557), - [sym_type_ident] = ACTIONS(1557), - [sym_ct_type_ident] = ACTIONS(1557), - [sym_const_ident] = ACTIONS(1555), - [sym_builtin] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_AMP] = ACTIONS(1555), - [anon_sym_static] = ACTIONS(1555), - [anon_sym_tlocal] = ACTIONS(1555), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_const] = ACTIONS(1555), - [anon_sym_var] = ACTIONS(1555), - [anon_sym_return] = ACTIONS(1555), - [anon_sym_continue] = ACTIONS(1555), - [anon_sym_break] = ACTIONS(1555), - [anon_sym_defer] = ACTIONS(1555), - [anon_sym_assert] = ACTIONS(1555), - [anon_sym_nextcase] = ACTIONS(1555), - [anon_sym_switch] = ACTIONS(1555), - [anon_sym_AMP_AMP] = ACTIONS(1557), - [anon_sym_if] = ACTIONS(1555), - [anon_sym_for] = ACTIONS(1555), - [anon_sym_foreach] = ACTIONS(1555), - [anon_sym_foreach_r] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_do] = ACTIONS(1555), - [anon_sym_int] = ACTIONS(1555), - [anon_sym_PLUS] = ACTIONS(1555), - [anon_sym_DASH] = ACTIONS(1555), - [anon_sym_STAR] = ACTIONS(1557), - [anon_sym_asm] = ACTIONS(1555), - [anon_sym_DOLLARassert] = ACTIONS(1555), - [anon_sym_DOLLARerror] = ACTIONS(1555), - [anon_sym_DOLLARecho] = ACTIONS(1555), - [anon_sym_DOLLARif] = ACTIONS(1555), - [anon_sym_DOLLARswitch] = ACTIONS(1555), - [anon_sym_DOLLARfor] = ACTIONS(1555), - [anon_sym_DOLLARendfor] = ACTIONS(1555), - [anon_sym_DOLLARforeach] = ACTIONS(1555), - [anon_sym_DOLLARalignof] = ACTIONS(1555), - [anon_sym_DOLLARextnameof] = ACTIONS(1555), - [anon_sym_DOLLARnameof] = ACTIONS(1555), - [anon_sym_DOLLARoffsetof] = ACTIONS(1555), - [anon_sym_DOLLARqnameof] = ACTIONS(1555), - [anon_sym_DOLLAReval] = ACTIONS(1555), - [anon_sym_DOLLARdefined] = ACTIONS(1555), - [anon_sym_DOLLARsizeof] = ACTIONS(1555), - [anon_sym_DOLLARstringify] = ACTIONS(1555), - [anon_sym_DOLLARis_const] = ACTIONS(1555), - [anon_sym_DOLLARvaconst] = ACTIONS(1555), - [anon_sym_DOLLARvaarg] = ACTIONS(1555), - [anon_sym_DOLLARvaref] = ACTIONS(1555), - [anon_sym_DOLLARvaexpr] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(1555), - [anon_sym_false] = ACTIONS(1555), - [anon_sym_null] = ACTIONS(1555), - [anon_sym_DOLLARvacount] = ACTIONS(1555), - [anon_sym_DOLLARfeature] = ACTIONS(1555), - [anon_sym_DOLLARand] = ACTIONS(1555), - [anon_sym_DOLLARor] = ACTIONS(1555), - [anon_sym_DOLLARassignable] = ACTIONS(1555), - [anon_sym_DOLLARembed] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1557), - [anon_sym_TILDE] = ACTIONS(1557), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [anon_sym_typeid] = ACTIONS(1555), - [anon_sym_LBRACE_PIPE] = ACTIONS(1557), - [anon_sym_void] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [anon_sym_ichar] = ACTIONS(1555), - [anon_sym_short] = ACTIONS(1555), - [anon_sym_ushort] = ACTIONS(1555), - [anon_sym_uint] = ACTIONS(1555), - [anon_sym_long] = ACTIONS(1555), - [anon_sym_ulong] = ACTIONS(1555), - [anon_sym_int128] = ACTIONS(1555), - [anon_sym_uint128] = ACTIONS(1555), - [anon_sym_float] = ACTIONS(1555), - [anon_sym_double] = ACTIONS(1555), - [anon_sym_float16] = ACTIONS(1555), - [anon_sym_bfloat16] = ACTIONS(1555), - [anon_sym_float128] = ACTIONS(1555), - [anon_sym_iptr] = ACTIONS(1555), - [anon_sym_uptr] = ACTIONS(1555), - [anon_sym_isz] = ACTIONS(1555), - [anon_sym_usz] = ACTIONS(1555), - [anon_sym_anyfault] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1555), - [anon_sym_DOLLARtypeof] = ACTIONS(1555), - [anon_sym_DOLLARtypefrom] = ACTIONS(1555), - [anon_sym_DOLLARvatype] = ACTIONS(1555), - [anon_sym_DOLLARevaltype] = ACTIONS(1555), - [sym_real_literal] = ACTIONS(1557), + [sym_ident] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [sym_bytes_literal] = ACTIONS(1531), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1529), + [sym_at_ident] = ACTIONS(1531), + [sym_hash_ident] = ACTIONS(1531), + [sym_type_ident] = ACTIONS(1531), + [sym_ct_type_ident] = ACTIONS(1531), + [sym_const_ident] = ACTIONS(1529), + [sym_builtin] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_tlocal] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_defer] = ACTIONS(1529), + [anon_sym_assert] = ACTIONS(1529), + [anon_sym_nextcase] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_foreach] = ACTIONS(1529), + [anon_sym_foreach_r] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_int] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_asm] = ACTIONS(1529), + [anon_sym_DOLLARassert] = ACTIONS(1529), + [anon_sym_DOLLARerror] = ACTIONS(1529), + [anon_sym_DOLLARecho] = ACTIONS(1529), + [anon_sym_DOLLARif] = ACTIONS(1529), + [anon_sym_DOLLARswitch] = ACTIONS(1529), + [anon_sym_DOLLARfor] = ACTIONS(1529), + [anon_sym_DOLLARforeach] = ACTIONS(1529), + [anon_sym_DOLLARendforeach] = ACTIONS(1529), + [anon_sym_DOLLARalignof] = ACTIONS(1529), + [anon_sym_DOLLARextnameof] = ACTIONS(1529), + [anon_sym_DOLLARnameof] = ACTIONS(1529), + [anon_sym_DOLLARoffsetof] = ACTIONS(1529), + [anon_sym_DOLLARqnameof] = ACTIONS(1529), + [anon_sym_DOLLARvaconst] = ACTIONS(1529), + [anon_sym_DOLLARvaarg] = ACTIONS(1529), + [anon_sym_DOLLARvaref] = ACTIONS(1529), + [anon_sym_DOLLARvaexpr] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_null] = ACTIONS(1529), + [anon_sym_DOLLARvacount] = ACTIONS(1529), + [anon_sym_DOLLAReval] = ACTIONS(1529), + [anon_sym_DOLLARis_const] = ACTIONS(1529), + [anon_sym_DOLLARsizeof] = ACTIONS(1529), + [anon_sym_DOLLARstringify] = ACTIONS(1529), + [anon_sym_DOLLARappend] = ACTIONS(1529), + [anon_sym_DOLLARconcat] = ACTIONS(1529), + [anon_sym_DOLLARdefined] = ACTIONS(1529), + [anon_sym_DOLLARembed] = ACTIONS(1529), + [anon_sym_DOLLARand] = ACTIONS(1529), + [anon_sym_DOLLARor] = ACTIONS(1529), + [anon_sym_DOLLARfeature] = ACTIONS(1529), + [anon_sym_DOLLARassignable] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1531), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_typeid] = ACTIONS(1529), + [anon_sym_LBRACE_PIPE] = ACTIONS(1531), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_ichar] = ACTIONS(1529), + [anon_sym_short] = ACTIONS(1529), + [anon_sym_ushort] = ACTIONS(1529), + [anon_sym_uint] = ACTIONS(1529), + [anon_sym_long] = ACTIONS(1529), + [anon_sym_ulong] = ACTIONS(1529), + [anon_sym_int128] = ACTIONS(1529), + [anon_sym_uint128] = ACTIONS(1529), + [anon_sym_float] = ACTIONS(1529), + [anon_sym_double] = ACTIONS(1529), + [anon_sym_float16] = ACTIONS(1529), + [anon_sym_bfloat16] = ACTIONS(1529), + [anon_sym_float128] = ACTIONS(1529), + [anon_sym_iptr] = ACTIONS(1529), + [anon_sym_uptr] = ACTIONS(1529), + [anon_sym_isz] = ACTIONS(1529), + [anon_sym_usz] = ACTIONS(1529), + [anon_sym_anyfault] = ACTIONS(1529), + [anon_sym_any] = ACTIONS(1529), + [anon_sym_DOLLARtypeof] = ACTIONS(1529), + [anon_sym_DOLLARtypefrom] = ACTIONS(1529), + [anon_sym_DOLLARevaltype] = ACTIONS(1529), + [anon_sym_DOLLARvatype] = ACTIONS(1529), + [sym_real_literal] = ACTIONS(1531), }, [648] = { [sym_line_comment] = STATE(648), [sym_doc_comment] = STATE(648), [sym_block_comment] = STATE(648), - [sym_ident] = ACTIONS(1559), - [sym_integer_literal] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_bytes_literal] = ACTIONS(1561), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1559), - [sym_at_ident] = ACTIONS(1561), - [sym_hash_ident] = ACTIONS(1561), - [sym_type_ident] = ACTIONS(1561), - [sym_ct_type_ident] = ACTIONS(1561), - [sym_const_ident] = ACTIONS(1559), - [sym_builtin] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_tlocal] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_fn] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [anon_sym_var] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_defer] = ACTIONS(1559), - [anon_sym_assert] = ACTIONS(1559), - [anon_sym_nextcase] = ACTIONS(1559), - [anon_sym_switch] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_foreach] = ACTIONS(1559), - [anon_sym_foreach_r] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_int] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_STAR] = ACTIONS(1561), - [anon_sym_asm] = ACTIONS(1559), - [anon_sym_DOLLARassert] = ACTIONS(1559), - [anon_sym_DOLLARerror] = ACTIONS(1559), - [anon_sym_DOLLARecho] = ACTIONS(1559), - [anon_sym_DOLLARif] = ACTIONS(1559), - [anon_sym_DOLLARswitch] = ACTIONS(1559), - [anon_sym_DOLLARfor] = ACTIONS(1559), - [anon_sym_DOLLARendfor] = ACTIONS(1559), - [anon_sym_DOLLARforeach] = ACTIONS(1559), - [anon_sym_DOLLARalignof] = ACTIONS(1559), - [anon_sym_DOLLARextnameof] = ACTIONS(1559), - [anon_sym_DOLLARnameof] = ACTIONS(1559), - [anon_sym_DOLLARoffsetof] = ACTIONS(1559), - [anon_sym_DOLLARqnameof] = ACTIONS(1559), - [anon_sym_DOLLAReval] = ACTIONS(1559), - [anon_sym_DOLLARdefined] = ACTIONS(1559), - [anon_sym_DOLLARsizeof] = ACTIONS(1559), - [anon_sym_DOLLARstringify] = ACTIONS(1559), - [anon_sym_DOLLARis_const] = ACTIONS(1559), - [anon_sym_DOLLARvaconst] = ACTIONS(1559), - [anon_sym_DOLLARvaarg] = ACTIONS(1559), - [anon_sym_DOLLARvaref] = ACTIONS(1559), - [anon_sym_DOLLARvaexpr] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1559), - [anon_sym_false] = ACTIONS(1559), - [anon_sym_null] = ACTIONS(1559), - [anon_sym_DOLLARvacount] = ACTIONS(1559), - [anon_sym_DOLLARfeature] = ACTIONS(1559), - [anon_sym_DOLLARand] = ACTIONS(1559), - [anon_sym_DOLLARor] = ACTIONS(1559), - [anon_sym_DOLLARassignable] = ACTIONS(1559), - [anon_sym_DOLLARembed] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1561), - [anon_sym_TILDE] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_typeid] = ACTIONS(1559), - [anon_sym_LBRACE_PIPE] = ACTIONS(1561), - [anon_sym_void] = ACTIONS(1559), - [anon_sym_bool] = ACTIONS(1559), - [anon_sym_char] = ACTIONS(1559), - [anon_sym_ichar] = ACTIONS(1559), - [anon_sym_short] = ACTIONS(1559), - [anon_sym_ushort] = ACTIONS(1559), - [anon_sym_uint] = ACTIONS(1559), - [anon_sym_long] = ACTIONS(1559), - [anon_sym_ulong] = ACTIONS(1559), - [anon_sym_int128] = ACTIONS(1559), - [anon_sym_uint128] = ACTIONS(1559), - [anon_sym_float] = ACTIONS(1559), - [anon_sym_double] = ACTIONS(1559), - [anon_sym_float16] = ACTIONS(1559), - [anon_sym_bfloat16] = ACTIONS(1559), - [anon_sym_float128] = ACTIONS(1559), - [anon_sym_iptr] = ACTIONS(1559), - [anon_sym_uptr] = ACTIONS(1559), - [anon_sym_isz] = ACTIONS(1559), - [anon_sym_usz] = ACTIONS(1559), - [anon_sym_anyfault] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_DOLLARtypeof] = ACTIONS(1559), - [anon_sym_DOLLARtypefrom] = ACTIONS(1559), - [anon_sym_DOLLARvatype] = ACTIONS(1559), - [anon_sym_DOLLARevaltype] = ACTIONS(1559), - [sym_real_literal] = ACTIONS(1561), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARendfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, [649] = { [sym_line_comment] = STATE(649), [sym_doc_comment] = STATE(649), [sym_block_comment] = STATE(649), - [sym_ident] = ACTIONS(1599), - [sym_integer_literal] = ACTIONS(1601), - [anon_sym_SQUOTE] = ACTIONS(1601), - [anon_sym_DQUOTE] = ACTIONS(1601), - [anon_sym_BQUOTE] = ACTIONS(1601), - [sym_bytes_literal] = ACTIONS(1601), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1599), - [sym_at_ident] = ACTIONS(1601), - [sym_hash_ident] = ACTIONS(1601), - [sym_type_ident] = ACTIONS(1601), - [sym_ct_type_ident] = ACTIONS(1601), - [sym_const_ident] = ACTIONS(1599), - [sym_builtin] = ACTIONS(1601), - [anon_sym_LPAREN] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_static] = ACTIONS(1599), - [anon_sym_tlocal] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_const] = ACTIONS(1599), - [anon_sym_var] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_break] = ACTIONS(1599), - [anon_sym_defer] = ACTIONS(1599), - [anon_sym_assert] = ACTIONS(1599), - [anon_sym_nextcase] = ACTIONS(1599), - [anon_sym_switch] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_foreach] = ACTIONS(1599), - [anon_sym_foreach_r] = ACTIONS(1599), - [anon_sym_while] = ACTIONS(1599), - [anon_sym_do] = ACTIONS(1599), - [anon_sym_int] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_asm] = ACTIONS(1599), - [anon_sym_DOLLARassert] = ACTIONS(1599), - [anon_sym_DOLLARerror] = ACTIONS(1599), - [anon_sym_DOLLARecho] = ACTIONS(1599), - [anon_sym_DOLLARif] = ACTIONS(1599), - [anon_sym_DOLLARendif] = ACTIONS(1599), - [anon_sym_DOLLARswitch] = ACTIONS(1599), - [anon_sym_DOLLARfor] = ACTIONS(1599), - [anon_sym_DOLLARforeach] = ACTIONS(1599), - [anon_sym_DOLLARalignof] = ACTIONS(1599), - [anon_sym_DOLLARextnameof] = ACTIONS(1599), - [anon_sym_DOLLARnameof] = ACTIONS(1599), - [anon_sym_DOLLARoffsetof] = ACTIONS(1599), - [anon_sym_DOLLARqnameof] = ACTIONS(1599), - [anon_sym_DOLLAReval] = ACTIONS(1599), - [anon_sym_DOLLARdefined] = ACTIONS(1599), - [anon_sym_DOLLARsizeof] = ACTIONS(1599), - [anon_sym_DOLLARstringify] = ACTIONS(1599), - [anon_sym_DOLLARis_const] = ACTIONS(1599), - [anon_sym_DOLLARvaconst] = ACTIONS(1599), - [anon_sym_DOLLARvaarg] = ACTIONS(1599), - [anon_sym_DOLLARvaref] = ACTIONS(1599), - [anon_sym_DOLLARvaexpr] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1599), - [anon_sym_false] = ACTIONS(1599), - [anon_sym_null] = ACTIONS(1599), - [anon_sym_DOLLARvacount] = ACTIONS(1599), - [anon_sym_DOLLARfeature] = ACTIONS(1599), - [anon_sym_DOLLARand] = ACTIONS(1599), - [anon_sym_DOLLARor] = ACTIONS(1599), - [anon_sym_DOLLARassignable] = ACTIONS(1599), - [anon_sym_DOLLARembed] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1601), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_PLUS_PLUS] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1601), - [anon_sym_typeid] = ACTIONS(1599), - [anon_sym_LBRACE_PIPE] = ACTIONS(1601), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_bool] = ACTIONS(1599), - [anon_sym_char] = ACTIONS(1599), - [anon_sym_ichar] = ACTIONS(1599), - [anon_sym_short] = ACTIONS(1599), - [anon_sym_ushort] = ACTIONS(1599), - [anon_sym_uint] = ACTIONS(1599), - [anon_sym_long] = ACTIONS(1599), - [anon_sym_ulong] = ACTIONS(1599), - [anon_sym_int128] = ACTIONS(1599), - [anon_sym_uint128] = ACTIONS(1599), - [anon_sym_float] = ACTIONS(1599), - [anon_sym_double] = ACTIONS(1599), - [anon_sym_float16] = ACTIONS(1599), - [anon_sym_bfloat16] = ACTIONS(1599), - [anon_sym_float128] = ACTIONS(1599), - [anon_sym_iptr] = ACTIONS(1599), - [anon_sym_uptr] = ACTIONS(1599), - [anon_sym_isz] = ACTIONS(1599), - [anon_sym_usz] = ACTIONS(1599), - [anon_sym_anyfault] = ACTIONS(1599), - [anon_sym_any] = ACTIONS(1599), - [anon_sym_DOLLARtypeof] = ACTIONS(1599), - [anon_sym_DOLLARtypefrom] = ACTIONS(1599), - [anon_sym_DOLLARvatype] = ACTIONS(1599), - [anon_sym_DOLLARevaltype] = ACTIONS(1599), - [sym_real_literal] = ACTIONS(1601), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARendfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, [650] = { [sym_line_comment] = STATE(650), [sym_doc_comment] = STATE(650), [sym_block_comment] = STATE(650), - [sym_ident] = ACTIONS(1595), - [sym_integer_literal] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(1597), - [anon_sym_DQUOTE] = ACTIONS(1597), - [anon_sym_BQUOTE] = ACTIONS(1597), - [sym_bytes_literal] = ACTIONS(1597), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1595), - [sym_at_ident] = ACTIONS(1597), - [sym_hash_ident] = ACTIONS(1597), - [sym_type_ident] = ACTIONS(1597), - [sym_ct_type_ident] = ACTIONS(1597), - [sym_const_ident] = ACTIONS(1595), - [sym_builtin] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_tlocal] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_fn] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_const] = ACTIONS(1595), - [anon_sym_var] = ACTIONS(1595), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_continue] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1595), - [anon_sym_defer] = ACTIONS(1595), - [anon_sym_assert] = ACTIONS(1595), - [anon_sym_nextcase] = ACTIONS(1595), - [anon_sym_switch] = ACTIONS(1595), - [anon_sym_AMP_AMP] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1595), - [anon_sym_for] = ACTIONS(1595), - [anon_sym_foreach] = ACTIONS(1595), - [anon_sym_foreach_r] = ACTIONS(1595), - [anon_sym_while] = ACTIONS(1595), - [anon_sym_do] = ACTIONS(1595), - [anon_sym_int] = ACTIONS(1595), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1597), - [anon_sym_asm] = ACTIONS(1595), - [anon_sym_DOLLARassert] = ACTIONS(1595), - [anon_sym_DOLLARerror] = ACTIONS(1595), - [anon_sym_DOLLARecho] = ACTIONS(1595), - [anon_sym_DOLLARif] = ACTIONS(1595), - [anon_sym_DOLLARendif] = ACTIONS(1595), - [anon_sym_DOLLARswitch] = ACTIONS(1595), - [anon_sym_DOLLARfor] = ACTIONS(1595), - [anon_sym_DOLLARforeach] = ACTIONS(1595), - [anon_sym_DOLLARalignof] = ACTIONS(1595), - [anon_sym_DOLLARextnameof] = ACTIONS(1595), - [anon_sym_DOLLARnameof] = ACTIONS(1595), - [anon_sym_DOLLARoffsetof] = ACTIONS(1595), - [anon_sym_DOLLARqnameof] = ACTIONS(1595), - [anon_sym_DOLLAReval] = ACTIONS(1595), - [anon_sym_DOLLARdefined] = ACTIONS(1595), - [anon_sym_DOLLARsizeof] = ACTIONS(1595), - [anon_sym_DOLLARstringify] = ACTIONS(1595), - [anon_sym_DOLLARis_const] = ACTIONS(1595), - [anon_sym_DOLLARvaconst] = ACTIONS(1595), - [anon_sym_DOLLARvaarg] = ACTIONS(1595), - [anon_sym_DOLLARvaref] = ACTIONS(1595), - [anon_sym_DOLLARvaexpr] = ACTIONS(1595), - [anon_sym_true] = ACTIONS(1595), - [anon_sym_false] = ACTIONS(1595), - [anon_sym_null] = ACTIONS(1595), - [anon_sym_DOLLARvacount] = ACTIONS(1595), - [anon_sym_DOLLARfeature] = ACTIONS(1595), - [anon_sym_DOLLARand] = ACTIONS(1595), - [anon_sym_DOLLARor] = ACTIONS(1595), - [anon_sym_DOLLARassignable] = ACTIONS(1595), - [anon_sym_DOLLARembed] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1597), - [anon_sym_TILDE] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_DASH_DASH] = ACTIONS(1597), - [anon_sym_typeid] = ACTIONS(1595), - [anon_sym_LBRACE_PIPE] = ACTIONS(1597), - [anon_sym_void] = ACTIONS(1595), - [anon_sym_bool] = ACTIONS(1595), - [anon_sym_char] = ACTIONS(1595), - [anon_sym_ichar] = ACTIONS(1595), - [anon_sym_short] = ACTIONS(1595), - [anon_sym_ushort] = ACTIONS(1595), - [anon_sym_uint] = ACTIONS(1595), - [anon_sym_long] = ACTIONS(1595), - [anon_sym_ulong] = ACTIONS(1595), - [anon_sym_int128] = ACTIONS(1595), - [anon_sym_uint128] = ACTIONS(1595), - [anon_sym_float] = ACTIONS(1595), - [anon_sym_double] = ACTIONS(1595), - [anon_sym_float16] = ACTIONS(1595), - [anon_sym_bfloat16] = ACTIONS(1595), - [anon_sym_float128] = ACTIONS(1595), - [anon_sym_iptr] = ACTIONS(1595), - [anon_sym_uptr] = ACTIONS(1595), - [anon_sym_isz] = ACTIONS(1595), - [anon_sym_usz] = ACTIONS(1595), - [anon_sym_anyfault] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_DOLLARtypeof] = ACTIONS(1595), - [anon_sym_DOLLARtypefrom] = ACTIONS(1595), - [anon_sym_DOLLARvatype] = ACTIONS(1595), - [anon_sym_DOLLARevaltype] = ACTIONS(1595), - [sym_real_literal] = ACTIONS(1597), + [sym_ident] = ACTIONS(1617), + [sym_integer_literal] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [anon_sym_BQUOTE] = ACTIONS(1619), + [sym_bytes_literal] = ACTIONS(1619), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1617), + [sym_at_ident] = ACTIONS(1619), + [sym_hash_ident] = ACTIONS(1619), + [sym_type_ident] = ACTIONS(1619), + [sym_ct_type_ident] = ACTIONS(1619), + [sym_const_ident] = ACTIONS(1617), + [sym_builtin] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_tlocal] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [anon_sym_var] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_defer] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_nextcase] = ACTIONS(1617), + [anon_sym_switch] = ACTIONS(1617), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_foreach] = ACTIONS(1617), + [anon_sym_foreach_r] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_int] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym_DOLLARassert] = ACTIONS(1617), + [anon_sym_DOLLARerror] = ACTIONS(1617), + [anon_sym_DOLLARecho] = ACTIONS(1617), + [anon_sym_DOLLARif] = ACTIONS(1617), + [anon_sym_DOLLARswitch] = ACTIONS(1617), + [anon_sym_DOLLARfor] = ACTIONS(1617), + [anon_sym_DOLLARendfor] = ACTIONS(1617), + [anon_sym_DOLLARforeach] = ACTIONS(1617), + [anon_sym_DOLLARalignof] = ACTIONS(1617), + [anon_sym_DOLLARextnameof] = ACTIONS(1617), + [anon_sym_DOLLARnameof] = ACTIONS(1617), + [anon_sym_DOLLARoffsetof] = ACTIONS(1617), + [anon_sym_DOLLARqnameof] = ACTIONS(1617), + [anon_sym_DOLLARvaconst] = ACTIONS(1617), + [anon_sym_DOLLARvaarg] = ACTIONS(1617), + [anon_sym_DOLLARvaref] = ACTIONS(1617), + [anon_sym_DOLLARvaexpr] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [anon_sym_DOLLARvacount] = ACTIONS(1617), + [anon_sym_DOLLAReval] = ACTIONS(1617), + [anon_sym_DOLLARis_const] = ACTIONS(1617), + [anon_sym_DOLLARsizeof] = ACTIONS(1617), + [anon_sym_DOLLARstringify] = ACTIONS(1617), + [anon_sym_DOLLARappend] = ACTIONS(1617), + [anon_sym_DOLLARconcat] = ACTIONS(1617), + [anon_sym_DOLLARdefined] = ACTIONS(1617), + [anon_sym_DOLLARembed] = ACTIONS(1617), + [anon_sym_DOLLARand] = ACTIONS(1617), + [anon_sym_DOLLARor] = ACTIONS(1617), + [anon_sym_DOLLARfeature] = ACTIONS(1617), + [anon_sym_DOLLARassignable] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_typeid] = ACTIONS(1617), + [anon_sym_LBRACE_PIPE] = ACTIONS(1619), + [anon_sym_void] = ACTIONS(1617), + [anon_sym_bool] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_ichar] = ACTIONS(1617), + [anon_sym_short] = ACTIONS(1617), + [anon_sym_ushort] = ACTIONS(1617), + [anon_sym_uint] = ACTIONS(1617), + [anon_sym_long] = ACTIONS(1617), + [anon_sym_ulong] = ACTIONS(1617), + [anon_sym_int128] = ACTIONS(1617), + [anon_sym_uint128] = ACTIONS(1617), + [anon_sym_float] = ACTIONS(1617), + [anon_sym_double] = ACTIONS(1617), + [anon_sym_float16] = ACTIONS(1617), + [anon_sym_bfloat16] = ACTIONS(1617), + [anon_sym_float128] = ACTIONS(1617), + [anon_sym_iptr] = ACTIONS(1617), + [anon_sym_uptr] = ACTIONS(1617), + [anon_sym_isz] = ACTIONS(1617), + [anon_sym_usz] = ACTIONS(1617), + [anon_sym_anyfault] = ACTIONS(1617), + [anon_sym_any] = ACTIONS(1617), + [anon_sym_DOLLARtypeof] = ACTIONS(1617), + [anon_sym_DOLLARtypefrom] = ACTIONS(1617), + [anon_sym_DOLLARevaltype] = ACTIONS(1617), + [anon_sym_DOLLARvatype] = ACTIONS(1617), + [sym_real_literal] = ACTIONS(1619), }, [651] = { [sym_line_comment] = STATE(651), [sym_doc_comment] = STATE(651), [sym_block_comment] = STATE(651), - [sym_ident] = ACTIONS(1567), - [sym_integer_literal] = ACTIONS(1569), - [anon_sym_SQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [anon_sym_BQUOTE] = ACTIONS(1569), - [sym_bytes_literal] = ACTIONS(1569), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1567), - [sym_at_ident] = ACTIONS(1569), - [sym_hash_ident] = ACTIONS(1569), - [sym_type_ident] = ACTIONS(1569), - [sym_ct_type_ident] = ACTIONS(1569), - [sym_const_ident] = ACTIONS(1567), - [sym_builtin] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_AMP] = ACTIONS(1567), - [anon_sym_static] = ACTIONS(1567), - [anon_sym_tlocal] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1569), - [anon_sym_fn] = ACTIONS(1567), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_const] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(1567), - [anon_sym_return] = ACTIONS(1567), - [anon_sym_continue] = ACTIONS(1567), - [anon_sym_break] = ACTIONS(1567), - [anon_sym_defer] = ACTIONS(1567), - [anon_sym_assert] = ACTIONS(1567), - [anon_sym_nextcase] = ACTIONS(1567), - [anon_sym_switch] = ACTIONS(1567), - [anon_sym_AMP_AMP] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1567), - [anon_sym_for] = ACTIONS(1567), - [anon_sym_foreach] = ACTIONS(1567), - [anon_sym_foreach_r] = ACTIONS(1567), - [anon_sym_while] = ACTIONS(1567), - [anon_sym_do] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), - [anon_sym_STAR] = ACTIONS(1569), - [anon_sym_asm] = ACTIONS(1567), - [anon_sym_DOLLARassert] = ACTIONS(1567), - [anon_sym_DOLLARerror] = ACTIONS(1567), - [anon_sym_DOLLARecho] = ACTIONS(1567), - [anon_sym_DOLLARif] = ACTIONS(1567), - [anon_sym_DOLLARswitch] = ACTIONS(1567), - [anon_sym_DOLLARfor] = ACTIONS(1567), - [anon_sym_DOLLARendfor] = ACTIONS(1567), - [anon_sym_DOLLARforeach] = ACTIONS(1567), - [anon_sym_DOLLARalignof] = ACTIONS(1567), - [anon_sym_DOLLARextnameof] = ACTIONS(1567), - [anon_sym_DOLLARnameof] = ACTIONS(1567), - [anon_sym_DOLLARoffsetof] = ACTIONS(1567), - [anon_sym_DOLLARqnameof] = ACTIONS(1567), - [anon_sym_DOLLAReval] = ACTIONS(1567), - [anon_sym_DOLLARdefined] = ACTIONS(1567), - [anon_sym_DOLLARsizeof] = ACTIONS(1567), - [anon_sym_DOLLARstringify] = ACTIONS(1567), - [anon_sym_DOLLARis_const] = ACTIONS(1567), - [anon_sym_DOLLARvaconst] = ACTIONS(1567), - [anon_sym_DOLLARvaarg] = ACTIONS(1567), - [anon_sym_DOLLARvaref] = ACTIONS(1567), - [anon_sym_DOLLARvaexpr] = ACTIONS(1567), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [anon_sym_null] = ACTIONS(1567), - [anon_sym_DOLLARvacount] = ACTIONS(1567), - [anon_sym_DOLLARfeature] = ACTIONS(1567), - [anon_sym_DOLLARand] = ACTIONS(1567), - [anon_sym_DOLLARor] = ACTIONS(1567), - [anon_sym_DOLLARassignable] = ACTIONS(1567), - [anon_sym_DOLLARembed] = ACTIONS(1567), - [anon_sym_BANG] = ACTIONS(1569), - [anon_sym_TILDE] = ACTIONS(1569), - [anon_sym_PLUS_PLUS] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1569), - [anon_sym_typeid] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_char] = ACTIONS(1567), - [anon_sym_ichar] = ACTIONS(1567), - [anon_sym_short] = ACTIONS(1567), - [anon_sym_ushort] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_long] = ACTIONS(1567), - [anon_sym_ulong] = ACTIONS(1567), - [anon_sym_int128] = ACTIONS(1567), - [anon_sym_uint128] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_double] = ACTIONS(1567), - [anon_sym_float16] = ACTIONS(1567), - [anon_sym_bfloat16] = ACTIONS(1567), - [anon_sym_float128] = ACTIONS(1567), - [anon_sym_iptr] = ACTIONS(1567), - [anon_sym_uptr] = ACTIONS(1567), - [anon_sym_isz] = ACTIONS(1567), - [anon_sym_usz] = ACTIONS(1567), - [anon_sym_anyfault] = ACTIONS(1567), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_DOLLARtypeof] = ACTIONS(1567), - [anon_sym_DOLLARtypefrom] = ACTIONS(1567), - [anon_sym_DOLLARvatype] = ACTIONS(1567), - [anon_sym_DOLLARevaltype] = ACTIONS(1567), - [sym_real_literal] = ACTIONS(1569), + [sym_ident] = ACTIONS(1621), + [sym_integer_literal] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_bytes_literal] = ACTIONS(1623), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1621), + [sym_at_ident] = ACTIONS(1623), + [sym_hash_ident] = ACTIONS(1623), + [sym_type_ident] = ACTIONS(1623), + [sym_ct_type_ident] = ACTIONS(1623), + [sym_const_ident] = ACTIONS(1621), + [sym_builtin] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_tlocal] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_var] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_defer] = ACTIONS(1621), + [anon_sym_assert] = ACTIONS(1621), + [anon_sym_nextcase] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_foreach] = ACTIONS(1621), + [anon_sym_foreach_r] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_int] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_asm] = ACTIONS(1621), + [anon_sym_DOLLARassert] = ACTIONS(1621), + [anon_sym_DOLLARerror] = ACTIONS(1621), + [anon_sym_DOLLARecho] = ACTIONS(1621), + [anon_sym_DOLLARif] = ACTIONS(1621), + [anon_sym_DOLLARswitch] = ACTIONS(1621), + [anon_sym_DOLLARfor] = ACTIONS(1621), + [anon_sym_DOLLARendfor] = ACTIONS(1621), + [anon_sym_DOLLARforeach] = ACTIONS(1621), + [anon_sym_DOLLARalignof] = ACTIONS(1621), + [anon_sym_DOLLARextnameof] = ACTIONS(1621), + [anon_sym_DOLLARnameof] = ACTIONS(1621), + [anon_sym_DOLLARoffsetof] = ACTIONS(1621), + [anon_sym_DOLLARqnameof] = ACTIONS(1621), + [anon_sym_DOLLARvaconst] = ACTIONS(1621), + [anon_sym_DOLLARvaarg] = ACTIONS(1621), + [anon_sym_DOLLARvaref] = ACTIONS(1621), + [anon_sym_DOLLARvaexpr] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_null] = ACTIONS(1621), + [anon_sym_DOLLARvacount] = ACTIONS(1621), + [anon_sym_DOLLAReval] = ACTIONS(1621), + [anon_sym_DOLLARis_const] = ACTIONS(1621), + [anon_sym_DOLLARsizeof] = ACTIONS(1621), + [anon_sym_DOLLARstringify] = ACTIONS(1621), + [anon_sym_DOLLARappend] = ACTIONS(1621), + [anon_sym_DOLLARconcat] = ACTIONS(1621), + [anon_sym_DOLLARdefined] = ACTIONS(1621), + [anon_sym_DOLLARembed] = ACTIONS(1621), + [anon_sym_DOLLARand] = ACTIONS(1621), + [anon_sym_DOLLARor] = ACTIONS(1621), + [anon_sym_DOLLARfeature] = ACTIONS(1621), + [anon_sym_DOLLARassignable] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_typeid] = ACTIONS(1621), + [anon_sym_LBRACE_PIPE] = ACTIONS(1623), + [anon_sym_void] = ACTIONS(1621), + [anon_sym_bool] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_ichar] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_ushort] = ACTIONS(1621), + [anon_sym_uint] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_ulong] = ACTIONS(1621), + [anon_sym_int128] = ACTIONS(1621), + [anon_sym_uint128] = ACTIONS(1621), + [anon_sym_float] = ACTIONS(1621), + [anon_sym_double] = ACTIONS(1621), + [anon_sym_float16] = ACTIONS(1621), + [anon_sym_bfloat16] = ACTIONS(1621), + [anon_sym_float128] = ACTIONS(1621), + [anon_sym_iptr] = ACTIONS(1621), + [anon_sym_uptr] = ACTIONS(1621), + [anon_sym_isz] = ACTIONS(1621), + [anon_sym_usz] = ACTIONS(1621), + [anon_sym_anyfault] = ACTIONS(1621), + [anon_sym_any] = ACTIONS(1621), + [anon_sym_DOLLARtypeof] = ACTIONS(1621), + [anon_sym_DOLLARtypefrom] = ACTIONS(1621), + [anon_sym_DOLLARevaltype] = ACTIONS(1621), + [anon_sym_DOLLARvatype] = ACTIONS(1621), + [sym_real_literal] = ACTIONS(1623), }, [652] = { [sym_line_comment] = STATE(652), [sym_doc_comment] = STATE(652), [sym_block_comment] = STATE(652), - [sym_ident] = ACTIONS(1583), - [sym_integer_literal] = ACTIONS(1585), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1585), - [anon_sym_BQUOTE] = ACTIONS(1585), - [sym_bytes_literal] = ACTIONS(1585), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1583), - [sym_at_ident] = ACTIONS(1585), - [sym_hash_ident] = ACTIONS(1585), - [sym_type_ident] = ACTIONS(1585), - [sym_ct_type_ident] = ACTIONS(1585), - [sym_const_ident] = ACTIONS(1583), - [sym_builtin] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_static] = ACTIONS(1583), - [anon_sym_tlocal] = ACTIONS(1583), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_fn] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_const] = ACTIONS(1583), - [anon_sym_var] = ACTIONS(1583), - [anon_sym_return] = ACTIONS(1583), - [anon_sym_continue] = ACTIONS(1583), - [anon_sym_break] = ACTIONS(1583), - [anon_sym_defer] = ACTIONS(1583), - [anon_sym_assert] = ACTIONS(1583), - [anon_sym_nextcase] = ACTIONS(1583), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1583), - [anon_sym_foreach] = ACTIONS(1583), - [anon_sym_foreach_r] = ACTIONS(1583), - [anon_sym_while] = ACTIONS(1583), - [anon_sym_do] = ACTIONS(1583), - [anon_sym_int] = ACTIONS(1583), - [anon_sym_PLUS] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_asm] = ACTIONS(1583), - [anon_sym_DOLLARassert] = ACTIONS(1583), - [anon_sym_DOLLARerror] = ACTIONS(1583), - [anon_sym_DOLLARecho] = ACTIONS(1583), - [anon_sym_DOLLARif] = ACTIONS(1583), - [anon_sym_DOLLARswitch] = ACTIONS(1583), - [anon_sym_DOLLARfor] = ACTIONS(1583), - [anon_sym_DOLLARendfor] = ACTIONS(1583), - [anon_sym_DOLLARforeach] = ACTIONS(1583), - [anon_sym_DOLLARalignof] = ACTIONS(1583), - [anon_sym_DOLLARextnameof] = ACTIONS(1583), - [anon_sym_DOLLARnameof] = ACTIONS(1583), - [anon_sym_DOLLARoffsetof] = ACTIONS(1583), - [anon_sym_DOLLARqnameof] = ACTIONS(1583), - [anon_sym_DOLLAReval] = ACTIONS(1583), - [anon_sym_DOLLARdefined] = ACTIONS(1583), - [anon_sym_DOLLARsizeof] = ACTIONS(1583), - [anon_sym_DOLLARstringify] = ACTIONS(1583), - [anon_sym_DOLLARis_const] = ACTIONS(1583), - [anon_sym_DOLLARvaconst] = ACTIONS(1583), - [anon_sym_DOLLARvaarg] = ACTIONS(1583), - [anon_sym_DOLLARvaref] = ACTIONS(1583), - [anon_sym_DOLLARvaexpr] = ACTIONS(1583), - [anon_sym_true] = ACTIONS(1583), - [anon_sym_false] = ACTIONS(1583), - [anon_sym_null] = ACTIONS(1583), - [anon_sym_DOLLARvacount] = ACTIONS(1583), - [anon_sym_DOLLARfeature] = ACTIONS(1583), - [anon_sym_DOLLARand] = ACTIONS(1583), - [anon_sym_DOLLARor] = ACTIONS(1583), - [anon_sym_DOLLARassignable] = ACTIONS(1583), - [anon_sym_DOLLARembed] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1585), - [anon_sym_TILDE] = ACTIONS(1585), - [anon_sym_PLUS_PLUS] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1585), - [anon_sym_typeid] = ACTIONS(1583), - [anon_sym_LBRACE_PIPE] = ACTIONS(1585), - [anon_sym_void] = ACTIONS(1583), - [anon_sym_bool] = ACTIONS(1583), - [anon_sym_char] = ACTIONS(1583), - [anon_sym_ichar] = ACTIONS(1583), - [anon_sym_short] = ACTIONS(1583), - [anon_sym_ushort] = ACTIONS(1583), - [anon_sym_uint] = ACTIONS(1583), - [anon_sym_long] = ACTIONS(1583), - [anon_sym_ulong] = ACTIONS(1583), - [anon_sym_int128] = ACTIONS(1583), - [anon_sym_uint128] = ACTIONS(1583), - [anon_sym_float] = ACTIONS(1583), - [anon_sym_double] = ACTIONS(1583), - [anon_sym_float16] = ACTIONS(1583), - [anon_sym_bfloat16] = ACTIONS(1583), - [anon_sym_float128] = ACTIONS(1583), - [anon_sym_iptr] = ACTIONS(1583), - [anon_sym_uptr] = ACTIONS(1583), - [anon_sym_isz] = ACTIONS(1583), - [anon_sym_usz] = ACTIONS(1583), - [anon_sym_anyfault] = ACTIONS(1583), - [anon_sym_any] = ACTIONS(1583), - [anon_sym_DOLLARtypeof] = ACTIONS(1583), - [anon_sym_DOLLARtypefrom] = ACTIONS(1583), - [anon_sym_DOLLARvatype] = ACTIONS(1583), - [anon_sym_DOLLARevaltype] = ACTIONS(1583), - [sym_real_literal] = ACTIONS(1585), + [sym_ident] = ACTIONS(1625), + [sym_integer_literal] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [sym_bytes_literal] = ACTIONS(1627), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1625), + [sym_at_ident] = ACTIONS(1627), + [sym_hash_ident] = ACTIONS(1627), + [sym_type_ident] = ACTIONS(1627), + [sym_ct_type_ident] = ACTIONS(1627), + [sym_const_ident] = ACTIONS(1625), + [sym_builtin] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_tlocal] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_defer] = ACTIONS(1625), + [anon_sym_assert] = ACTIONS(1625), + [anon_sym_nextcase] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_foreach] = ACTIONS(1625), + [anon_sym_foreach_r] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_int] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_asm] = ACTIONS(1625), + [anon_sym_DOLLARassert] = ACTIONS(1625), + [anon_sym_DOLLARerror] = ACTIONS(1625), + [anon_sym_DOLLARecho] = ACTIONS(1625), + [anon_sym_DOLLARif] = ACTIONS(1625), + [anon_sym_DOLLARswitch] = ACTIONS(1625), + [anon_sym_DOLLARfor] = ACTIONS(1625), + [anon_sym_DOLLARendfor] = ACTIONS(1625), + [anon_sym_DOLLARforeach] = ACTIONS(1625), + [anon_sym_DOLLARalignof] = ACTIONS(1625), + [anon_sym_DOLLARextnameof] = ACTIONS(1625), + [anon_sym_DOLLARnameof] = ACTIONS(1625), + [anon_sym_DOLLARoffsetof] = ACTIONS(1625), + [anon_sym_DOLLARqnameof] = ACTIONS(1625), + [anon_sym_DOLLARvaconst] = ACTIONS(1625), + [anon_sym_DOLLARvaarg] = ACTIONS(1625), + [anon_sym_DOLLARvaref] = ACTIONS(1625), + [anon_sym_DOLLARvaexpr] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_DOLLARvacount] = ACTIONS(1625), + [anon_sym_DOLLAReval] = ACTIONS(1625), + [anon_sym_DOLLARis_const] = ACTIONS(1625), + [anon_sym_DOLLARsizeof] = ACTIONS(1625), + [anon_sym_DOLLARstringify] = ACTIONS(1625), + [anon_sym_DOLLARappend] = ACTIONS(1625), + [anon_sym_DOLLARconcat] = ACTIONS(1625), + [anon_sym_DOLLARdefined] = ACTIONS(1625), + [anon_sym_DOLLARembed] = ACTIONS(1625), + [anon_sym_DOLLARand] = ACTIONS(1625), + [anon_sym_DOLLARor] = ACTIONS(1625), + [anon_sym_DOLLARfeature] = ACTIONS(1625), + [anon_sym_DOLLARassignable] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_typeid] = ACTIONS(1625), + [anon_sym_LBRACE_PIPE] = ACTIONS(1627), + [anon_sym_void] = ACTIONS(1625), + [anon_sym_bool] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_ichar] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_ushort] = ACTIONS(1625), + [anon_sym_uint] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_ulong] = ACTIONS(1625), + [anon_sym_int128] = ACTIONS(1625), + [anon_sym_uint128] = ACTIONS(1625), + [anon_sym_float] = ACTIONS(1625), + [anon_sym_double] = ACTIONS(1625), + [anon_sym_float16] = ACTIONS(1625), + [anon_sym_bfloat16] = ACTIONS(1625), + [anon_sym_float128] = ACTIONS(1625), + [anon_sym_iptr] = ACTIONS(1625), + [anon_sym_uptr] = ACTIONS(1625), + [anon_sym_isz] = ACTIONS(1625), + [anon_sym_usz] = ACTIONS(1625), + [anon_sym_anyfault] = ACTIONS(1625), + [anon_sym_any] = ACTIONS(1625), + [anon_sym_DOLLARtypeof] = ACTIONS(1625), + [anon_sym_DOLLARtypefrom] = ACTIONS(1625), + [anon_sym_DOLLARevaltype] = ACTIONS(1625), + [anon_sym_DOLLARvatype] = ACTIONS(1625), + [sym_real_literal] = ACTIONS(1627), }, [653] = { [sym_line_comment] = STATE(653), [sym_doc_comment] = STATE(653), [sym_block_comment] = STATE(653), - [sym_ident] = ACTIONS(1591), - [sym_integer_literal] = ACTIONS(1593), - [anon_sym_SQUOTE] = ACTIONS(1593), - [anon_sym_DQUOTE] = ACTIONS(1593), - [anon_sym_BQUOTE] = ACTIONS(1593), - [sym_bytes_literal] = ACTIONS(1593), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1591), - [sym_at_ident] = ACTIONS(1593), - [sym_hash_ident] = ACTIONS(1593), - [sym_type_ident] = ACTIONS(1593), - [sym_ct_type_ident] = ACTIONS(1593), - [sym_const_ident] = ACTIONS(1591), - [sym_builtin] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_static] = ACTIONS(1591), - [anon_sym_tlocal] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1593), - [anon_sym_fn] = ACTIONS(1591), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_const] = ACTIONS(1591), - [anon_sym_var] = ACTIONS(1591), - [anon_sym_return] = ACTIONS(1591), - [anon_sym_continue] = ACTIONS(1591), - [anon_sym_break] = ACTIONS(1591), - [anon_sym_defer] = ACTIONS(1591), - [anon_sym_assert] = ACTIONS(1591), - [anon_sym_nextcase] = ACTIONS(1591), - [anon_sym_switch] = ACTIONS(1591), - [anon_sym_AMP_AMP] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1591), - [anon_sym_foreach] = ACTIONS(1591), - [anon_sym_foreach_r] = ACTIONS(1591), - [anon_sym_while] = ACTIONS(1591), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_int] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1591), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_asm] = ACTIONS(1591), - [anon_sym_DOLLARassert] = ACTIONS(1591), - [anon_sym_DOLLARerror] = ACTIONS(1591), - [anon_sym_DOLLARecho] = ACTIONS(1591), - [anon_sym_DOLLARif] = ACTIONS(1591), - [anon_sym_DOLLARswitch] = ACTIONS(1591), - [anon_sym_DOLLARfor] = ACTIONS(1591), - [anon_sym_DOLLARendfor] = ACTIONS(1591), - [anon_sym_DOLLARforeach] = ACTIONS(1591), - [anon_sym_DOLLARalignof] = ACTIONS(1591), - [anon_sym_DOLLARextnameof] = ACTIONS(1591), - [anon_sym_DOLLARnameof] = ACTIONS(1591), - [anon_sym_DOLLARoffsetof] = ACTIONS(1591), - [anon_sym_DOLLARqnameof] = ACTIONS(1591), - [anon_sym_DOLLAReval] = ACTIONS(1591), - [anon_sym_DOLLARdefined] = ACTIONS(1591), - [anon_sym_DOLLARsizeof] = ACTIONS(1591), - [anon_sym_DOLLARstringify] = ACTIONS(1591), - [anon_sym_DOLLARis_const] = ACTIONS(1591), - [anon_sym_DOLLARvaconst] = ACTIONS(1591), - [anon_sym_DOLLARvaarg] = ACTIONS(1591), - [anon_sym_DOLLARvaref] = ACTIONS(1591), - [anon_sym_DOLLARvaexpr] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [anon_sym_DOLLARvacount] = ACTIONS(1591), - [anon_sym_DOLLARfeature] = ACTIONS(1591), - [anon_sym_DOLLARand] = ACTIONS(1591), - [anon_sym_DOLLARor] = ACTIONS(1591), - [anon_sym_DOLLARassignable] = ACTIONS(1591), - [anon_sym_DOLLARembed] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1593), - [anon_sym_TILDE] = ACTIONS(1593), - [anon_sym_PLUS_PLUS] = ACTIONS(1593), - [anon_sym_DASH_DASH] = ACTIONS(1593), - [anon_sym_typeid] = ACTIONS(1591), - [anon_sym_LBRACE_PIPE] = ACTIONS(1593), - [anon_sym_void] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_ichar] = ACTIONS(1591), - [anon_sym_short] = ACTIONS(1591), - [anon_sym_ushort] = ACTIONS(1591), - [anon_sym_uint] = ACTIONS(1591), - [anon_sym_long] = ACTIONS(1591), - [anon_sym_ulong] = ACTIONS(1591), - [anon_sym_int128] = ACTIONS(1591), - [anon_sym_uint128] = ACTIONS(1591), - [anon_sym_float] = ACTIONS(1591), - [anon_sym_double] = ACTIONS(1591), - [anon_sym_float16] = ACTIONS(1591), - [anon_sym_bfloat16] = ACTIONS(1591), - [anon_sym_float128] = ACTIONS(1591), - [anon_sym_iptr] = ACTIONS(1591), - [anon_sym_uptr] = ACTIONS(1591), - [anon_sym_isz] = ACTIONS(1591), - [anon_sym_usz] = ACTIONS(1591), - [anon_sym_anyfault] = ACTIONS(1591), - [anon_sym_any] = ACTIONS(1591), - [anon_sym_DOLLARtypeof] = ACTIONS(1591), - [anon_sym_DOLLARtypefrom] = ACTIONS(1591), - [anon_sym_DOLLARvatype] = ACTIONS(1591), - [anon_sym_DOLLARevaltype] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1593), + [sym_ident] = ACTIONS(1629), + [sym_integer_literal] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1631), + [sym_bytes_literal] = ACTIONS(1631), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1629), + [sym_at_ident] = ACTIONS(1631), + [sym_hash_ident] = ACTIONS(1631), + [sym_type_ident] = ACTIONS(1631), + [sym_ct_type_ident] = ACTIONS(1631), + [sym_const_ident] = ACTIONS(1629), + [sym_builtin] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_tlocal] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_fn] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_var] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_defer] = ACTIONS(1629), + [anon_sym_assert] = ACTIONS(1629), + [anon_sym_nextcase] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_foreach] = ACTIONS(1629), + [anon_sym_foreach_r] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_int] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_asm] = ACTIONS(1629), + [anon_sym_DOLLARassert] = ACTIONS(1629), + [anon_sym_DOLLARerror] = ACTIONS(1629), + [anon_sym_DOLLARecho] = ACTIONS(1629), + [anon_sym_DOLLARif] = ACTIONS(1629), + [anon_sym_DOLLARswitch] = ACTIONS(1629), + [anon_sym_DOLLARfor] = ACTIONS(1629), + [anon_sym_DOLLARendfor] = ACTIONS(1629), + [anon_sym_DOLLARforeach] = ACTIONS(1629), + [anon_sym_DOLLARalignof] = ACTIONS(1629), + [anon_sym_DOLLARextnameof] = ACTIONS(1629), + [anon_sym_DOLLARnameof] = ACTIONS(1629), + [anon_sym_DOLLARoffsetof] = ACTIONS(1629), + [anon_sym_DOLLARqnameof] = ACTIONS(1629), + [anon_sym_DOLLARvaconst] = ACTIONS(1629), + [anon_sym_DOLLARvaarg] = ACTIONS(1629), + [anon_sym_DOLLARvaref] = ACTIONS(1629), + [anon_sym_DOLLARvaexpr] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_DOLLARvacount] = ACTIONS(1629), + [anon_sym_DOLLAReval] = ACTIONS(1629), + [anon_sym_DOLLARis_const] = ACTIONS(1629), + [anon_sym_DOLLARsizeof] = ACTIONS(1629), + [anon_sym_DOLLARstringify] = ACTIONS(1629), + [anon_sym_DOLLARappend] = ACTIONS(1629), + [anon_sym_DOLLARconcat] = ACTIONS(1629), + [anon_sym_DOLLARdefined] = ACTIONS(1629), + [anon_sym_DOLLARembed] = ACTIONS(1629), + [anon_sym_DOLLARand] = ACTIONS(1629), + [anon_sym_DOLLARor] = ACTIONS(1629), + [anon_sym_DOLLARfeature] = ACTIONS(1629), + [anon_sym_DOLLARassignable] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_typeid] = ACTIONS(1629), + [anon_sym_LBRACE_PIPE] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_ichar] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_ushort] = ACTIONS(1629), + [anon_sym_uint] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_ulong] = ACTIONS(1629), + [anon_sym_int128] = ACTIONS(1629), + [anon_sym_uint128] = ACTIONS(1629), + [anon_sym_float] = ACTIONS(1629), + [anon_sym_double] = ACTIONS(1629), + [anon_sym_float16] = ACTIONS(1629), + [anon_sym_bfloat16] = ACTIONS(1629), + [anon_sym_float128] = ACTIONS(1629), + [anon_sym_iptr] = ACTIONS(1629), + [anon_sym_uptr] = ACTIONS(1629), + [anon_sym_isz] = ACTIONS(1629), + [anon_sym_usz] = ACTIONS(1629), + [anon_sym_anyfault] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_DOLLARtypeof] = ACTIONS(1629), + [anon_sym_DOLLARtypefrom] = ACTIONS(1629), + [anon_sym_DOLLARevaltype] = ACTIONS(1629), + [anon_sym_DOLLARvatype] = ACTIONS(1629), + [sym_real_literal] = ACTIONS(1631), }, [654] = { [sym_line_comment] = STATE(654), [sym_doc_comment] = STATE(654), [sym_block_comment] = STATE(654), - [sym_ident] = ACTIONS(1591), - [sym_integer_literal] = ACTIONS(1593), - [anon_sym_SQUOTE] = ACTIONS(1593), - [anon_sym_DQUOTE] = ACTIONS(1593), - [anon_sym_BQUOTE] = ACTIONS(1593), - [sym_bytes_literal] = ACTIONS(1593), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1591), - [sym_at_ident] = ACTIONS(1593), - [sym_hash_ident] = ACTIONS(1593), - [sym_type_ident] = ACTIONS(1593), - [sym_ct_type_ident] = ACTIONS(1593), - [sym_const_ident] = ACTIONS(1591), - [sym_builtin] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_static] = ACTIONS(1591), - [anon_sym_tlocal] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1593), - [anon_sym_fn] = ACTIONS(1591), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_const] = ACTIONS(1591), - [anon_sym_var] = ACTIONS(1591), - [anon_sym_return] = ACTIONS(1591), - [anon_sym_continue] = ACTIONS(1591), - [anon_sym_break] = ACTIONS(1591), - [anon_sym_defer] = ACTIONS(1591), - [anon_sym_assert] = ACTIONS(1591), - [anon_sym_nextcase] = ACTIONS(1591), - [anon_sym_switch] = ACTIONS(1591), - [anon_sym_AMP_AMP] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1591), - [anon_sym_foreach] = ACTIONS(1591), - [anon_sym_foreach_r] = ACTIONS(1591), - [anon_sym_while] = ACTIONS(1591), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_int] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1591), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_asm] = ACTIONS(1591), - [anon_sym_DOLLARassert] = ACTIONS(1591), - [anon_sym_DOLLARerror] = ACTIONS(1591), - [anon_sym_DOLLARecho] = ACTIONS(1591), - [anon_sym_DOLLARif] = ACTIONS(1591), - [anon_sym_DOLLARendif] = ACTIONS(1591), - [anon_sym_DOLLARswitch] = ACTIONS(1591), - [anon_sym_DOLLARfor] = ACTIONS(1591), - [anon_sym_DOLLARforeach] = ACTIONS(1591), - [anon_sym_DOLLARalignof] = ACTIONS(1591), - [anon_sym_DOLLARextnameof] = ACTIONS(1591), - [anon_sym_DOLLARnameof] = ACTIONS(1591), - [anon_sym_DOLLARoffsetof] = ACTIONS(1591), - [anon_sym_DOLLARqnameof] = ACTIONS(1591), - [anon_sym_DOLLAReval] = ACTIONS(1591), - [anon_sym_DOLLARdefined] = ACTIONS(1591), - [anon_sym_DOLLARsizeof] = ACTIONS(1591), - [anon_sym_DOLLARstringify] = ACTIONS(1591), - [anon_sym_DOLLARis_const] = ACTIONS(1591), - [anon_sym_DOLLARvaconst] = ACTIONS(1591), - [anon_sym_DOLLARvaarg] = ACTIONS(1591), - [anon_sym_DOLLARvaref] = ACTIONS(1591), - [anon_sym_DOLLARvaexpr] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [anon_sym_DOLLARvacount] = ACTIONS(1591), - [anon_sym_DOLLARfeature] = ACTIONS(1591), - [anon_sym_DOLLARand] = ACTIONS(1591), - [anon_sym_DOLLARor] = ACTIONS(1591), - [anon_sym_DOLLARassignable] = ACTIONS(1591), - [anon_sym_DOLLARembed] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1593), - [anon_sym_TILDE] = ACTIONS(1593), - [anon_sym_PLUS_PLUS] = ACTIONS(1593), - [anon_sym_DASH_DASH] = ACTIONS(1593), - [anon_sym_typeid] = ACTIONS(1591), - [anon_sym_LBRACE_PIPE] = ACTIONS(1593), - [anon_sym_void] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_ichar] = ACTIONS(1591), - [anon_sym_short] = ACTIONS(1591), - [anon_sym_ushort] = ACTIONS(1591), - [anon_sym_uint] = ACTIONS(1591), - [anon_sym_long] = ACTIONS(1591), - [anon_sym_ulong] = ACTIONS(1591), - [anon_sym_int128] = ACTIONS(1591), - [anon_sym_uint128] = ACTIONS(1591), - [anon_sym_float] = ACTIONS(1591), - [anon_sym_double] = ACTIONS(1591), - [anon_sym_float16] = ACTIONS(1591), - [anon_sym_bfloat16] = ACTIONS(1591), - [anon_sym_float128] = ACTIONS(1591), - [anon_sym_iptr] = ACTIONS(1591), - [anon_sym_uptr] = ACTIONS(1591), - [anon_sym_isz] = ACTIONS(1591), - [anon_sym_usz] = ACTIONS(1591), - [anon_sym_anyfault] = ACTIONS(1591), - [anon_sym_any] = ACTIONS(1591), - [anon_sym_DOLLARtypeof] = ACTIONS(1591), - [anon_sym_DOLLARtypefrom] = ACTIONS(1591), - [anon_sym_DOLLARvatype] = ACTIONS(1591), - [anon_sym_DOLLARevaltype] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1593), + [sym_ident] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_BQUOTE] = ACTIONS(1439), + [sym_bytes_literal] = ACTIONS(1439), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1437), + [sym_at_ident] = ACTIONS(1439), + [sym_hash_ident] = ACTIONS(1439), + [sym_type_ident] = ACTIONS(1439), + [sym_ct_type_ident] = ACTIONS(1439), + [sym_const_ident] = ACTIONS(1437), + [sym_builtin] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_tlocal] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_var] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_defer] = ACTIONS(1437), + [anon_sym_assert] = ACTIONS(1437), + [anon_sym_nextcase] = ACTIONS(1437), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_foreach] = ACTIONS(1437), + [anon_sym_foreach_r] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_int] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_asm] = ACTIONS(1437), + [anon_sym_DOLLARassert] = ACTIONS(1437), + [anon_sym_DOLLARerror] = ACTIONS(1437), + [anon_sym_DOLLARecho] = ACTIONS(1437), + [anon_sym_DOLLARif] = ACTIONS(1437), + [anon_sym_DOLLARswitch] = ACTIONS(1437), + [anon_sym_DOLLARfor] = ACTIONS(1437), + [anon_sym_DOLLARforeach] = ACTIONS(1437), + [anon_sym_DOLLARendforeach] = ACTIONS(1437), + [anon_sym_DOLLARalignof] = ACTIONS(1437), + [anon_sym_DOLLARextnameof] = ACTIONS(1437), + [anon_sym_DOLLARnameof] = ACTIONS(1437), + [anon_sym_DOLLARoffsetof] = ACTIONS(1437), + [anon_sym_DOLLARqnameof] = ACTIONS(1437), + [anon_sym_DOLLARvaconst] = ACTIONS(1437), + [anon_sym_DOLLARvaarg] = ACTIONS(1437), + [anon_sym_DOLLARvaref] = ACTIONS(1437), + [anon_sym_DOLLARvaexpr] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_DOLLARvacount] = ACTIONS(1437), + [anon_sym_DOLLAReval] = ACTIONS(1437), + [anon_sym_DOLLARis_const] = ACTIONS(1437), + [anon_sym_DOLLARsizeof] = ACTIONS(1437), + [anon_sym_DOLLARstringify] = ACTIONS(1437), + [anon_sym_DOLLARappend] = ACTIONS(1437), + [anon_sym_DOLLARconcat] = ACTIONS(1437), + [anon_sym_DOLLARdefined] = ACTIONS(1437), + [anon_sym_DOLLARembed] = ACTIONS(1437), + [anon_sym_DOLLARand] = ACTIONS(1437), + [anon_sym_DOLLARor] = ACTIONS(1437), + [anon_sym_DOLLARfeature] = ACTIONS(1437), + [anon_sym_DOLLARassignable] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_typeid] = ACTIONS(1437), + [anon_sym_LBRACE_PIPE] = ACTIONS(1439), + [anon_sym_void] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_ichar] = ACTIONS(1437), + [anon_sym_short] = ACTIONS(1437), + [anon_sym_ushort] = ACTIONS(1437), + [anon_sym_uint] = ACTIONS(1437), + [anon_sym_long] = ACTIONS(1437), + [anon_sym_ulong] = ACTIONS(1437), + [anon_sym_int128] = ACTIONS(1437), + [anon_sym_uint128] = ACTIONS(1437), + [anon_sym_float] = ACTIONS(1437), + [anon_sym_double] = ACTIONS(1437), + [anon_sym_float16] = ACTIONS(1437), + [anon_sym_bfloat16] = ACTIONS(1437), + [anon_sym_float128] = ACTIONS(1437), + [anon_sym_iptr] = ACTIONS(1437), + [anon_sym_uptr] = ACTIONS(1437), + [anon_sym_isz] = ACTIONS(1437), + [anon_sym_usz] = ACTIONS(1437), + [anon_sym_anyfault] = ACTIONS(1437), + [anon_sym_any] = ACTIONS(1437), + [anon_sym_DOLLARtypeof] = ACTIONS(1437), + [anon_sym_DOLLARtypefrom] = ACTIONS(1437), + [anon_sym_DOLLARevaltype] = ACTIONS(1437), + [anon_sym_DOLLARvatype] = ACTIONS(1437), + [sym_real_literal] = ACTIONS(1439), }, [655] = { [sym_line_comment] = STATE(655), [sym_doc_comment] = STATE(655), [sym_block_comment] = STATE(655), - [sym_ident] = ACTIONS(1583), - [sym_integer_literal] = ACTIONS(1585), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1585), - [anon_sym_BQUOTE] = ACTIONS(1585), - [sym_bytes_literal] = ACTIONS(1585), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1583), - [sym_at_ident] = ACTIONS(1585), - [sym_hash_ident] = ACTIONS(1585), - [sym_type_ident] = ACTIONS(1585), - [sym_ct_type_ident] = ACTIONS(1585), - [sym_const_ident] = ACTIONS(1583), - [sym_builtin] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_static] = ACTIONS(1583), - [anon_sym_tlocal] = ACTIONS(1583), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_fn] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_const] = ACTIONS(1583), - [anon_sym_var] = ACTIONS(1583), - [anon_sym_return] = ACTIONS(1583), - [anon_sym_continue] = ACTIONS(1583), - [anon_sym_break] = ACTIONS(1583), - [anon_sym_defer] = ACTIONS(1583), - [anon_sym_assert] = ACTIONS(1583), - [anon_sym_nextcase] = ACTIONS(1583), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1583), - [anon_sym_foreach] = ACTIONS(1583), - [anon_sym_foreach_r] = ACTIONS(1583), - [anon_sym_while] = ACTIONS(1583), - [anon_sym_do] = ACTIONS(1583), - [anon_sym_int] = ACTIONS(1583), - [anon_sym_PLUS] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_asm] = ACTIONS(1583), - [anon_sym_DOLLARassert] = ACTIONS(1583), - [anon_sym_DOLLARerror] = ACTIONS(1583), - [anon_sym_DOLLARecho] = ACTIONS(1583), - [anon_sym_DOLLARif] = ACTIONS(1583), - [anon_sym_DOLLARendif] = ACTIONS(1583), - [anon_sym_DOLLARswitch] = ACTIONS(1583), - [anon_sym_DOLLARfor] = ACTIONS(1583), - [anon_sym_DOLLARforeach] = ACTIONS(1583), - [anon_sym_DOLLARalignof] = ACTIONS(1583), - [anon_sym_DOLLARextnameof] = ACTIONS(1583), - [anon_sym_DOLLARnameof] = ACTIONS(1583), - [anon_sym_DOLLARoffsetof] = ACTIONS(1583), - [anon_sym_DOLLARqnameof] = ACTIONS(1583), - [anon_sym_DOLLAReval] = ACTIONS(1583), - [anon_sym_DOLLARdefined] = ACTIONS(1583), - [anon_sym_DOLLARsizeof] = ACTIONS(1583), - [anon_sym_DOLLARstringify] = ACTIONS(1583), - [anon_sym_DOLLARis_const] = ACTIONS(1583), - [anon_sym_DOLLARvaconst] = ACTIONS(1583), - [anon_sym_DOLLARvaarg] = ACTIONS(1583), - [anon_sym_DOLLARvaref] = ACTIONS(1583), - [anon_sym_DOLLARvaexpr] = ACTIONS(1583), - [anon_sym_true] = ACTIONS(1583), - [anon_sym_false] = ACTIONS(1583), - [anon_sym_null] = ACTIONS(1583), - [anon_sym_DOLLARvacount] = ACTIONS(1583), - [anon_sym_DOLLARfeature] = ACTIONS(1583), - [anon_sym_DOLLARand] = ACTIONS(1583), - [anon_sym_DOLLARor] = ACTIONS(1583), - [anon_sym_DOLLARassignable] = ACTIONS(1583), - [anon_sym_DOLLARembed] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1585), - [anon_sym_TILDE] = ACTIONS(1585), - [anon_sym_PLUS_PLUS] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1585), - [anon_sym_typeid] = ACTIONS(1583), - [anon_sym_LBRACE_PIPE] = ACTIONS(1585), - [anon_sym_void] = ACTIONS(1583), - [anon_sym_bool] = ACTIONS(1583), - [anon_sym_char] = ACTIONS(1583), - [anon_sym_ichar] = ACTIONS(1583), - [anon_sym_short] = ACTIONS(1583), - [anon_sym_ushort] = ACTIONS(1583), - [anon_sym_uint] = ACTIONS(1583), - [anon_sym_long] = ACTIONS(1583), - [anon_sym_ulong] = ACTIONS(1583), - [anon_sym_int128] = ACTIONS(1583), - [anon_sym_uint128] = ACTIONS(1583), - [anon_sym_float] = ACTIONS(1583), - [anon_sym_double] = ACTIONS(1583), - [anon_sym_float16] = ACTIONS(1583), - [anon_sym_bfloat16] = ACTIONS(1583), - [anon_sym_float128] = ACTIONS(1583), - [anon_sym_iptr] = ACTIONS(1583), - [anon_sym_uptr] = ACTIONS(1583), - [anon_sym_isz] = ACTIONS(1583), - [anon_sym_usz] = ACTIONS(1583), - [anon_sym_anyfault] = ACTIONS(1583), - [anon_sym_any] = ACTIONS(1583), - [anon_sym_DOLLARtypeof] = ACTIONS(1583), - [anon_sym_DOLLARtypefrom] = ACTIONS(1583), - [anon_sym_DOLLARvatype] = ACTIONS(1583), - [anon_sym_DOLLARevaltype] = ACTIONS(1583), - [sym_real_literal] = ACTIONS(1585), + [sym_ident] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_BQUOTE] = ACTIONS(1455), + [sym_bytes_literal] = ACTIONS(1455), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1453), + [sym_at_ident] = ACTIONS(1455), + [sym_hash_ident] = ACTIONS(1455), + [sym_type_ident] = ACTIONS(1455), + [sym_ct_type_ident] = ACTIONS(1455), + [sym_const_ident] = ACTIONS(1453), + [sym_builtin] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_tlocal] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_defer] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_nextcase] = ACTIONS(1453), + [anon_sym_switch] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_foreach] = ACTIONS(1453), + [anon_sym_foreach_r] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_asm] = ACTIONS(1453), + [anon_sym_DOLLARassert] = ACTIONS(1453), + [anon_sym_DOLLARerror] = ACTIONS(1453), + [anon_sym_DOLLARecho] = ACTIONS(1453), + [anon_sym_DOLLARif] = ACTIONS(1453), + [anon_sym_DOLLARswitch] = ACTIONS(1453), + [anon_sym_DOLLARfor] = ACTIONS(1453), + [anon_sym_DOLLARforeach] = ACTIONS(1453), + [anon_sym_DOLLARendforeach] = ACTIONS(1453), + [anon_sym_DOLLARalignof] = ACTIONS(1453), + [anon_sym_DOLLARextnameof] = ACTIONS(1453), + [anon_sym_DOLLARnameof] = ACTIONS(1453), + [anon_sym_DOLLARoffsetof] = ACTIONS(1453), + [anon_sym_DOLLARqnameof] = ACTIONS(1453), + [anon_sym_DOLLARvaconst] = ACTIONS(1453), + [anon_sym_DOLLARvaarg] = ACTIONS(1453), + [anon_sym_DOLLARvaref] = ACTIONS(1453), + [anon_sym_DOLLARvaexpr] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_DOLLARvacount] = ACTIONS(1453), + [anon_sym_DOLLAReval] = ACTIONS(1453), + [anon_sym_DOLLARis_const] = ACTIONS(1453), + [anon_sym_DOLLARsizeof] = ACTIONS(1453), + [anon_sym_DOLLARstringify] = ACTIONS(1453), + [anon_sym_DOLLARappend] = ACTIONS(1453), + [anon_sym_DOLLARconcat] = ACTIONS(1453), + [anon_sym_DOLLARdefined] = ACTIONS(1453), + [anon_sym_DOLLARembed] = ACTIONS(1453), + [anon_sym_DOLLARand] = ACTIONS(1453), + [anon_sym_DOLLARor] = ACTIONS(1453), + [anon_sym_DOLLARfeature] = ACTIONS(1453), + [anon_sym_DOLLARassignable] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_typeid] = ACTIONS(1453), + [anon_sym_LBRACE_PIPE] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1453), + [anon_sym_bool] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_ichar] = ACTIONS(1453), + [anon_sym_short] = ACTIONS(1453), + [anon_sym_ushort] = ACTIONS(1453), + [anon_sym_uint] = ACTIONS(1453), + [anon_sym_long] = ACTIONS(1453), + [anon_sym_ulong] = ACTIONS(1453), + [anon_sym_int128] = ACTIONS(1453), + [anon_sym_uint128] = ACTIONS(1453), + [anon_sym_float] = ACTIONS(1453), + [anon_sym_double] = ACTIONS(1453), + [anon_sym_float16] = ACTIONS(1453), + [anon_sym_bfloat16] = ACTIONS(1453), + [anon_sym_float128] = ACTIONS(1453), + [anon_sym_iptr] = ACTIONS(1453), + [anon_sym_uptr] = ACTIONS(1453), + [anon_sym_isz] = ACTIONS(1453), + [anon_sym_usz] = ACTIONS(1453), + [anon_sym_anyfault] = ACTIONS(1453), + [anon_sym_any] = ACTIONS(1453), + [anon_sym_DOLLARtypeof] = ACTIONS(1453), + [anon_sym_DOLLARtypefrom] = ACTIONS(1453), + [anon_sym_DOLLARevaltype] = ACTIONS(1453), + [anon_sym_DOLLARvatype] = ACTIONS(1453), + [sym_real_literal] = ACTIONS(1455), }, [656] = { [sym_line_comment] = STATE(656), [sym_doc_comment] = STATE(656), [sym_block_comment] = STATE(656), - [sym_ident] = ACTIONS(1595), - [sym_integer_literal] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(1597), - [anon_sym_DQUOTE] = ACTIONS(1597), - [anon_sym_BQUOTE] = ACTIONS(1597), - [sym_bytes_literal] = ACTIONS(1597), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1595), - [sym_at_ident] = ACTIONS(1597), - [sym_hash_ident] = ACTIONS(1597), - [sym_type_ident] = ACTIONS(1597), - [sym_ct_type_ident] = ACTIONS(1597), - [sym_const_ident] = ACTIONS(1595), - [sym_builtin] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_tlocal] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_fn] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_const] = ACTIONS(1595), - [anon_sym_var] = ACTIONS(1595), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_continue] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1595), - [anon_sym_defer] = ACTIONS(1595), - [anon_sym_assert] = ACTIONS(1595), - [anon_sym_nextcase] = ACTIONS(1595), - [anon_sym_switch] = ACTIONS(1595), - [anon_sym_AMP_AMP] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1595), - [anon_sym_for] = ACTIONS(1595), - [anon_sym_foreach] = ACTIONS(1595), - [anon_sym_foreach_r] = ACTIONS(1595), - [anon_sym_while] = ACTIONS(1595), - [anon_sym_do] = ACTIONS(1595), - [anon_sym_int] = ACTIONS(1595), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1597), - [anon_sym_asm] = ACTIONS(1595), - [anon_sym_DOLLARassert] = ACTIONS(1595), - [anon_sym_DOLLARerror] = ACTIONS(1595), - [anon_sym_DOLLARecho] = ACTIONS(1595), - [anon_sym_DOLLARif] = ACTIONS(1595), - [anon_sym_DOLLARswitch] = ACTIONS(1595), - [anon_sym_DOLLARfor] = ACTIONS(1595), - [anon_sym_DOLLARendfor] = ACTIONS(1595), - [anon_sym_DOLLARforeach] = ACTIONS(1595), - [anon_sym_DOLLARalignof] = ACTIONS(1595), - [anon_sym_DOLLARextnameof] = ACTIONS(1595), - [anon_sym_DOLLARnameof] = ACTIONS(1595), - [anon_sym_DOLLARoffsetof] = ACTIONS(1595), - [anon_sym_DOLLARqnameof] = ACTIONS(1595), - [anon_sym_DOLLAReval] = ACTIONS(1595), - [anon_sym_DOLLARdefined] = ACTIONS(1595), - [anon_sym_DOLLARsizeof] = ACTIONS(1595), - [anon_sym_DOLLARstringify] = ACTIONS(1595), - [anon_sym_DOLLARis_const] = ACTIONS(1595), - [anon_sym_DOLLARvaconst] = ACTIONS(1595), - [anon_sym_DOLLARvaarg] = ACTIONS(1595), - [anon_sym_DOLLARvaref] = ACTIONS(1595), - [anon_sym_DOLLARvaexpr] = ACTIONS(1595), - [anon_sym_true] = ACTIONS(1595), - [anon_sym_false] = ACTIONS(1595), - [anon_sym_null] = ACTIONS(1595), - [anon_sym_DOLLARvacount] = ACTIONS(1595), - [anon_sym_DOLLARfeature] = ACTIONS(1595), - [anon_sym_DOLLARand] = ACTIONS(1595), - [anon_sym_DOLLARor] = ACTIONS(1595), - [anon_sym_DOLLARassignable] = ACTIONS(1595), - [anon_sym_DOLLARembed] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1597), - [anon_sym_TILDE] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_DASH_DASH] = ACTIONS(1597), - [anon_sym_typeid] = ACTIONS(1595), - [anon_sym_LBRACE_PIPE] = ACTIONS(1597), - [anon_sym_void] = ACTIONS(1595), - [anon_sym_bool] = ACTIONS(1595), - [anon_sym_char] = ACTIONS(1595), - [anon_sym_ichar] = ACTIONS(1595), - [anon_sym_short] = ACTIONS(1595), - [anon_sym_ushort] = ACTIONS(1595), - [anon_sym_uint] = ACTIONS(1595), - [anon_sym_long] = ACTIONS(1595), - [anon_sym_ulong] = ACTIONS(1595), - [anon_sym_int128] = ACTIONS(1595), - [anon_sym_uint128] = ACTIONS(1595), - [anon_sym_float] = ACTIONS(1595), - [anon_sym_double] = ACTIONS(1595), - [anon_sym_float16] = ACTIONS(1595), - [anon_sym_bfloat16] = ACTIONS(1595), - [anon_sym_float128] = ACTIONS(1595), - [anon_sym_iptr] = ACTIONS(1595), - [anon_sym_uptr] = ACTIONS(1595), - [anon_sym_isz] = ACTIONS(1595), - [anon_sym_usz] = ACTIONS(1595), - [anon_sym_anyfault] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_DOLLARtypeof] = ACTIONS(1595), - [anon_sym_DOLLARtypefrom] = ACTIONS(1595), - [anon_sym_DOLLARvatype] = ACTIONS(1595), - [anon_sym_DOLLARevaltype] = ACTIONS(1595), - [sym_real_literal] = ACTIONS(1597), + [sym_ident] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_BQUOTE] = ACTIONS(1467), + [sym_bytes_literal] = ACTIONS(1467), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1465), + [sym_at_ident] = ACTIONS(1467), + [sym_hash_ident] = ACTIONS(1467), + [sym_type_ident] = ACTIONS(1467), + [sym_ct_type_ident] = ACTIONS(1467), + [sym_const_ident] = ACTIONS(1465), + [sym_builtin] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_tlocal] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_defer] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1465), + [anon_sym_nextcase] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_foreach] = ACTIONS(1465), + [anon_sym_foreach_r] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_int] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_asm] = ACTIONS(1465), + [anon_sym_DOLLARassert] = ACTIONS(1465), + [anon_sym_DOLLARerror] = ACTIONS(1465), + [anon_sym_DOLLARecho] = ACTIONS(1465), + [anon_sym_DOLLARif] = ACTIONS(1465), + [anon_sym_DOLLARswitch] = ACTIONS(1465), + [anon_sym_DOLLARfor] = ACTIONS(1465), + [anon_sym_DOLLARforeach] = ACTIONS(1465), + [anon_sym_DOLLARendforeach] = ACTIONS(1465), + [anon_sym_DOLLARalignof] = ACTIONS(1465), + [anon_sym_DOLLARextnameof] = ACTIONS(1465), + [anon_sym_DOLLARnameof] = ACTIONS(1465), + [anon_sym_DOLLARoffsetof] = ACTIONS(1465), + [anon_sym_DOLLARqnameof] = ACTIONS(1465), + [anon_sym_DOLLARvaconst] = ACTIONS(1465), + [anon_sym_DOLLARvaarg] = ACTIONS(1465), + [anon_sym_DOLLARvaref] = ACTIONS(1465), + [anon_sym_DOLLARvaexpr] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1465), + [anon_sym_DOLLARvacount] = ACTIONS(1465), + [anon_sym_DOLLAReval] = ACTIONS(1465), + [anon_sym_DOLLARis_const] = ACTIONS(1465), + [anon_sym_DOLLARsizeof] = ACTIONS(1465), + [anon_sym_DOLLARstringify] = ACTIONS(1465), + [anon_sym_DOLLARappend] = ACTIONS(1465), + [anon_sym_DOLLARconcat] = ACTIONS(1465), + [anon_sym_DOLLARdefined] = ACTIONS(1465), + [anon_sym_DOLLARembed] = ACTIONS(1465), + [anon_sym_DOLLARand] = ACTIONS(1465), + [anon_sym_DOLLARor] = ACTIONS(1465), + [anon_sym_DOLLARfeature] = ACTIONS(1465), + [anon_sym_DOLLARassignable] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_typeid] = ACTIONS(1465), + [anon_sym_LBRACE_PIPE] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_ichar] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [anon_sym_ushort] = ACTIONS(1465), + [anon_sym_uint] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_ulong] = ACTIONS(1465), + [anon_sym_int128] = ACTIONS(1465), + [anon_sym_uint128] = ACTIONS(1465), + [anon_sym_float] = ACTIONS(1465), + [anon_sym_double] = ACTIONS(1465), + [anon_sym_float16] = ACTIONS(1465), + [anon_sym_bfloat16] = ACTIONS(1465), + [anon_sym_float128] = ACTIONS(1465), + [anon_sym_iptr] = ACTIONS(1465), + [anon_sym_uptr] = ACTIONS(1465), + [anon_sym_isz] = ACTIONS(1465), + [anon_sym_usz] = ACTIONS(1465), + [anon_sym_anyfault] = ACTIONS(1465), + [anon_sym_any] = ACTIONS(1465), + [anon_sym_DOLLARtypeof] = ACTIONS(1465), + [anon_sym_DOLLARtypefrom] = ACTIONS(1465), + [anon_sym_DOLLARevaltype] = ACTIONS(1465), + [anon_sym_DOLLARvatype] = ACTIONS(1465), + [sym_real_literal] = ACTIONS(1467), }, [657] = { [sym_line_comment] = STATE(657), [sym_doc_comment] = STATE(657), [sym_block_comment] = STATE(657), - [sym_ident] = ACTIONS(1567), - [sym_integer_literal] = ACTIONS(1569), - [anon_sym_SQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [anon_sym_BQUOTE] = ACTIONS(1569), - [sym_bytes_literal] = ACTIONS(1569), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1567), - [sym_at_ident] = ACTIONS(1569), - [sym_hash_ident] = ACTIONS(1569), - [sym_type_ident] = ACTIONS(1569), - [sym_ct_type_ident] = ACTIONS(1569), - [sym_const_ident] = ACTIONS(1567), - [sym_builtin] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_AMP] = ACTIONS(1567), - [anon_sym_static] = ACTIONS(1567), - [anon_sym_tlocal] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1569), - [anon_sym_fn] = ACTIONS(1567), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_const] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(1567), - [anon_sym_return] = ACTIONS(1567), - [anon_sym_continue] = ACTIONS(1567), - [anon_sym_break] = ACTIONS(1567), - [anon_sym_defer] = ACTIONS(1567), - [anon_sym_assert] = ACTIONS(1567), - [anon_sym_nextcase] = ACTIONS(1567), - [anon_sym_switch] = ACTIONS(1567), - [anon_sym_AMP_AMP] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1567), - [anon_sym_for] = ACTIONS(1567), - [anon_sym_foreach] = ACTIONS(1567), - [anon_sym_foreach_r] = ACTIONS(1567), - [anon_sym_while] = ACTIONS(1567), - [anon_sym_do] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), - [anon_sym_STAR] = ACTIONS(1569), - [anon_sym_asm] = ACTIONS(1567), - [anon_sym_DOLLARassert] = ACTIONS(1567), - [anon_sym_DOLLARerror] = ACTIONS(1567), - [anon_sym_DOLLARecho] = ACTIONS(1567), - [anon_sym_DOLLARif] = ACTIONS(1567), - [anon_sym_DOLLARendif] = ACTIONS(1567), - [anon_sym_DOLLARswitch] = ACTIONS(1567), - [anon_sym_DOLLARfor] = ACTIONS(1567), - [anon_sym_DOLLARforeach] = ACTIONS(1567), - [anon_sym_DOLLARalignof] = ACTIONS(1567), - [anon_sym_DOLLARextnameof] = ACTIONS(1567), - [anon_sym_DOLLARnameof] = ACTIONS(1567), - [anon_sym_DOLLARoffsetof] = ACTIONS(1567), - [anon_sym_DOLLARqnameof] = ACTIONS(1567), - [anon_sym_DOLLAReval] = ACTIONS(1567), - [anon_sym_DOLLARdefined] = ACTIONS(1567), - [anon_sym_DOLLARsizeof] = ACTIONS(1567), - [anon_sym_DOLLARstringify] = ACTIONS(1567), - [anon_sym_DOLLARis_const] = ACTIONS(1567), - [anon_sym_DOLLARvaconst] = ACTIONS(1567), - [anon_sym_DOLLARvaarg] = ACTIONS(1567), - [anon_sym_DOLLARvaref] = ACTIONS(1567), - [anon_sym_DOLLARvaexpr] = ACTIONS(1567), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [anon_sym_null] = ACTIONS(1567), - [anon_sym_DOLLARvacount] = ACTIONS(1567), - [anon_sym_DOLLARfeature] = ACTIONS(1567), - [anon_sym_DOLLARand] = ACTIONS(1567), - [anon_sym_DOLLARor] = ACTIONS(1567), - [anon_sym_DOLLARassignable] = ACTIONS(1567), - [anon_sym_DOLLARembed] = ACTIONS(1567), - [anon_sym_BANG] = ACTIONS(1569), - [anon_sym_TILDE] = ACTIONS(1569), - [anon_sym_PLUS_PLUS] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1569), - [anon_sym_typeid] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_char] = ACTIONS(1567), - [anon_sym_ichar] = ACTIONS(1567), - [anon_sym_short] = ACTIONS(1567), - [anon_sym_ushort] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_long] = ACTIONS(1567), - [anon_sym_ulong] = ACTIONS(1567), - [anon_sym_int128] = ACTIONS(1567), - [anon_sym_uint128] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_double] = ACTIONS(1567), - [anon_sym_float16] = ACTIONS(1567), - [anon_sym_bfloat16] = ACTIONS(1567), - [anon_sym_float128] = ACTIONS(1567), - [anon_sym_iptr] = ACTIONS(1567), - [anon_sym_uptr] = ACTIONS(1567), - [anon_sym_isz] = ACTIONS(1567), - [anon_sym_usz] = ACTIONS(1567), - [anon_sym_anyfault] = ACTIONS(1567), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_DOLLARtypeof] = ACTIONS(1567), - [anon_sym_DOLLARtypefrom] = ACTIONS(1567), - [anon_sym_DOLLARvatype] = ACTIONS(1567), - [anon_sym_DOLLARevaltype] = ACTIONS(1567), - [sym_real_literal] = ACTIONS(1569), + [sym_ident] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1471), + [sym_bytes_literal] = ACTIONS(1471), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1469), + [sym_at_ident] = ACTIONS(1471), + [sym_hash_ident] = ACTIONS(1471), + [sym_type_ident] = ACTIONS(1471), + [sym_ct_type_ident] = ACTIONS(1471), + [sym_const_ident] = ACTIONS(1469), + [sym_builtin] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_tlocal] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_defer] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1469), + [anon_sym_nextcase] = ACTIONS(1469), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_foreach] = ACTIONS(1469), + [anon_sym_foreach_r] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_int] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1469), + [anon_sym_DOLLARassert] = ACTIONS(1469), + [anon_sym_DOLLARerror] = ACTIONS(1469), + [anon_sym_DOLLARecho] = ACTIONS(1469), + [anon_sym_DOLLARif] = ACTIONS(1469), + [anon_sym_DOLLARswitch] = ACTIONS(1469), + [anon_sym_DOLLARfor] = ACTIONS(1469), + [anon_sym_DOLLARforeach] = ACTIONS(1469), + [anon_sym_DOLLARendforeach] = ACTIONS(1469), + [anon_sym_DOLLARalignof] = ACTIONS(1469), + [anon_sym_DOLLARextnameof] = ACTIONS(1469), + [anon_sym_DOLLARnameof] = ACTIONS(1469), + [anon_sym_DOLLARoffsetof] = ACTIONS(1469), + [anon_sym_DOLLARqnameof] = ACTIONS(1469), + [anon_sym_DOLLARvaconst] = ACTIONS(1469), + [anon_sym_DOLLARvaarg] = ACTIONS(1469), + [anon_sym_DOLLARvaref] = ACTIONS(1469), + [anon_sym_DOLLARvaexpr] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_DOLLARvacount] = ACTIONS(1469), + [anon_sym_DOLLAReval] = ACTIONS(1469), + [anon_sym_DOLLARis_const] = ACTIONS(1469), + [anon_sym_DOLLARsizeof] = ACTIONS(1469), + [anon_sym_DOLLARstringify] = ACTIONS(1469), + [anon_sym_DOLLARappend] = ACTIONS(1469), + [anon_sym_DOLLARconcat] = ACTIONS(1469), + [anon_sym_DOLLARdefined] = ACTIONS(1469), + [anon_sym_DOLLARembed] = ACTIONS(1469), + [anon_sym_DOLLARand] = ACTIONS(1469), + [anon_sym_DOLLARor] = ACTIONS(1469), + [anon_sym_DOLLARfeature] = ACTIONS(1469), + [anon_sym_DOLLARassignable] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_typeid] = ACTIONS(1469), + [anon_sym_LBRACE_PIPE] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_ichar] = ACTIONS(1469), + [anon_sym_short] = ACTIONS(1469), + [anon_sym_ushort] = ACTIONS(1469), + [anon_sym_uint] = ACTIONS(1469), + [anon_sym_long] = ACTIONS(1469), + [anon_sym_ulong] = ACTIONS(1469), + [anon_sym_int128] = ACTIONS(1469), + [anon_sym_uint128] = ACTIONS(1469), + [anon_sym_float] = ACTIONS(1469), + [anon_sym_double] = ACTIONS(1469), + [anon_sym_float16] = ACTIONS(1469), + [anon_sym_bfloat16] = ACTIONS(1469), + [anon_sym_float128] = ACTIONS(1469), + [anon_sym_iptr] = ACTIONS(1469), + [anon_sym_uptr] = ACTIONS(1469), + [anon_sym_isz] = ACTIONS(1469), + [anon_sym_usz] = ACTIONS(1469), + [anon_sym_anyfault] = ACTIONS(1469), + [anon_sym_any] = ACTIONS(1469), + [anon_sym_DOLLARtypeof] = ACTIONS(1469), + [anon_sym_DOLLARtypefrom] = ACTIONS(1469), + [anon_sym_DOLLARevaltype] = ACTIONS(1469), + [anon_sym_DOLLARvatype] = ACTIONS(1469), + [sym_real_literal] = ACTIONS(1471), }, [658] = { [sym_line_comment] = STATE(658), [sym_doc_comment] = STATE(658), [sym_block_comment] = STATE(658), - [sym_ident] = ACTIONS(1559), - [sym_integer_literal] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_bytes_literal] = ACTIONS(1561), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1559), - [sym_at_ident] = ACTIONS(1561), - [sym_hash_ident] = ACTIONS(1561), - [sym_type_ident] = ACTIONS(1561), - [sym_ct_type_ident] = ACTIONS(1561), - [sym_const_ident] = ACTIONS(1559), - [sym_builtin] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_tlocal] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_fn] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [anon_sym_var] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_defer] = ACTIONS(1559), - [anon_sym_assert] = ACTIONS(1559), - [anon_sym_nextcase] = ACTIONS(1559), - [anon_sym_switch] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_foreach] = ACTIONS(1559), - [anon_sym_foreach_r] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_int] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_STAR] = ACTIONS(1561), - [anon_sym_asm] = ACTIONS(1559), - [anon_sym_DOLLARassert] = ACTIONS(1559), - [anon_sym_DOLLARerror] = ACTIONS(1559), - [anon_sym_DOLLARecho] = ACTIONS(1559), - [anon_sym_DOLLARif] = ACTIONS(1559), - [anon_sym_DOLLARendif] = ACTIONS(1559), - [anon_sym_DOLLARswitch] = ACTIONS(1559), - [anon_sym_DOLLARfor] = ACTIONS(1559), - [anon_sym_DOLLARforeach] = ACTIONS(1559), - [anon_sym_DOLLARalignof] = ACTIONS(1559), - [anon_sym_DOLLARextnameof] = ACTIONS(1559), - [anon_sym_DOLLARnameof] = ACTIONS(1559), - [anon_sym_DOLLARoffsetof] = ACTIONS(1559), - [anon_sym_DOLLARqnameof] = ACTIONS(1559), - [anon_sym_DOLLAReval] = ACTIONS(1559), - [anon_sym_DOLLARdefined] = ACTIONS(1559), - [anon_sym_DOLLARsizeof] = ACTIONS(1559), - [anon_sym_DOLLARstringify] = ACTIONS(1559), - [anon_sym_DOLLARis_const] = ACTIONS(1559), - [anon_sym_DOLLARvaconst] = ACTIONS(1559), - [anon_sym_DOLLARvaarg] = ACTIONS(1559), - [anon_sym_DOLLARvaref] = ACTIONS(1559), - [anon_sym_DOLLARvaexpr] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1559), - [anon_sym_false] = ACTIONS(1559), - [anon_sym_null] = ACTIONS(1559), - [anon_sym_DOLLARvacount] = ACTIONS(1559), - [anon_sym_DOLLARfeature] = ACTIONS(1559), - [anon_sym_DOLLARand] = ACTIONS(1559), - [anon_sym_DOLLARor] = ACTIONS(1559), - [anon_sym_DOLLARassignable] = ACTIONS(1559), - [anon_sym_DOLLARembed] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1561), - [anon_sym_TILDE] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_typeid] = ACTIONS(1559), - [anon_sym_LBRACE_PIPE] = ACTIONS(1561), - [anon_sym_void] = ACTIONS(1559), - [anon_sym_bool] = ACTIONS(1559), - [anon_sym_char] = ACTIONS(1559), - [anon_sym_ichar] = ACTIONS(1559), - [anon_sym_short] = ACTIONS(1559), - [anon_sym_ushort] = ACTIONS(1559), - [anon_sym_uint] = ACTIONS(1559), - [anon_sym_long] = ACTIONS(1559), - [anon_sym_ulong] = ACTIONS(1559), - [anon_sym_int128] = ACTIONS(1559), - [anon_sym_uint128] = ACTIONS(1559), - [anon_sym_float] = ACTIONS(1559), - [anon_sym_double] = ACTIONS(1559), - [anon_sym_float16] = ACTIONS(1559), - [anon_sym_bfloat16] = ACTIONS(1559), - [anon_sym_float128] = ACTIONS(1559), - [anon_sym_iptr] = ACTIONS(1559), - [anon_sym_uptr] = ACTIONS(1559), - [anon_sym_isz] = ACTIONS(1559), - [anon_sym_usz] = ACTIONS(1559), - [anon_sym_anyfault] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_DOLLARtypeof] = ACTIONS(1559), - [anon_sym_DOLLARtypefrom] = ACTIONS(1559), - [anon_sym_DOLLARvatype] = ACTIONS(1559), - [anon_sym_DOLLARevaltype] = ACTIONS(1559), - [sym_real_literal] = ACTIONS(1561), + [sym_ident] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1511), + [anon_sym_BQUOTE] = ACTIONS(1511), + [sym_bytes_literal] = ACTIONS(1511), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1509), + [sym_at_ident] = ACTIONS(1511), + [sym_hash_ident] = ACTIONS(1511), + [sym_type_ident] = ACTIONS(1511), + [sym_ct_type_ident] = ACTIONS(1511), + [sym_const_ident] = ACTIONS(1509), + [sym_builtin] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_tlocal] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_fn] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_defer] = ACTIONS(1509), + [anon_sym_assert] = ACTIONS(1509), + [anon_sym_nextcase] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_foreach] = ACTIONS(1509), + [anon_sym_foreach_r] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_int] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_asm] = ACTIONS(1509), + [anon_sym_DOLLARassert] = ACTIONS(1509), + [anon_sym_DOLLARerror] = ACTIONS(1509), + [anon_sym_DOLLARecho] = ACTIONS(1509), + [anon_sym_DOLLARif] = ACTIONS(1509), + [anon_sym_DOLLARswitch] = ACTIONS(1509), + [anon_sym_DOLLARfor] = ACTIONS(1509), + [anon_sym_DOLLARforeach] = ACTIONS(1509), + [anon_sym_DOLLARendforeach] = ACTIONS(1509), + [anon_sym_DOLLARalignof] = ACTIONS(1509), + [anon_sym_DOLLARextnameof] = ACTIONS(1509), + [anon_sym_DOLLARnameof] = ACTIONS(1509), + [anon_sym_DOLLARoffsetof] = ACTIONS(1509), + [anon_sym_DOLLARqnameof] = ACTIONS(1509), + [anon_sym_DOLLARvaconst] = ACTIONS(1509), + [anon_sym_DOLLARvaarg] = ACTIONS(1509), + [anon_sym_DOLLARvaref] = ACTIONS(1509), + [anon_sym_DOLLARvaexpr] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_DOLLARvacount] = ACTIONS(1509), + [anon_sym_DOLLAReval] = ACTIONS(1509), + [anon_sym_DOLLARis_const] = ACTIONS(1509), + [anon_sym_DOLLARsizeof] = ACTIONS(1509), + [anon_sym_DOLLARstringify] = ACTIONS(1509), + [anon_sym_DOLLARappend] = ACTIONS(1509), + [anon_sym_DOLLARconcat] = ACTIONS(1509), + [anon_sym_DOLLARdefined] = ACTIONS(1509), + [anon_sym_DOLLARembed] = ACTIONS(1509), + [anon_sym_DOLLARand] = ACTIONS(1509), + [anon_sym_DOLLARor] = ACTIONS(1509), + [anon_sym_DOLLARfeature] = ACTIONS(1509), + [anon_sym_DOLLARassignable] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_typeid] = ACTIONS(1509), + [anon_sym_LBRACE_PIPE] = ACTIONS(1511), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_ichar] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [anon_sym_ushort] = ACTIONS(1509), + [anon_sym_uint] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_ulong] = ACTIONS(1509), + [anon_sym_int128] = ACTIONS(1509), + [anon_sym_uint128] = ACTIONS(1509), + [anon_sym_float] = ACTIONS(1509), + [anon_sym_double] = ACTIONS(1509), + [anon_sym_float16] = ACTIONS(1509), + [anon_sym_bfloat16] = ACTIONS(1509), + [anon_sym_float128] = ACTIONS(1509), + [anon_sym_iptr] = ACTIONS(1509), + [anon_sym_uptr] = ACTIONS(1509), + [anon_sym_isz] = ACTIONS(1509), + [anon_sym_usz] = ACTIONS(1509), + [anon_sym_anyfault] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_DOLLARtypeof] = ACTIONS(1509), + [anon_sym_DOLLARtypefrom] = ACTIONS(1509), + [anon_sym_DOLLARevaltype] = ACTIONS(1509), + [anon_sym_DOLLARvatype] = ACTIONS(1509), + [sym_real_literal] = ACTIONS(1511), }, [659] = { [sym_line_comment] = STATE(659), [sym_doc_comment] = STATE(659), [sym_block_comment] = STATE(659), - [sym_ident] = ACTIONS(1555), - [sym_integer_literal] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_BQUOTE] = ACTIONS(1557), - [sym_bytes_literal] = ACTIONS(1557), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1555), - [sym_at_ident] = ACTIONS(1557), - [sym_hash_ident] = ACTIONS(1557), - [sym_type_ident] = ACTIONS(1557), - [sym_ct_type_ident] = ACTIONS(1557), - [sym_const_ident] = ACTIONS(1555), - [sym_builtin] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_AMP] = ACTIONS(1555), - [anon_sym_static] = ACTIONS(1555), - [anon_sym_tlocal] = ACTIONS(1555), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_const] = ACTIONS(1555), - [anon_sym_var] = ACTIONS(1555), - [anon_sym_return] = ACTIONS(1555), - [anon_sym_continue] = ACTIONS(1555), - [anon_sym_break] = ACTIONS(1555), - [anon_sym_defer] = ACTIONS(1555), - [anon_sym_assert] = ACTIONS(1555), - [anon_sym_nextcase] = ACTIONS(1555), - [anon_sym_switch] = ACTIONS(1555), - [anon_sym_AMP_AMP] = ACTIONS(1557), - [anon_sym_if] = ACTIONS(1555), - [anon_sym_for] = ACTIONS(1555), - [anon_sym_foreach] = ACTIONS(1555), - [anon_sym_foreach_r] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_do] = ACTIONS(1555), - [anon_sym_int] = ACTIONS(1555), - [anon_sym_PLUS] = ACTIONS(1555), - [anon_sym_DASH] = ACTIONS(1555), - [anon_sym_STAR] = ACTIONS(1557), - [anon_sym_asm] = ACTIONS(1555), - [anon_sym_DOLLARassert] = ACTIONS(1555), - [anon_sym_DOLLARerror] = ACTIONS(1555), - [anon_sym_DOLLARecho] = ACTIONS(1555), - [anon_sym_DOLLARif] = ACTIONS(1555), - [anon_sym_DOLLARendif] = ACTIONS(1555), - [anon_sym_DOLLARswitch] = ACTIONS(1555), - [anon_sym_DOLLARfor] = ACTIONS(1555), - [anon_sym_DOLLARforeach] = ACTIONS(1555), - [anon_sym_DOLLARalignof] = ACTIONS(1555), - [anon_sym_DOLLARextnameof] = ACTIONS(1555), - [anon_sym_DOLLARnameof] = ACTIONS(1555), - [anon_sym_DOLLARoffsetof] = ACTIONS(1555), - [anon_sym_DOLLARqnameof] = ACTIONS(1555), - [anon_sym_DOLLAReval] = ACTIONS(1555), - [anon_sym_DOLLARdefined] = ACTIONS(1555), - [anon_sym_DOLLARsizeof] = ACTIONS(1555), - [anon_sym_DOLLARstringify] = ACTIONS(1555), - [anon_sym_DOLLARis_const] = ACTIONS(1555), - [anon_sym_DOLLARvaconst] = ACTIONS(1555), - [anon_sym_DOLLARvaarg] = ACTIONS(1555), - [anon_sym_DOLLARvaref] = ACTIONS(1555), - [anon_sym_DOLLARvaexpr] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(1555), - [anon_sym_false] = ACTIONS(1555), - [anon_sym_null] = ACTIONS(1555), - [anon_sym_DOLLARvacount] = ACTIONS(1555), - [anon_sym_DOLLARfeature] = ACTIONS(1555), - [anon_sym_DOLLARand] = ACTIONS(1555), - [anon_sym_DOLLARor] = ACTIONS(1555), - [anon_sym_DOLLARassignable] = ACTIONS(1555), - [anon_sym_DOLLARembed] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1557), - [anon_sym_TILDE] = ACTIONS(1557), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [anon_sym_typeid] = ACTIONS(1555), - [anon_sym_LBRACE_PIPE] = ACTIONS(1557), - [anon_sym_void] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [anon_sym_ichar] = ACTIONS(1555), - [anon_sym_short] = ACTIONS(1555), - [anon_sym_ushort] = ACTIONS(1555), - [anon_sym_uint] = ACTIONS(1555), - [anon_sym_long] = ACTIONS(1555), - [anon_sym_ulong] = ACTIONS(1555), - [anon_sym_int128] = ACTIONS(1555), - [anon_sym_uint128] = ACTIONS(1555), - [anon_sym_float] = ACTIONS(1555), - [anon_sym_double] = ACTIONS(1555), - [anon_sym_float16] = ACTIONS(1555), - [anon_sym_bfloat16] = ACTIONS(1555), - [anon_sym_float128] = ACTIONS(1555), - [anon_sym_iptr] = ACTIONS(1555), - [anon_sym_uptr] = ACTIONS(1555), - [anon_sym_isz] = ACTIONS(1555), - [anon_sym_usz] = ACTIONS(1555), - [anon_sym_anyfault] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1555), - [anon_sym_DOLLARtypeof] = ACTIONS(1555), - [anon_sym_DOLLARtypefrom] = ACTIONS(1555), - [anon_sym_DOLLARvatype] = ACTIONS(1555), - [anon_sym_DOLLARevaltype] = ACTIONS(1555), - [sym_real_literal] = ACTIONS(1557), + [sym_ident] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_bytes_literal] = ACTIONS(1515), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1513), + [sym_at_ident] = ACTIONS(1515), + [sym_hash_ident] = ACTIONS(1515), + [sym_type_ident] = ACTIONS(1515), + [sym_ct_type_ident] = ACTIONS(1515), + [sym_const_ident] = ACTIONS(1513), + [sym_builtin] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_tlocal] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_var] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_defer] = ACTIONS(1513), + [anon_sym_assert] = ACTIONS(1513), + [anon_sym_nextcase] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_foreach] = ACTIONS(1513), + [anon_sym_foreach_r] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_int] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_asm] = ACTIONS(1513), + [anon_sym_DOLLARassert] = ACTIONS(1513), + [anon_sym_DOLLARerror] = ACTIONS(1513), + [anon_sym_DOLLARecho] = ACTIONS(1513), + [anon_sym_DOLLARif] = ACTIONS(1513), + [anon_sym_DOLLARswitch] = ACTIONS(1513), + [anon_sym_DOLLARfor] = ACTIONS(1513), + [anon_sym_DOLLARforeach] = ACTIONS(1513), + [anon_sym_DOLLARendforeach] = ACTIONS(1513), + [anon_sym_DOLLARalignof] = ACTIONS(1513), + [anon_sym_DOLLARextnameof] = ACTIONS(1513), + [anon_sym_DOLLARnameof] = ACTIONS(1513), + [anon_sym_DOLLARoffsetof] = ACTIONS(1513), + [anon_sym_DOLLARqnameof] = ACTIONS(1513), + [anon_sym_DOLLARvaconst] = ACTIONS(1513), + [anon_sym_DOLLARvaarg] = ACTIONS(1513), + [anon_sym_DOLLARvaref] = ACTIONS(1513), + [anon_sym_DOLLARvaexpr] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_DOLLARvacount] = ACTIONS(1513), + [anon_sym_DOLLAReval] = ACTIONS(1513), + [anon_sym_DOLLARis_const] = ACTIONS(1513), + [anon_sym_DOLLARsizeof] = ACTIONS(1513), + [anon_sym_DOLLARstringify] = ACTIONS(1513), + [anon_sym_DOLLARappend] = ACTIONS(1513), + [anon_sym_DOLLARconcat] = ACTIONS(1513), + [anon_sym_DOLLARdefined] = ACTIONS(1513), + [anon_sym_DOLLARembed] = ACTIONS(1513), + [anon_sym_DOLLARand] = ACTIONS(1513), + [anon_sym_DOLLARor] = ACTIONS(1513), + [anon_sym_DOLLARfeature] = ACTIONS(1513), + [anon_sym_DOLLARassignable] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_typeid] = ACTIONS(1513), + [anon_sym_LBRACE_PIPE] = ACTIONS(1515), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_ichar] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_ushort] = ACTIONS(1513), + [anon_sym_uint] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_ulong] = ACTIONS(1513), + [anon_sym_int128] = ACTIONS(1513), + [anon_sym_uint128] = ACTIONS(1513), + [anon_sym_float] = ACTIONS(1513), + [anon_sym_double] = ACTIONS(1513), + [anon_sym_float16] = ACTIONS(1513), + [anon_sym_bfloat16] = ACTIONS(1513), + [anon_sym_float128] = ACTIONS(1513), + [anon_sym_iptr] = ACTIONS(1513), + [anon_sym_uptr] = ACTIONS(1513), + [anon_sym_isz] = ACTIONS(1513), + [anon_sym_usz] = ACTIONS(1513), + [anon_sym_anyfault] = ACTIONS(1513), + [anon_sym_any] = ACTIONS(1513), + [anon_sym_DOLLARtypeof] = ACTIONS(1513), + [anon_sym_DOLLARtypefrom] = ACTIONS(1513), + [anon_sym_DOLLARevaltype] = ACTIONS(1513), + [anon_sym_DOLLARvatype] = ACTIONS(1513), + [sym_real_literal] = ACTIONS(1515), }, [660] = { [sym_line_comment] = STATE(660), [sym_doc_comment] = STATE(660), [sym_block_comment] = STATE(660), - [sym_ident] = ACTIONS(1365), - [sym_integer_literal] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1367), - [sym_bytes_literal] = ACTIONS(1367), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1365), - [sym_at_ident] = ACTIONS(1367), - [sym_hash_ident] = ACTIONS(1367), - [sym_type_ident] = ACTIONS(1367), - [sym_ct_type_ident] = ACTIONS(1367), - [sym_const_ident] = ACTIONS(1365), - [sym_builtin] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_tlocal] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_fn] = ACTIONS(1365), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_var] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_defer] = ACTIONS(1365), - [anon_sym_assert] = ACTIONS(1365), - [anon_sym_nextcase] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_foreach] = ACTIONS(1365), - [anon_sym_foreach_r] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_do] = ACTIONS(1365), - [anon_sym_int] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_asm] = ACTIONS(1365), - [anon_sym_DOLLARassert] = ACTIONS(1365), - [anon_sym_DOLLARerror] = ACTIONS(1365), - [anon_sym_DOLLARecho] = ACTIONS(1365), - [anon_sym_DOLLARif] = ACTIONS(1365), - [anon_sym_DOLLARendif] = ACTIONS(1365), - [anon_sym_DOLLARswitch] = ACTIONS(1365), - [anon_sym_DOLLARfor] = ACTIONS(1365), - [anon_sym_DOLLARforeach] = ACTIONS(1365), - [anon_sym_DOLLARalignof] = ACTIONS(1365), - [anon_sym_DOLLARextnameof] = ACTIONS(1365), - [anon_sym_DOLLARnameof] = ACTIONS(1365), - [anon_sym_DOLLARoffsetof] = ACTIONS(1365), - [anon_sym_DOLLARqnameof] = ACTIONS(1365), - [anon_sym_DOLLAReval] = ACTIONS(1365), - [anon_sym_DOLLARdefined] = ACTIONS(1365), - [anon_sym_DOLLARsizeof] = ACTIONS(1365), - [anon_sym_DOLLARstringify] = ACTIONS(1365), - [anon_sym_DOLLARis_const] = ACTIONS(1365), - [anon_sym_DOLLARvaconst] = ACTIONS(1365), - [anon_sym_DOLLARvaarg] = ACTIONS(1365), - [anon_sym_DOLLARvaref] = ACTIONS(1365), - [anon_sym_DOLLARvaexpr] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1365), - [anon_sym_false] = ACTIONS(1365), - [anon_sym_null] = ACTIONS(1365), - [anon_sym_DOLLARvacount] = ACTIONS(1365), - [anon_sym_DOLLARfeature] = ACTIONS(1365), - [anon_sym_DOLLARand] = ACTIONS(1365), - [anon_sym_DOLLARor] = ACTIONS(1365), - [anon_sym_DOLLARassignable] = ACTIONS(1365), - [anon_sym_DOLLARembed] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_typeid] = ACTIONS(1365), - [anon_sym_LBRACE_PIPE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1365), - [anon_sym_bool] = ACTIONS(1365), - [anon_sym_char] = ACTIONS(1365), - [anon_sym_ichar] = ACTIONS(1365), - [anon_sym_short] = ACTIONS(1365), - [anon_sym_ushort] = ACTIONS(1365), - [anon_sym_uint] = ACTIONS(1365), - [anon_sym_long] = ACTIONS(1365), - [anon_sym_ulong] = ACTIONS(1365), - [anon_sym_int128] = ACTIONS(1365), - [anon_sym_uint128] = ACTIONS(1365), - [anon_sym_float] = ACTIONS(1365), - [anon_sym_double] = ACTIONS(1365), - [anon_sym_float16] = ACTIONS(1365), - [anon_sym_bfloat16] = ACTIONS(1365), - [anon_sym_float128] = ACTIONS(1365), - [anon_sym_iptr] = ACTIONS(1365), - [anon_sym_uptr] = ACTIONS(1365), - [anon_sym_isz] = ACTIONS(1365), - [anon_sym_usz] = ACTIONS(1365), - [anon_sym_anyfault] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1365), - [anon_sym_DOLLARtypeof] = ACTIONS(1365), - [anon_sym_DOLLARtypefrom] = ACTIONS(1365), - [anon_sym_DOLLARvatype] = ACTIONS(1365), - [anon_sym_DOLLARevaltype] = ACTIONS(1365), - [sym_real_literal] = ACTIONS(1367), + [sym_ident] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [anon_sym_BQUOTE] = ACTIONS(1587), + [sym_bytes_literal] = ACTIONS(1587), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1585), + [sym_at_ident] = ACTIONS(1587), + [sym_hash_ident] = ACTIONS(1587), + [sym_type_ident] = ACTIONS(1587), + [sym_ct_type_ident] = ACTIONS(1587), + [sym_const_ident] = ACTIONS(1585), + [sym_builtin] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_tlocal] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_fn] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_var] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_defer] = ACTIONS(1585), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_nextcase] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_foreach] = ACTIONS(1585), + [anon_sym_foreach_r] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_int] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_asm] = ACTIONS(1585), + [anon_sym_DOLLARassert] = ACTIONS(1585), + [anon_sym_DOLLARerror] = ACTIONS(1585), + [anon_sym_DOLLARecho] = ACTIONS(1585), + [anon_sym_DOLLARif] = ACTIONS(1585), + [anon_sym_DOLLARswitch] = ACTIONS(1585), + [anon_sym_DOLLARfor] = ACTIONS(1585), + [anon_sym_DOLLARforeach] = ACTIONS(1585), + [anon_sym_DOLLARendforeach] = ACTIONS(1585), + [anon_sym_DOLLARalignof] = ACTIONS(1585), + [anon_sym_DOLLARextnameof] = ACTIONS(1585), + [anon_sym_DOLLARnameof] = ACTIONS(1585), + [anon_sym_DOLLARoffsetof] = ACTIONS(1585), + [anon_sym_DOLLARqnameof] = ACTIONS(1585), + [anon_sym_DOLLARvaconst] = ACTIONS(1585), + [anon_sym_DOLLARvaarg] = ACTIONS(1585), + [anon_sym_DOLLARvaref] = ACTIONS(1585), + [anon_sym_DOLLARvaexpr] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_DOLLARvacount] = ACTIONS(1585), + [anon_sym_DOLLAReval] = ACTIONS(1585), + [anon_sym_DOLLARis_const] = ACTIONS(1585), + [anon_sym_DOLLARsizeof] = ACTIONS(1585), + [anon_sym_DOLLARstringify] = ACTIONS(1585), + [anon_sym_DOLLARappend] = ACTIONS(1585), + [anon_sym_DOLLARconcat] = ACTIONS(1585), + [anon_sym_DOLLARdefined] = ACTIONS(1585), + [anon_sym_DOLLARembed] = ACTIONS(1585), + [anon_sym_DOLLARand] = ACTIONS(1585), + [anon_sym_DOLLARor] = ACTIONS(1585), + [anon_sym_DOLLARfeature] = ACTIONS(1585), + [anon_sym_DOLLARassignable] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_typeid] = ACTIONS(1585), + [anon_sym_LBRACE_PIPE] = ACTIONS(1587), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_ichar] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [anon_sym_ushort] = ACTIONS(1585), + [anon_sym_uint] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_ulong] = ACTIONS(1585), + [anon_sym_int128] = ACTIONS(1585), + [anon_sym_uint128] = ACTIONS(1585), + [anon_sym_float] = ACTIONS(1585), + [anon_sym_double] = ACTIONS(1585), + [anon_sym_float16] = ACTIONS(1585), + [anon_sym_bfloat16] = ACTIONS(1585), + [anon_sym_float128] = ACTIONS(1585), + [anon_sym_iptr] = ACTIONS(1585), + [anon_sym_uptr] = ACTIONS(1585), + [anon_sym_isz] = ACTIONS(1585), + [anon_sym_usz] = ACTIONS(1585), + [anon_sym_anyfault] = ACTIONS(1585), + [anon_sym_any] = ACTIONS(1585), + [anon_sym_DOLLARtypeof] = ACTIONS(1585), + [anon_sym_DOLLARtypefrom] = ACTIONS(1585), + [anon_sym_DOLLARevaltype] = ACTIONS(1585), + [anon_sym_DOLLARvatype] = ACTIONS(1585), + [sym_real_literal] = ACTIONS(1587), }, [661] = { [sym_line_comment] = STATE(661), [sym_doc_comment] = STATE(661), [sym_block_comment] = STATE(661), - [sym_ident] = ACTIONS(1539), - [sym_integer_literal] = ACTIONS(1541), - [anon_sym_SQUOTE] = ACTIONS(1541), - [anon_sym_DQUOTE] = ACTIONS(1541), - [anon_sym_BQUOTE] = ACTIONS(1541), - [sym_bytes_literal] = ACTIONS(1541), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1539), - [sym_at_ident] = ACTIONS(1541), - [sym_hash_ident] = ACTIONS(1541), - [sym_type_ident] = ACTIONS(1541), - [sym_ct_type_ident] = ACTIONS(1541), - [sym_const_ident] = ACTIONS(1539), - [sym_builtin] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1539), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_tlocal] = ACTIONS(1539), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_fn] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_defer] = ACTIONS(1539), - [anon_sym_assert] = ACTIONS(1539), - [anon_sym_nextcase] = ACTIONS(1539), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_AMP_AMP] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_foreach] = ACTIONS(1539), - [anon_sym_foreach_r] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_int] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1539), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_asm] = ACTIONS(1539), - [anon_sym_DOLLARassert] = ACTIONS(1539), - [anon_sym_DOLLARerror] = ACTIONS(1539), - [anon_sym_DOLLARecho] = ACTIONS(1539), - [anon_sym_DOLLARif] = ACTIONS(1539), - [anon_sym_DOLLARendif] = ACTIONS(1539), - [anon_sym_DOLLARswitch] = ACTIONS(1539), - [anon_sym_DOLLARfor] = ACTIONS(1539), - [anon_sym_DOLLARforeach] = ACTIONS(1539), - [anon_sym_DOLLARalignof] = ACTIONS(1539), - [anon_sym_DOLLARextnameof] = ACTIONS(1539), - [anon_sym_DOLLARnameof] = ACTIONS(1539), - [anon_sym_DOLLARoffsetof] = ACTIONS(1539), - [anon_sym_DOLLARqnameof] = ACTIONS(1539), - [anon_sym_DOLLAReval] = ACTIONS(1539), - [anon_sym_DOLLARdefined] = ACTIONS(1539), - [anon_sym_DOLLARsizeof] = ACTIONS(1539), - [anon_sym_DOLLARstringify] = ACTIONS(1539), - [anon_sym_DOLLARis_const] = ACTIONS(1539), - [anon_sym_DOLLARvaconst] = ACTIONS(1539), - [anon_sym_DOLLARvaarg] = ACTIONS(1539), - [anon_sym_DOLLARvaref] = ACTIONS(1539), - [anon_sym_DOLLARvaexpr] = ACTIONS(1539), - [anon_sym_true] = ACTIONS(1539), - [anon_sym_false] = ACTIONS(1539), - [anon_sym_null] = ACTIONS(1539), - [anon_sym_DOLLARvacount] = ACTIONS(1539), - [anon_sym_DOLLARfeature] = ACTIONS(1539), - [anon_sym_DOLLARand] = ACTIONS(1539), - [anon_sym_DOLLARor] = ACTIONS(1539), - [anon_sym_DOLLARassignable] = ACTIONS(1539), - [anon_sym_DOLLARembed] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1541), - [anon_sym_DASH_DASH] = ACTIONS(1541), - [anon_sym_typeid] = ACTIONS(1539), - [anon_sym_LBRACE_PIPE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1539), - [anon_sym_bool] = ACTIONS(1539), - [anon_sym_char] = ACTIONS(1539), - [anon_sym_ichar] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [anon_sym_ushort] = ACTIONS(1539), - [anon_sym_uint] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_ulong] = ACTIONS(1539), - [anon_sym_int128] = ACTIONS(1539), - [anon_sym_uint128] = ACTIONS(1539), - [anon_sym_float] = ACTIONS(1539), - [anon_sym_double] = ACTIONS(1539), - [anon_sym_float16] = ACTIONS(1539), - [anon_sym_bfloat16] = ACTIONS(1539), - [anon_sym_float128] = ACTIONS(1539), - [anon_sym_iptr] = ACTIONS(1539), - [anon_sym_uptr] = ACTIONS(1539), - [anon_sym_isz] = ACTIONS(1539), - [anon_sym_usz] = ACTIONS(1539), - [anon_sym_anyfault] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_DOLLARtypeof] = ACTIONS(1539), - [anon_sym_DOLLARtypefrom] = ACTIONS(1539), - [anon_sym_DOLLARvatype] = ACTIONS(1539), - [anon_sym_DOLLARevaltype] = ACTIONS(1539), - [sym_real_literal] = ACTIONS(1541), + [sym_ident] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [anon_sym_BQUOTE] = ACTIONS(1591), + [sym_bytes_literal] = ACTIONS(1591), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1589), + [sym_at_ident] = ACTIONS(1591), + [sym_hash_ident] = ACTIONS(1591), + [sym_type_ident] = ACTIONS(1591), + [sym_ct_type_ident] = ACTIONS(1591), + [sym_const_ident] = ACTIONS(1589), + [sym_builtin] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_tlocal] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_fn] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_var] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_defer] = ACTIONS(1589), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_nextcase] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_foreach] = ACTIONS(1589), + [anon_sym_foreach_r] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_int] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_asm] = ACTIONS(1589), + [anon_sym_DOLLARassert] = ACTIONS(1589), + [anon_sym_DOLLARerror] = ACTIONS(1589), + [anon_sym_DOLLARecho] = ACTIONS(1589), + [anon_sym_DOLLARif] = ACTIONS(1589), + [anon_sym_DOLLARswitch] = ACTIONS(1589), + [anon_sym_DOLLARfor] = ACTIONS(1589), + [anon_sym_DOLLARforeach] = ACTIONS(1589), + [anon_sym_DOLLARendforeach] = ACTIONS(1589), + [anon_sym_DOLLARalignof] = ACTIONS(1589), + [anon_sym_DOLLARextnameof] = ACTIONS(1589), + [anon_sym_DOLLARnameof] = ACTIONS(1589), + [anon_sym_DOLLARoffsetof] = ACTIONS(1589), + [anon_sym_DOLLARqnameof] = ACTIONS(1589), + [anon_sym_DOLLARvaconst] = ACTIONS(1589), + [anon_sym_DOLLARvaarg] = ACTIONS(1589), + [anon_sym_DOLLARvaref] = ACTIONS(1589), + [anon_sym_DOLLARvaexpr] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [anon_sym_DOLLARvacount] = ACTIONS(1589), + [anon_sym_DOLLAReval] = ACTIONS(1589), + [anon_sym_DOLLARis_const] = ACTIONS(1589), + [anon_sym_DOLLARsizeof] = ACTIONS(1589), + [anon_sym_DOLLARstringify] = ACTIONS(1589), + [anon_sym_DOLLARappend] = ACTIONS(1589), + [anon_sym_DOLLARconcat] = ACTIONS(1589), + [anon_sym_DOLLARdefined] = ACTIONS(1589), + [anon_sym_DOLLARembed] = ACTIONS(1589), + [anon_sym_DOLLARand] = ACTIONS(1589), + [anon_sym_DOLLARor] = ACTIONS(1589), + [anon_sym_DOLLARfeature] = ACTIONS(1589), + [anon_sym_DOLLARassignable] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_typeid] = ACTIONS(1589), + [anon_sym_LBRACE_PIPE] = ACTIONS(1591), + [anon_sym_void] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_ichar] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [anon_sym_ushort] = ACTIONS(1589), + [anon_sym_uint] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_ulong] = ACTIONS(1589), + [anon_sym_int128] = ACTIONS(1589), + [anon_sym_uint128] = ACTIONS(1589), + [anon_sym_float] = ACTIONS(1589), + [anon_sym_double] = ACTIONS(1589), + [anon_sym_float16] = ACTIONS(1589), + [anon_sym_bfloat16] = ACTIONS(1589), + [anon_sym_float128] = ACTIONS(1589), + [anon_sym_iptr] = ACTIONS(1589), + [anon_sym_uptr] = ACTIONS(1589), + [anon_sym_isz] = ACTIONS(1589), + [anon_sym_usz] = ACTIONS(1589), + [anon_sym_anyfault] = ACTIONS(1589), + [anon_sym_any] = ACTIONS(1589), + [anon_sym_DOLLARtypeof] = ACTIONS(1589), + [anon_sym_DOLLARtypefrom] = ACTIONS(1589), + [anon_sym_DOLLARevaltype] = ACTIONS(1589), + [anon_sym_DOLLARvatype] = ACTIONS(1589), + [sym_real_literal] = ACTIONS(1591), }, [662] = { [sym_line_comment] = STATE(662), [sym_doc_comment] = STATE(662), [sym_block_comment] = STATE(662), - [sym_ident] = ACTIONS(1531), - [sym_integer_literal] = ACTIONS(1533), - [anon_sym_SQUOTE] = ACTIONS(1533), - [anon_sym_DQUOTE] = ACTIONS(1533), - [anon_sym_BQUOTE] = ACTIONS(1533), - [sym_bytes_literal] = ACTIONS(1533), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1531), - [sym_at_ident] = ACTIONS(1533), - [sym_hash_ident] = ACTIONS(1533), - [sym_type_ident] = ACTIONS(1533), - [sym_ct_type_ident] = ACTIONS(1533), - [sym_const_ident] = ACTIONS(1531), - [sym_builtin] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1531), - [anon_sym_static] = ACTIONS(1531), - [anon_sym_tlocal] = ACTIONS(1531), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_fn] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_const] = ACTIONS(1531), - [anon_sym_var] = ACTIONS(1531), - [anon_sym_return] = ACTIONS(1531), - [anon_sym_continue] = ACTIONS(1531), - [anon_sym_break] = ACTIONS(1531), - [anon_sym_defer] = ACTIONS(1531), - [anon_sym_assert] = ACTIONS(1531), - [anon_sym_nextcase] = ACTIONS(1531), - [anon_sym_switch] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1531), - [anon_sym_for] = ACTIONS(1531), - [anon_sym_foreach] = ACTIONS(1531), - [anon_sym_foreach_r] = ACTIONS(1531), - [anon_sym_while] = ACTIONS(1531), - [anon_sym_do] = ACTIONS(1531), - [anon_sym_int] = ACTIONS(1531), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_asm] = ACTIONS(1531), - [anon_sym_DOLLARassert] = ACTIONS(1531), - [anon_sym_DOLLARerror] = ACTIONS(1531), - [anon_sym_DOLLARecho] = ACTIONS(1531), - [anon_sym_DOLLARif] = ACTIONS(1531), - [anon_sym_DOLLARendif] = ACTIONS(1531), - [anon_sym_DOLLARswitch] = ACTIONS(1531), - [anon_sym_DOLLARfor] = ACTIONS(1531), - [anon_sym_DOLLARforeach] = ACTIONS(1531), - [anon_sym_DOLLARalignof] = ACTIONS(1531), - [anon_sym_DOLLARextnameof] = ACTIONS(1531), - [anon_sym_DOLLARnameof] = ACTIONS(1531), - [anon_sym_DOLLARoffsetof] = ACTIONS(1531), - [anon_sym_DOLLARqnameof] = ACTIONS(1531), - [anon_sym_DOLLAReval] = ACTIONS(1531), - [anon_sym_DOLLARdefined] = ACTIONS(1531), - [anon_sym_DOLLARsizeof] = ACTIONS(1531), - [anon_sym_DOLLARstringify] = ACTIONS(1531), - [anon_sym_DOLLARis_const] = ACTIONS(1531), - [anon_sym_DOLLARvaconst] = ACTIONS(1531), - [anon_sym_DOLLARvaarg] = ACTIONS(1531), - [anon_sym_DOLLARvaref] = ACTIONS(1531), - [anon_sym_DOLLARvaexpr] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1531), - [anon_sym_false] = ACTIONS(1531), - [anon_sym_null] = ACTIONS(1531), - [anon_sym_DOLLARvacount] = ACTIONS(1531), - [anon_sym_DOLLARfeature] = ACTIONS(1531), - [anon_sym_DOLLARand] = ACTIONS(1531), - [anon_sym_DOLLARor] = ACTIONS(1531), - [anon_sym_DOLLARassignable] = ACTIONS(1531), - [anon_sym_DOLLARembed] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_typeid] = ACTIONS(1531), - [anon_sym_LBRACE_PIPE] = ACTIONS(1533), - [anon_sym_void] = ACTIONS(1531), - [anon_sym_bool] = ACTIONS(1531), - [anon_sym_char] = ACTIONS(1531), - [anon_sym_ichar] = ACTIONS(1531), - [anon_sym_short] = ACTIONS(1531), - [anon_sym_ushort] = ACTIONS(1531), - [anon_sym_uint] = ACTIONS(1531), - [anon_sym_long] = ACTIONS(1531), - [anon_sym_ulong] = ACTIONS(1531), - [anon_sym_int128] = ACTIONS(1531), - [anon_sym_uint128] = ACTIONS(1531), - [anon_sym_float] = ACTIONS(1531), - [anon_sym_double] = ACTIONS(1531), - [anon_sym_float16] = ACTIONS(1531), - [anon_sym_bfloat16] = ACTIONS(1531), - [anon_sym_float128] = ACTIONS(1531), - [anon_sym_iptr] = ACTIONS(1531), - [anon_sym_uptr] = ACTIONS(1531), - [anon_sym_isz] = ACTIONS(1531), - [anon_sym_usz] = ACTIONS(1531), - [anon_sym_anyfault] = ACTIONS(1531), - [anon_sym_any] = ACTIONS(1531), - [anon_sym_DOLLARtypeof] = ACTIONS(1531), - [anon_sym_DOLLARtypefrom] = ACTIONS(1531), - [anon_sym_DOLLARvatype] = ACTIONS(1531), - [anon_sym_DOLLARevaltype] = ACTIONS(1531), - [sym_real_literal] = ACTIONS(1533), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARendfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), }, [663] = { [sym_line_comment] = STATE(663), [sym_doc_comment] = STATE(663), [sym_block_comment] = STATE(663), - [sym_ident] = ACTIONS(1507), - [sym_integer_literal] = ACTIONS(1509), - [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(1509), - [anon_sym_BQUOTE] = ACTIONS(1509), - [sym_bytes_literal] = ACTIONS(1509), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1507), - [sym_at_ident] = ACTIONS(1509), - [sym_hash_ident] = ACTIONS(1509), - [sym_type_ident] = ACTIONS(1509), - [sym_ct_type_ident] = ACTIONS(1509), - [sym_const_ident] = ACTIONS(1507), - [sym_builtin] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_static] = ACTIONS(1507), - [anon_sym_tlocal] = ACTIONS(1507), - [anon_sym_SEMI] = ACTIONS(1509), - [anon_sym_fn] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [anon_sym_var] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_defer] = ACTIONS(1507), - [anon_sym_assert] = ACTIONS(1507), - [anon_sym_nextcase] = ACTIONS(1507), - [anon_sym_switch] = ACTIONS(1507), - [anon_sym_AMP_AMP] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_foreach] = ACTIONS(1507), - [anon_sym_foreach_r] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_do] = ACTIONS(1507), - [anon_sym_int] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_asm] = ACTIONS(1507), - [anon_sym_DOLLARassert] = ACTIONS(1507), - [anon_sym_DOLLARerror] = ACTIONS(1507), - [anon_sym_DOLLARecho] = ACTIONS(1507), - [anon_sym_DOLLARif] = ACTIONS(1507), - [anon_sym_DOLLARendif] = ACTIONS(1507), - [anon_sym_DOLLARswitch] = ACTIONS(1507), - [anon_sym_DOLLARfor] = ACTIONS(1507), - [anon_sym_DOLLARforeach] = ACTIONS(1507), - [anon_sym_DOLLARalignof] = ACTIONS(1507), - [anon_sym_DOLLARextnameof] = ACTIONS(1507), - [anon_sym_DOLLARnameof] = ACTIONS(1507), - [anon_sym_DOLLARoffsetof] = ACTIONS(1507), - [anon_sym_DOLLARqnameof] = ACTIONS(1507), - [anon_sym_DOLLAReval] = ACTIONS(1507), - [anon_sym_DOLLARdefined] = ACTIONS(1507), - [anon_sym_DOLLARsizeof] = ACTIONS(1507), - [anon_sym_DOLLARstringify] = ACTIONS(1507), - [anon_sym_DOLLARis_const] = ACTIONS(1507), - [anon_sym_DOLLARvaconst] = ACTIONS(1507), - [anon_sym_DOLLARvaarg] = ACTIONS(1507), - [anon_sym_DOLLARvaref] = ACTIONS(1507), - [anon_sym_DOLLARvaexpr] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [anon_sym_null] = ACTIONS(1507), - [anon_sym_DOLLARvacount] = ACTIONS(1507), - [anon_sym_DOLLARfeature] = ACTIONS(1507), - [anon_sym_DOLLARand] = ACTIONS(1507), - [anon_sym_DOLLARor] = ACTIONS(1507), - [anon_sym_DOLLARassignable] = ACTIONS(1507), - [anon_sym_DOLLARembed] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_TILDE] = ACTIONS(1509), - [anon_sym_PLUS_PLUS] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_typeid] = ACTIONS(1507), - [anon_sym_LBRACE_PIPE] = ACTIONS(1509), - [anon_sym_void] = ACTIONS(1507), - [anon_sym_bool] = ACTIONS(1507), - [anon_sym_char] = ACTIONS(1507), - [anon_sym_ichar] = ACTIONS(1507), - [anon_sym_short] = ACTIONS(1507), - [anon_sym_ushort] = ACTIONS(1507), - [anon_sym_uint] = ACTIONS(1507), - [anon_sym_long] = ACTIONS(1507), - [anon_sym_ulong] = ACTIONS(1507), - [anon_sym_int128] = ACTIONS(1507), - [anon_sym_uint128] = ACTIONS(1507), - [anon_sym_float] = ACTIONS(1507), - [anon_sym_double] = ACTIONS(1507), - [anon_sym_float16] = ACTIONS(1507), - [anon_sym_bfloat16] = ACTIONS(1507), - [anon_sym_float128] = ACTIONS(1507), - [anon_sym_iptr] = ACTIONS(1507), - [anon_sym_uptr] = ACTIONS(1507), - [anon_sym_isz] = ACTIONS(1507), - [anon_sym_usz] = ACTIONS(1507), - [anon_sym_anyfault] = ACTIONS(1507), - [anon_sym_any] = ACTIONS(1507), - [anon_sym_DOLLARtypeof] = ACTIONS(1507), - [anon_sym_DOLLARtypefrom] = ACTIONS(1507), - [anon_sym_DOLLARvatype] = ACTIONS(1507), - [anon_sym_DOLLARevaltype] = ACTIONS(1507), - [sym_real_literal] = ACTIONS(1509), + [sym_ident] = ACTIONS(1637), + [sym_integer_literal] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_BQUOTE] = ACTIONS(1639), + [sym_bytes_literal] = ACTIONS(1639), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1637), + [sym_at_ident] = ACTIONS(1639), + [sym_hash_ident] = ACTIONS(1639), + [sym_type_ident] = ACTIONS(1639), + [sym_ct_type_ident] = ACTIONS(1639), + [sym_const_ident] = ACTIONS(1637), + [sym_builtin] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_tlocal] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_fn] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_var] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_defer] = ACTIONS(1637), + [anon_sym_assert] = ACTIONS(1637), + [anon_sym_nextcase] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_foreach] = ACTIONS(1637), + [anon_sym_foreach_r] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_int] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_asm] = ACTIONS(1637), + [anon_sym_DOLLARassert] = ACTIONS(1637), + [anon_sym_DOLLARerror] = ACTIONS(1637), + [anon_sym_DOLLARecho] = ACTIONS(1637), + [anon_sym_DOLLARif] = ACTIONS(1637), + [anon_sym_DOLLARswitch] = ACTIONS(1637), + [anon_sym_DOLLARfor] = ACTIONS(1637), + [anon_sym_DOLLARendfor] = ACTIONS(1637), + [anon_sym_DOLLARforeach] = ACTIONS(1637), + [anon_sym_DOLLARalignof] = ACTIONS(1637), + [anon_sym_DOLLARextnameof] = ACTIONS(1637), + [anon_sym_DOLLARnameof] = ACTIONS(1637), + [anon_sym_DOLLARoffsetof] = ACTIONS(1637), + [anon_sym_DOLLARqnameof] = ACTIONS(1637), + [anon_sym_DOLLARvaconst] = ACTIONS(1637), + [anon_sym_DOLLARvaarg] = ACTIONS(1637), + [anon_sym_DOLLARvaref] = ACTIONS(1637), + [anon_sym_DOLLARvaexpr] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_DOLLARvacount] = ACTIONS(1637), + [anon_sym_DOLLAReval] = ACTIONS(1637), + [anon_sym_DOLLARis_const] = ACTIONS(1637), + [anon_sym_DOLLARsizeof] = ACTIONS(1637), + [anon_sym_DOLLARstringify] = ACTIONS(1637), + [anon_sym_DOLLARappend] = ACTIONS(1637), + [anon_sym_DOLLARconcat] = ACTIONS(1637), + [anon_sym_DOLLARdefined] = ACTIONS(1637), + [anon_sym_DOLLARembed] = ACTIONS(1637), + [anon_sym_DOLLARand] = ACTIONS(1637), + [anon_sym_DOLLARor] = ACTIONS(1637), + [anon_sym_DOLLARfeature] = ACTIONS(1637), + [anon_sym_DOLLARassignable] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_typeid] = ACTIONS(1637), + [anon_sym_LBRACE_PIPE] = ACTIONS(1639), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_bool] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_ichar] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_ushort] = ACTIONS(1637), + [anon_sym_uint] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_ulong] = ACTIONS(1637), + [anon_sym_int128] = ACTIONS(1637), + [anon_sym_uint128] = ACTIONS(1637), + [anon_sym_float] = ACTIONS(1637), + [anon_sym_double] = ACTIONS(1637), + [anon_sym_float16] = ACTIONS(1637), + [anon_sym_bfloat16] = ACTIONS(1637), + [anon_sym_float128] = ACTIONS(1637), + [anon_sym_iptr] = ACTIONS(1637), + [anon_sym_uptr] = ACTIONS(1637), + [anon_sym_isz] = ACTIONS(1637), + [anon_sym_usz] = ACTIONS(1637), + [anon_sym_anyfault] = ACTIONS(1637), + [anon_sym_any] = ACTIONS(1637), + [anon_sym_DOLLARtypeof] = ACTIONS(1637), + [anon_sym_DOLLARtypefrom] = ACTIONS(1637), + [anon_sym_DOLLARevaltype] = ACTIONS(1637), + [anon_sym_DOLLARvatype] = ACTIONS(1637), + [sym_real_literal] = ACTIONS(1639), }, [664] = { [sym_line_comment] = STATE(664), [sym_doc_comment] = STATE(664), [sym_block_comment] = STATE(664), - [sym_ident] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_BQUOTE] = ACTIONS(1489), - [sym_bytes_literal] = ACTIONS(1489), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1487), - [sym_at_ident] = ACTIONS(1489), - [sym_hash_ident] = ACTIONS(1489), - [sym_type_ident] = ACTIONS(1489), - [sym_ct_type_ident] = ACTIONS(1489), - [sym_const_ident] = ACTIONS(1487), - [sym_builtin] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_tlocal] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_fn] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_var] = ACTIONS(1487), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_defer] = ACTIONS(1487), - [anon_sym_assert] = ACTIONS(1487), - [anon_sym_nextcase] = ACTIONS(1487), - [anon_sym_switch] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_foreach] = ACTIONS(1487), - [anon_sym_foreach_r] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_do] = ACTIONS(1487), - [anon_sym_int] = ACTIONS(1487), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_asm] = ACTIONS(1487), - [anon_sym_DOLLARassert] = ACTIONS(1487), - [anon_sym_DOLLARerror] = ACTIONS(1487), - [anon_sym_DOLLARecho] = ACTIONS(1487), - [anon_sym_DOLLARif] = ACTIONS(1487), - [anon_sym_DOLLARendif] = ACTIONS(1487), - [anon_sym_DOLLARswitch] = ACTIONS(1487), - [anon_sym_DOLLARfor] = ACTIONS(1487), - [anon_sym_DOLLARforeach] = ACTIONS(1487), - [anon_sym_DOLLARalignof] = ACTIONS(1487), - [anon_sym_DOLLARextnameof] = ACTIONS(1487), - [anon_sym_DOLLARnameof] = ACTIONS(1487), - [anon_sym_DOLLARoffsetof] = ACTIONS(1487), - [anon_sym_DOLLARqnameof] = ACTIONS(1487), - [anon_sym_DOLLAReval] = ACTIONS(1487), - [anon_sym_DOLLARdefined] = ACTIONS(1487), - [anon_sym_DOLLARsizeof] = ACTIONS(1487), - [anon_sym_DOLLARstringify] = ACTIONS(1487), - [anon_sym_DOLLARis_const] = ACTIONS(1487), - [anon_sym_DOLLARvaconst] = ACTIONS(1487), - [anon_sym_DOLLARvaarg] = ACTIONS(1487), - [anon_sym_DOLLARvaref] = ACTIONS(1487), - [anon_sym_DOLLARvaexpr] = ACTIONS(1487), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_null] = ACTIONS(1487), - [anon_sym_DOLLARvacount] = ACTIONS(1487), - [anon_sym_DOLLARfeature] = ACTIONS(1487), - [anon_sym_DOLLARand] = ACTIONS(1487), - [anon_sym_DOLLARor] = ACTIONS(1487), - [anon_sym_DOLLARassignable] = ACTIONS(1487), - [anon_sym_DOLLARembed] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1489), - [anon_sym_typeid] = ACTIONS(1487), - [anon_sym_LBRACE_PIPE] = ACTIONS(1489), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_ichar] = ACTIONS(1487), - [anon_sym_short] = ACTIONS(1487), - [anon_sym_ushort] = ACTIONS(1487), - [anon_sym_uint] = ACTIONS(1487), - [anon_sym_long] = ACTIONS(1487), - [anon_sym_ulong] = ACTIONS(1487), - [anon_sym_int128] = ACTIONS(1487), - [anon_sym_uint128] = ACTIONS(1487), - [anon_sym_float] = ACTIONS(1487), - [anon_sym_double] = ACTIONS(1487), - [anon_sym_float16] = ACTIONS(1487), - [anon_sym_bfloat16] = ACTIONS(1487), - [anon_sym_float128] = ACTIONS(1487), - [anon_sym_iptr] = ACTIONS(1487), - [anon_sym_uptr] = ACTIONS(1487), - [anon_sym_isz] = ACTIONS(1487), - [anon_sym_usz] = ACTIONS(1487), - [anon_sym_anyfault] = ACTIONS(1487), - [anon_sym_any] = ACTIONS(1487), - [anon_sym_DOLLARtypeof] = ACTIONS(1487), - [anon_sym_DOLLARtypefrom] = ACTIONS(1487), - [anon_sym_DOLLARvatype] = ACTIONS(1487), - [anon_sym_DOLLARevaltype] = ACTIONS(1487), - [sym_real_literal] = ACTIONS(1489), + [sym_ident] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_bytes_literal] = ACTIONS(1643), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1641), + [sym_at_ident] = ACTIONS(1643), + [sym_hash_ident] = ACTIONS(1643), + [sym_type_ident] = ACTIONS(1643), + [sym_ct_type_ident] = ACTIONS(1643), + [sym_const_ident] = ACTIONS(1641), + [sym_builtin] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_tlocal] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_fn] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [anon_sym_var] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_defer] = ACTIONS(1641), + [anon_sym_assert] = ACTIONS(1641), + [anon_sym_nextcase] = ACTIONS(1641), + [anon_sym_switch] = ACTIONS(1641), + [anon_sym_AMP_AMP] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_foreach] = ACTIONS(1641), + [anon_sym_foreach_r] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_int] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_asm] = ACTIONS(1641), + [anon_sym_DOLLARassert] = ACTIONS(1641), + [anon_sym_DOLLARerror] = ACTIONS(1641), + [anon_sym_DOLLARecho] = ACTIONS(1641), + [anon_sym_DOLLARif] = ACTIONS(1641), + [anon_sym_DOLLARswitch] = ACTIONS(1641), + [anon_sym_DOLLARfor] = ACTIONS(1641), + [anon_sym_DOLLARendfor] = ACTIONS(1641), + [anon_sym_DOLLARforeach] = ACTIONS(1641), + [anon_sym_DOLLARalignof] = ACTIONS(1641), + [anon_sym_DOLLARextnameof] = ACTIONS(1641), + [anon_sym_DOLLARnameof] = ACTIONS(1641), + [anon_sym_DOLLARoffsetof] = ACTIONS(1641), + [anon_sym_DOLLARqnameof] = ACTIONS(1641), + [anon_sym_DOLLARvaconst] = ACTIONS(1641), + [anon_sym_DOLLARvaarg] = ACTIONS(1641), + [anon_sym_DOLLARvaref] = ACTIONS(1641), + [anon_sym_DOLLARvaexpr] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [anon_sym_DOLLARvacount] = ACTIONS(1641), + [anon_sym_DOLLAReval] = ACTIONS(1641), + [anon_sym_DOLLARis_const] = ACTIONS(1641), + [anon_sym_DOLLARsizeof] = ACTIONS(1641), + [anon_sym_DOLLARstringify] = ACTIONS(1641), + [anon_sym_DOLLARappend] = ACTIONS(1641), + [anon_sym_DOLLARconcat] = ACTIONS(1641), + [anon_sym_DOLLARdefined] = ACTIONS(1641), + [anon_sym_DOLLARembed] = ACTIONS(1641), + [anon_sym_DOLLARand] = ACTIONS(1641), + [anon_sym_DOLLARor] = ACTIONS(1641), + [anon_sym_DOLLARfeature] = ACTIONS(1641), + [anon_sym_DOLLARassignable] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1643), + [anon_sym_TILDE] = ACTIONS(1643), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_typeid] = ACTIONS(1641), + [anon_sym_LBRACE_PIPE] = ACTIONS(1643), + [anon_sym_void] = ACTIONS(1641), + [anon_sym_bool] = ACTIONS(1641), + [anon_sym_char] = ACTIONS(1641), + [anon_sym_ichar] = ACTIONS(1641), + [anon_sym_short] = ACTIONS(1641), + [anon_sym_ushort] = ACTIONS(1641), + [anon_sym_uint] = ACTIONS(1641), + [anon_sym_long] = ACTIONS(1641), + [anon_sym_ulong] = ACTIONS(1641), + [anon_sym_int128] = ACTIONS(1641), + [anon_sym_uint128] = ACTIONS(1641), + [anon_sym_float] = ACTIONS(1641), + [anon_sym_double] = ACTIONS(1641), + [anon_sym_float16] = ACTIONS(1641), + [anon_sym_bfloat16] = ACTIONS(1641), + [anon_sym_float128] = ACTIONS(1641), + [anon_sym_iptr] = ACTIONS(1641), + [anon_sym_uptr] = ACTIONS(1641), + [anon_sym_isz] = ACTIONS(1641), + [anon_sym_usz] = ACTIONS(1641), + [anon_sym_anyfault] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_DOLLARtypeof] = ACTIONS(1641), + [anon_sym_DOLLARtypefrom] = ACTIONS(1641), + [anon_sym_DOLLARevaltype] = ACTIONS(1641), + [anon_sym_DOLLARvatype] = ACTIONS(1641), + [sym_real_literal] = ACTIONS(1643), }, [665] = { [sym_line_comment] = STATE(665), [sym_doc_comment] = STATE(665), [sym_block_comment] = STATE(665), - [sym_ident] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [anon_sym_BQUOTE] = ACTIONS(1485), - [sym_bytes_literal] = ACTIONS(1485), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1483), - [sym_at_ident] = ACTIONS(1485), - [sym_hash_ident] = ACTIONS(1485), - [sym_type_ident] = ACTIONS(1485), - [sym_ct_type_ident] = ACTIONS(1485), - [sym_const_ident] = ACTIONS(1483), - [sym_builtin] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_tlocal] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_fn] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_var] = ACTIONS(1483), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_defer] = ACTIONS(1483), - [anon_sym_assert] = ACTIONS(1483), - [anon_sym_nextcase] = ACTIONS(1483), - [anon_sym_switch] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_foreach] = ACTIONS(1483), - [anon_sym_foreach_r] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(1483), - [anon_sym_int] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_asm] = ACTIONS(1483), - [anon_sym_DOLLARassert] = ACTIONS(1483), - [anon_sym_DOLLARerror] = ACTIONS(1483), - [anon_sym_DOLLARecho] = ACTIONS(1483), - [anon_sym_DOLLARif] = ACTIONS(1483), - [anon_sym_DOLLARendif] = ACTIONS(1483), - [anon_sym_DOLLARswitch] = ACTIONS(1483), - [anon_sym_DOLLARfor] = ACTIONS(1483), - [anon_sym_DOLLARforeach] = ACTIONS(1483), - [anon_sym_DOLLARalignof] = ACTIONS(1483), - [anon_sym_DOLLARextnameof] = ACTIONS(1483), - [anon_sym_DOLLARnameof] = ACTIONS(1483), - [anon_sym_DOLLARoffsetof] = ACTIONS(1483), - [anon_sym_DOLLARqnameof] = ACTIONS(1483), - [anon_sym_DOLLAReval] = ACTIONS(1483), - [anon_sym_DOLLARdefined] = ACTIONS(1483), - [anon_sym_DOLLARsizeof] = ACTIONS(1483), - [anon_sym_DOLLARstringify] = ACTIONS(1483), - [anon_sym_DOLLARis_const] = ACTIONS(1483), - [anon_sym_DOLLARvaconst] = ACTIONS(1483), - [anon_sym_DOLLARvaarg] = ACTIONS(1483), - [anon_sym_DOLLARvaref] = ACTIONS(1483), - [anon_sym_DOLLARvaexpr] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [anon_sym_DOLLARvacount] = ACTIONS(1483), - [anon_sym_DOLLARfeature] = ACTIONS(1483), - [anon_sym_DOLLARand] = ACTIONS(1483), - [anon_sym_DOLLARor] = ACTIONS(1483), - [anon_sym_DOLLARassignable] = ACTIONS(1483), - [anon_sym_DOLLARembed] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_TILDE] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_DASH_DASH] = ACTIONS(1485), - [anon_sym_typeid] = ACTIONS(1483), - [anon_sym_LBRACE_PIPE] = ACTIONS(1485), - [anon_sym_void] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_ichar] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [anon_sym_ushort] = ACTIONS(1483), - [anon_sym_uint] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_ulong] = ACTIONS(1483), - [anon_sym_int128] = ACTIONS(1483), - [anon_sym_uint128] = ACTIONS(1483), - [anon_sym_float] = ACTIONS(1483), - [anon_sym_double] = ACTIONS(1483), - [anon_sym_float16] = ACTIONS(1483), - [anon_sym_bfloat16] = ACTIONS(1483), - [anon_sym_float128] = ACTIONS(1483), - [anon_sym_iptr] = ACTIONS(1483), - [anon_sym_uptr] = ACTIONS(1483), - [anon_sym_isz] = ACTIONS(1483), - [anon_sym_usz] = ACTIONS(1483), - [anon_sym_anyfault] = ACTIONS(1483), - [anon_sym_any] = ACTIONS(1483), - [anon_sym_DOLLARtypeof] = ACTIONS(1483), - [anon_sym_DOLLARtypefrom] = ACTIONS(1483), - [anon_sym_DOLLARvatype] = ACTIONS(1483), - [anon_sym_DOLLARevaltype] = ACTIONS(1483), - [sym_real_literal] = ACTIONS(1485), - }, - [666] = { - [sym_line_comment] = STATE(666), - [sym_doc_comment] = STATE(666), - [sym_block_comment] = STATE(666), - [sym_ident] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1481), - [anon_sym_BQUOTE] = ACTIONS(1481), - [sym_bytes_literal] = ACTIONS(1481), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1479), - [sym_at_ident] = ACTIONS(1481), - [sym_hash_ident] = ACTIONS(1481), - [sym_type_ident] = ACTIONS(1481), - [sym_ct_type_ident] = ACTIONS(1481), - [sym_const_ident] = ACTIONS(1479), - [sym_builtin] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_tlocal] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_fn] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_defer] = ACTIONS(1479), - [anon_sym_assert] = ACTIONS(1479), - [anon_sym_nextcase] = ACTIONS(1479), - [anon_sym_switch] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_foreach] = ACTIONS(1479), - [anon_sym_foreach_r] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_do] = ACTIONS(1479), - [anon_sym_int] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1481), - [anon_sym_asm] = ACTIONS(1479), - [anon_sym_DOLLARassert] = ACTIONS(1479), - [anon_sym_DOLLARerror] = ACTIONS(1479), - [anon_sym_DOLLARecho] = ACTIONS(1479), - [anon_sym_DOLLARif] = ACTIONS(1479), - [anon_sym_DOLLARendif] = ACTIONS(1479), - [anon_sym_DOLLARswitch] = ACTIONS(1479), - [anon_sym_DOLLARfor] = ACTIONS(1479), - [anon_sym_DOLLARforeach] = ACTIONS(1479), - [anon_sym_DOLLARalignof] = ACTIONS(1479), - [anon_sym_DOLLARextnameof] = ACTIONS(1479), - [anon_sym_DOLLARnameof] = ACTIONS(1479), - [anon_sym_DOLLARoffsetof] = ACTIONS(1479), - [anon_sym_DOLLARqnameof] = ACTIONS(1479), - [anon_sym_DOLLAReval] = ACTIONS(1479), - [anon_sym_DOLLARdefined] = ACTIONS(1479), - [anon_sym_DOLLARsizeof] = ACTIONS(1479), - [anon_sym_DOLLARstringify] = ACTIONS(1479), - [anon_sym_DOLLARis_const] = ACTIONS(1479), - [anon_sym_DOLLARvaconst] = ACTIONS(1479), - [anon_sym_DOLLARvaarg] = ACTIONS(1479), - [anon_sym_DOLLARvaref] = ACTIONS(1479), - [anon_sym_DOLLARvaexpr] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1479), - [anon_sym_false] = ACTIONS(1479), - [anon_sym_null] = ACTIONS(1479), - [anon_sym_DOLLARvacount] = ACTIONS(1479), - [anon_sym_DOLLARfeature] = ACTIONS(1479), - [anon_sym_DOLLARand] = ACTIONS(1479), - [anon_sym_DOLLARor] = ACTIONS(1479), - [anon_sym_DOLLARassignable] = ACTIONS(1479), - [anon_sym_DOLLARembed] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1481), - [anon_sym_typeid] = ACTIONS(1479), - [anon_sym_LBRACE_PIPE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1479), - [anon_sym_bool] = ACTIONS(1479), - [anon_sym_char] = ACTIONS(1479), - [anon_sym_ichar] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [anon_sym_ushort] = ACTIONS(1479), - [anon_sym_uint] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_ulong] = ACTIONS(1479), - [anon_sym_int128] = ACTIONS(1479), - [anon_sym_uint128] = ACTIONS(1479), - [anon_sym_float] = ACTIONS(1479), - [anon_sym_double] = ACTIONS(1479), - [anon_sym_float16] = ACTIONS(1479), - [anon_sym_bfloat16] = ACTIONS(1479), - [anon_sym_float128] = ACTIONS(1479), - [anon_sym_iptr] = ACTIONS(1479), - [anon_sym_uptr] = ACTIONS(1479), - [anon_sym_isz] = ACTIONS(1479), - [anon_sym_usz] = ACTIONS(1479), - [anon_sym_anyfault] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_DOLLARtypeof] = ACTIONS(1479), - [anon_sym_DOLLARtypefrom] = ACTIONS(1479), - [anon_sym_DOLLARvatype] = ACTIONS(1479), - [anon_sym_DOLLARevaltype] = ACTIONS(1479), - [sym_real_literal] = ACTIONS(1481), - }, - [667] = { - [sym_line_comment] = STATE(667), - [sym_doc_comment] = STATE(667), - [sym_block_comment] = STATE(667), - [sym_ident] = ACTIONS(1475), - [sym_integer_literal] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1477), - [sym_bytes_literal] = ACTIONS(1477), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1475), - [sym_at_ident] = ACTIONS(1477), - [sym_hash_ident] = ACTIONS(1477), - [sym_type_ident] = ACTIONS(1477), - [sym_ct_type_ident] = ACTIONS(1477), - [sym_const_ident] = ACTIONS(1475), - [sym_builtin] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_tlocal] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_fn] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_var] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_defer] = ACTIONS(1475), - [anon_sym_assert] = ACTIONS(1475), - [anon_sym_nextcase] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_foreach] = ACTIONS(1475), - [anon_sym_foreach_r] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_int] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_asm] = ACTIONS(1475), - [anon_sym_DOLLARassert] = ACTIONS(1475), - [anon_sym_DOLLARerror] = ACTIONS(1475), - [anon_sym_DOLLARecho] = ACTIONS(1475), - [anon_sym_DOLLARif] = ACTIONS(1475), - [anon_sym_DOLLARendif] = ACTIONS(1475), - [anon_sym_DOLLARswitch] = ACTIONS(1475), - [anon_sym_DOLLARfor] = ACTIONS(1475), - [anon_sym_DOLLARforeach] = ACTIONS(1475), - [anon_sym_DOLLARalignof] = ACTIONS(1475), - [anon_sym_DOLLARextnameof] = ACTIONS(1475), - [anon_sym_DOLLARnameof] = ACTIONS(1475), - [anon_sym_DOLLARoffsetof] = ACTIONS(1475), - [anon_sym_DOLLARqnameof] = ACTIONS(1475), - [anon_sym_DOLLAReval] = ACTIONS(1475), - [anon_sym_DOLLARdefined] = ACTIONS(1475), - [anon_sym_DOLLARsizeof] = ACTIONS(1475), - [anon_sym_DOLLARstringify] = ACTIONS(1475), - [anon_sym_DOLLARis_const] = ACTIONS(1475), - [anon_sym_DOLLARvaconst] = ACTIONS(1475), - [anon_sym_DOLLARvaarg] = ACTIONS(1475), - [anon_sym_DOLLARvaref] = ACTIONS(1475), - [anon_sym_DOLLARvaexpr] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_DOLLARvacount] = ACTIONS(1475), - [anon_sym_DOLLARfeature] = ACTIONS(1475), - [anon_sym_DOLLARand] = ACTIONS(1475), - [anon_sym_DOLLARor] = ACTIONS(1475), - [anon_sym_DOLLARassignable] = ACTIONS(1475), - [anon_sym_DOLLARembed] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1477), - [anon_sym_DASH_DASH] = ACTIONS(1477), - [anon_sym_typeid] = ACTIONS(1475), - [anon_sym_LBRACE_PIPE] = ACTIONS(1477), - [anon_sym_void] = ACTIONS(1475), - [anon_sym_bool] = ACTIONS(1475), - [anon_sym_char] = ACTIONS(1475), - [anon_sym_ichar] = ACTIONS(1475), - [anon_sym_short] = ACTIONS(1475), - [anon_sym_ushort] = ACTIONS(1475), - [anon_sym_uint] = ACTIONS(1475), - [anon_sym_long] = ACTIONS(1475), - [anon_sym_ulong] = ACTIONS(1475), - [anon_sym_int128] = ACTIONS(1475), - [anon_sym_uint128] = ACTIONS(1475), - [anon_sym_float] = ACTIONS(1475), - [anon_sym_double] = ACTIONS(1475), - [anon_sym_float16] = ACTIONS(1475), - [anon_sym_bfloat16] = ACTIONS(1475), - [anon_sym_float128] = ACTIONS(1475), - [anon_sym_iptr] = ACTIONS(1475), - [anon_sym_uptr] = ACTIONS(1475), - [anon_sym_isz] = ACTIONS(1475), - [anon_sym_usz] = ACTIONS(1475), - [anon_sym_anyfault] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_DOLLARtypeof] = ACTIONS(1475), - [anon_sym_DOLLARtypefrom] = ACTIONS(1475), - [anon_sym_DOLLARvatype] = ACTIONS(1475), - [anon_sym_DOLLARevaltype] = ACTIONS(1475), - [sym_real_literal] = ACTIONS(1477), - }, - [668] = { - [sym_line_comment] = STATE(668), - [sym_doc_comment] = STATE(668), - [sym_block_comment] = STATE(668), - [sym_ident] = ACTIONS(1471), - [sym_integer_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1473), - [anon_sym_BQUOTE] = ACTIONS(1473), - [sym_bytes_literal] = ACTIONS(1473), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1471), - [sym_at_ident] = ACTIONS(1473), - [sym_hash_ident] = ACTIONS(1473), - [sym_type_ident] = ACTIONS(1473), - [sym_ct_type_ident] = ACTIONS(1473), - [sym_const_ident] = ACTIONS(1471), - [sym_builtin] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_tlocal] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1473), - [anon_sym_fn] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_const] = ACTIONS(1471), - [anon_sym_var] = ACTIONS(1471), - [anon_sym_return] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1471), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_defer] = ACTIONS(1471), - [anon_sym_assert] = ACTIONS(1471), - [anon_sym_nextcase] = ACTIONS(1471), - [anon_sym_switch] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1471), - [anon_sym_for] = ACTIONS(1471), - [anon_sym_foreach] = ACTIONS(1471), - [anon_sym_foreach_r] = ACTIONS(1471), - [anon_sym_while] = ACTIONS(1471), - [anon_sym_do] = ACTIONS(1471), - [anon_sym_int] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_asm] = ACTIONS(1471), - [anon_sym_DOLLARassert] = ACTIONS(1471), - [anon_sym_DOLLARerror] = ACTIONS(1471), - [anon_sym_DOLLARecho] = ACTIONS(1471), - [anon_sym_DOLLARif] = ACTIONS(1471), - [anon_sym_DOLLARendif] = ACTIONS(1471), - [anon_sym_DOLLARswitch] = ACTIONS(1471), - [anon_sym_DOLLARfor] = ACTIONS(1471), - [anon_sym_DOLLARforeach] = ACTIONS(1471), - [anon_sym_DOLLARalignof] = ACTIONS(1471), - [anon_sym_DOLLARextnameof] = ACTIONS(1471), - [anon_sym_DOLLARnameof] = ACTIONS(1471), - [anon_sym_DOLLARoffsetof] = ACTIONS(1471), - [anon_sym_DOLLARqnameof] = ACTIONS(1471), - [anon_sym_DOLLAReval] = ACTIONS(1471), - [anon_sym_DOLLARdefined] = ACTIONS(1471), - [anon_sym_DOLLARsizeof] = ACTIONS(1471), - [anon_sym_DOLLARstringify] = ACTIONS(1471), - [anon_sym_DOLLARis_const] = ACTIONS(1471), - [anon_sym_DOLLARvaconst] = ACTIONS(1471), - [anon_sym_DOLLARvaarg] = ACTIONS(1471), - [anon_sym_DOLLARvaref] = ACTIONS(1471), - [anon_sym_DOLLARvaexpr] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1471), - [anon_sym_false] = ACTIONS(1471), - [anon_sym_null] = ACTIONS(1471), - [anon_sym_DOLLARvacount] = ACTIONS(1471), - [anon_sym_DOLLARfeature] = ACTIONS(1471), - [anon_sym_DOLLARand] = ACTIONS(1471), - [anon_sym_DOLLARor] = ACTIONS(1471), - [anon_sym_DOLLARassignable] = ACTIONS(1471), - [anon_sym_DOLLARembed] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1473), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), - [anon_sym_typeid] = ACTIONS(1471), - [anon_sym_LBRACE_PIPE] = ACTIONS(1473), - [anon_sym_void] = ACTIONS(1471), - [anon_sym_bool] = ACTIONS(1471), - [anon_sym_char] = ACTIONS(1471), - [anon_sym_ichar] = ACTIONS(1471), - [anon_sym_short] = ACTIONS(1471), - [anon_sym_ushort] = ACTIONS(1471), - [anon_sym_uint] = ACTIONS(1471), - [anon_sym_long] = ACTIONS(1471), - [anon_sym_ulong] = ACTIONS(1471), - [anon_sym_int128] = ACTIONS(1471), - [anon_sym_uint128] = ACTIONS(1471), - [anon_sym_float] = ACTIONS(1471), - [anon_sym_double] = ACTIONS(1471), - [anon_sym_float16] = ACTIONS(1471), - [anon_sym_bfloat16] = ACTIONS(1471), - [anon_sym_float128] = ACTIONS(1471), - [anon_sym_iptr] = ACTIONS(1471), - [anon_sym_uptr] = ACTIONS(1471), - [anon_sym_isz] = ACTIONS(1471), - [anon_sym_usz] = ACTIONS(1471), - [anon_sym_anyfault] = ACTIONS(1471), - [anon_sym_any] = ACTIONS(1471), - [anon_sym_DOLLARtypeof] = ACTIONS(1471), - [anon_sym_DOLLARtypefrom] = ACTIONS(1471), - [anon_sym_DOLLARvatype] = ACTIONS(1471), - [anon_sym_DOLLARevaltype] = ACTIONS(1471), - [sym_real_literal] = ACTIONS(1473), - }, - [669] = { - [sym_line_comment] = STATE(669), - [sym_doc_comment] = STATE(669), - [sym_block_comment] = STATE(669), - [sym_ident] = ACTIONS(1599), - [sym_integer_literal] = ACTIONS(1601), - [anon_sym_SQUOTE] = ACTIONS(1601), - [anon_sym_DQUOTE] = ACTIONS(1601), - [anon_sym_BQUOTE] = ACTIONS(1601), - [sym_bytes_literal] = ACTIONS(1601), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1599), - [sym_at_ident] = ACTIONS(1601), - [sym_hash_ident] = ACTIONS(1601), - [sym_type_ident] = ACTIONS(1601), - [sym_ct_type_ident] = ACTIONS(1601), - [sym_const_ident] = ACTIONS(1599), - [sym_builtin] = ACTIONS(1601), - [anon_sym_LPAREN] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_static] = ACTIONS(1599), - [anon_sym_tlocal] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_const] = ACTIONS(1599), - [anon_sym_var] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_break] = ACTIONS(1599), - [anon_sym_defer] = ACTIONS(1599), - [anon_sym_assert] = ACTIONS(1599), - [anon_sym_nextcase] = ACTIONS(1599), - [anon_sym_switch] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_foreach] = ACTIONS(1599), - [anon_sym_foreach_r] = ACTIONS(1599), - [anon_sym_while] = ACTIONS(1599), - [anon_sym_do] = ACTIONS(1599), - [anon_sym_int] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_asm] = ACTIONS(1599), - [anon_sym_DOLLARassert] = ACTIONS(1599), - [anon_sym_DOLLARerror] = ACTIONS(1599), - [anon_sym_DOLLARecho] = ACTIONS(1599), - [anon_sym_DOLLARif] = ACTIONS(1599), - [anon_sym_DOLLARswitch] = ACTIONS(1599), - [anon_sym_DOLLARfor] = ACTIONS(1599), - [anon_sym_DOLLARendfor] = ACTIONS(1599), - [anon_sym_DOLLARforeach] = ACTIONS(1599), - [anon_sym_DOLLARalignof] = ACTIONS(1599), - [anon_sym_DOLLARextnameof] = ACTIONS(1599), - [anon_sym_DOLLARnameof] = ACTIONS(1599), - [anon_sym_DOLLARoffsetof] = ACTIONS(1599), - [anon_sym_DOLLARqnameof] = ACTIONS(1599), - [anon_sym_DOLLAReval] = ACTIONS(1599), - [anon_sym_DOLLARdefined] = ACTIONS(1599), - [anon_sym_DOLLARsizeof] = ACTIONS(1599), - [anon_sym_DOLLARstringify] = ACTIONS(1599), - [anon_sym_DOLLARis_const] = ACTIONS(1599), - [anon_sym_DOLLARvaconst] = ACTIONS(1599), - [anon_sym_DOLLARvaarg] = ACTIONS(1599), - [anon_sym_DOLLARvaref] = ACTIONS(1599), - [anon_sym_DOLLARvaexpr] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1599), - [anon_sym_false] = ACTIONS(1599), - [anon_sym_null] = ACTIONS(1599), - [anon_sym_DOLLARvacount] = ACTIONS(1599), - [anon_sym_DOLLARfeature] = ACTIONS(1599), - [anon_sym_DOLLARand] = ACTIONS(1599), - [anon_sym_DOLLARor] = ACTIONS(1599), - [anon_sym_DOLLARassignable] = ACTIONS(1599), - [anon_sym_DOLLARembed] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1601), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_PLUS_PLUS] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1601), - [anon_sym_typeid] = ACTIONS(1599), - [anon_sym_LBRACE_PIPE] = ACTIONS(1601), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_bool] = ACTIONS(1599), - [anon_sym_char] = ACTIONS(1599), - [anon_sym_ichar] = ACTIONS(1599), - [anon_sym_short] = ACTIONS(1599), - [anon_sym_ushort] = ACTIONS(1599), - [anon_sym_uint] = ACTIONS(1599), - [anon_sym_long] = ACTIONS(1599), - [anon_sym_ulong] = ACTIONS(1599), - [anon_sym_int128] = ACTIONS(1599), - [anon_sym_uint128] = ACTIONS(1599), - [anon_sym_float] = ACTIONS(1599), - [anon_sym_double] = ACTIONS(1599), - [anon_sym_float16] = ACTIONS(1599), - [anon_sym_bfloat16] = ACTIONS(1599), - [anon_sym_float128] = ACTIONS(1599), - [anon_sym_iptr] = ACTIONS(1599), - [anon_sym_uptr] = ACTIONS(1599), - [anon_sym_isz] = ACTIONS(1599), - [anon_sym_usz] = ACTIONS(1599), - [anon_sym_anyfault] = ACTIONS(1599), - [anon_sym_any] = ACTIONS(1599), - [anon_sym_DOLLARtypeof] = ACTIONS(1599), - [anon_sym_DOLLARtypefrom] = ACTIONS(1599), - [anon_sym_DOLLARvatype] = ACTIONS(1599), - [anon_sym_DOLLARevaltype] = ACTIONS(1599), - [sym_real_literal] = ACTIONS(1601), - }, - [670] = { - [sym_line_comment] = STATE(670), - [sym_doc_comment] = STATE(670), - [sym_block_comment] = STATE(670), - [sym_ident] = ACTIONS(1449), - [sym_integer_literal] = ACTIONS(1451), - [anon_sym_SQUOTE] = ACTIONS(1451), - [anon_sym_DQUOTE] = ACTIONS(1451), - [anon_sym_BQUOTE] = ACTIONS(1451), - [sym_bytes_literal] = ACTIONS(1451), + [sym_ident] = ACTIONS(1645), + [sym_integer_literal] = ACTIONS(1647), + [anon_sym_SQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), + [sym_bytes_literal] = ACTIONS(1647), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1449), - [sym_at_ident] = ACTIONS(1451), - [sym_hash_ident] = ACTIONS(1451), - [sym_type_ident] = ACTIONS(1451), - [sym_ct_type_ident] = ACTIONS(1451), - [sym_const_ident] = ACTIONS(1449), - [sym_builtin] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_static] = ACTIONS(1449), - [anon_sym_tlocal] = ACTIONS(1449), - [anon_sym_SEMI] = ACTIONS(1451), - [anon_sym_fn] = ACTIONS(1449), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1449), - [anon_sym_var] = ACTIONS(1449), - [anon_sym_return] = ACTIONS(1449), - [anon_sym_continue] = ACTIONS(1449), - [anon_sym_break] = ACTIONS(1449), - [anon_sym_defer] = ACTIONS(1449), - [anon_sym_assert] = ACTIONS(1449), - [anon_sym_nextcase] = ACTIONS(1449), - [anon_sym_switch] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_if] = ACTIONS(1449), - [anon_sym_for] = ACTIONS(1449), - [anon_sym_foreach] = ACTIONS(1449), - [anon_sym_foreach_r] = ACTIONS(1449), - [anon_sym_while] = ACTIONS(1449), - [anon_sym_do] = ACTIONS(1449), - [anon_sym_int] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1451), - [anon_sym_asm] = ACTIONS(1449), - [anon_sym_DOLLARassert] = ACTIONS(1449), - [anon_sym_DOLLARerror] = ACTIONS(1449), - [anon_sym_DOLLARecho] = ACTIONS(1449), - [anon_sym_DOLLARif] = ACTIONS(1449), - [anon_sym_DOLLARswitch] = ACTIONS(1449), - [anon_sym_DOLLARfor] = ACTIONS(1449), - [anon_sym_DOLLARforeach] = ACTIONS(1449), - [anon_sym_DOLLARendforeach] = ACTIONS(1449), - [anon_sym_DOLLARalignof] = ACTIONS(1449), - [anon_sym_DOLLARextnameof] = ACTIONS(1449), - [anon_sym_DOLLARnameof] = ACTIONS(1449), - [anon_sym_DOLLARoffsetof] = ACTIONS(1449), - [anon_sym_DOLLARqnameof] = ACTIONS(1449), - [anon_sym_DOLLAReval] = ACTIONS(1449), - [anon_sym_DOLLARdefined] = ACTIONS(1449), - [anon_sym_DOLLARsizeof] = ACTIONS(1449), - [anon_sym_DOLLARstringify] = ACTIONS(1449), - [anon_sym_DOLLARis_const] = ACTIONS(1449), - [anon_sym_DOLLARvaconst] = ACTIONS(1449), - [anon_sym_DOLLARvaarg] = ACTIONS(1449), - [anon_sym_DOLLARvaref] = ACTIONS(1449), - [anon_sym_DOLLARvaexpr] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1449), - [anon_sym_false] = ACTIONS(1449), - [anon_sym_null] = ACTIONS(1449), - [anon_sym_DOLLARvacount] = ACTIONS(1449), - [anon_sym_DOLLARfeature] = ACTIONS(1449), - [anon_sym_DOLLARand] = ACTIONS(1449), - [anon_sym_DOLLARor] = ACTIONS(1449), - [anon_sym_DOLLARassignable] = ACTIONS(1449), - [anon_sym_DOLLARembed] = ACTIONS(1449), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_TILDE] = ACTIONS(1451), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [anon_sym_typeid] = ACTIONS(1449), - [anon_sym_LBRACE_PIPE] = ACTIONS(1451), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_bool] = ACTIONS(1449), - [anon_sym_char] = ACTIONS(1449), - [anon_sym_ichar] = ACTIONS(1449), - [anon_sym_short] = ACTIONS(1449), - [anon_sym_ushort] = ACTIONS(1449), - [anon_sym_uint] = ACTIONS(1449), - [anon_sym_long] = ACTIONS(1449), - [anon_sym_ulong] = ACTIONS(1449), - [anon_sym_int128] = ACTIONS(1449), - [anon_sym_uint128] = ACTIONS(1449), - [anon_sym_float] = ACTIONS(1449), - [anon_sym_double] = ACTIONS(1449), - [anon_sym_float16] = ACTIONS(1449), - [anon_sym_bfloat16] = ACTIONS(1449), - [anon_sym_float128] = ACTIONS(1449), - [anon_sym_iptr] = ACTIONS(1449), - [anon_sym_uptr] = ACTIONS(1449), - [anon_sym_isz] = ACTIONS(1449), - [anon_sym_usz] = ACTIONS(1449), - [anon_sym_anyfault] = ACTIONS(1449), - [anon_sym_any] = ACTIONS(1449), - [anon_sym_DOLLARtypeof] = ACTIONS(1449), - [anon_sym_DOLLARtypefrom] = ACTIONS(1449), - [anon_sym_DOLLARvatype] = ACTIONS(1449), - [anon_sym_DOLLARevaltype] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1451), + [sym_ct_ident] = ACTIONS(1645), + [sym_at_ident] = ACTIONS(1647), + [sym_hash_ident] = ACTIONS(1647), + [sym_type_ident] = ACTIONS(1647), + [sym_ct_type_ident] = ACTIONS(1647), + [sym_const_ident] = ACTIONS(1645), + [sym_builtin] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_static] = ACTIONS(1645), + [anon_sym_tlocal] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_fn] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_var] = ACTIONS(1645), + [anon_sym_return] = ACTIONS(1645), + [anon_sym_continue] = ACTIONS(1645), + [anon_sym_break] = ACTIONS(1645), + [anon_sym_defer] = ACTIONS(1645), + [anon_sym_assert] = ACTIONS(1645), + [anon_sym_nextcase] = ACTIONS(1645), + [anon_sym_switch] = ACTIONS(1645), + [anon_sym_AMP_AMP] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1645), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_foreach] = ACTIONS(1645), + [anon_sym_foreach_r] = ACTIONS(1645), + [anon_sym_while] = ACTIONS(1645), + [anon_sym_do] = ACTIONS(1645), + [anon_sym_int] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_asm] = ACTIONS(1645), + [anon_sym_DOLLARassert] = ACTIONS(1645), + [anon_sym_DOLLARerror] = ACTIONS(1645), + [anon_sym_DOLLARecho] = ACTIONS(1645), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_DOLLARswitch] = ACTIONS(1645), + [anon_sym_DOLLARfor] = ACTIONS(1645), + [anon_sym_DOLLARendfor] = ACTIONS(1645), + [anon_sym_DOLLARforeach] = ACTIONS(1645), + [anon_sym_DOLLARalignof] = ACTIONS(1645), + [anon_sym_DOLLARextnameof] = ACTIONS(1645), + [anon_sym_DOLLARnameof] = ACTIONS(1645), + [anon_sym_DOLLARoffsetof] = ACTIONS(1645), + [anon_sym_DOLLARqnameof] = ACTIONS(1645), + [anon_sym_DOLLARvaconst] = ACTIONS(1645), + [anon_sym_DOLLARvaarg] = ACTIONS(1645), + [anon_sym_DOLLARvaref] = ACTIONS(1645), + [anon_sym_DOLLARvaexpr] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [anon_sym_DOLLARvacount] = ACTIONS(1645), + [anon_sym_DOLLAReval] = ACTIONS(1645), + [anon_sym_DOLLARis_const] = ACTIONS(1645), + [anon_sym_DOLLARsizeof] = ACTIONS(1645), + [anon_sym_DOLLARstringify] = ACTIONS(1645), + [anon_sym_DOLLARappend] = ACTIONS(1645), + [anon_sym_DOLLARconcat] = ACTIONS(1645), + [anon_sym_DOLLARdefined] = ACTIONS(1645), + [anon_sym_DOLLARembed] = ACTIONS(1645), + [anon_sym_DOLLARand] = ACTIONS(1645), + [anon_sym_DOLLARor] = ACTIONS(1645), + [anon_sym_DOLLARfeature] = ACTIONS(1645), + [anon_sym_DOLLARassignable] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1647), + [anon_sym_DASH_DASH] = ACTIONS(1647), + [anon_sym_typeid] = ACTIONS(1645), + [anon_sym_LBRACE_PIPE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_ichar] = ACTIONS(1645), + [anon_sym_short] = ACTIONS(1645), + [anon_sym_ushort] = ACTIONS(1645), + [anon_sym_uint] = ACTIONS(1645), + [anon_sym_long] = ACTIONS(1645), + [anon_sym_ulong] = ACTIONS(1645), + [anon_sym_int128] = ACTIONS(1645), + [anon_sym_uint128] = ACTIONS(1645), + [anon_sym_float] = ACTIONS(1645), + [anon_sym_double] = ACTIONS(1645), + [anon_sym_float16] = ACTIONS(1645), + [anon_sym_bfloat16] = ACTIONS(1645), + [anon_sym_float128] = ACTIONS(1645), + [anon_sym_iptr] = ACTIONS(1645), + [anon_sym_uptr] = ACTIONS(1645), + [anon_sym_isz] = ACTIONS(1645), + [anon_sym_usz] = ACTIONS(1645), + [anon_sym_anyfault] = ACTIONS(1645), + [anon_sym_any] = ACTIONS(1645), + [anon_sym_DOLLARtypeof] = ACTIONS(1645), + [anon_sym_DOLLARtypefrom] = ACTIONS(1645), + [anon_sym_DOLLARevaltype] = ACTIONS(1645), + [anon_sym_DOLLARvatype] = ACTIONS(1645), + [sym_real_literal] = ACTIONS(1647), + }, + [666] = { + [sym_line_comment] = STATE(666), + [sym_doc_comment] = STATE(666), + [sym_block_comment] = STATE(666), + [sym_ident] = ACTIONS(1533), + [sym_integer_literal] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1535), + [anon_sym_BQUOTE] = ACTIONS(1535), + [sym_bytes_literal] = ACTIONS(1535), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1533), + [sym_at_ident] = ACTIONS(1535), + [sym_hash_ident] = ACTIONS(1535), + [sym_type_ident] = ACTIONS(1535), + [sym_ct_type_ident] = ACTIONS(1535), + [sym_const_ident] = ACTIONS(1533), + [sym_builtin] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_tlocal] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_var] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_defer] = ACTIONS(1533), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_nextcase] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_foreach] = ACTIONS(1533), + [anon_sym_foreach_r] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_int] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_asm] = ACTIONS(1533), + [anon_sym_DOLLARassert] = ACTIONS(1533), + [anon_sym_DOLLARerror] = ACTIONS(1533), + [anon_sym_DOLLARecho] = ACTIONS(1533), + [anon_sym_DOLLARif] = ACTIONS(1533), + [anon_sym_DOLLARswitch] = ACTIONS(1533), + [anon_sym_DOLLARfor] = ACTIONS(1533), + [anon_sym_DOLLARforeach] = ACTIONS(1533), + [anon_sym_DOLLARendforeach] = ACTIONS(1533), + [anon_sym_DOLLARalignof] = ACTIONS(1533), + [anon_sym_DOLLARextnameof] = ACTIONS(1533), + [anon_sym_DOLLARnameof] = ACTIONS(1533), + [anon_sym_DOLLARoffsetof] = ACTIONS(1533), + [anon_sym_DOLLARqnameof] = ACTIONS(1533), + [anon_sym_DOLLARvaconst] = ACTIONS(1533), + [anon_sym_DOLLARvaarg] = ACTIONS(1533), + [anon_sym_DOLLARvaref] = ACTIONS(1533), + [anon_sym_DOLLARvaexpr] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_null] = ACTIONS(1533), + [anon_sym_DOLLARvacount] = ACTIONS(1533), + [anon_sym_DOLLAReval] = ACTIONS(1533), + [anon_sym_DOLLARis_const] = ACTIONS(1533), + [anon_sym_DOLLARsizeof] = ACTIONS(1533), + [anon_sym_DOLLARstringify] = ACTIONS(1533), + [anon_sym_DOLLARappend] = ACTIONS(1533), + [anon_sym_DOLLARconcat] = ACTIONS(1533), + [anon_sym_DOLLARdefined] = ACTIONS(1533), + [anon_sym_DOLLARembed] = ACTIONS(1533), + [anon_sym_DOLLARand] = ACTIONS(1533), + [anon_sym_DOLLARor] = ACTIONS(1533), + [anon_sym_DOLLARfeature] = ACTIONS(1533), + [anon_sym_DOLLARassignable] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_typeid] = ACTIONS(1533), + [anon_sym_LBRACE_PIPE] = ACTIONS(1535), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_bool] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_ichar] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_ushort] = ACTIONS(1533), + [anon_sym_uint] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_ulong] = ACTIONS(1533), + [anon_sym_int128] = ACTIONS(1533), + [anon_sym_uint128] = ACTIONS(1533), + [anon_sym_float] = ACTIONS(1533), + [anon_sym_double] = ACTIONS(1533), + [anon_sym_float16] = ACTIONS(1533), + [anon_sym_bfloat16] = ACTIONS(1533), + [anon_sym_float128] = ACTIONS(1533), + [anon_sym_iptr] = ACTIONS(1533), + [anon_sym_uptr] = ACTIONS(1533), + [anon_sym_isz] = ACTIONS(1533), + [anon_sym_usz] = ACTIONS(1533), + [anon_sym_anyfault] = ACTIONS(1533), + [anon_sym_any] = ACTIONS(1533), + [anon_sym_DOLLARtypeof] = ACTIONS(1533), + [anon_sym_DOLLARtypefrom] = ACTIONS(1533), + [anon_sym_DOLLARevaltype] = ACTIONS(1533), + [anon_sym_DOLLARvatype] = ACTIONS(1533), + [sym_real_literal] = ACTIONS(1535), + }, + [667] = { + [sym_line_comment] = STATE(667), + [sym_doc_comment] = STATE(667), + [sym_block_comment] = STATE(667), + [sym_ident] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1539), + [anon_sym_BQUOTE] = ACTIONS(1539), + [sym_bytes_literal] = ACTIONS(1539), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1537), + [sym_at_ident] = ACTIONS(1539), + [sym_hash_ident] = ACTIONS(1539), + [sym_type_ident] = ACTIONS(1539), + [sym_ct_type_ident] = ACTIONS(1539), + [sym_const_ident] = ACTIONS(1537), + [sym_builtin] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_tlocal] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_defer] = ACTIONS(1537), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_nextcase] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_foreach] = ACTIONS(1537), + [anon_sym_foreach_r] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_int] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym_DOLLARassert] = ACTIONS(1537), + [anon_sym_DOLLARerror] = ACTIONS(1537), + [anon_sym_DOLLARecho] = ACTIONS(1537), + [anon_sym_DOLLARif] = ACTIONS(1537), + [anon_sym_DOLLARswitch] = ACTIONS(1537), + [anon_sym_DOLLARfor] = ACTIONS(1537), + [anon_sym_DOLLARforeach] = ACTIONS(1537), + [anon_sym_DOLLARendforeach] = ACTIONS(1537), + [anon_sym_DOLLARalignof] = ACTIONS(1537), + [anon_sym_DOLLARextnameof] = ACTIONS(1537), + [anon_sym_DOLLARnameof] = ACTIONS(1537), + [anon_sym_DOLLARoffsetof] = ACTIONS(1537), + [anon_sym_DOLLARqnameof] = ACTIONS(1537), + [anon_sym_DOLLARvaconst] = ACTIONS(1537), + [anon_sym_DOLLARvaarg] = ACTIONS(1537), + [anon_sym_DOLLARvaref] = ACTIONS(1537), + [anon_sym_DOLLARvaexpr] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [anon_sym_DOLLARvacount] = ACTIONS(1537), + [anon_sym_DOLLAReval] = ACTIONS(1537), + [anon_sym_DOLLARis_const] = ACTIONS(1537), + [anon_sym_DOLLARsizeof] = ACTIONS(1537), + [anon_sym_DOLLARstringify] = ACTIONS(1537), + [anon_sym_DOLLARappend] = ACTIONS(1537), + [anon_sym_DOLLARconcat] = ACTIONS(1537), + [anon_sym_DOLLARdefined] = ACTIONS(1537), + [anon_sym_DOLLARembed] = ACTIONS(1537), + [anon_sym_DOLLARand] = ACTIONS(1537), + [anon_sym_DOLLARor] = ACTIONS(1537), + [anon_sym_DOLLARfeature] = ACTIONS(1537), + [anon_sym_DOLLARassignable] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_typeid] = ACTIONS(1537), + [anon_sym_LBRACE_PIPE] = ACTIONS(1539), + [anon_sym_void] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_ichar] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [anon_sym_ushort] = ACTIONS(1537), + [anon_sym_uint] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_ulong] = ACTIONS(1537), + [anon_sym_int128] = ACTIONS(1537), + [anon_sym_uint128] = ACTIONS(1537), + [anon_sym_float] = ACTIONS(1537), + [anon_sym_double] = ACTIONS(1537), + [anon_sym_float16] = ACTIONS(1537), + [anon_sym_bfloat16] = ACTIONS(1537), + [anon_sym_float128] = ACTIONS(1537), + [anon_sym_iptr] = ACTIONS(1537), + [anon_sym_uptr] = ACTIONS(1537), + [anon_sym_isz] = ACTIONS(1537), + [anon_sym_usz] = ACTIONS(1537), + [anon_sym_anyfault] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_DOLLARtypeof] = ACTIONS(1537), + [anon_sym_DOLLARtypefrom] = ACTIONS(1537), + [anon_sym_DOLLARevaltype] = ACTIONS(1537), + [anon_sym_DOLLARvatype] = ACTIONS(1537), + [sym_real_literal] = ACTIONS(1539), + }, + [668] = { + [sym_line_comment] = STATE(668), + [sym_doc_comment] = STATE(668), + [sym_block_comment] = STATE(668), + [sym_ident] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1555), + [anon_sym_BQUOTE] = ACTIONS(1555), + [sym_bytes_literal] = ACTIONS(1555), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1553), + [sym_at_ident] = ACTIONS(1555), + [sym_hash_ident] = ACTIONS(1555), + [sym_type_ident] = ACTIONS(1555), + [sym_ct_type_ident] = ACTIONS(1555), + [sym_const_ident] = ACTIONS(1553), + [sym_builtin] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_tlocal] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_defer] = ACTIONS(1553), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_nextcase] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_foreach] = ACTIONS(1553), + [anon_sym_foreach_r] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_int] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_asm] = ACTIONS(1553), + [anon_sym_DOLLARassert] = ACTIONS(1553), + [anon_sym_DOLLARerror] = ACTIONS(1553), + [anon_sym_DOLLARecho] = ACTIONS(1553), + [anon_sym_DOLLARif] = ACTIONS(1553), + [anon_sym_DOLLARswitch] = ACTIONS(1553), + [anon_sym_DOLLARfor] = ACTIONS(1553), + [anon_sym_DOLLARforeach] = ACTIONS(1553), + [anon_sym_DOLLARendforeach] = ACTIONS(1553), + [anon_sym_DOLLARalignof] = ACTIONS(1553), + [anon_sym_DOLLARextnameof] = ACTIONS(1553), + [anon_sym_DOLLARnameof] = ACTIONS(1553), + [anon_sym_DOLLARoffsetof] = ACTIONS(1553), + [anon_sym_DOLLARqnameof] = ACTIONS(1553), + [anon_sym_DOLLARvaconst] = ACTIONS(1553), + [anon_sym_DOLLARvaarg] = ACTIONS(1553), + [anon_sym_DOLLARvaref] = ACTIONS(1553), + [anon_sym_DOLLARvaexpr] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_DOLLARvacount] = ACTIONS(1553), + [anon_sym_DOLLAReval] = ACTIONS(1553), + [anon_sym_DOLLARis_const] = ACTIONS(1553), + [anon_sym_DOLLARsizeof] = ACTIONS(1553), + [anon_sym_DOLLARstringify] = ACTIONS(1553), + [anon_sym_DOLLARappend] = ACTIONS(1553), + [anon_sym_DOLLARconcat] = ACTIONS(1553), + [anon_sym_DOLLARdefined] = ACTIONS(1553), + [anon_sym_DOLLARembed] = ACTIONS(1553), + [anon_sym_DOLLARand] = ACTIONS(1553), + [anon_sym_DOLLARor] = ACTIONS(1553), + [anon_sym_DOLLARfeature] = ACTIONS(1553), + [anon_sym_DOLLARassignable] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_typeid] = ACTIONS(1553), + [anon_sym_LBRACE_PIPE] = ACTIONS(1555), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_ichar] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [anon_sym_ushort] = ACTIONS(1553), + [anon_sym_uint] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_ulong] = ACTIONS(1553), + [anon_sym_int128] = ACTIONS(1553), + [anon_sym_uint128] = ACTIONS(1553), + [anon_sym_float] = ACTIONS(1553), + [anon_sym_double] = ACTIONS(1553), + [anon_sym_float16] = ACTIONS(1553), + [anon_sym_bfloat16] = ACTIONS(1553), + [anon_sym_float128] = ACTIONS(1553), + [anon_sym_iptr] = ACTIONS(1553), + [anon_sym_uptr] = ACTIONS(1553), + [anon_sym_isz] = ACTIONS(1553), + [anon_sym_usz] = ACTIONS(1553), + [anon_sym_anyfault] = ACTIONS(1553), + [anon_sym_any] = ACTIONS(1553), + [anon_sym_DOLLARtypeof] = ACTIONS(1553), + [anon_sym_DOLLARtypefrom] = ACTIONS(1553), + [anon_sym_DOLLARevaltype] = ACTIONS(1553), + [anon_sym_DOLLARvatype] = ACTIONS(1553), + [sym_real_literal] = ACTIONS(1555), + }, + [669] = { + [sym_line_comment] = STATE(669), + [sym_doc_comment] = STATE(669), + [sym_block_comment] = STATE(669), + [sym_ident] = ACTIONS(1573), + [sym_integer_literal] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_BQUOTE] = ACTIONS(1575), + [sym_bytes_literal] = ACTIONS(1575), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1573), + [sym_at_ident] = ACTIONS(1575), + [sym_hash_ident] = ACTIONS(1575), + [sym_type_ident] = ACTIONS(1575), + [sym_ct_type_ident] = ACTIONS(1575), + [sym_const_ident] = ACTIONS(1573), + [sym_builtin] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_tlocal] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_fn] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_var] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_defer] = ACTIONS(1573), + [anon_sym_assert] = ACTIONS(1573), + [anon_sym_nextcase] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_foreach] = ACTIONS(1573), + [anon_sym_foreach_r] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_int] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_asm] = ACTIONS(1573), + [anon_sym_DOLLARassert] = ACTIONS(1573), + [anon_sym_DOLLARerror] = ACTIONS(1573), + [anon_sym_DOLLARecho] = ACTIONS(1573), + [anon_sym_DOLLARif] = ACTIONS(1573), + [anon_sym_DOLLARswitch] = ACTIONS(1573), + [anon_sym_DOLLARfor] = ACTIONS(1573), + [anon_sym_DOLLARforeach] = ACTIONS(1573), + [anon_sym_DOLLARendforeach] = ACTIONS(1573), + [anon_sym_DOLLARalignof] = ACTIONS(1573), + [anon_sym_DOLLARextnameof] = ACTIONS(1573), + [anon_sym_DOLLARnameof] = ACTIONS(1573), + [anon_sym_DOLLARoffsetof] = ACTIONS(1573), + [anon_sym_DOLLARqnameof] = ACTIONS(1573), + [anon_sym_DOLLARvaconst] = ACTIONS(1573), + [anon_sym_DOLLARvaarg] = ACTIONS(1573), + [anon_sym_DOLLARvaref] = ACTIONS(1573), + [anon_sym_DOLLARvaexpr] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [anon_sym_null] = ACTIONS(1573), + [anon_sym_DOLLARvacount] = ACTIONS(1573), + [anon_sym_DOLLAReval] = ACTIONS(1573), + [anon_sym_DOLLARis_const] = ACTIONS(1573), + [anon_sym_DOLLARsizeof] = ACTIONS(1573), + [anon_sym_DOLLARstringify] = ACTIONS(1573), + [anon_sym_DOLLARappend] = ACTIONS(1573), + [anon_sym_DOLLARconcat] = ACTIONS(1573), + [anon_sym_DOLLARdefined] = ACTIONS(1573), + [anon_sym_DOLLARembed] = ACTIONS(1573), + [anon_sym_DOLLARand] = ACTIONS(1573), + [anon_sym_DOLLARor] = ACTIONS(1573), + [anon_sym_DOLLARfeature] = ACTIONS(1573), + [anon_sym_DOLLARassignable] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_typeid] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_bool] = ACTIONS(1573), + [anon_sym_char] = ACTIONS(1573), + [anon_sym_ichar] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [anon_sym_ushort] = ACTIONS(1573), + [anon_sym_uint] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_ulong] = ACTIONS(1573), + [anon_sym_int128] = ACTIONS(1573), + [anon_sym_uint128] = ACTIONS(1573), + [anon_sym_float] = ACTIONS(1573), + [anon_sym_double] = ACTIONS(1573), + [anon_sym_float16] = ACTIONS(1573), + [anon_sym_bfloat16] = ACTIONS(1573), + [anon_sym_float128] = ACTIONS(1573), + [anon_sym_iptr] = ACTIONS(1573), + [anon_sym_uptr] = ACTIONS(1573), + [anon_sym_isz] = ACTIONS(1573), + [anon_sym_usz] = ACTIONS(1573), + [anon_sym_anyfault] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_DOLLARtypeof] = ACTIONS(1573), + [anon_sym_DOLLARtypefrom] = ACTIONS(1573), + [anon_sym_DOLLARevaltype] = ACTIONS(1573), + [anon_sym_DOLLARvatype] = ACTIONS(1573), + [sym_real_literal] = ACTIONS(1575), + }, + [670] = { + [sym_line_comment] = STATE(670), + [sym_doc_comment] = STATE(670), + [sym_block_comment] = STATE(670), + [sym_ident] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1579), + [sym_bytes_literal] = ACTIONS(1579), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1577), + [sym_at_ident] = ACTIONS(1579), + [sym_hash_ident] = ACTIONS(1579), + [sym_type_ident] = ACTIONS(1579), + [sym_ct_type_ident] = ACTIONS(1579), + [sym_const_ident] = ACTIONS(1577), + [sym_builtin] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_tlocal] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_fn] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_var] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_defer] = ACTIONS(1577), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_nextcase] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_foreach] = ACTIONS(1577), + [anon_sym_foreach_r] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_int] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_asm] = ACTIONS(1577), + [anon_sym_DOLLARassert] = ACTIONS(1577), + [anon_sym_DOLLARerror] = ACTIONS(1577), + [anon_sym_DOLLARecho] = ACTIONS(1577), + [anon_sym_DOLLARif] = ACTIONS(1577), + [anon_sym_DOLLARswitch] = ACTIONS(1577), + [anon_sym_DOLLARfor] = ACTIONS(1577), + [anon_sym_DOLLARforeach] = ACTIONS(1577), + [anon_sym_DOLLARendforeach] = ACTIONS(1577), + [anon_sym_DOLLARalignof] = ACTIONS(1577), + [anon_sym_DOLLARextnameof] = ACTIONS(1577), + [anon_sym_DOLLARnameof] = ACTIONS(1577), + [anon_sym_DOLLARoffsetof] = ACTIONS(1577), + [anon_sym_DOLLARqnameof] = ACTIONS(1577), + [anon_sym_DOLLARvaconst] = ACTIONS(1577), + [anon_sym_DOLLARvaarg] = ACTIONS(1577), + [anon_sym_DOLLARvaref] = ACTIONS(1577), + [anon_sym_DOLLARvaexpr] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_DOLLARvacount] = ACTIONS(1577), + [anon_sym_DOLLAReval] = ACTIONS(1577), + [anon_sym_DOLLARis_const] = ACTIONS(1577), + [anon_sym_DOLLARsizeof] = ACTIONS(1577), + [anon_sym_DOLLARstringify] = ACTIONS(1577), + [anon_sym_DOLLARappend] = ACTIONS(1577), + [anon_sym_DOLLARconcat] = ACTIONS(1577), + [anon_sym_DOLLARdefined] = ACTIONS(1577), + [anon_sym_DOLLARembed] = ACTIONS(1577), + [anon_sym_DOLLARand] = ACTIONS(1577), + [anon_sym_DOLLARor] = ACTIONS(1577), + [anon_sym_DOLLARfeature] = ACTIONS(1577), + [anon_sym_DOLLARassignable] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_typeid] = ACTIONS(1577), + [anon_sym_LBRACE_PIPE] = ACTIONS(1579), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_bool] = ACTIONS(1577), + [anon_sym_char] = ACTIONS(1577), + [anon_sym_ichar] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [anon_sym_ushort] = ACTIONS(1577), + [anon_sym_uint] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_ulong] = ACTIONS(1577), + [anon_sym_int128] = ACTIONS(1577), + [anon_sym_uint128] = ACTIONS(1577), + [anon_sym_float] = ACTIONS(1577), + [anon_sym_double] = ACTIONS(1577), + [anon_sym_float16] = ACTIONS(1577), + [anon_sym_bfloat16] = ACTIONS(1577), + [anon_sym_float128] = ACTIONS(1577), + [anon_sym_iptr] = ACTIONS(1577), + [anon_sym_uptr] = ACTIONS(1577), + [anon_sym_isz] = ACTIONS(1577), + [anon_sym_usz] = ACTIONS(1577), + [anon_sym_anyfault] = ACTIONS(1577), + [anon_sym_any] = ACTIONS(1577), + [anon_sym_DOLLARtypeof] = ACTIONS(1577), + [anon_sym_DOLLARtypefrom] = ACTIONS(1577), + [anon_sym_DOLLARevaltype] = ACTIONS(1577), + [anon_sym_DOLLARvatype] = ACTIONS(1577), + [sym_real_literal] = ACTIONS(1579), }, [671] = { [sym_line_comment] = STATE(671), [sym_doc_comment] = STATE(671), [sym_block_comment] = STATE(671), - [sym_ident] = ACTIONS(1445), - [sym_integer_literal] = ACTIONS(1447), - [anon_sym_SQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [anon_sym_BQUOTE] = ACTIONS(1447), - [sym_bytes_literal] = ACTIONS(1447), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1445), - [sym_at_ident] = ACTIONS(1447), - [sym_hash_ident] = ACTIONS(1447), - [sym_type_ident] = ACTIONS(1447), - [sym_ct_type_ident] = ACTIONS(1447), - [sym_const_ident] = ACTIONS(1445), - [sym_builtin] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_tlocal] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1447), - [anon_sym_fn] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_const] = ACTIONS(1445), - [anon_sym_var] = ACTIONS(1445), - [anon_sym_return] = ACTIONS(1445), - [anon_sym_continue] = ACTIONS(1445), - [anon_sym_break] = ACTIONS(1445), - [anon_sym_defer] = ACTIONS(1445), - [anon_sym_assert] = ACTIONS(1445), - [anon_sym_nextcase] = ACTIONS(1445), - [anon_sym_switch] = ACTIONS(1445), - [anon_sym_AMP_AMP] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1445), - [anon_sym_for] = ACTIONS(1445), - [anon_sym_foreach] = ACTIONS(1445), - [anon_sym_foreach_r] = ACTIONS(1445), - [anon_sym_while] = ACTIONS(1445), - [anon_sym_do] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_asm] = ACTIONS(1445), - [anon_sym_DOLLARassert] = ACTIONS(1445), - [anon_sym_DOLLARerror] = ACTIONS(1445), - [anon_sym_DOLLARecho] = ACTIONS(1445), - [anon_sym_DOLLARif] = ACTIONS(1445), - [anon_sym_DOLLARswitch] = ACTIONS(1445), - [anon_sym_DOLLARfor] = ACTIONS(1445), - [anon_sym_DOLLARforeach] = ACTIONS(1445), - [anon_sym_DOLLARendforeach] = ACTIONS(1445), - [anon_sym_DOLLARalignof] = ACTIONS(1445), - [anon_sym_DOLLARextnameof] = ACTIONS(1445), - [anon_sym_DOLLARnameof] = ACTIONS(1445), - [anon_sym_DOLLARoffsetof] = ACTIONS(1445), - [anon_sym_DOLLARqnameof] = ACTIONS(1445), - [anon_sym_DOLLAReval] = ACTIONS(1445), - [anon_sym_DOLLARdefined] = ACTIONS(1445), - [anon_sym_DOLLARsizeof] = ACTIONS(1445), - [anon_sym_DOLLARstringify] = ACTIONS(1445), - [anon_sym_DOLLARis_const] = ACTIONS(1445), - [anon_sym_DOLLARvaconst] = ACTIONS(1445), - [anon_sym_DOLLARvaarg] = ACTIONS(1445), - [anon_sym_DOLLARvaref] = ACTIONS(1445), - [anon_sym_DOLLARvaexpr] = ACTIONS(1445), - [anon_sym_true] = ACTIONS(1445), - [anon_sym_false] = ACTIONS(1445), - [anon_sym_null] = ACTIONS(1445), - [anon_sym_DOLLARvacount] = ACTIONS(1445), - [anon_sym_DOLLARfeature] = ACTIONS(1445), - [anon_sym_DOLLARand] = ACTIONS(1445), - [anon_sym_DOLLARor] = ACTIONS(1445), - [anon_sym_DOLLARassignable] = ACTIONS(1445), - [anon_sym_DOLLARembed] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(1447), - [anon_sym_DASH_DASH] = ACTIONS(1447), - [anon_sym_typeid] = ACTIONS(1445), - [anon_sym_LBRACE_PIPE] = ACTIONS(1447), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_char] = ACTIONS(1445), - [anon_sym_ichar] = ACTIONS(1445), - [anon_sym_short] = ACTIONS(1445), - [anon_sym_ushort] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_long] = ACTIONS(1445), - [anon_sym_ulong] = ACTIONS(1445), - [anon_sym_int128] = ACTIONS(1445), - [anon_sym_uint128] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_double] = ACTIONS(1445), - [anon_sym_float16] = ACTIONS(1445), - [anon_sym_bfloat16] = ACTIONS(1445), - [anon_sym_float128] = ACTIONS(1445), - [anon_sym_iptr] = ACTIONS(1445), - [anon_sym_uptr] = ACTIONS(1445), - [anon_sym_isz] = ACTIONS(1445), - [anon_sym_usz] = ACTIONS(1445), - [anon_sym_anyfault] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_DOLLARtypeof] = ACTIONS(1445), - [anon_sym_DOLLARtypefrom] = ACTIONS(1445), - [anon_sym_DOLLARvatype] = ACTIONS(1445), - [anon_sym_DOLLARevaltype] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1447), + [sym_ident] = ACTIONS(1593), + [sym_integer_literal] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_bytes_literal] = ACTIONS(1595), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1593), + [sym_at_ident] = ACTIONS(1595), + [sym_hash_ident] = ACTIONS(1595), + [sym_type_ident] = ACTIONS(1595), + [sym_ct_type_ident] = ACTIONS(1595), + [sym_const_ident] = ACTIONS(1593), + [sym_builtin] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_tlocal] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_fn] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_defer] = ACTIONS(1593), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_nextcase] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_foreach] = ACTIONS(1593), + [anon_sym_foreach_r] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_asm] = ACTIONS(1593), + [anon_sym_DOLLARassert] = ACTIONS(1593), + [anon_sym_DOLLARerror] = ACTIONS(1593), + [anon_sym_DOLLARecho] = ACTIONS(1593), + [anon_sym_DOLLARif] = ACTIONS(1593), + [anon_sym_DOLLARswitch] = ACTIONS(1593), + [anon_sym_DOLLARfor] = ACTIONS(1593), + [anon_sym_DOLLARforeach] = ACTIONS(1593), + [anon_sym_DOLLARendforeach] = ACTIONS(1593), + [anon_sym_DOLLARalignof] = ACTIONS(1593), + [anon_sym_DOLLARextnameof] = ACTIONS(1593), + [anon_sym_DOLLARnameof] = ACTIONS(1593), + [anon_sym_DOLLARoffsetof] = ACTIONS(1593), + [anon_sym_DOLLARqnameof] = ACTIONS(1593), + [anon_sym_DOLLARvaconst] = ACTIONS(1593), + [anon_sym_DOLLARvaarg] = ACTIONS(1593), + [anon_sym_DOLLARvaref] = ACTIONS(1593), + [anon_sym_DOLLARvaexpr] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_DOLLARvacount] = ACTIONS(1593), + [anon_sym_DOLLAReval] = ACTIONS(1593), + [anon_sym_DOLLARis_const] = ACTIONS(1593), + [anon_sym_DOLLARsizeof] = ACTIONS(1593), + [anon_sym_DOLLARstringify] = ACTIONS(1593), + [anon_sym_DOLLARappend] = ACTIONS(1593), + [anon_sym_DOLLARconcat] = ACTIONS(1593), + [anon_sym_DOLLARdefined] = ACTIONS(1593), + [anon_sym_DOLLARembed] = ACTIONS(1593), + [anon_sym_DOLLARand] = ACTIONS(1593), + [anon_sym_DOLLARor] = ACTIONS(1593), + [anon_sym_DOLLARfeature] = ACTIONS(1593), + [anon_sym_DOLLARassignable] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_DASH_DASH] = ACTIONS(1595), + [anon_sym_typeid] = ACTIONS(1593), + [anon_sym_LBRACE_PIPE] = ACTIONS(1595), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_ichar] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [anon_sym_ushort] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_ulong] = ACTIONS(1593), + [anon_sym_int128] = ACTIONS(1593), + [anon_sym_uint128] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_double] = ACTIONS(1593), + [anon_sym_float16] = ACTIONS(1593), + [anon_sym_bfloat16] = ACTIONS(1593), + [anon_sym_float128] = ACTIONS(1593), + [anon_sym_iptr] = ACTIONS(1593), + [anon_sym_uptr] = ACTIONS(1593), + [anon_sym_isz] = ACTIONS(1593), + [anon_sym_usz] = ACTIONS(1593), + [anon_sym_anyfault] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_DOLLARtypeof] = ACTIONS(1593), + [anon_sym_DOLLARtypefrom] = ACTIONS(1593), + [anon_sym_DOLLARevaltype] = ACTIONS(1593), + [anon_sym_DOLLARvatype] = ACTIONS(1593), + [sym_real_literal] = ACTIONS(1595), }, [672] = { [sym_line_comment] = STATE(672), [sym_doc_comment] = STATE(672), [sym_block_comment] = STATE(672), - [sym_ident] = ACTIONS(1429), - [sym_integer_literal] = ACTIONS(1431), - [anon_sym_SQUOTE] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(1431), - [anon_sym_BQUOTE] = ACTIONS(1431), - [sym_bytes_literal] = ACTIONS(1431), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1429), - [sym_at_ident] = ACTIONS(1431), - [sym_hash_ident] = ACTIONS(1431), - [sym_type_ident] = ACTIONS(1431), - [sym_ct_type_ident] = ACTIONS(1431), - [sym_const_ident] = ACTIONS(1429), - [sym_builtin] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1429), - [anon_sym_tlocal] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_var] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_defer] = ACTIONS(1429), - [anon_sym_assert] = ACTIONS(1429), - [anon_sym_nextcase] = ACTIONS(1429), - [anon_sym_switch] = ACTIONS(1429), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_foreach] = ACTIONS(1429), - [anon_sym_foreach_r] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_do] = ACTIONS(1429), - [anon_sym_int] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_asm] = ACTIONS(1429), - [anon_sym_DOLLARassert] = ACTIONS(1429), - [anon_sym_DOLLARerror] = ACTIONS(1429), - [anon_sym_DOLLARecho] = ACTIONS(1429), - [anon_sym_DOLLARif] = ACTIONS(1429), - [anon_sym_DOLLARswitch] = ACTIONS(1429), - [anon_sym_DOLLARfor] = ACTIONS(1429), - [anon_sym_DOLLARforeach] = ACTIONS(1429), - [anon_sym_DOLLARendforeach] = ACTIONS(1429), - [anon_sym_DOLLARalignof] = ACTIONS(1429), - [anon_sym_DOLLARextnameof] = ACTIONS(1429), - [anon_sym_DOLLARnameof] = ACTIONS(1429), - [anon_sym_DOLLARoffsetof] = ACTIONS(1429), - [anon_sym_DOLLARqnameof] = ACTIONS(1429), - [anon_sym_DOLLAReval] = ACTIONS(1429), - [anon_sym_DOLLARdefined] = ACTIONS(1429), - [anon_sym_DOLLARsizeof] = ACTIONS(1429), - [anon_sym_DOLLARstringify] = ACTIONS(1429), - [anon_sym_DOLLARis_const] = ACTIONS(1429), - [anon_sym_DOLLARvaconst] = ACTIONS(1429), - [anon_sym_DOLLARvaarg] = ACTIONS(1429), - [anon_sym_DOLLARvaref] = ACTIONS(1429), - [anon_sym_DOLLARvaexpr] = ACTIONS(1429), - [anon_sym_true] = ACTIONS(1429), - [anon_sym_false] = ACTIONS(1429), - [anon_sym_null] = ACTIONS(1429), - [anon_sym_DOLLARvacount] = ACTIONS(1429), - [anon_sym_DOLLARfeature] = ACTIONS(1429), - [anon_sym_DOLLARand] = ACTIONS(1429), - [anon_sym_DOLLARor] = ACTIONS(1429), - [anon_sym_DOLLARassignable] = ACTIONS(1429), - [anon_sym_DOLLARembed] = ACTIONS(1429), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_TILDE] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_typeid] = ACTIONS(1429), - [anon_sym_LBRACE_PIPE] = ACTIONS(1431), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_bool] = ACTIONS(1429), - [anon_sym_char] = ACTIONS(1429), - [anon_sym_ichar] = ACTIONS(1429), - [anon_sym_short] = ACTIONS(1429), - [anon_sym_ushort] = ACTIONS(1429), - [anon_sym_uint] = ACTIONS(1429), - [anon_sym_long] = ACTIONS(1429), - [anon_sym_ulong] = ACTIONS(1429), - [anon_sym_int128] = ACTIONS(1429), - [anon_sym_uint128] = ACTIONS(1429), - [anon_sym_float] = ACTIONS(1429), - [anon_sym_double] = ACTIONS(1429), - [anon_sym_float16] = ACTIONS(1429), - [anon_sym_bfloat16] = ACTIONS(1429), - [anon_sym_float128] = ACTIONS(1429), - [anon_sym_iptr] = ACTIONS(1429), - [anon_sym_uptr] = ACTIONS(1429), - [anon_sym_isz] = ACTIONS(1429), - [anon_sym_usz] = ACTIONS(1429), - [anon_sym_anyfault] = ACTIONS(1429), - [anon_sym_any] = ACTIONS(1429), - [anon_sym_DOLLARtypeof] = ACTIONS(1429), - [anon_sym_DOLLARtypefrom] = ACTIONS(1429), - [anon_sym_DOLLARvatype] = ACTIONS(1429), - [anon_sym_DOLLARevaltype] = ACTIONS(1429), - [sym_real_literal] = ACTIONS(1431), + [sym_ident] = ACTIONS(1633), + [sym_integer_literal] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_bytes_literal] = ACTIONS(1635), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1633), + [sym_at_ident] = ACTIONS(1635), + [sym_hash_ident] = ACTIONS(1635), + [sym_type_ident] = ACTIONS(1635), + [sym_ct_type_ident] = ACTIONS(1635), + [sym_const_ident] = ACTIONS(1633), + [sym_builtin] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_tlocal] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_fn] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_var] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_defer] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1633), + [anon_sym_nextcase] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_foreach] = ACTIONS(1633), + [anon_sym_foreach_r] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1633), + [anon_sym_DOLLARassert] = ACTIONS(1633), + [anon_sym_DOLLARerror] = ACTIONS(1633), + [anon_sym_DOLLARecho] = ACTIONS(1633), + [anon_sym_DOLLARif] = ACTIONS(1633), + [anon_sym_DOLLARswitch] = ACTIONS(1633), + [anon_sym_DOLLARfor] = ACTIONS(1633), + [anon_sym_DOLLARforeach] = ACTIONS(1633), + [anon_sym_DOLLARendforeach] = ACTIONS(1633), + [anon_sym_DOLLARalignof] = ACTIONS(1633), + [anon_sym_DOLLARextnameof] = ACTIONS(1633), + [anon_sym_DOLLARnameof] = ACTIONS(1633), + [anon_sym_DOLLARoffsetof] = ACTIONS(1633), + [anon_sym_DOLLARqnameof] = ACTIONS(1633), + [anon_sym_DOLLARvaconst] = ACTIONS(1633), + [anon_sym_DOLLARvaarg] = ACTIONS(1633), + [anon_sym_DOLLARvaref] = ACTIONS(1633), + [anon_sym_DOLLARvaexpr] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_DOLLARvacount] = ACTIONS(1633), + [anon_sym_DOLLAReval] = ACTIONS(1633), + [anon_sym_DOLLARis_const] = ACTIONS(1633), + [anon_sym_DOLLARsizeof] = ACTIONS(1633), + [anon_sym_DOLLARstringify] = ACTIONS(1633), + [anon_sym_DOLLARappend] = ACTIONS(1633), + [anon_sym_DOLLARconcat] = ACTIONS(1633), + [anon_sym_DOLLARdefined] = ACTIONS(1633), + [anon_sym_DOLLARembed] = ACTIONS(1633), + [anon_sym_DOLLARand] = ACTIONS(1633), + [anon_sym_DOLLARor] = ACTIONS(1633), + [anon_sym_DOLLARfeature] = ACTIONS(1633), + [anon_sym_DOLLARassignable] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_typeid] = ACTIONS(1633), + [anon_sym_LBRACE_PIPE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_ichar] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_ushort] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_ulong] = ACTIONS(1633), + [anon_sym_int128] = ACTIONS(1633), + [anon_sym_uint128] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_double] = ACTIONS(1633), + [anon_sym_float16] = ACTIONS(1633), + [anon_sym_bfloat16] = ACTIONS(1633), + [anon_sym_float128] = ACTIONS(1633), + [anon_sym_iptr] = ACTIONS(1633), + [anon_sym_uptr] = ACTIONS(1633), + [anon_sym_isz] = ACTIONS(1633), + [anon_sym_usz] = ACTIONS(1633), + [anon_sym_anyfault] = ACTIONS(1633), + [anon_sym_any] = ACTIONS(1633), + [anon_sym_DOLLARtypeof] = ACTIONS(1633), + [anon_sym_DOLLARtypefrom] = ACTIONS(1633), + [anon_sym_DOLLARevaltype] = ACTIONS(1633), + [anon_sym_DOLLARvatype] = ACTIONS(1633), + [sym_real_literal] = ACTIONS(1635), }, [673] = { [sym_line_comment] = STATE(673), [sym_doc_comment] = STATE(673), [sym_block_comment] = STATE(673), - [sym_ident] = ACTIONS(1181), - [sym_integer_literal] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [sym_bytes_literal] = ACTIONS(1183), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1181), - [sym_at_ident] = ACTIONS(1183), - [sym_hash_ident] = ACTIONS(1183), - [sym_type_ident] = ACTIONS(1183), - [sym_ct_type_ident] = ACTIONS(1183), - [sym_const_ident] = ACTIONS(1181), - [sym_builtin] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_tlocal] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_fn] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_var] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_defer] = ACTIONS(1181), - [anon_sym_assert] = ACTIONS(1181), - [anon_sym_nextcase] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_foreach] = ACTIONS(1181), - [anon_sym_foreach_r] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym_DOLLARassert] = ACTIONS(1181), - [anon_sym_DOLLARerror] = ACTIONS(1181), - [anon_sym_DOLLARecho] = ACTIONS(1181), - [anon_sym_DOLLARif] = ACTIONS(1181), - [anon_sym_DOLLARswitch] = ACTIONS(1181), - [anon_sym_DOLLARfor] = ACTIONS(1181), - [anon_sym_DOLLARforeach] = ACTIONS(1181), - [anon_sym_DOLLARendforeach] = ACTIONS(1181), - [anon_sym_DOLLARalignof] = ACTIONS(1181), - [anon_sym_DOLLARextnameof] = ACTIONS(1181), - [anon_sym_DOLLARnameof] = ACTIONS(1181), - [anon_sym_DOLLARoffsetof] = ACTIONS(1181), - [anon_sym_DOLLARqnameof] = ACTIONS(1181), - [anon_sym_DOLLAReval] = ACTIONS(1181), - [anon_sym_DOLLARdefined] = ACTIONS(1181), - [anon_sym_DOLLARsizeof] = ACTIONS(1181), - [anon_sym_DOLLARstringify] = ACTIONS(1181), - [anon_sym_DOLLARis_const] = ACTIONS(1181), - [anon_sym_DOLLARvaconst] = ACTIONS(1181), - [anon_sym_DOLLARvaarg] = ACTIONS(1181), - [anon_sym_DOLLARvaref] = ACTIONS(1181), - [anon_sym_DOLLARvaexpr] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_null] = ACTIONS(1181), - [anon_sym_DOLLARvacount] = ACTIONS(1181), - [anon_sym_DOLLARfeature] = ACTIONS(1181), - [anon_sym_DOLLARand] = ACTIONS(1181), - [anon_sym_DOLLARor] = ACTIONS(1181), - [anon_sym_DOLLARassignable] = ACTIONS(1181), - [anon_sym_DOLLARembed] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_typeid] = ACTIONS(1181), - [anon_sym_LBRACE_PIPE] = ACTIONS(1183), - [anon_sym_void] = ACTIONS(1181), - [anon_sym_bool] = ACTIONS(1181), - [anon_sym_char] = ACTIONS(1181), - [anon_sym_ichar] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_ushort] = ACTIONS(1181), - [anon_sym_uint] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_ulong] = ACTIONS(1181), - [anon_sym_int128] = ACTIONS(1181), - [anon_sym_uint128] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_double] = ACTIONS(1181), - [anon_sym_float16] = ACTIONS(1181), - [anon_sym_bfloat16] = ACTIONS(1181), - [anon_sym_float128] = ACTIONS(1181), - [anon_sym_iptr] = ACTIONS(1181), - [anon_sym_uptr] = ACTIONS(1181), - [anon_sym_isz] = ACTIONS(1181), - [anon_sym_usz] = ACTIONS(1181), - [anon_sym_anyfault] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_DOLLARtypeof] = ACTIONS(1181), - [anon_sym_DOLLARtypefrom] = ACTIONS(1181), - [anon_sym_DOLLARvatype] = ACTIONS(1181), - [anon_sym_DOLLARevaltype] = ACTIONS(1181), - [sym_real_literal] = ACTIONS(1183), + [sym_ident] = ACTIONS(1377), + [sym_integer_literal] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_BQUOTE] = ACTIONS(1379), + [sym_bytes_literal] = ACTIONS(1379), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1377), + [sym_at_ident] = ACTIONS(1379), + [sym_hash_ident] = ACTIONS(1379), + [sym_type_ident] = ACTIONS(1379), + [sym_ct_type_ident] = ACTIONS(1379), + [sym_const_ident] = ACTIONS(1377), + [sym_builtin] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1377), + [anon_sym_tlocal] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_fn] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1377), + [anon_sym_var] = ACTIONS(1377), + [anon_sym_return] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1377), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_defer] = ACTIONS(1377), + [anon_sym_assert] = ACTIONS(1377), + [anon_sym_nextcase] = ACTIONS(1377), + [anon_sym_switch] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1377), + [anon_sym_foreach] = ACTIONS(1377), + [anon_sym_foreach_r] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_do] = ACTIONS(1377), + [anon_sym_int] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_asm] = ACTIONS(1377), + [anon_sym_DOLLARassert] = ACTIONS(1377), + [anon_sym_DOLLARerror] = ACTIONS(1377), + [anon_sym_DOLLARecho] = ACTIONS(1377), + [anon_sym_DOLLARif] = ACTIONS(1377), + [anon_sym_DOLLARswitch] = ACTIONS(1377), + [anon_sym_DOLLARfor] = ACTIONS(1377), + [anon_sym_DOLLARforeach] = ACTIONS(1377), + [anon_sym_DOLLARendforeach] = ACTIONS(1377), + [anon_sym_DOLLARalignof] = ACTIONS(1377), + [anon_sym_DOLLARextnameof] = ACTIONS(1377), + [anon_sym_DOLLARnameof] = ACTIONS(1377), + [anon_sym_DOLLARoffsetof] = ACTIONS(1377), + [anon_sym_DOLLARqnameof] = ACTIONS(1377), + [anon_sym_DOLLARvaconst] = ACTIONS(1377), + [anon_sym_DOLLARvaarg] = ACTIONS(1377), + [anon_sym_DOLLARvaref] = ACTIONS(1377), + [anon_sym_DOLLARvaexpr] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(1377), + [anon_sym_false] = ACTIONS(1377), + [anon_sym_null] = ACTIONS(1377), + [anon_sym_DOLLARvacount] = ACTIONS(1377), + [anon_sym_DOLLAReval] = ACTIONS(1377), + [anon_sym_DOLLARis_const] = ACTIONS(1377), + [anon_sym_DOLLARsizeof] = ACTIONS(1377), + [anon_sym_DOLLARstringify] = ACTIONS(1377), + [anon_sym_DOLLARappend] = ACTIONS(1377), + [anon_sym_DOLLARconcat] = ACTIONS(1377), + [anon_sym_DOLLARdefined] = ACTIONS(1377), + [anon_sym_DOLLARembed] = ACTIONS(1377), + [anon_sym_DOLLARand] = ACTIONS(1377), + [anon_sym_DOLLARor] = ACTIONS(1377), + [anon_sym_DOLLARfeature] = ACTIONS(1377), + [anon_sym_DOLLARassignable] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_typeid] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_bool] = ACTIONS(1377), + [anon_sym_char] = ACTIONS(1377), + [anon_sym_ichar] = ACTIONS(1377), + [anon_sym_short] = ACTIONS(1377), + [anon_sym_ushort] = ACTIONS(1377), + [anon_sym_uint] = ACTIONS(1377), + [anon_sym_long] = ACTIONS(1377), + [anon_sym_ulong] = ACTIONS(1377), + [anon_sym_int128] = ACTIONS(1377), + [anon_sym_uint128] = ACTIONS(1377), + [anon_sym_float] = ACTIONS(1377), + [anon_sym_double] = ACTIONS(1377), + [anon_sym_float16] = ACTIONS(1377), + [anon_sym_bfloat16] = ACTIONS(1377), + [anon_sym_float128] = ACTIONS(1377), + [anon_sym_iptr] = ACTIONS(1377), + [anon_sym_uptr] = ACTIONS(1377), + [anon_sym_isz] = ACTIONS(1377), + [anon_sym_usz] = ACTIONS(1377), + [anon_sym_anyfault] = ACTIONS(1377), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_DOLLARtypeof] = ACTIONS(1377), + [anon_sym_DOLLARtypefrom] = ACTIONS(1377), + [anon_sym_DOLLARevaltype] = ACTIONS(1377), + [anon_sym_DOLLARvatype] = ACTIONS(1377), + [sym_real_literal] = ACTIONS(1379), }, [674] = { [sym_line_comment] = STATE(674), [sym_doc_comment] = STATE(674), [sym_block_comment] = STATE(674), - [sym_ident] = ACTIONS(1603), - [sym_integer_literal] = ACTIONS(1605), - [anon_sym_SQUOTE] = ACTIONS(1605), - [anon_sym_DQUOTE] = ACTIONS(1605), - [anon_sym_BQUOTE] = ACTIONS(1605), - [sym_bytes_literal] = ACTIONS(1605), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1603), - [sym_at_ident] = ACTIONS(1605), - [sym_hash_ident] = ACTIONS(1605), - [sym_type_ident] = ACTIONS(1605), - [sym_ct_type_ident] = ACTIONS(1605), - [sym_const_ident] = ACTIONS(1603), - [sym_builtin] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1605), - [anon_sym_AMP] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1603), - [anon_sym_tlocal] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1605), - [anon_sym_fn] = ACTIONS(1603), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_const] = ACTIONS(1603), - [anon_sym_var] = ACTIONS(1603), - [anon_sym_return] = ACTIONS(1603), - [anon_sym_continue] = ACTIONS(1603), - [anon_sym_break] = ACTIONS(1603), - [anon_sym_defer] = ACTIONS(1603), - [anon_sym_assert] = ACTIONS(1603), - [anon_sym_nextcase] = ACTIONS(1603), - [anon_sym_switch] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1603), - [anon_sym_for] = ACTIONS(1603), - [anon_sym_foreach] = ACTIONS(1603), - [anon_sym_foreach_r] = ACTIONS(1603), - [anon_sym_while] = ACTIONS(1603), - [anon_sym_do] = ACTIONS(1603), - [anon_sym_int] = ACTIONS(1603), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_asm] = ACTIONS(1603), - [anon_sym_DOLLARassert] = ACTIONS(1603), - [anon_sym_DOLLARerror] = ACTIONS(1603), - [anon_sym_DOLLARecho] = ACTIONS(1603), - [anon_sym_DOLLARif] = ACTIONS(1603), - [anon_sym_DOLLARswitch] = ACTIONS(1603), - [anon_sym_DOLLARfor] = ACTIONS(1603), - [anon_sym_DOLLARendfor] = ACTIONS(1603), - [anon_sym_DOLLARforeach] = ACTIONS(1603), - [anon_sym_DOLLARalignof] = ACTIONS(1603), - [anon_sym_DOLLARextnameof] = ACTIONS(1603), - [anon_sym_DOLLARnameof] = ACTIONS(1603), - [anon_sym_DOLLARoffsetof] = ACTIONS(1603), - [anon_sym_DOLLARqnameof] = ACTIONS(1603), - [anon_sym_DOLLAReval] = ACTIONS(1603), - [anon_sym_DOLLARdefined] = ACTIONS(1603), - [anon_sym_DOLLARsizeof] = ACTIONS(1603), - [anon_sym_DOLLARstringify] = ACTIONS(1603), - [anon_sym_DOLLARis_const] = ACTIONS(1603), - [anon_sym_DOLLARvaconst] = ACTIONS(1603), - [anon_sym_DOLLARvaarg] = ACTIONS(1603), - [anon_sym_DOLLARvaref] = ACTIONS(1603), - [anon_sym_DOLLARvaexpr] = ACTIONS(1603), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [anon_sym_null] = ACTIONS(1603), - [anon_sym_DOLLARvacount] = ACTIONS(1603), - [anon_sym_DOLLARfeature] = ACTIONS(1603), - [anon_sym_DOLLARand] = ACTIONS(1603), - [anon_sym_DOLLARor] = ACTIONS(1603), - [anon_sym_DOLLARassignable] = ACTIONS(1603), - [anon_sym_DOLLARembed] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1605), - [anon_sym_DASH_DASH] = ACTIONS(1605), - [anon_sym_typeid] = ACTIONS(1603), - [anon_sym_LBRACE_PIPE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_ichar] = ACTIONS(1603), - [anon_sym_short] = ACTIONS(1603), - [anon_sym_ushort] = ACTIONS(1603), - [anon_sym_uint] = ACTIONS(1603), - [anon_sym_long] = ACTIONS(1603), - [anon_sym_ulong] = ACTIONS(1603), - [anon_sym_int128] = ACTIONS(1603), - [anon_sym_uint128] = ACTIONS(1603), - [anon_sym_float] = ACTIONS(1603), - [anon_sym_double] = ACTIONS(1603), - [anon_sym_float16] = ACTIONS(1603), - [anon_sym_bfloat16] = ACTIONS(1603), - [anon_sym_float128] = ACTIONS(1603), - [anon_sym_iptr] = ACTIONS(1603), - [anon_sym_uptr] = ACTIONS(1603), - [anon_sym_isz] = ACTIONS(1603), - [anon_sym_usz] = ACTIONS(1603), - [anon_sym_anyfault] = ACTIONS(1603), - [anon_sym_any] = ACTIONS(1603), - [anon_sym_DOLLARtypeof] = ACTIONS(1603), - [anon_sym_DOLLARtypefrom] = ACTIONS(1603), - [anon_sym_DOLLARvatype] = ACTIONS(1603), - [anon_sym_DOLLARevaltype] = ACTIONS(1603), - [sym_real_literal] = ACTIONS(1605), - }, - [675] = { - [sym_line_comment] = STATE(675), - [sym_doc_comment] = STATE(675), - [sym_block_comment] = STATE(675), - [sym_ident] = ACTIONS(1499), - [sym_integer_literal] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(1501), - [anon_sym_BQUOTE] = ACTIONS(1501), - [sym_bytes_literal] = ACTIONS(1501), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1499), - [sym_at_ident] = ACTIONS(1501), - [sym_hash_ident] = ACTIONS(1501), - [sym_type_ident] = ACTIONS(1501), - [sym_ct_type_ident] = ACTIONS(1501), - [sym_const_ident] = ACTIONS(1499), - [sym_builtin] = ACTIONS(1501), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_static] = ACTIONS(1499), - [anon_sym_tlocal] = ACTIONS(1499), - [anon_sym_SEMI] = ACTIONS(1501), - [anon_sym_fn] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_var] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_defer] = ACTIONS(1499), - [anon_sym_assert] = ACTIONS(1499), - [anon_sym_nextcase] = ACTIONS(1499), - [anon_sym_switch] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1501), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_foreach] = ACTIONS(1499), - [anon_sym_foreach_r] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_do] = ACTIONS(1499), - [anon_sym_int] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1501), - [anon_sym_asm] = ACTIONS(1499), - [anon_sym_DOLLARassert] = ACTIONS(1499), - [anon_sym_DOLLARerror] = ACTIONS(1499), - [anon_sym_DOLLARecho] = ACTIONS(1499), - [anon_sym_DOLLARif] = ACTIONS(1499), - [anon_sym_DOLLARendif] = ACTIONS(1499), - [anon_sym_DOLLARswitch] = ACTIONS(1499), - [anon_sym_DOLLARfor] = ACTIONS(1499), - [anon_sym_DOLLARforeach] = ACTIONS(1499), - [anon_sym_DOLLARalignof] = ACTIONS(1499), - [anon_sym_DOLLARextnameof] = ACTIONS(1499), - [anon_sym_DOLLARnameof] = ACTIONS(1499), - [anon_sym_DOLLARoffsetof] = ACTIONS(1499), - [anon_sym_DOLLARqnameof] = ACTIONS(1499), - [anon_sym_DOLLAReval] = ACTIONS(1499), - [anon_sym_DOLLARdefined] = ACTIONS(1499), - [anon_sym_DOLLARsizeof] = ACTIONS(1499), - [anon_sym_DOLLARstringify] = ACTIONS(1499), - [anon_sym_DOLLARis_const] = ACTIONS(1499), - [anon_sym_DOLLARvaconst] = ACTIONS(1499), - [anon_sym_DOLLARvaarg] = ACTIONS(1499), - [anon_sym_DOLLARvaref] = ACTIONS(1499), - [anon_sym_DOLLARvaexpr] = ACTIONS(1499), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_null] = ACTIONS(1499), - [anon_sym_DOLLARvacount] = ACTIONS(1499), - [anon_sym_DOLLARfeature] = ACTIONS(1499), - [anon_sym_DOLLARand] = ACTIONS(1499), - [anon_sym_DOLLARor] = ACTIONS(1499), - [anon_sym_DOLLARassignable] = ACTIONS(1499), - [anon_sym_DOLLARembed] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_TILDE] = ACTIONS(1501), - [anon_sym_PLUS_PLUS] = ACTIONS(1501), - [anon_sym_DASH_DASH] = ACTIONS(1501), - [anon_sym_typeid] = ACTIONS(1499), - [anon_sym_LBRACE_PIPE] = ACTIONS(1501), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_bool] = ACTIONS(1499), - [anon_sym_char] = ACTIONS(1499), - [anon_sym_ichar] = ACTIONS(1499), - [anon_sym_short] = ACTIONS(1499), - [anon_sym_ushort] = ACTIONS(1499), - [anon_sym_uint] = ACTIONS(1499), - [anon_sym_long] = ACTIONS(1499), - [anon_sym_ulong] = ACTIONS(1499), - [anon_sym_int128] = ACTIONS(1499), - [anon_sym_uint128] = ACTIONS(1499), - [anon_sym_float] = ACTIONS(1499), - [anon_sym_double] = ACTIONS(1499), - [anon_sym_float16] = ACTIONS(1499), - [anon_sym_bfloat16] = ACTIONS(1499), - [anon_sym_float128] = ACTIONS(1499), - [anon_sym_iptr] = ACTIONS(1499), - [anon_sym_uptr] = ACTIONS(1499), - [anon_sym_isz] = ACTIONS(1499), - [anon_sym_usz] = ACTIONS(1499), - [anon_sym_anyfault] = ACTIONS(1499), - [anon_sym_any] = ACTIONS(1499), - [anon_sym_DOLLARtypeof] = ACTIONS(1499), - [anon_sym_DOLLARtypefrom] = ACTIONS(1499), - [anon_sym_DOLLARvatype] = ACTIONS(1499), - [anon_sym_DOLLARevaltype] = ACTIONS(1499), - [sym_real_literal] = ACTIONS(1501), - }, - [676] = { - [sym_line_comment] = STATE(676), - [sym_doc_comment] = STATE(676), - [sym_block_comment] = STATE(676), - [sym_ident] = ACTIONS(1611), - [sym_integer_literal] = ACTIONS(1613), - [anon_sym_SQUOTE] = ACTIONS(1613), - [anon_sym_DQUOTE] = ACTIONS(1613), - [anon_sym_BQUOTE] = ACTIONS(1613), - [sym_bytes_literal] = ACTIONS(1613), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1611), - [sym_at_ident] = ACTIONS(1613), - [sym_hash_ident] = ACTIONS(1613), - [sym_type_ident] = ACTIONS(1613), - [sym_ct_type_ident] = ACTIONS(1613), - [sym_const_ident] = ACTIONS(1611), - [sym_builtin] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(1611), - [anon_sym_tlocal] = ACTIONS(1611), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_const] = ACTIONS(1611), - [anon_sym_var] = ACTIONS(1611), - [anon_sym_return] = ACTIONS(1611), - [anon_sym_continue] = ACTIONS(1611), - [anon_sym_break] = ACTIONS(1611), - [anon_sym_defer] = ACTIONS(1611), - [anon_sym_assert] = ACTIONS(1611), - [anon_sym_nextcase] = ACTIONS(1611), - [anon_sym_switch] = ACTIONS(1611), - [anon_sym_AMP_AMP] = ACTIONS(1613), - [anon_sym_if] = ACTIONS(1611), - [anon_sym_for] = ACTIONS(1611), - [anon_sym_foreach] = ACTIONS(1611), - [anon_sym_foreach_r] = ACTIONS(1611), - [anon_sym_while] = ACTIONS(1611), - [anon_sym_do] = ACTIONS(1611), - [anon_sym_int] = ACTIONS(1611), - [anon_sym_PLUS] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1611), - [anon_sym_STAR] = ACTIONS(1613), - [anon_sym_asm] = ACTIONS(1611), - [anon_sym_DOLLARassert] = ACTIONS(1611), - [anon_sym_DOLLARerror] = ACTIONS(1611), - [anon_sym_DOLLARecho] = ACTIONS(1611), - [anon_sym_DOLLARif] = ACTIONS(1611), - [anon_sym_DOLLARswitch] = ACTIONS(1611), - [anon_sym_DOLLARfor] = ACTIONS(1611), - [anon_sym_DOLLARendfor] = ACTIONS(1611), - [anon_sym_DOLLARforeach] = ACTIONS(1611), - [anon_sym_DOLLARalignof] = ACTIONS(1611), - [anon_sym_DOLLARextnameof] = ACTIONS(1611), - [anon_sym_DOLLARnameof] = ACTIONS(1611), - [anon_sym_DOLLARoffsetof] = ACTIONS(1611), - [anon_sym_DOLLARqnameof] = ACTIONS(1611), - [anon_sym_DOLLAReval] = ACTIONS(1611), - [anon_sym_DOLLARdefined] = ACTIONS(1611), - [anon_sym_DOLLARsizeof] = ACTIONS(1611), - [anon_sym_DOLLARstringify] = ACTIONS(1611), - [anon_sym_DOLLARis_const] = ACTIONS(1611), - [anon_sym_DOLLARvaconst] = ACTIONS(1611), - [anon_sym_DOLLARvaarg] = ACTIONS(1611), - [anon_sym_DOLLARvaref] = ACTIONS(1611), - [anon_sym_DOLLARvaexpr] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1611), - [anon_sym_false] = ACTIONS(1611), - [anon_sym_null] = ACTIONS(1611), - [anon_sym_DOLLARvacount] = ACTIONS(1611), - [anon_sym_DOLLARfeature] = ACTIONS(1611), - [anon_sym_DOLLARand] = ACTIONS(1611), - [anon_sym_DOLLARor] = ACTIONS(1611), - [anon_sym_DOLLARassignable] = ACTIONS(1611), - [anon_sym_DOLLARembed] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1613), - [anon_sym_TILDE] = ACTIONS(1613), - [anon_sym_PLUS_PLUS] = ACTIONS(1613), - [anon_sym_DASH_DASH] = ACTIONS(1613), - [anon_sym_typeid] = ACTIONS(1611), - [anon_sym_LBRACE_PIPE] = ACTIONS(1613), - [anon_sym_void] = ACTIONS(1611), - [anon_sym_bool] = ACTIONS(1611), - [anon_sym_char] = ACTIONS(1611), - [anon_sym_ichar] = ACTIONS(1611), - [anon_sym_short] = ACTIONS(1611), - [anon_sym_ushort] = ACTIONS(1611), - [anon_sym_uint] = ACTIONS(1611), - [anon_sym_long] = ACTIONS(1611), - [anon_sym_ulong] = ACTIONS(1611), - [anon_sym_int128] = ACTIONS(1611), - [anon_sym_uint128] = ACTIONS(1611), - [anon_sym_float] = ACTIONS(1611), - [anon_sym_double] = ACTIONS(1611), - [anon_sym_float16] = ACTIONS(1611), - [anon_sym_bfloat16] = ACTIONS(1611), - [anon_sym_float128] = ACTIONS(1611), - [anon_sym_iptr] = ACTIONS(1611), - [anon_sym_uptr] = ACTIONS(1611), - [anon_sym_isz] = ACTIONS(1611), - [anon_sym_usz] = ACTIONS(1611), - [anon_sym_anyfault] = ACTIONS(1611), - [anon_sym_any] = ACTIONS(1611), - [anon_sym_DOLLARtypeof] = ACTIONS(1611), - [anon_sym_DOLLARtypefrom] = ACTIONS(1611), - [anon_sym_DOLLARvatype] = ACTIONS(1611), - [anon_sym_DOLLARevaltype] = ACTIONS(1611), - [sym_real_literal] = ACTIONS(1613), - }, - [677] = { - [sym_line_comment] = STATE(677), - [sym_doc_comment] = STATE(677), - [sym_block_comment] = STATE(677), - [sym_ident] = ACTIONS(1523), - [sym_integer_literal] = ACTIONS(1525), - [anon_sym_SQUOTE] = ACTIONS(1525), - [anon_sym_DQUOTE] = ACTIONS(1525), - [anon_sym_BQUOTE] = ACTIONS(1525), - [sym_bytes_literal] = ACTIONS(1525), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1523), - [sym_at_ident] = ACTIONS(1525), - [sym_hash_ident] = ACTIONS(1525), - [sym_type_ident] = ACTIONS(1525), - [sym_ct_type_ident] = ACTIONS(1525), - [sym_const_ident] = ACTIONS(1523), - [sym_builtin] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_tlocal] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_fn] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_var] = ACTIONS(1523), - [anon_sym_return] = ACTIONS(1523), - [anon_sym_continue] = ACTIONS(1523), - [anon_sym_break] = ACTIONS(1523), - [anon_sym_defer] = ACTIONS(1523), - [anon_sym_assert] = ACTIONS(1523), - [anon_sym_nextcase] = ACTIONS(1523), - [anon_sym_switch] = ACTIONS(1523), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_if] = ACTIONS(1523), - [anon_sym_for] = ACTIONS(1523), - [anon_sym_foreach] = ACTIONS(1523), - [anon_sym_foreach_r] = ACTIONS(1523), - [anon_sym_while] = ACTIONS(1523), - [anon_sym_do] = ACTIONS(1523), - [anon_sym_int] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1523), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_asm] = ACTIONS(1523), - [anon_sym_DOLLARassert] = ACTIONS(1523), - [anon_sym_DOLLARerror] = ACTIONS(1523), - [anon_sym_DOLLARecho] = ACTIONS(1523), - [anon_sym_DOLLARif] = ACTIONS(1523), - [anon_sym_DOLLARendif] = ACTIONS(1523), - [anon_sym_DOLLARswitch] = ACTIONS(1523), - [anon_sym_DOLLARfor] = ACTIONS(1523), - [anon_sym_DOLLARforeach] = ACTIONS(1523), - [anon_sym_DOLLARalignof] = ACTIONS(1523), - [anon_sym_DOLLARextnameof] = ACTIONS(1523), - [anon_sym_DOLLARnameof] = ACTIONS(1523), - [anon_sym_DOLLARoffsetof] = ACTIONS(1523), - [anon_sym_DOLLARqnameof] = ACTIONS(1523), - [anon_sym_DOLLAReval] = ACTIONS(1523), - [anon_sym_DOLLARdefined] = ACTIONS(1523), - [anon_sym_DOLLARsizeof] = ACTIONS(1523), - [anon_sym_DOLLARstringify] = ACTIONS(1523), - [anon_sym_DOLLARis_const] = ACTIONS(1523), - [anon_sym_DOLLARvaconst] = ACTIONS(1523), - [anon_sym_DOLLARvaarg] = ACTIONS(1523), - [anon_sym_DOLLARvaref] = ACTIONS(1523), - [anon_sym_DOLLARvaexpr] = ACTIONS(1523), - [anon_sym_true] = ACTIONS(1523), - [anon_sym_false] = ACTIONS(1523), - [anon_sym_null] = ACTIONS(1523), - [anon_sym_DOLLARvacount] = ACTIONS(1523), - [anon_sym_DOLLARfeature] = ACTIONS(1523), - [anon_sym_DOLLARand] = ACTIONS(1523), - [anon_sym_DOLLARor] = ACTIONS(1523), - [anon_sym_DOLLARassignable] = ACTIONS(1523), - [anon_sym_DOLLARembed] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1525), - [anon_sym_TILDE] = ACTIONS(1525), - [anon_sym_PLUS_PLUS] = ACTIONS(1525), - [anon_sym_DASH_DASH] = ACTIONS(1525), - [anon_sym_typeid] = ACTIONS(1523), - [anon_sym_LBRACE_PIPE] = ACTIONS(1525), - [anon_sym_void] = ACTIONS(1523), - [anon_sym_bool] = ACTIONS(1523), - [anon_sym_char] = ACTIONS(1523), - [anon_sym_ichar] = ACTIONS(1523), - [anon_sym_short] = ACTIONS(1523), - [anon_sym_ushort] = ACTIONS(1523), - [anon_sym_uint] = ACTIONS(1523), - [anon_sym_long] = ACTIONS(1523), - [anon_sym_ulong] = ACTIONS(1523), - [anon_sym_int128] = ACTIONS(1523), - [anon_sym_uint128] = ACTIONS(1523), - [anon_sym_float] = ACTIONS(1523), - [anon_sym_double] = ACTIONS(1523), - [anon_sym_float16] = ACTIONS(1523), - [anon_sym_bfloat16] = ACTIONS(1523), - [anon_sym_float128] = ACTIONS(1523), - [anon_sym_iptr] = ACTIONS(1523), - [anon_sym_uptr] = ACTIONS(1523), - [anon_sym_isz] = ACTIONS(1523), - [anon_sym_usz] = ACTIONS(1523), - [anon_sym_anyfault] = ACTIONS(1523), - [anon_sym_any] = ACTIONS(1523), - [anon_sym_DOLLARtypeof] = ACTIONS(1523), - [anon_sym_DOLLARtypefrom] = ACTIONS(1523), - [anon_sym_DOLLARvatype] = ACTIONS(1523), - [anon_sym_DOLLARevaltype] = ACTIONS(1523), - [sym_real_literal] = ACTIONS(1525), - }, - [678] = { - [sym_line_comment] = STATE(678), - [sym_doc_comment] = STATE(678), - [sym_block_comment] = STATE(678), - [sym_ident] = ACTIONS(1571), - [sym_integer_literal] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_BQUOTE] = ACTIONS(1573), - [sym_bytes_literal] = ACTIONS(1573), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1571), - [sym_at_ident] = ACTIONS(1573), - [sym_hash_ident] = ACTIONS(1573), - [sym_type_ident] = ACTIONS(1573), - [sym_ct_type_ident] = ACTIONS(1573), - [sym_const_ident] = ACTIONS(1571), - [sym_builtin] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_static] = ACTIONS(1571), - [anon_sym_tlocal] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_fn] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_const] = ACTIONS(1571), - [anon_sym_var] = ACTIONS(1571), - [anon_sym_return] = ACTIONS(1571), - [anon_sym_continue] = ACTIONS(1571), - [anon_sym_break] = ACTIONS(1571), - [anon_sym_defer] = ACTIONS(1571), - [anon_sym_assert] = ACTIONS(1571), - [anon_sym_nextcase] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1571), - [anon_sym_AMP_AMP] = ACTIONS(1573), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_for] = ACTIONS(1571), - [anon_sym_foreach] = ACTIONS(1571), - [anon_sym_foreach_r] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1571), - [anon_sym_do] = ACTIONS(1571), - [anon_sym_int] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_asm] = ACTIONS(1571), - [anon_sym_DOLLARassert] = ACTIONS(1571), - [anon_sym_DOLLARerror] = ACTIONS(1571), - [anon_sym_DOLLARecho] = ACTIONS(1571), - [anon_sym_DOLLARif] = ACTIONS(1571), - [anon_sym_DOLLARendif] = ACTIONS(1571), - [anon_sym_DOLLARswitch] = ACTIONS(1571), - [anon_sym_DOLLARfor] = ACTIONS(1571), - [anon_sym_DOLLARforeach] = ACTIONS(1571), - [anon_sym_DOLLARalignof] = ACTIONS(1571), - [anon_sym_DOLLARextnameof] = ACTIONS(1571), - [anon_sym_DOLLARnameof] = ACTIONS(1571), - [anon_sym_DOLLARoffsetof] = ACTIONS(1571), - [anon_sym_DOLLARqnameof] = ACTIONS(1571), - [anon_sym_DOLLAReval] = ACTIONS(1571), - [anon_sym_DOLLARdefined] = ACTIONS(1571), - [anon_sym_DOLLARsizeof] = ACTIONS(1571), - [anon_sym_DOLLARstringify] = ACTIONS(1571), - [anon_sym_DOLLARis_const] = ACTIONS(1571), - [anon_sym_DOLLARvaconst] = ACTIONS(1571), - [anon_sym_DOLLARvaarg] = ACTIONS(1571), - [anon_sym_DOLLARvaref] = ACTIONS(1571), - [anon_sym_DOLLARvaexpr] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [anon_sym_DOLLARvacount] = ACTIONS(1571), - [anon_sym_DOLLARfeature] = ACTIONS(1571), - [anon_sym_DOLLARand] = ACTIONS(1571), - [anon_sym_DOLLARor] = ACTIONS(1571), - [anon_sym_DOLLARassignable] = ACTIONS(1571), - [anon_sym_DOLLARembed] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_PLUS_PLUS] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1573), - [anon_sym_typeid] = ACTIONS(1571), - [anon_sym_LBRACE_PIPE] = ACTIONS(1573), - [anon_sym_void] = ACTIONS(1571), - [anon_sym_bool] = ACTIONS(1571), - [anon_sym_char] = ACTIONS(1571), - [anon_sym_ichar] = ACTIONS(1571), - [anon_sym_short] = ACTIONS(1571), - [anon_sym_ushort] = ACTIONS(1571), - [anon_sym_uint] = ACTIONS(1571), - [anon_sym_long] = ACTIONS(1571), - [anon_sym_ulong] = ACTIONS(1571), - [anon_sym_int128] = ACTIONS(1571), - [anon_sym_uint128] = ACTIONS(1571), - [anon_sym_float] = ACTIONS(1571), - [anon_sym_double] = ACTIONS(1571), - [anon_sym_float16] = ACTIONS(1571), - [anon_sym_bfloat16] = ACTIONS(1571), - [anon_sym_float128] = ACTIONS(1571), - [anon_sym_iptr] = ACTIONS(1571), - [anon_sym_uptr] = ACTIONS(1571), - [anon_sym_isz] = ACTIONS(1571), - [anon_sym_usz] = ACTIONS(1571), - [anon_sym_anyfault] = ACTIONS(1571), - [anon_sym_any] = ACTIONS(1571), - [anon_sym_DOLLARtypeof] = ACTIONS(1571), - [anon_sym_DOLLARtypefrom] = ACTIONS(1571), - [anon_sym_DOLLARvatype] = ACTIONS(1571), - [anon_sym_DOLLARevaltype] = ACTIONS(1571), - [sym_real_literal] = ACTIONS(1573), - }, - [679] = { - [sym_line_comment] = STATE(679), - [sym_doc_comment] = STATE(679), - [sym_block_comment] = STATE(679), - [sym_ident] = ACTIONS(1607), - [sym_integer_literal] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1609), - [anon_sym_BQUOTE] = ACTIONS(1609), - [sym_bytes_literal] = ACTIONS(1609), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1607), - [sym_at_ident] = ACTIONS(1609), - [sym_hash_ident] = ACTIONS(1609), - [sym_type_ident] = ACTIONS(1609), - [sym_ct_type_ident] = ACTIONS(1609), - [sym_const_ident] = ACTIONS(1607), - [sym_builtin] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1607), - [anon_sym_tlocal] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_fn] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [anon_sym_var] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_defer] = ACTIONS(1607), - [anon_sym_assert] = ACTIONS(1607), - [anon_sym_nextcase] = ACTIONS(1607), - [anon_sym_switch] = ACTIONS(1607), - [anon_sym_AMP_AMP] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_foreach] = ACTIONS(1607), - [anon_sym_foreach_r] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [anon_sym_do] = ACTIONS(1607), - [anon_sym_int] = ACTIONS(1607), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1609), - [anon_sym_asm] = ACTIONS(1607), - [anon_sym_DOLLARassert] = ACTIONS(1607), - [anon_sym_DOLLARerror] = ACTIONS(1607), - [anon_sym_DOLLARecho] = ACTIONS(1607), - [anon_sym_DOLLARif] = ACTIONS(1607), - [anon_sym_DOLLARendif] = ACTIONS(1607), - [anon_sym_DOLLARswitch] = ACTIONS(1607), - [anon_sym_DOLLARfor] = ACTIONS(1607), - [anon_sym_DOLLARforeach] = ACTIONS(1607), - [anon_sym_DOLLARalignof] = ACTIONS(1607), - [anon_sym_DOLLARextnameof] = ACTIONS(1607), - [anon_sym_DOLLARnameof] = ACTIONS(1607), - [anon_sym_DOLLARoffsetof] = ACTIONS(1607), - [anon_sym_DOLLARqnameof] = ACTIONS(1607), - [anon_sym_DOLLAReval] = ACTIONS(1607), - [anon_sym_DOLLARdefined] = ACTIONS(1607), - [anon_sym_DOLLARsizeof] = ACTIONS(1607), - [anon_sym_DOLLARstringify] = ACTIONS(1607), - [anon_sym_DOLLARis_const] = ACTIONS(1607), - [anon_sym_DOLLARvaconst] = ACTIONS(1607), - [anon_sym_DOLLARvaarg] = ACTIONS(1607), - [anon_sym_DOLLARvaref] = ACTIONS(1607), - [anon_sym_DOLLARvaexpr] = ACTIONS(1607), - [anon_sym_true] = ACTIONS(1607), - [anon_sym_false] = ACTIONS(1607), - [anon_sym_null] = ACTIONS(1607), - [anon_sym_DOLLARvacount] = ACTIONS(1607), - [anon_sym_DOLLARfeature] = ACTIONS(1607), - [anon_sym_DOLLARand] = ACTIONS(1607), - [anon_sym_DOLLARor] = ACTIONS(1607), - [anon_sym_DOLLARassignable] = ACTIONS(1607), - [anon_sym_DOLLARembed] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_TILDE] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym_typeid] = ACTIONS(1607), - [anon_sym_LBRACE_PIPE] = ACTIONS(1609), - [anon_sym_void] = ACTIONS(1607), - [anon_sym_bool] = ACTIONS(1607), - [anon_sym_char] = ACTIONS(1607), - [anon_sym_ichar] = ACTIONS(1607), - [anon_sym_short] = ACTIONS(1607), - [anon_sym_ushort] = ACTIONS(1607), - [anon_sym_uint] = ACTIONS(1607), - [anon_sym_long] = ACTIONS(1607), - [anon_sym_ulong] = ACTIONS(1607), - [anon_sym_int128] = ACTIONS(1607), - [anon_sym_uint128] = ACTIONS(1607), - [anon_sym_float] = ACTIONS(1607), - [anon_sym_double] = ACTIONS(1607), - [anon_sym_float16] = ACTIONS(1607), - [anon_sym_bfloat16] = ACTIONS(1607), - [anon_sym_float128] = ACTIONS(1607), - [anon_sym_iptr] = ACTIONS(1607), - [anon_sym_uptr] = ACTIONS(1607), - [anon_sym_isz] = ACTIONS(1607), - [anon_sym_usz] = ACTIONS(1607), - [anon_sym_anyfault] = ACTIONS(1607), - [anon_sym_any] = ACTIONS(1607), - [anon_sym_DOLLARtypeof] = ACTIONS(1607), - [anon_sym_DOLLARtypefrom] = ACTIONS(1607), - [anon_sym_DOLLARvatype] = ACTIONS(1607), - [anon_sym_DOLLARevaltype] = ACTIONS(1607), - [sym_real_literal] = ACTIONS(1609), - }, - [680] = { - [sym_line_comment] = STATE(680), - [sym_doc_comment] = STATE(680), - [sym_block_comment] = STATE(680), - [sym_ident] = ACTIONS(1615), - [sym_integer_literal] = ACTIONS(1617), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_DQUOTE] = ACTIONS(1617), - [anon_sym_BQUOTE] = ACTIONS(1617), - [sym_bytes_literal] = ACTIONS(1617), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1615), - [sym_at_ident] = ACTIONS(1617), - [sym_hash_ident] = ACTIONS(1617), - [sym_type_ident] = ACTIONS(1617), - [sym_ct_type_ident] = ACTIONS(1617), - [sym_const_ident] = ACTIONS(1615), - [sym_builtin] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1615), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_tlocal] = ACTIONS(1615), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_fn] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1615), - [anon_sym_const] = ACTIONS(1615), - [anon_sym_var] = ACTIONS(1615), - [anon_sym_return] = ACTIONS(1615), - [anon_sym_continue] = ACTIONS(1615), - [anon_sym_break] = ACTIONS(1615), - [anon_sym_defer] = ACTIONS(1615), - [anon_sym_assert] = ACTIONS(1615), - [anon_sym_nextcase] = ACTIONS(1615), - [anon_sym_switch] = ACTIONS(1615), - [anon_sym_AMP_AMP] = ACTIONS(1617), - [anon_sym_if] = ACTIONS(1615), - [anon_sym_for] = ACTIONS(1615), - [anon_sym_foreach] = ACTIONS(1615), - [anon_sym_foreach_r] = ACTIONS(1615), - [anon_sym_while] = ACTIONS(1615), - [anon_sym_do] = ACTIONS(1615), - [anon_sym_int] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1617), - [anon_sym_asm] = ACTIONS(1615), - [anon_sym_DOLLARassert] = ACTIONS(1615), - [anon_sym_DOLLARerror] = ACTIONS(1615), - [anon_sym_DOLLARecho] = ACTIONS(1615), - [anon_sym_DOLLARif] = ACTIONS(1615), - [anon_sym_DOLLARendif] = ACTIONS(1615), - [anon_sym_DOLLARswitch] = ACTIONS(1615), - [anon_sym_DOLLARfor] = ACTIONS(1615), - [anon_sym_DOLLARforeach] = ACTIONS(1615), - [anon_sym_DOLLARalignof] = ACTIONS(1615), - [anon_sym_DOLLARextnameof] = ACTIONS(1615), - [anon_sym_DOLLARnameof] = ACTIONS(1615), - [anon_sym_DOLLARoffsetof] = ACTIONS(1615), - [anon_sym_DOLLARqnameof] = ACTIONS(1615), - [anon_sym_DOLLAReval] = ACTIONS(1615), - [anon_sym_DOLLARdefined] = ACTIONS(1615), - [anon_sym_DOLLARsizeof] = ACTIONS(1615), - [anon_sym_DOLLARstringify] = ACTIONS(1615), - [anon_sym_DOLLARis_const] = ACTIONS(1615), - [anon_sym_DOLLARvaconst] = ACTIONS(1615), - [anon_sym_DOLLARvaarg] = ACTIONS(1615), - [anon_sym_DOLLARvaref] = ACTIONS(1615), - [anon_sym_DOLLARvaexpr] = ACTIONS(1615), - [anon_sym_true] = ACTIONS(1615), - [anon_sym_false] = ACTIONS(1615), - [anon_sym_null] = ACTIONS(1615), - [anon_sym_DOLLARvacount] = ACTIONS(1615), - [anon_sym_DOLLARfeature] = ACTIONS(1615), - [anon_sym_DOLLARand] = ACTIONS(1615), - [anon_sym_DOLLARor] = ACTIONS(1615), - [anon_sym_DOLLARassignable] = ACTIONS(1615), - [anon_sym_DOLLARembed] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_typeid] = ACTIONS(1615), - [anon_sym_LBRACE_PIPE] = ACTIONS(1617), - [anon_sym_void] = ACTIONS(1615), - [anon_sym_bool] = ACTIONS(1615), - [anon_sym_char] = ACTIONS(1615), - [anon_sym_ichar] = ACTIONS(1615), - [anon_sym_short] = ACTIONS(1615), - [anon_sym_ushort] = ACTIONS(1615), - [anon_sym_uint] = ACTIONS(1615), - [anon_sym_long] = ACTIONS(1615), - [anon_sym_ulong] = ACTIONS(1615), - [anon_sym_int128] = ACTIONS(1615), - [anon_sym_uint128] = ACTIONS(1615), - [anon_sym_float] = ACTIONS(1615), - [anon_sym_double] = ACTIONS(1615), - [anon_sym_float16] = ACTIONS(1615), - [anon_sym_bfloat16] = ACTIONS(1615), - [anon_sym_float128] = ACTIONS(1615), - [anon_sym_iptr] = ACTIONS(1615), - [anon_sym_uptr] = ACTIONS(1615), - [anon_sym_isz] = ACTIONS(1615), - [anon_sym_usz] = ACTIONS(1615), - [anon_sym_anyfault] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_DOLLARtypeof] = ACTIONS(1615), - [anon_sym_DOLLARtypefrom] = ACTIONS(1615), - [anon_sym_DOLLARvatype] = ACTIONS(1615), - [anon_sym_DOLLARevaltype] = ACTIONS(1615), - [sym_real_literal] = ACTIONS(1617), - }, - [681] = { - [sym_line_comment] = STATE(681), - [sym_doc_comment] = STATE(681), - [sym_block_comment] = STATE(681), - [sym_ident] = ACTIONS(1619), - [sym_integer_literal] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_BQUOTE] = ACTIONS(1621), - [sym_bytes_literal] = ACTIONS(1621), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1619), - [sym_at_ident] = ACTIONS(1621), - [sym_hash_ident] = ACTIONS(1621), - [sym_type_ident] = ACTIONS(1621), - [sym_ct_type_ident] = ACTIONS(1621), - [sym_const_ident] = ACTIONS(1619), - [sym_builtin] = ACTIONS(1621), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_static] = ACTIONS(1619), - [anon_sym_tlocal] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_fn] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1619), - [anon_sym_const] = ACTIONS(1619), - [anon_sym_var] = ACTIONS(1619), - [anon_sym_return] = ACTIONS(1619), - [anon_sym_continue] = ACTIONS(1619), - [anon_sym_break] = ACTIONS(1619), - [anon_sym_defer] = ACTIONS(1619), - [anon_sym_assert] = ACTIONS(1619), - [anon_sym_nextcase] = ACTIONS(1619), - [anon_sym_switch] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1619), - [anon_sym_for] = ACTIONS(1619), - [anon_sym_foreach] = ACTIONS(1619), - [anon_sym_foreach_r] = ACTIONS(1619), - [anon_sym_while] = ACTIONS(1619), - [anon_sym_do] = ACTIONS(1619), - [anon_sym_int] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_asm] = ACTIONS(1619), - [anon_sym_DOLLARassert] = ACTIONS(1619), - [anon_sym_DOLLARerror] = ACTIONS(1619), - [anon_sym_DOLLARecho] = ACTIONS(1619), - [anon_sym_DOLLARif] = ACTIONS(1619), - [anon_sym_DOLLARendif] = ACTIONS(1619), - [anon_sym_DOLLARswitch] = ACTIONS(1619), - [anon_sym_DOLLARfor] = ACTIONS(1619), - [anon_sym_DOLLARforeach] = ACTIONS(1619), - [anon_sym_DOLLARalignof] = ACTIONS(1619), - [anon_sym_DOLLARextnameof] = ACTIONS(1619), - [anon_sym_DOLLARnameof] = ACTIONS(1619), - [anon_sym_DOLLARoffsetof] = ACTIONS(1619), - [anon_sym_DOLLARqnameof] = ACTIONS(1619), - [anon_sym_DOLLAReval] = ACTIONS(1619), - [anon_sym_DOLLARdefined] = ACTIONS(1619), - [anon_sym_DOLLARsizeof] = ACTIONS(1619), - [anon_sym_DOLLARstringify] = ACTIONS(1619), - [anon_sym_DOLLARis_const] = ACTIONS(1619), - [anon_sym_DOLLARvaconst] = ACTIONS(1619), - [anon_sym_DOLLARvaarg] = ACTIONS(1619), - [anon_sym_DOLLARvaref] = ACTIONS(1619), - [anon_sym_DOLLARvaexpr] = ACTIONS(1619), - [anon_sym_true] = ACTIONS(1619), - [anon_sym_false] = ACTIONS(1619), - [anon_sym_null] = ACTIONS(1619), - [anon_sym_DOLLARvacount] = ACTIONS(1619), - [anon_sym_DOLLARfeature] = ACTIONS(1619), - [anon_sym_DOLLARand] = ACTIONS(1619), - [anon_sym_DOLLARor] = ACTIONS(1619), - [anon_sym_DOLLARassignable] = ACTIONS(1619), - [anon_sym_DOLLARembed] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_typeid] = ACTIONS(1619), - [anon_sym_LBRACE_PIPE] = ACTIONS(1621), - [anon_sym_void] = ACTIONS(1619), - [anon_sym_bool] = ACTIONS(1619), - [anon_sym_char] = ACTIONS(1619), - [anon_sym_ichar] = ACTIONS(1619), - [anon_sym_short] = ACTIONS(1619), - [anon_sym_ushort] = ACTIONS(1619), - [anon_sym_uint] = ACTIONS(1619), - [anon_sym_long] = ACTIONS(1619), - [anon_sym_ulong] = ACTIONS(1619), - [anon_sym_int128] = ACTIONS(1619), - [anon_sym_uint128] = ACTIONS(1619), - [anon_sym_float] = ACTIONS(1619), - [anon_sym_double] = ACTIONS(1619), - [anon_sym_float16] = ACTIONS(1619), - [anon_sym_bfloat16] = ACTIONS(1619), - [anon_sym_float128] = ACTIONS(1619), - [anon_sym_iptr] = ACTIONS(1619), - [anon_sym_uptr] = ACTIONS(1619), - [anon_sym_isz] = ACTIONS(1619), - [anon_sym_usz] = ACTIONS(1619), - [anon_sym_anyfault] = ACTIONS(1619), - [anon_sym_any] = ACTIONS(1619), - [anon_sym_DOLLARtypeof] = ACTIONS(1619), - [anon_sym_DOLLARtypefrom] = ACTIONS(1619), - [anon_sym_DOLLARvatype] = ACTIONS(1619), - [anon_sym_DOLLARevaltype] = ACTIONS(1619), - [sym_real_literal] = ACTIONS(1621), - }, - [682] = { - [sym_line_comment] = STATE(682), - [sym_doc_comment] = STATE(682), - [sym_block_comment] = STATE(682), - [sym_ident] = ACTIONS(1623), - [sym_integer_literal] = ACTIONS(1625), - [anon_sym_SQUOTE] = ACTIONS(1625), - [anon_sym_DQUOTE] = ACTIONS(1625), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_bytes_literal] = ACTIONS(1625), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1623), - [sym_at_ident] = ACTIONS(1625), - [sym_hash_ident] = ACTIONS(1625), - [sym_type_ident] = ACTIONS(1625), - [sym_ct_type_ident] = ACTIONS(1625), - [sym_const_ident] = ACTIONS(1623), - [sym_builtin] = ACTIONS(1625), - [anon_sym_LPAREN] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_static] = ACTIONS(1623), - [anon_sym_tlocal] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1625), - [anon_sym_fn] = ACTIONS(1623), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_const] = ACTIONS(1623), - [anon_sym_var] = ACTIONS(1623), - [anon_sym_return] = ACTIONS(1623), - [anon_sym_continue] = ACTIONS(1623), - [anon_sym_break] = ACTIONS(1623), - [anon_sym_defer] = ACTIONS(1623), - [anon_sym_assert] = ACTIONS(1623), - [anon_sym_nextcase] = ACTIONS(1623), - [anon_sym_switch] = ACTIONS(1623), - [anon_sym_AMP_AMP] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1623), - [anon_sym_for] = ACTIONS(1623), - [anon_sym_foreach] = ACTIONS(1623), - [anon_sym_foreach_r] = ACTIONS(1623), - [anon_sym_while] = ACTIONS(1623), - [anon_sym_do] = ACTIONS(1623), - [anon_sym_int] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_asm] = ACTIONS(1623), - [anon_sym_DOLLARassert] = ACTIONS(1623), - [anon_sym_DOLLARerror] = ACTIONS(1623), - [anon_sym_DOLLARecho] = ACTIONS(1623), - [anon_sym_DOLLARif] = ACTIONS(1623), - [anon_sym_DOLLARswitch] = ACTIONS(1623), - [anon_sym_DOLLARfor] = ACTIONS(1623), - [anon_sym_DOLLARendfor] = ACTIONS(1623), - [anon_sym_DOLLARforeach] = ACTIONS(1623), - [anon_sym_DOLLARalignof] = ACTIONS(1623), - [anon_sym_DOLLARextnameof] = ACTIONS(1623), - [anon_sym_DOLLARnameof] = ACTIONS(1623), - [anon_sym_DOLLARoffsetof] = ACTIONS(1623), - [anon_sym_DOLLARqnameof] = ACTIONS(1623), - [anon_sym_DOLLAReval] = ACTIONS(1623), - [anon_sym_DOLLARdefined] = ACTIONS(1623), - [anon_sym_DOLLARsizeof] = ACTIONS(1623), - [anon_sym_DOLLARstringify] = ACTIONS(1623), - [anon_sym_DOLLARis_const] = ACTIONS(1623), - [anon_sym_DOLLARvaconst] = ACTIONS(1623), - [anon_sym_DOLLARvaarg] = ACTIONS(1623), - [anon_sym_DOLLARvaref] = ACTIONS(1623), - [anon_sym_DOLLARvaexpr] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_null] = ACTIONS(1623), - [anon_sym_DOLLARvacount] = ACTIONS(1623), - [anon_sym_DOLLARfeature] = ACTIONS(1623), - [anon_sym_DOLLARand] = ACTIONS(1623), - [anon_sym_DOLLARor] = ACTIONS(1623), - [anon_sym_DOLLARassignable] = ACTIONS(1623), - [anon_sym_DOLLARembed] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1625), - [anon_sym_TILDE] = ACTIONS(1625), - [anon_sym_PLUS_PLUS] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1625), - [anon_sym_typeid] = ACTIONS(1623), - [anon_sym_LBRACE_PIPE] = ACTIONS(1625), - [anon_sym_void] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_ichar] = ACTIONS(1623), - [anon_sym_short] = ACTIONS(1623), - [anon_sym_ushort] = ACTIONS(1623), - [anon_sym_uint] = ACTIONS(1623), - [anon_sym_long] = ACTIONS(1623), - [anon_sym_ulong] = ACTIONS(1623), - [anon_sym_int128] = ACTIONS(1623), - [anon_sym_uint128] = ACTIONS(1623), - [anon_sym_float] = ACTIONS(1623), - [anon_sym_double] = ACTIONS(1623), - [anon_sym_float16] = ACTIONS(1623), - [anon_sym_bfloat16] = ACTIONS(1623), - [anon_sym_float128] = ACTIONS(1623), - [anon_sym_iptr] = ACTIONS(1623), - [anon_sym_uptr] = ACTIONS(1623), - [anon_sym_isz] = ACTIONS(1623), - [anon_sym_usz] = ACTIONS(1623), - [anon_sym_anyfault] = ACTIONS(1623), - [anon_sym_any] = ACTIONS(1623), - [anon_sym_DOLLARtypeof] = ACTIONS(1623), - [anon_sym_DOLLARtypefrom] = ACTIONS(1623), - [anon_sym_DOLLARvatype] = ACTIONS(1623), - [anon_sym_DOLLARevaltype] = ACTIONS(1623), - [sym_real_literal] = ACTIONS(1625), - }, - [683] = { - [sym_line_comment] = STATE(683), - [sym_doc_comment] = STATE(683), - [sym_block_comment] = STATE(683), - [sym_ident] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [anon_sym_BQUOTE] = ACTIONS(1629), - [sym_bytes_literal] = ACTIONS(1629), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1627), - [sym_at_ident] = ACTIONS(1629), - [sym_hash_ident] = ACTIONS(1629), - [sym_type_ident] = ACTIONS(1629), - [sym_ct_type_ident] = ACTIONS(1629), - [sym_const_ident] = ACTIONS(1627), - [sym_builtin] = ACTIONS(1629), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_AMP] = ACTIONS(1627), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_tlocal] = ACTIONS(1627), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_fn] = ACTIONS(1627), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_const] = ACTIONS(1627), - [anon_sym_var] = ACTIONS(1627), - [anon_sym_return] = ACTIONS(1627), - [anon_sym_continue] = ACTIONS(1627), - [anon_sym_break] = ACTIONS(1627), - [anon_sym_defer] = ACTIONS(1627), - [anon_sym_assert] = ACTIONS(1627), - [anon_sym_nextcase] = ACTIONS(1627), - [anon_sym_switch] = ACTIONS(1627), - [anon_sym_AMP_AMP] = ACTIONS(1629), - [anon_sym_if] = ACTIONS(1627), - [anon_sym_for] = ACTIONS(1627), - [anon_sym_foreach] = ACTIONS(1627), - [anon_sym_foreach_r] = ACTIONS(1627), - [anon_sym_while] = ACTIONS(1627), - [anon_sym_do] = ACTIONS(1627), - [anon_sym_int] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_STAR] = ACTIONS(1629), - [anon_sym_asm] = ACTIONS(1627), - [anon_sym_DOLLARassert] = ACTIONS(1627), - [anon_sym_DOLLARerror] = ACTIONS(1627), - [anon_sym_DOLLARecho] = ACTIONS(1627), - [anon_sym_DOLLARif] = ACTIONS(1627), - [anon_sym_DOLLARendif] = ACTIONS(1627), - [anon_sym_DOLLARswitch] = ACTIONS(1627), - [anon_sym_DOLLARfor] = ACTIONS(1627), - [anon_sym_DOLLARforeach] = ACTIONS(1627), - [anon_sym_DOLLARalignof] = ACTIONS(1627), - [anon_sym_DOLLARextnameof] = ACTIONS(1627), - [anon_sym_DOLLARnameof] = ACTIONS(1627), - [anon_sym_DOLLARoffsetof] = ACTIONS(1627), - [anon_sym_DOLLARqnameof] = ACTIONS(1627), - [anon_sym_DOLLAReval] = ACTIONS(1627), - [anon_sym_DOLLARdefined] = ACTIONS(1627), - [anon_sym_DOLLARsizeof] = ACTIONS(1627), - [anon_sym_DOLLARstringify] = ACTIONS(1627), - [anon_sym_DOLLARis_const] = ACTIONS(1627), - [anon_sym_DOLLARvaconst] = ACTIONS(1627), - [anon_sym_DOLLARvaarg] = ACTIONS(1627), - [anon_sym_DOLLARvaref] = ACTIONS(1627), - [anon_sym_DOLLARvaexpr] = ACTIONS(1627), - [anon_sym_true] = ACTIONS(1627), - [anon_sym_false] = ACTIONS(1627), - [anon_sym_null] = ACTIONS(1627), - [anon_sym_DOLLARvacount] = ACTIONS(1627), - [anon_sym_DOLLARfeature] = ACTIONS(1627), - [anon_sym_DOLLARand] = ACTIONS(1627), - [anon_sym_DOLLARor] = ACTIONS(1627), - [anon_sym_DOLLARassignable] = ACTIONS(1627), - [anon_sym_DOLLARembed] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1629), - [anon_sym_TILDE] = ACTIONS(1629), - [anon_sym_PLUS_PLUS] = ACTIONS(1629), - [anon_sym_DASH_DASH] = ACTIONS(1629), - [anon_sym_typeid] = ACTIONS(1627), - [anon_sym_LBRACE_PIPE] = ACTIONS(1629), - [anon_sym_void] = ACTIONS(1627), - [anon_sym_bool] = ACTIONS(1627), - [anon_sym_char] = ACTIONS(1627), - [anon_sym_ichar] = ACTIONS(1627), - [anon_sym_short] = ACTIONS(1627), - [anon_sym_ushort] = ACTIONS(1627), - [anon_sym_uint] = ACTIONS(1627), - [anon_sym_long] = ACTIONS(1627), - [anon_sym_ulong] = ACTIONS(1627), - [anon_sym_int128] = ACTIONS(1627), - [anon_sym_uint128] = ACTIONS(1627), - [anon_sym_float] = ACTIONS(1627), - [anon_sym_double] = ACTIONS(1627), - [anon_sym_float16] = ACTIONS(1627), - [anon_sym_bfloat16] = ACTIONS(1627), - [anon_sym_float128] = ACTIONS(1627), - [anon_sym_iptr] = ACTIONS(1627), - [anon_sym_uptr] = ACTIONS(1627), - [anon_sym_isz] = ACTIONS(1627), - [anon_sym_usz] = ACTIONS(1627), - [anon_sym_anyfault] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_DOLLARtypeof] = ACTIONS(1627), - [anon_sym_DOLLARtypefrom] = ACTIONS(1627), - [anon_sym_DOLLARvatype] = ACTIONS(1627), - [anon_sym_DOLLARevaltype] = ACTIONS(1627), - [sym_real_literal] = ACTIONS(1629), - }, - [684] = { - [sym_line_comment] = STATE(684), - [sym_doc_comment] = STATE(684), - [sym_block_comment] = STATE(684), [sym_ident] = ACTIONS(1381), [sym_integer_literal] = ACTIONS(1383), [anon_sym_SQUOTE] = ACTIONS(1383), @@ -103965,7 +103085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1383), [sym_bytes_literal] = ACTIONS(1383), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1381), [sym_at_ident] = ACTIONS(1383), @@ -104008,18 +103128,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARif] = ACTIONS(1381), [anon_sym_DOLLARswitch] = ACTIONS(1381), [anon_sym_DOLLARfor] = ACTIONS(1381), - [anon_sym_DOLLARendfor] = ACTIONS(1381), [anon_sym_DOLLARforeach] = ACTIONS(1381), + [anon_sym_DOLLARendforeach] = ACTIONS(1381), [anon_sym_DOLLARalignof] = ACTIONS(1381), [anon_sym_DOLLARextnameof] = ACTIONS(1381), [anon_sym_DOLLARnameof] = ACTIONS(1381), [anon_sym_DOLLARoffsetof] = ACTIONS(1381), [anon_sym_DOLLARqnameof] = ACTIONS(1381), - [anon_sym_DOLLAReval] = ACTIONS(1381), - [anon_sym_DOLLARdefined] = ACTIONS(1381), - [anon_sym_DOLLARsizeof] = ACTIONS(1381), - [anon_sym_DOLLARstringify] = ACTIONS(1381), - [anon_sym_DOLLARis_const] = ACTIONS(1381), [anon_sym_DOLLARvaconst] = ACTIONS(1381), [anon_sym_DOLLARvaarg] = ACTIONS(1381), [anon_sym_DOLLARvaref] = ACTIONS(1381), @@ -104028,11 +103143,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1381), [anon_sym_null] = ACTIONS(1381), [anon_sym_DOLLARvacount] = ACTIONS(1381), - [anon_sym_DOLLARfeature] = ACTIONS(1381), + [anon_sym_DOLLAReval] = ACTIONS(1381), + [anon_sym_DOLLARis_const] = ACTIONS(1381), + [anon_sym_DOLLARsizeof] = ACTIONS(1381), + [anon_sym_DOLLARstringify] = ACTIONS(1381), + [anon_sym_DOLLARappend] = ACTIONS(1381), + [anon_sym_DOLLARconcat] = ACTIONS(1381), + [anon_sym_DOLLARdefined] = ACTIONS(1381), + [anon_sym_DOLLARembed] = ACTIONS(1381), [anon_sym_DOLLARand] = ACTIONS(1381), [anon_sym_DOLLARor] = ACTIONS(1381), + [anon_sym_DOLLARfeature] = ACTIONS(1381), [anon_sym_DOLLARassignable] = ACTIONS(1381), - [anon_sym_DOLLARembed] = ACTIONS(1381), [anon_sym_BANG] = ACTIONS(1383), [anon_sym_TILDE] = ACTIONS(1383), [anon_sym_PLUS_PLUS] = ACTIONS(1383), @@ -104063,353 +103185,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1381), [anon_sym_DOLLARtypeof] = ACTIONS(1381), [anon_sym_DOLLARtypefrom] = ACTIONS(1381), - [anon_sym_DOLLARvatype] = ACTIONS(1381), [anon_sym_DOLLARevaltype] = ACTIONS(1381), + [anon_sym_DOLLARvatype] = ACTIONS(1381), [sym_real_literal] = ACTIONS(1383), }, - [685] = { - [sym_line_comment] = STATE(685), - [sym_doc_comment] = STATE(685), - [sym_block_comment] = STATE(685), - [sym_ident] = ACTIONS(1631), - [sym_integer_literal] = ACTIONS(1633), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_bytes_literal] = ACTIONS(1633), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1631), - [sym_at_ident] = ACTIONS(1633), - [sym_hash_ident] = ACTIONS(1633), - [sym_type_ident] = ACTIONS(1633), - [sym_ct_type_ident] = ACTIONS(1633), - [sym_const_ident] = ACTIONS(1631), - [sym_builtin] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_AMP] = ACTIONS(1631), - [anon_sym_static] = ACTIONS(1631), - [anon_sym_tlocal] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_defer] = ACTIONS(1631), - [anon_sym_assert] = ACTIONS(1631), - [anon_sym_nextcase] = ACTIONS(1631), - [anon_sym_switch] = ACTIONS(1631), - [anon_sym_AMP_AMP] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_foreach] = ACTIONS(1631), - [anon_sym_foreach_r] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_int] = ACTIONS(1631), - [anon_sym_PLUS] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_asm] = ACTIONS(1631), - [anon_sym_DOLLARassert] = ACTIONS(1631), - [anon_sym_DOLLARerror] = ACTIONS(1631), - [anon_sym_DOLLARecho] = ACTIONS(1631), - [anon_sym_DOLLARif] = ACTIONS(1631), - [anon_sym_DOLLARendif] = ACTIONS(1631), - [anon_sym_DOLLARswitch] = ACTIONS(1631), - [anon_sym_DOLLARfor] = ACTIONS(1631), - [anon_sym_DOLLARforeach] = ACTIONS(1631), - [anon_sym_DOLLARalignof] = ACTIONS(1631), - [anon_sym_DOLLARextnameof] = ACTIONS(1631), - [anon_sym_DOLLARnameof] = ACTIONS(1631), - [anon_sym_DOLLARoffsetof] = ACTIONS(1631), - [anon_sym_DOLLARqnameof] = ACTIONS(1631), - [anon_sym_DOLLAReval] = ACTIONS(1631), - [anon_sym_DOLLARdefined] = ACTIONS(1631), - [anon_sym_DOLLARsizeof] = ACTIONS(1631), - [anon_sym_DOLLARstringify] = ACTIONS(1631), - [anon_sym_DOLLARis_const] = ACTIONS(1631), - [anon_sym_DOLLARvaconst] = ACTIONS(1631), - [anon_sym_DOLLARvaarg] = ACTIONS(1631), - [anon_sym_DOLLARvaref] = ACTIONS(1631), - [anon_sym_DOLLARvaexpr] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1631), - [anon_sym_false] = ACTIONS(1631), - [anon_sym_null] = ACTIONS(1631), - [anon_sym_DOLLARvacount] = ACTIONS(1631), - [anon_sym_DOLLARfeature] = ACTIONS(1631), - [anon_sym_DOLLARand] = ACTIONS(1631), - [anon_sym_DOLLARor] = ACTIONS(1631), - [anon_sym_DOLLARassignable] = ACTIONS(1631), - [anon_sym_DOLLARembed] = ACTIONS(1631), - [anon_sym_BANG] = ACTIONS(1633), - [anon_sym_TILDE] = ACTIONS(1633), - [anon_sym_PLUS_PLUS] = ACTIONS(1633), - [anon_sym_DASH_DASH] = ACTIONS(1633), - [anon_sym_typeid] = ACTIONS(1631), - [anon_sym_LBRACE_PIPE] = ACTIONS(1633), - [anon_sym_void] = ACTIONS(1631), - [anon_sym_bool] = ACTIONS(1631), - [anon_sym_char] = ACTIONS(1631), - [anon_sym_ichar] = ACTIONS(1631), - [anon_sym_short] = ACTIONS(1631), - [anon_sym_ushort] = ACTIONS(1631), - [anon_sym_uint] = ACTIONS(1631), - [anon_sym_long] = ACTIONS(1631), - [anon_sym_ulong] = ACTIONS(1631), - [anon_sym_int128] = ACTIONS(1631), - [anon_sym_uint128] = ACTIONS(1631), - [anon_sym_float] = ACTIONS(1631), - [anon_sym_double] = ACTIONS(1631), - [anon_sym_float16] = ACTIONS(1631), - [anon_sym_bfloat16] = ACTIONS(1631), - [anon_sym_float128] = ACTIONS(1631), - [anon_sym_iptr] = ACTIONS(1631), - [anon_sym_uptr] = ACTIONS(1631), - [anon_sym_isz] = ACTIONS(1631), - [anon_sym_usz] = ACTIONS(1631), - [anon_sym_anyfault] = ACTIONS(1631), - [anon_sym_any] = ACTIONS(1631), - [anon_sym_DOLLARtypeof] = ACTIONS(1631), - [anon_sym_DOLLARtypefrom] = ACTIONS(1631), - [anon_sym_DOLLARvatype] = ACTIONS(1631), - [anon_sym_DOLLARevaltype] = ACTIONS(1631), - [sym_real_literal] = ACTIONS(1633), - }, - [686] = { - [sym_line_comment] = STATE(686), - [sym_doc_comment] = STATE(686), - [sym_block_comment] = STATE(686), - [sym_ident] = ACTIONS(1587), - [sym_integer_literal] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [anon_sym_BQUOTE] = ACTIONS(1589), - [sym_bytes_literal] = ACTIONS(1589), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1587), - [sym_at_ident] = ACTIONS(1589), - [sym_hash_ident] = ACTIONS(1589), - [sym_type_ident] = ACTIONS(1589), - [sym_ct_type_ident] = ACTIONS(1589), - [sym_const_ident] = ACTIONS(1587), - [sym_builtin] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_static] = ACTIONS(1587), - [anon_sym_tlocal] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_fn] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [anon_sym_var] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_defer] = ACTIONS(1587), - [anon_sym_assert] = ACTIONS(1587), - [anon_sym_nextcase] = ACTIONS(1587), - [anon_sym_switch] = ACTIONS(1587), - [anon_sym_AMP_AMP] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_foreach] = ACTIONS(1587), - [anon_sym_foreach_r] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_int] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_asm] = ACTIONS(1587), - [anon_sym_DOLLARassert] = ACTIONS(1587), - [anon_sym_DOLLARerror] = ACTIONS(1587), - [anon_sym_DOLLARecho] = ACTIONS(1587), - [anon_sym_DOLLARif] = ACTIONS(1587), - [anon_sym_DOLLARswitch] = ACTIONS(1587), - [anon_sym_DOLLARfor] = ACTIONS(1587), - [anon_sym_DOLLARendfor] = ACTIONS(1587), - [anon_sym_DOLLARforeach] = ACTIONS(1587), - [anon_sym_DOLLARalignof] = ACTIONS(1587), - [anon_sym_DOLLARextnameof] = ACTIONS(1587), - [anon_sym_DOLLARnameof] = ACTIONS(1587), - [anon_sym_DOLLARoffsetof] = ACTIONS(1587), - [anon_sym_DOLLARqnameof] = ACTIONS(1587), - [anon_sym_DOLLAReval] = ACTIONS(1587), - [anon_sym_DOLLARdefined] = ACTIONS(1587), - [anon_sym_DOLLARsizeof] = ACTIONS(1587), - [anon_sym_DOLLARstringify] = ACTIONS(1587), - [anon_sym_DOLLARis_const] = ACTIONS(1587), - [anon_sym_DOLLARvaconst] = ACTIONS(1587), - [anon_sym_DOLLARvaarg] = ACTIONS(1587), - [anon_sym_DOLLARvaref] = ACTIONS(1587), - [anon_sym_DOLLARvaexpr] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [anon_sym_DOLLARvacount] = ACTIONS(1587), - [anon_sym_DOLLARfeature] = ACTIONS(1587), - [anon_sym_DOLLARand] = ACTIONS(1587), - [anon_sym_DOLLARor] = ACTIONS(1587), - [anon_sym_DOLLARassignable] = ACTIONS(1587), - [anon_sym_DOLLARembed] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_typeid] = ACTIONS(1587), - [anon_sym_LBRACE_PIPE] = ACTIONS(1589), - [anon_sym_void] = ACTIONS(1587), - [anon_sym_bool] = ACTIONS(1587), - [anon_sym_char] = ACTIONS(1587), - [anon_sym_ichar] = ACTIONS(1587), - [anon_sym_short] = ACTIONS(1587), - [anon_sym_ushort] = ACTIONS(1587), - [anon_sym_uint] = ACTIONS(1587), - [anon_sym_long] = ACTIONS(1587), - [anon_sym_ulong] = ACTIONS(1587), - [anon_sym_int128] = ACTIONS(1587), - [anon_sym_uint128] = ACTIONS(1587), - [anon_sym_float] = ACTIONS(1587), - [anon_sym_double] = ACTIONS(1587), - [anon_sym_float16] = ACTIONS(1587), - [anon_sym_bfloat16] = ACTIONS(1587), - [anon_sym_float128] = ACTIONS(1587), - [anon_sym_iptr] = ACTIONS(1587), - [anon_sym_uptr] = ACTIONS(1587), - [anon_sym_isz] = ACTIONS(1587), - [anon_sym_usz] = ACTIONS(1587), - [anon_sym_anyfault] = ACTIONS(1587), - [anon_sym_any] = ACTIONS(1587), - [anon_sym_DOLLARtypeof] = ACTIONS(1587), - [anon_sym_DOLLARtypefrom] = ACTIONS(1587), - [anon_sym_DOLLARvatype] = ACTIONS(1587), - [anon_sym_DOLLARevaltype] = ACTIONS(1587), - [sym_real_literal] = ACTIONS(1589), - }, - [687] = { - [sym_line_comment] = STATE(687), - [sym_doc_comment] = STATE(687), - [sym_block_comment] = STATE(687), - [sym_ident] = ACTIONS(1579), - [sym_integer_literal] = ACTIONS(1581), - [anon_sym_SQUOTE] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1581), - [anon_sym_BQUOTE] = ACTIONS(1581), - [sym_bytes_literal] = ACTIONS(1581), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1579), - [sym_at_ident] = ACTIONS(1581), - [sym_hash_ident] = ACTIONS(1581), - [sym_type_ident] = ACTIONS(1581), - [sym_ct_type_ident] = ACTIONS(1581), - [sym_const_ident] = ACTIONS(1579), - [sym_builtin] = ACTIONS(1581), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_tlocal] = ACTIONS(1579), - [anon_sym_SEMI] = ACTIONS(1581), - [anon_sym_fn] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_var] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_defer] = ACTIONS(1579), - [anon_sym_assert] = ACTIONS(1579), - [anon_sym_nextcase] = ACTIONS(1579), - [anon_sym_switch] = ACTIONS(1579), - [anon_sym_AMP_AMP] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_foreach] = ACTIONS(1579), - [anon_sym_foreach_r] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_int] = ACTIONS(1579), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_STAR] = ACTIONS(1581), - [anon_sym_asm] = ACTIONS(1579), - [anon_sym_DOLLARassert] = ACTIONS(1579), - [anon_sym_DOLLARerror] = ACTIONS(1579), - [anon_sym_DOLLARecho] = ACTIONS(1579), - [anon_sym_DOLLARif] = ACTIONS(1579), - [anon_sym_DOLLARswitch] = ACTIONS(1579), - [anon_sym_DOLLARfor] = ACTIONS(1579), - [anon_sym_DOLLARendfor] = ACTIONS(1579), - [anon_sym_DOLLARforeach] = ACTIONS(1579), - [anon_sym_DOLLARalignof] = ACTIONS(1579), - [anon_sym_DOLLARextnameof] = ACTIONS(1579), - [anon_sym_DOLLARnameof] = ACTIONS(1579), - [anon_sym_DOLLARoffsetof] = ACTIONS(1579), - [anon_sym_DOLLARqnameof] = ACTIONS(1579), - [anon_sym_DOLLAReval] = ACTIONS(1579), - [anon_sym_DOLLARdefined] = ACTIONS(1579), - [anon_sym_DOLLARsizeof] = ACTIONS(1579), - [anon_sym_DOLLARstringify] = ACTIONS(1579), - [anon_sym_DOLLARis_const] = ACTIONS(1579), - [anon_sym_DOLLARvaconst] = ACTIONS(1579), - [anon_sym_DOLLARvaarg] = ACTIONS(1579), - [anon_sym_DOLLARvaref] = ACTIONS(1579), - [anon_sym_DOLLARvaexpr] = ACTIONS(1579), - [anon_sym_true] = ACTIONS(1579), - [anon_sym_false] = ACTIONS(1579), - [anon_sym_null] = ACTIONS(1579), - [anon_sym_DOLLARvacount] = ACTIONS(1579), - [anon_sym_DOLLARfeature] = ACTIONS(1579), - [anon_sym_DOLLARand] = ACTIONS(1579), - [anon_sym_DOLLARor] = ACTIONS(1579), - [anon_sym_DOLLARassignable] = ACTIONS(1579), - [anon_sym_DOLLARembed] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1581), - [anon_sym_TILDE] = ACTIONS(1581), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [anon_sym_typeid] = ACTIONS(1579), - [anon_sym_LBRACE_PIPE] = ACTIONS(1581), - [anon_sym_void] = ACTIONS(1579), - [anon_sym_bool] = ACTIONS(1579), - [anon_sym_char] = ACTIONS(1579), - [anon_sym_ichar] = ACTIONS(1579), - [anon_sym_short] = ACTIONS(1579), - [anon_sym_ushort] = ACTIONS(1579), - [anon_sym_uint] = ACTIONS(1579), - [anon_sym_long] = ACTIONS(1579), - [anon_sym_ulong] = ACTIONS(1579), - [anon_sym_int128] = ACTIONS(1579), - [anon_sym_uint128] = ACTIONS(1579), - [anon_sym_float] = ACTIONS(1579), - [anon_sym_double] = ACTIONS(1579), - [anon_sym_float16] = ACTIONS(1579), - [anon_sym_bfloat16] = ACTIONS(1579), - [anon_sym_float128] = ACTIONS(1579), - [anon_sym_iptr] = ACTIONS(1579), - [anon_sym_uptr] = ACTIONS(1579), - [anon_sym_isz] = ACTIONS(1579), - [anon_sym_usz] = ACTIONS(1579), - [anon_sym_anyfault] = ACTIONS(1579), - [anon_sym_any] = ACTIONS(1579), - [anon_sym_DOLLARtypeof] = ACTIONS(1579), - [anon_sym_DOLLARtypefrom] = ACTIONS(1579), - [anon_sym_DOLLARvatype] = ACTIONS(1579), - [anon_sym_DOLLARevaltype] = ACTIONS(1579), - [sym_real_literal] = ACTIONS(1581), - }, - [688] = { - [sym_line_comment] = STATE(688), - [sym_doc_comment] = STATE(688), - [sym_block_comment] = STATE(688), + [675] = { + [sym_line_comment] = STATE(675), + [sym_doc_comment] = STATE(675), + [sym_block_comment] = STATE(675), [sym_ident] = ACTIONS(1385), [sym_integer_literal] = ACTIONS(1387), [anon_sym_SQUOTE] = ACTIONS(1387), @@ -104417,7 +103200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1387), [sym_bytes_literal] = ACTIONS(1387), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1385), [sym_at_ident] = ACTIONS(1387), @@ -104467,11 +103250,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1385), [anon_sym_DOLLARoffsetof] = ACTIONS(1385), [anon_sym_DOLLARqnameof] = ACTIONS(1385), - [anon_sym_DOLLAReval] = ACTIONS(1385), - [anon_sym_DOLLARdefined] = ACTIONS(1385), - [anon_sym_DOLLARsizeof] = ACTIONS(1385), - [anon_sym_DOLLARstringify] = ACTIONS(1385), - [anon_sym_DOLLARis_const] = ACTIONS(1385), [anon_sym_DOLLARvaconst] = ACTIONS(1385), [anon_sym_DOLLARvaarg] = ACTIONS(1385), [anon_sym_DOLLARvaref] = ACTIONS(1385), @@ -104480,11 +103258,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1385), [anon_sym_null] = ACTIONS(1385), [anon_sym_DOLLARvacount] = ACTIONS(1385), - [anon_sym_DOLLARfeature] = ACTIONS(1385), + [anon_sym_DOLLAReval] = ACTIONS(1385), + [anon_sym_DOLLARis_const] = ACTIONS(1385), + [anon_sym_DOLLARsizeof] = ACTIONS(1385), + [anon_sym_DOLLARstringify] = ACTIONS(1385), + [anon_sym_DOLLARappend] = ACTIONS(1385), + [anon_sym_DOLLARconcat] = ACTIONS(1385), + [anon_sym_DOLLARdefined] = ACTIONS(1385), + [anon_sym_DOLLARembed] = ACTIONS(1385), [anon_sym_DOLLARand] = ACTIONS(1385), [anon_sym_DOLLARor] = ACTIONS(1385), + [anon_sym_DOLLARfeature] = ACTIONS(1385), [anon_sym_DOLLARassignable] = ACTIONS(1385), - [anon_sym_DOLLARembed] = ACTIONS(1385), [anon_sym_BANG] = ACTIONS(1387), [anon_sym_TILDE] = ACTIONS(1387), [anon_sym_PLUS_PLUS] = ACTIONS(1387), @@ -104515,14 +103300,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1385), [anon_sym_DOLLARtypeof] = ACTIONS(1385), [anon_sym_DOLLARtypefrom] = ACTIONS(1385), - [anon_sym_DOLLARvatype] = ACTIONS(1385), [anon_sym_DOLLARevaltype] = ACTIONS(1385), + [anon_sym_DOLLARvatype] = ACTIONS(1385), [sym_real_literal] = ACTIONS(1387), }, - [689] = { - [sym_line_comment] = STATE(689), - [sym_doc_comment] = STATE(689), - [sym_block_comment] = STATE(689), + [676] = { + [sym_line_comment] = STATE(676), + [sym_doc_comment] = STATE(676), + [sym_block_comment] = STATE(676), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARendforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), + }, + [677] = { + [sym_line_comment] = STATE(677), + [sym_doc_comment] = STATE(677), + [sym_block_comment] = STATE(677), [sym_ident] = ACTIONS(1389), [sym_integer_literal] = ACTIONS(1391), [anon_sym_SQUOTE] = ACTIONS(1391), @@ -104530,7 +103430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1391), [sym_bytes_literal] = ACTIONS(1391), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1389), [sym_at_ident] = ACTIONS(1391), @@ -104580,11 +103480,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1389), [anon_sym_DOLLARoffsetof] = ACTIONS(1389), [anon_sym_DOLLARqnameof] = ACTIONS(1389), - [anon_sym_DOLLAReval] = ACTIONS(1389), - [anon_sym_DOLLARdefined] = ACTIONS(1389), - [anon_sym_DOLLARsizeof] = ACTIONS(1389), - [anon_sym_DOLLARstringify] = ACTIONS(1389), - [anon_sym_DOLLARis_const] = ACTIONS(1389), [anon_sym_DOLLARvaconst] = ACTIONS(1389), [anon_sym_DOLLARvaarg] = ACTIONS(1389), [anon_sym_DOLLARvaref] = ACTIONS(1389), @@ -104593,11 +103488,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1389), [anon_sym_null] = ACTIONS(1389), [anon_sym_DOLLARvacount] = ACTIONS(1389), - [anon_sym_DOLLARfeature] = ACTIONS(1389), + [anon_sym_DOLLAReval] = ACTIONS(1389), + [anon_sym_DOLLARis_const] = ACTIONS(1389), + [anon_sym_DOLLARsizeof] = ACTIONS(1389), + [anon_sym_DOLLARstringify] = ACTIONS(1389), + [anon_sym_DOLLARappend] = ACTIONS(1389), + [anon_sym_DOLLARconcat] = ACTIONS(1389), + [anon_sym_DOLLARdefined] = ACTIONS(1389), + [anon_sym_DOLLARembed] = ACTIONS(1389), [anon_sym_DOLLARand] = ACTIONS(1389), [anon_sym_DOLLARor] = ACTIONS(1389), + [anon_sym_DOLLARfeature] = ACTIONS(1389), [anon_sym_DOLLARassignable] = ACTIONS(1389), - [anon_sym_DOLLARembed] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1391), [anon_sym_TILDE] = ACTIONS(1391), [anon_sym_PLUS_PLUS] = ACTIONS(1391), @@ -104628,14 +103530,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1389), [anon_sym_DOLLARtypeof] = ACTIONS(1389), [anon_sym_DOLLARtypefrom] = ACTIONS(1389), - [anon_sym_DOLLARvatype] = ACTIONS(1389), [anon_sym_DOLLARevaltype] = ACTIONS(1389), + [anon_sym_DOLLARvatype] = ACTIONS(1389), [sym_real_literal] = ACTIONS(1391), }, - [690] = { - [sym_line_comment] = STATE(690), - [sym_doc_comment] = STATE(690), - [sym_block_comment] = STATE(690), + [678] = { + [sym_line_comment] = STATE(678), + [sym_doc_comment] = STATE(678), + [sym_block_comment] = STATE(678), [sym_ident] = ACTIONS(1393), [sym_integer_literal] = ACTIONS(1395), [anon_sym_SQUOTE] = ACTIONS(1395), @@ -104643,7 +103545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1395), [sym_bytes_literal] = ACTIONS(1395), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1393), [sym_at_ident] = ACTIONS(1395), @@ -104693,11 +103595,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1393), [anon_sym_DOLLARoffsetof] = ACTIONS(1393), [anon_sym_DOLLARqnameof] = ACTIONS(1393), - [anon_sym_DOLLAReval] = ACTIONS(1393), - [anon_sym_DOLLARdefined] = ACTIONS(1393), - [anon_sym_DOLLARsizeof] = ACTIONS(1393), - [anon_sym_DOLLARstringify] = ACTIONS(1393), - [anon_sym_DOLLARis_const] = ACTIONS(1393), [anon_sym_DOLLARvaconst] = ACTIONS(1393), [anon_sym_DOLLARvaarg] = ACTIONS(1393), [anon_sym_DOLLARvaref] = ACTIONS(1393), @@ -104706,11 +103603,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1393), [anon_sym_null] = ACTIONS(1393), [anon_sym_DOLLARvacount] = ACTIONS(1393), - [anon_sym_DOLLARfeature] = ACTIONS(1393), + [anon_sym_DOLLAReval] = ACTIONS(1393), + [anon_sym_DOLLARis_const] = ACTIONS(1393), + [anon_sym_DOLLARsizeof] = ACTIONS(1393), + [anon_sym_DOLLARstringify] = ACTIONS(1393), + [anon_sym_DOLLARappend] = ACTIONS(1393), + [anon_sym_DOLLARconcat] = ACTIONS(1393), + [anon_sym_DOLLARdefined] = ACTIONS(1393), + [anon_sym_DOLLARembed] = ACTIONS(1393), [anon_sym_DOLLARand] = ACTIONS(1393), [anon_sym_DOLLARor] = ACTIONS(1393), + [anon_sym_DOLLARfeature] = ACTIONS(1393), [anon_sym_DOLLARassignable] = ACTIONS(1393), - [anon_sym_DOLLARembed] = ACTIONS(1393), [anon_sym_BANG] = ACTIONS(1395), [anon_sym_TILDE] = ACTIONS(1395), [anon_sym_PLUS_PLUS] = ACTIONS(1395), @@ -104741,14 +103645,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1393), [anon_sym_DOLLARtypeof] = ACTIONS(1393), [anon_sym_DOLLARtypefrom] = ACTIONS(1393), - [anon_sym_DOLLARvatype] = ACTIONS(1393), [anon_sym_DOLLARevaltype] = ACTIONS(1393), + [anon_sym_DOLLARvatype] = ACTIONS(1393), [sym_real_literal] = ACTIONS(1395), }, - [691] = { - [sym_line_comment] = STATE(691), - [sym_doc_comment] = STATE(691), - [sym_block_comment] = STATE(691), + [679] = { + [sym_line_comment] = STATE(679), + [sym_doc_comment] = STATE(679), + [sym_block_comment] = STATE(679), [sym_ident] = ACTIONS(1397), [sym_integer_literal] = ACTIONS(1399), [anon_sym_SQUOTE] = ACTIONS(1399), @@ -104756,7 +103660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1399), [sym_bytes_literal] = ACTIONS(1399), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1397), [sym_at_ident] = ACTIONS(1399), @@ -104806,11 +103710,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1397), [anon_sym_DOLLARoffsetof] = ACTIONS(1397), [anon_sym_DOLLARqnameof] = ACTIONS(1397), - [anon_sym_DOLLAReval] = ACTIONS(1397), - [anon_sym_DOLLARdefined] = ACTIONS(1397), - [anon_sym_DOLLARsizeof] = ACTIONS(1397), - [anon_sym_DOLLARstringify] = ACTIONS(1397), - [anon_sym_DOLLARis_const] = ACTIONS(1397), [anon_sym_DOLLARvaconst] = ACTIONS(1397), [anon_sym_DOLLARvaarg] = ACTIONS(1397), [anon_sym_DOLLARvaref] = ACTIONS(1397), @@ -104819,11 +103718,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1397), [anon_sym_null] = ACTIONS(1397), [anon_sym_DOLLARvacount] = ACTIONS(1397), - [anon_sym_DOLLARfeature] = ACTIONS(1397), + [anon_sym_DOLLAReval] = ACTIONS(1397), + [anon_sym_DOLLARis_const] = ACTIONS(1397), + [anon_sym_DOLLARsizeof] = ACTIONS(1397), + [anon_sym_DOLLARstringify] = ACTIONS(1397), + [anon_sym_DOLLARappend] = ACTIONS(1397), + [anon_sym_DOLLARconcat] = ACTIONS(1397), + [anon_sym_DOLLARdefined] = ACTIONS(1397), + [anon_sym_DOLLARembed] = ACTIONS(1397), [anon_sym_DOLLARand] = ACTIONS(1397), [anon_sym_DOLLARor] = ACTIONS(1397), + [anon_sym_DOLLARfeature] = ACTIONS(1397), [anon_sym_DOLLARassignable] = ACTIONS(1397), - [anon_sym_DOLLARembed] = ACTIONS(1397), [anon_sym_BANG] = ACTIONS(1399), [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_PLUS_PLUS] = ACTIONS(1399), @@ -104854,14 +103760,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1397), [anon_sym_DOLLARtypeof] = ACTIONS(1397), [anon_sym_DOLLARtypefrom] = ACTIONS(1397), - [anon_sym_DOLLARvatype] = ACTIONS(1397), [anon_sym_DOLLARevaltype] = ACTIONS(1397), + [anon_sym_DOLLARvatype] = ACTIONS(1397), [sym_real_literal] = ACTIONS(1399), }, - [692] = { - [sym_line_comment] = STATE(692), - [sym_doc_comment] = STATE(692), - [sym_block_comment] = STATE(692), + [680] = { + [sym_line_comment] = STATE(680), + [sym_doc_comment] = STATE(680), + [sym_block_comment] = STATE(680), [sym_ident] = ACTIONS(1401), [sym_integer_literal] = ACTIONS(1403), [anon_sym_SQUOTE] = ACTIONS(1403), @@ -104869,7 +103775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1403), [sym_bytes_literal] = ACTIONS(1403), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1401), [sym_at_ident] = ACTIONS(1403), @@ -104919,11 +103825,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1401), [anon_sym_DOLLARoffsetof] = ACTIONS(1401), [anon_sym_DOLLARqnameof] = ACTIONS(1401), - [anon_sym_DOLLAReval] = ACTIONS(1401), - [anon_sym_DOLLARdefined] = ACTIONS(1401), - [anon_sym_DOLLARsizeof] = ACTIONS(1401), - [anon_sym_DOLLARstringify] = ACTIONS(1401), - [anon_sym_DOLLARis_const] = ACTIONS(1401), [anon_sym_DOLLARvaconst] = ACTIONS(1401), [anon_sym_DOLLARvaarg] = ACTIONS(1401), [anon_sym_DOLLARvaref] = ACTIONS(1401), @@ -104932,11 +103833,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1401), [anon_sym_null] = ACTIONS(1401), [anon_sym_DOLLARvacount] = ACTIONS(1401), - [anon_sym_DOLLARfeature] = ACTIONS(1401), + [anon_sym_DOLLAReval] = ACTIONS(1401), + [anon_sym_DOLLARis_const] = ACTIONS(1401), + [anon_sym_DOLLARsizeof] = ACTIONS(1401), + [anon_sym_DOLLARstringify] = ACTIONS(1401), + [anon_sym_DOLLARappend] = ACTIONS(1401), + [anon_sym_DOLLARconcat] = ACTIONS(1401), + [anon_sym_DOLLARdefined] = ACTIONS(1401), + [anon_sym_DOLLARembed] = ACTIONS(1401), [anon_sym_DOLLARand] = ACTIONS(1401), [anon_sym_DOLLARor] = ACTIONS(1401), + [anon_sym_DOLLARfeature] = ACTIONS(1401), [anon_sym_DOLLARassignable] = ACTIONS(1401), - [anon_sym_DOLLARembed] = ACTIONS(1401), [anon_sym_BANG] = ACTIONS(1403), [anon_sym_TILDE] = ACTIONS(1403), [anon_sym_PLUS_PLUS] = ACTIONS(1403), @@ -104967,240 +103875,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1401), [anon_sym_DOLLARtypeof] = ACTIONS(1401), [anon_sym_DOLLARtypefrom] = ACTIONS(1401), - [anon_sym_DOLLARvatype] = ACTIONS(1401), [anon_sym_DOLLARevaltype] = ACTIONS(1401), + [anon_sym_DOLLARvatype] = ACTIONS(1401), [sym_real_literal] = ACTIONS(1403), }, - [693] = { - [sym_line_comment] = STATE(693), - [sym_doc_comment] = STATE(693), - [sym_block_comment] = STATE(693), - [sym_ident] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1427), - [anon_sym_SQUOTE] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1427), - [anon_sym_BQUOTE] = ACTIONS(1427), - [sym_bytes_literal] = ACTIONS(1427), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1425), - [sym_at_ident] = ACTIONS(1427), - [sym_hash_ident] = ACTIONS(1427), - [sym_type_ident] = ACTIONS(1427), - [sym_ct_type_ident] = ACTIONS(1427), - [sym_const_ident] = ACTIONS(1425), - [sym_builtin] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_tlocal] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_fn] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_var] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_defer] = ACTIONS(1425), - [anon_sym_assert] = ACTIONS(1425), - [anon_sym_nextcase] = ACTIONS(1425), - [anon_sym_switch] = ACTIONS(1425), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_foreach] = ACTIONS(1425), - [anon_sym_foreach_r] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_do] = ACTIONS(1425), - [anon_sym_int] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_asm] = ACTIONS(1425), - [anon_sym_DOLLARassert] = ACTIONS(1425), - [anon_sym_DOLLARerror] = ACTIONS(1425), - [anon_sym_DOLLARecho] = ACTIONS(1425), - [anon_sym_DOLLARif] = ACTIONS(1425), - [anon_sym_DOLLARendif] = ACTIONS(1425), - [anon_sym_DOLLARswitch] = ACTIONS(1425), - [anon_sym_DOLLARfor] = ACTIONS(1425), - [anon_sym_DOLLARforeach] = ACTIONS(1425), - [anon_sym_DOLLARalignof] = ACTIONS(1425), - [anon_sym_DOLLARextnameof] = ACTIONS(1425), - [anon_sym_DOLLARnameof] = ACTIONS(1425), - [anon_sym_DOLLARoffsetof] = ACTIONS(1425), - [anon_sym_DOLLARqnameof] = ACTIONS(1425), - [anon_sym_DOLLAReval] = ACTIONS(1425), - [anon_sym_DOLLARdefined] = ACTIONS(1425), - [anon_sym_DOLLARsizeof] = ACTIONS(1425), - [anon_sym_DOLLARstringify] = ACTIONS(1425), - [anon_sym_DOLLARis_const] = ACTIONS(1425), - [anon_sym_DOLLARvaconst] = ACTIONS(1425), - [anon_sym_DOLLARvaarg] = ACTIONS(1425), - [anon_sym_DOLLARvaref] = ACTIONS(1425), - [anon_sym_DOLLARvaexpr] = ACTIONS(1425), - [anon_sym_true] = ACTIONS(1425), - [anon_sym_false] = ACTIONS(1425), - [anon_sym_null] = ACTIONS(1425), - [anon_sym_DOLLARvacount] = ACTIONS(1425), - [anon_sym_DOLLARfeature] = ACTIONS(1425), - [anon_sym_DOLLARand] = ACTIONS(1425), - [anon_sym_DOLLARor] = ACTIONS(1425), - [anon_sym_DOLLARassignable] = ACTIONS(1425), - [anon_sym_DOLLARembed] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_typeid] = ACTIONS(1425), - [anon_sym_LBRACE_PIPE] = ACTIONS(1427), - [anon_sym_void] = ACTIONS(1425), - [anon_sym_bool] = ACTIONS(1425), - [anon_sym_char] = ACTIONS(1425), - [anon_sym_ichar] = ACTIONS(1425), - [anon_sym_short] = ACTIONS(1425), - [anon_sym_ushort] = ACTIONS(1425), - [anon_sym_uint] = ACTIONS(1425), - [anon_sym_long] = ACTIONS(1425), - [anon_sym_ulong] = ACTIONS(1425), - [anon_sym_int128] = ACTIONS(1425), - [anon_sym_uint128] = ACTIONS(1425), - [anon_sym_float] = ACTIONS(1425), - [anon_sym_double] = ACTIONS(1425), - [anon_sym_float16] = ACTIONS(1425), - [anon_sym_bfloat16] = ACTIONS(1425), - [anon_sym_float128] = ACTIONS(1425), - [anon_sym_iptr] = ACTIONS(1425), - [anon_sym_uptr] = ACTIONS(1425), - [anon_sym_isz] = ACTIONS(1425), - [anon_sym_usz] = ACTIONS(1425), - [anon_sym_anyfault] = ACTIONS(1425), - [anon_sym_any] = ACTIONS(1425), - [anon_sym_DOLLARtypeof] = ACTIONS(1425), - [anon_sym_DOLLARtypefrom] = ACTIONS(1425), - [anon_sym_DOLLARvatype] = ACTIONS(1425), - [anon_sym_DOLLARevaltype] = ACTIONS(1425), - [sym_real_literal] = ACTIONS(1427), - }, - [694] = { - [sym_line_comment] = STATE(694), - [sym_doc_comment] = STATE(694), - [sym_block_comment] = STATE(694), - [sym_ident] = ACTIONS(1503), - [sym_integer_literal] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_BQUOTE] = ACTIONS(1505), - [sym_bytes_literal] = ACTIONS(1505), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1503), - [sym_at_ident] = ACTIONS(1505), - [sym_hash_ident] = ACTIONS(1505), - [sym_type_ident] = ACTIONS(1505), - [sym_ct_type_ident] = ACTIONS(1505), - [sym_const_ident] = ACTIONS(1503), - [sym_builtin] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1503), - [anon_sym_tlocal] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym_fn] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_var] = ACTIONS(1503), - [anon_sym_return] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1503), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_defer] = ACTIONS(1503), - [anon_sym_assert] = ACTIONS(1503), - [anon_sym_nextcase] = ACTIONS(1503), - [anon_sym_switch] = ACTIONS(1503), - [anon_sym_AMP_AMP] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1503), - [anon_sym_for] = ACTIONS(1503), - [anon_sym_foreach] = ACTIONS(1503), - [anon_sym_foreach_r] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_do] = ACTIONS(1503), - [anon_sym_int] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_asm] = ACTIONS(1503), - [anon_sym_DOLLARassert] = ACTIONS(1503), - [anon_sym_DOLLARerror] = ACTIONS(1503), - [anon_sym_DOLLARecho] = ACTIONS(1503), - [anon_sym_DOLLARif] = ACTIONS(1503), - [anon_sym_DOLLARendif] = ACTIONS(1503), - [anon_sym_DOLLARswitch] = ACTIONS(1503), - [anon_sym_DOLLARfor] = ACTIONS(1503), - [anon_sym_DOLLARforeach] = ACTIONS(1503), - [anon_sym_DOLLARalignof] = ACTIONS(1503), - [anon_sym_DOLLARextnameof] = ACTIONS(1503), - [anon_sym_DOLLARnameof] = ACTIONS(1503), - [anon_sym_DOLLARoffsetof] = ACTIONS(1503), - [anon_sym_DOLLARqnameof] = ACTIONS(1503), - [anon_sym_DOLLAReval] = ACTIONS(1503), - [anon_sym_DOLLARdefined] = ACTIONS(1503), - [anon_sym_DOLLARsizeof] = ACTIONS(1503), - [anon_sym_DOLLARstringify] = ACTIONS(1503), - [anon_sym_DOLLARis_const] = ACTIONS(1503), - [anon_sym_DOLLARvaconst] = ACTIONS(1503), - [anon_sym_DOLLARvaarg] = ACTIONS(1503), - [anon_sym_DOLLARvaref] = ACTIONS(1503), - [anon_sym_DOLLARvaexpr] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1503), - [anon_sym_false] = ACTIONS(1503), - [anon_sym_null] = ACTIONS(1503), - [anon_sym_DOLLARvacount] = ACTIONS(1503), - [anon_sym_DOLLARfeature] = ACTIONS(1503), - [anon_sym_DOLLARand] = ACTIONS(1503), - [anon_sym_DOLLARor] = ACTIONS(1503), - [anon_sym_DOLLARassignable] = ACTIONS(1503), - [anon_sym_DOLLARembed] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1505), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [anon_sym_typeid] = ACTIONS(1503), - [anon_sym_LBRACE_PIPE] = ACTIONS(1505), - [anon_sym_void] = ACTIONS(1503), - [anon_sym_bool] = ACTIONS(1503), - [anon_sym_char] = ACTIONS(1503), - [anon_sym_ichar] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [anon_sym_ushort] = ACTIONS(1503), - [anon_sym_uint] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_ulong] = ACTIONS(1503), - [anon_sym_int128] = ACTIONS(1503), - [anon_sym_uint128] = ACTIONS(1503), - [anon_sym_float] = ACTIONS(1503), - [anon_sym_double] = ACTIONS(1503), - [anon_sym_float16] = ACTIONS(1503), - [anon_sym_bfloat16] = ACTIONS(1503), - [anon_sym_float128] = ACTIONS(1503), - [anon_sym_iptr] = ACTIONS(1503), - [anon_sym_uptr] = ACTIONS(1503), - [anon_sym_isz] = ACTIONS(1503), - [anon_sym_usz] = ACTIONS(1503), - [anon_sym_anyfault] = ACTIONS(1503), - [anon_sym_any] = ACTIONS(1503), - [anon_sym_DOLLARtypeof] = ACTIONS(1503), - [anon_sym_DOLLARtypefrom] = ACTIONS(1503), - [anon_sym_DOLLARvatype] = ACTIONS(1503), - [anon_sym_DOLLARevaltype] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1505), - }, - [695] = { - [sym_line_comment] = STATE(695), - [sym_doc_comment] = STATE(695), - [sym_block_comment] = STATE(695), + [681] = { + [sym_line_comment] = STATE(681), + [sym_doc_comment] = STATE(681), + [sym_block_comment] = STATE(681), [sym_ident] = ACTIONS(1405), [sym_integer_literal] = ACTIONS(1407), [anon_sym_SQUOTE] = ACTIONS(1407), @@ -105208,7 +103890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1407), [sym_bytes_literal] = ACTIONS(1407), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1405), [sym_at_ident] = ACTIONS(1407), @@ -105258,11 +103940,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1405), [anon_sym_DOLLARoffsetof] = ACTIONS(1405), [anon_sym_DOLLARqnameof] = ACTIONS(1405), - [anon_sym_DOLLAReval] = ACTIONS(1405), - [anon_sym_DOLLARdefined] = ACTIONS(1405), - [anon_sym_DOLLARsizeof] = ACTIONS(1405), - [anon_sym_DOLLARstringify] = ACTIONS(1405), - [anon_sym_DOLLARis_const] = ACTIONS(1405), [anon_sym_DOLLARvaconst] = ACTIONS(1405), [anon_sym_DOLLARvaarg] = ACTIONS(1405), [anon_sym_DOLLARvaref] = ACTIONS(1405), @@ -105271,11 +103948,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1405), [anon_sym_null] = ACTIONS(1405), [anon_sym_DOLLARvacount] = ACTIONS(1405), - [anon_sym_DOLLARfeature] = ACTIONS(1405), + [anon_sym_DOLLAReval] = ACTIONS(1405), + [anon_sym_DOLLARis_const] = ACTIONS(1405), + [anon_sym_DOLLARsizeof] = ACTIONS(1405), + [anon_sym_DOLLARstringify] = ACTIONS(1405), + [anon_sym_DOLLARappend] = ACTIONS(1405), + [anon_sym_DOLLARconcat] = ACTIONS(1405), + [anon_sym_DOLLARdefined] = ACTIONS(1405), + [anon_sym_DOLLARembed] = ACTIONS(1405), [anon_sym_DOLLARand] = ACTIONS(1405), [anon_sym_DOLLARor] = ACTIONS(1405), + [anon_sym_DOLLARfeature] = ACTIONS(1405), [anon_sym_DOLLARassignable] = ACTIONS(1405), - [anon_sym_DOLLARembed] = ACTIONS(1405), [anon_sym_BANG] = ACTIONS(1407), [anon_sym_TILDE] = ACTIONS(1407), [anon_sym_PLUS_PLUS] = ACTIONS(1407), @@ -105306,127 +103990,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1405), [anon_sym_DOLLARtypeof] = ACTIONS(1405), [anon_sym_DOLLARtypefrom] = ACTIONS(1405), - [anon_sym_DOLLARvatype] = ACTIONS(1405), [anon_sym_DOLLARevaltype] = ACTIONS(1405), + [anon_sym_DOLLARvatype] = ACTIONS(1405), [sym_real_literal] = ACTIONS(1407), }, - [696] = { - [sym_line_comment] = STATE(696), - [sym_doc_comment] = STATE(696), - [sym_block_comment] = STATE(696), - [sym_ident] = ACTIONS(1575), - [sym_integer_literal] = ACTIONS(1577), - [anon_sym_SQUOTE] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1577), - [anon_sym_BQUOTE] = ACTIONS(1577), - [sym_bytes_literal] = ACTIONS(1577), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1575), - [sym_at_ident] = ACTIONS(1577), - [sym_hash_ident] = ACTIONS(1577), - [sym_type_ident] = ACTIONS(1577), - [sym_ct_type_ident] = ACTIONS(1577), - [sym_const_ident] = ACTIONS(1575), - [sym_builtin] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1575), - [anon_sym_static] = ACTIONS(1575), - [anon_sym_tlocal] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_fn] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [anon_sym_var] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_defer] = ACTIONS(1575), - [anon_sym_assert] = ACTIONS(1575), - [anon_sym_nextcase] = ACTIONS(1575), - [anon_sym_switch] = ACTIONS(1575), - [anon_sym_AMP_AMP] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_foreach] = ACTIONS(1575), - [anon_sym_foreach_r] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_do] = ACTIONS(1575), - [anon_sym_int] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_asm] = ACTIONS(1575), - [anon_sym_DOLLARassert] = ACTIONS(1575), - [anon_sym_DOLLARerror] = ACTIONS(1575), - [anon_sym_DOLLARecho] = ACTIONS(1575), - [anon_sym_DOLLARif] = ACTIONS(1575), - [anon_sym_DOLLARswitch] = ACTIONS(1575), - [anon_sym_DOLLARfor] = ACTIONS(1575), - [anon_sym_DOLLARendfor] = ACTIONS(1575), - [anon_sym_DOLLARforeach] = ACTIONS(1575), - [anon_sym_DOLLARalignof] = ACTIONS(1575), - [anon_sym_DOLLARextnameof] = ACTIONS(1575), - [anon_sym_DOLLARnameof] = ACTIONS(1575), - [anon_sym_DOLLARoffsetof] = ACTIONS(1575), - [anon_sym_DOLLARqnameof] = ACTIONS(1575), - [anon_sym_DOLLAReval] = ACTIONS(1575), - [anon_sym_DOLLARdefined] = ACTIONS(1575), - [anon_sym_DOLLARsizeof] = ACTIONS(1575), - [anon_sym_DOLLARstringify] = ACTIONS(1575), - [anon_sym_DOLLARis_const] = ACTIONS(1575), - [anon_sym_DOLLARvaconst] = ACTIONS(1575), - [anon_sym_DOLLARvaarg] = ACTIONS(1575), - [anon_sym_DOLLARvaref] = ACTIONS(1575), - [anon_sym_DOLLARvaexpr] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_DOLLARvacount] = ACTIONS(1575), - [anon_sym_DOLLARfeature] = ACTIONS(1575), - [anon_sym_DOLLARand] = ACTIONS(1575), - [anon_sym_DOLLARor] = ACTIONS(1575), - [anon_sym_DOLLARassignable] = ACTIONS(1575), - [anon_sym_DOLLARembed] = ACTIONS(1575), - [anon_sym_BANG] = ACTIONS(1577), - [anon_sym_TILDE] = ACTIONS(1577), - [anon_sym_PLUS_PLUS] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1577), - [anon_sym_typeid] = ACTIONS(1575), - [anon_sym_LBRACE_PIPE] = ACTIONS(1577), - [anon_sym_void] = ACTIONS(1575), - [anon_sym_bool] = ACTIONS(1575), - [anon_sym_char] = ACTIONS(1575), - [anon_sym_ichar] = ACTIONS(1575), - [anon_sym_short] = ACTIONS(1575), - [anon_sym_ushort] = ACTIONS(1575), - [anon_sym_uint] = ACTIONS(1575), - [anon_sym_long] = ACTIONS(1575), - [anon_sym_ulong] = ACTIONS(1575), - [anon_sym_int128] = ACTIONS(1575), - [anon_sym_uint128] = ACTIONS(1575), - [anon_sym_float] = ACTIONS(1575), - [anon_sym_double] = ACTIONS(1575), - [anon_sym_float16] = ACTIONS(1575), - [anon_sym_bfloat16] = ACTIONS(1575), - [anon_sym_float128] = ACTIONS(1575), - [anon_sym_iptr] = ACTIONS(1575), - [anon_sym_uptr] = ACTIONS(1575), - [anon_sym_isz] = ACTIONS(1575), - [anon_sym_usz] = ACTIONS(1575), - [anon_sym_anyfault] = ACTIONS(1575), - [anon_sym_any] = ACTIONS(1575), - [anon_sym_DOLLARtypeof] = ACTIONS(1575), - [anon_sym_DOLLARtypefrom] = ACTIONS(1575), - [anon_sym_DOLLARvatype] = ACTIONS(1575), - [anon_sym_DOLLARevaltype] = ACTIONS(1575), - [sym_real_literal] = ACTIONS(1577), - }, - [697] = { - [sym_line_comment] = STATE(697), - [sym_doc_comment] = STATE(697), - [sym_block_comment] = STATE(697), + [682] = { + [sym_line_comment] = STATE(682), + [sym_doc_comment] = STATE(682), + [sym_block_comment] = STATE(682), [sym_ident] = ACTIONS(1409), [sym_integer_literal] = ACTIONS(1411), [anon_sym_SQUOTE] = ACTIONS(1411), @@ -105434,7 +104005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1411), [sym_bytes_literal] = ACTIONS(1411), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1409), [sym_at_ident] = ACTIONS(1411), @@ -105484,11 +104055,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1409), [anon_sym_DOLLARoffsetof] = ACTIONS(1409), [anon_sym_DOLLARqnameof] = ACTIONS(1409), - [anon_sym_DOLLAReval] = ACTIONS(1409), - [anon_sym_DOLLARdefined] = ACTIONS(1409), - [anon_sym_DOLLARsizeof] = ACTIONS(1409), - [anon_sym_DOLLARstringify] = ACTIONS(1409), - [anon_sym_DOLLARis_const] = ACTIONS(1409), [anon_sym_DOLLARvaconst] = ACTIONS(1409), [anon_sym_DOLLARvaarg] = ACTIONS(1409), [anon_sym_DOLLARvaref] = ACTIONS(1409), @@ -105497,11 +104063,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1409), [anon_sym_null] = ACTIONS(1409), [anon_sym_DOLLARvacount] = ACTIONS(1409), - [anon_sym_DOLLARfeature] = ACTIONS(1409), + [anon_sym_DOLLAReval] = ACTIONS(1409), + [anon_sym_DOLLARis_const] = ACTIONS(1409), + [anon_sym_DOLLARsizeof] = ACTIONS(1409), + [anon_sym_DOLLARstringify] = ACTIONS(1409), + [anon_sym_DOLLARappend] = ACTIONS(1409), + [anon_sym_DOLLARconcat] = ACTIONS(1409), + [anon_sym_DOLLARdefined] = ACTIONS(1409), + [anon_sym_DOLLARembed] = ACTIONS(1409), [anon_sym_DOLLARand] = ACTIONS(1409), [anon_sym_DOLLARor] = ACTIONS(1409), + [anon_sym_DOLLARfeature] = ACTIONS(1409), [anon_sym_DOLLARassignable] = ACTIONS(1409), - [anon_sym_DOLLARembed] = ACTIONS(1409), [anon_sym_BANG] = ACTIONS(1411), [anon_sym_TILDE] = ACTIONS(1411), [anon_sym_PLUS_PLUS] = ACTIONS(1411), @@ -105532,14 +104105,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1409), [anon_sym_DOLLARtypeof] = ACTIONS(1409), [anon_sym_DOLLARtypefrom] = ACTIONS(1409), - [anon_sym_DOLLARvatype] = ACTIONS(1409), [anon_sym_DOLLARevaltype] = ACTIONS(1409), + [anon_sym_DOLLARvatype] = ACTIONS(1409), [sym_real_literal] = ACTIONS(1411), }, - [698] = { - [sym_line_comment] = STATE(698), - [sym_doc_comment] = STATE(698), - [sym_block_comment] = STATE(698), + [683] = { + [sym_line_comment] = STATE(683), + [sym_doc_comment] = STATE(683), + [sym_block_comment] = STATE(683), [sym_ident] = ACTIONS(1413), [sym_integer_literal] = ACTIONS(1415), [anon_sym_SQUOTE] = ACTIONS(1415), @@ -105547,7 +104120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1415), [sym_bytes_literal] = ACTIONS(1415), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1413), [sym_at_ident] = ACTIONS(1415), @@ -105597,11 +104170,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1413), [anon_sym_DOLLARoffsetof] = ACTIONS(1413), [anon_sym_DOLLARqnameof] = ACTIONS(1413), - [anon_sym_DOLLAReval] = ACTIONS(1413), - [anon_sym_DOLLARdefined] = ACTIONS(1413), - [anon_sym_DOLLARsizeof] = ACTIONS(1413), - [anon_sym_DOLLARstringify] = ACTIONS(1413), - [anon_sym_DOLLARis_const] = ACTIONS(1413), [anon_sym_DOLLARvaconst] = ACTIONS(1413), [anon_sym_DOLLARvaarg] = ACTIONS(1413), [anon_sym_DOLLARvaref] = ACTIONS(1413), @@ -105610,11 +104178,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1413), [anon_sym_null] = ACTIONS(1413), [anon_sym_DOLLARvacount] = ACTIONS(1413), - [anon_sym_DOLLARfeature] = ACTIONS(1413), + [anon_sym_DOLLAReval] = ACTIONS(1413), + [anon_sym_DOLLARis_const] = ACTIONS(1413), + [anon_sym_DOLLARsizeof] = ACTIONS(1413), + [anon_sym_DOLLARstringify] = ACTIONS(1413), + [anon_sym_DOLLARappend] = ACTIONS(1413), + [anon_sym_DOLLARconcat] = ACTIONS(1413), + [anon_sym_DOLLARdefined] = ACTIONS(1413), + [anon_sym_DOLLARembed] = ACTIONS(1413), [anon_sym_DOLLARand] = ACTIONS(1413), [anon_sym_DOLLARor] = ACTIONS(1413), + [anon_sym_DOLLARfeature] = ACTIONS(1413), [anon_sym_DOLLARassignable] = ACTIONS(1413), - [anon_sym_DOLLARembed] = ACTIONS(1413), [anon_sym_BANG] = ACTIONS(1415), [anon_sym_TILDE] = ACTIONS(1415), [anon_sym_PLUS_PLUS] = ACTIONS(1415), @@ -105645,14 +104220,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1413), [anon_sym_DOLLARtypeof] = ACTIONS(1413), [anon_sym_DOLLARtypefrom] = ACTIONS(1413), - [anon_sym_DOLLARvatype] = ACTIONS(1413), [anon_sym_DOLLARevaltype] = ACTIONS(1413), + [anon_sym_DOLLARvatype] = ACTIONS(1413), [sym_real_literal] = ACTIONS(1415), }, - [699] = { - [sym_line_comment] = STATE(699), - [sym_doc_comment] = STATE(699), - [sym_block_comment] = STATE(699), + [684] = { + [sym_line_comment] = STATE(684), + [sym_doc_comment] = STATE(684), + [sym_block_comment] = STATE(684), [sym_ident] = ACTIONS(1417), [sym_integer_literal] = ACTIONS(1419), [anon_sym_SQUOTE] = ACTIONS(1419), @@ -105660,7 +104235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1419), [sym_bytes_literal] = ACTIONS(1419), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1417), [sym_at_ident] = ACTIONS(1419), @@ -105710,11 +104285,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARnameof] = ACTIONS(1417), [anon_sym_DOLLARoffsetof] = ACTIONS(1417), [anon_sym_DOLLARqnameof] = ACTIONS(1417), - [anon_sym_DOLLAReval] = ACTIONS(1417), - [anon_sym_DOLLARdefined] = ACTIONS(1417), - [anon_sym_DOLLARsizeof] = ACTIONS(1417), - [anon_sym_DOLLARstringify] = ACTIONS(1417), - [anon_sym_DOLLARis_const] = ACTIONS(1417), [anon_sym_DOLLARvaconst] = ACTIONS(1417), [anon_sym_DOLLARvaarg] = ACTIONS(1417), [anon_sym_DOLLARvaref] = ACTIONS(1417), @@ -105723,11 +104293,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1417), [anon_sym_null] = ACTIONS(1417), [anon_sym_DOLLARvacount] = ACTIONS(1417), - [anon_sym_DOLLARfeature] = ACTIONS(1417), + [anon_sym_DOLLAReval] = ACTIONS(1417), + [anon_sym_DOLLARis_const] = ACTIONS(1417), + [anon_sym_DOLLARsizeof] = ACTIONS(1417), + [anon_sym_DOLLARstringify] = ACTIONS(1417), + [anon_sym_DOLLARappend] = ACTIONS(1417), + [anon_sym_DOLLARconcat] = ACTIONS(1417), + [anon_sym_DOLLARdefined] = ACTIONS(1417), + [anon_sym_DOLLARembed] = ACTIONS(1417), [anon_sym_DOLLARand] = ACTIONS(1417), [anon_sym_DOLLARor] = ACTIONS(1417), + [anon_sym_DOLLARfeature] = ACTIONS(1417), [anon_sym_DOLLARassignable] = ACTIONS(1417), - [anon_sym_DOLLARembed] = ACTIONS(1417), [anon_sym_BANG] = ACTIONS(1419), [anon_sym_TILDE] = ACTIONS(1419), [anon_sym_PLUS_PLUS] = ACTIONS(1419), @@ -105758,127 +104335,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1417), [anon_sym_DOLLARtypeof] = ACTIONS(1417), [anon_sym_DOLLARtypefrom] = ACTIONS(1417), - [anon_sym_DOLLARvatype] = ACTIONS(1417), [anon_sym_DOLLARevaltype] = ACTIONS(1417), + [anon_sym_DOLLARvatype] = ACTIONS(1417), [sym_real_literal] = ACTIONS(1419), }, - [700] = { - [sym_line_comment] = STATE(700), - [sym_doc_comment] = STATE(700), - [sym_block_comment] = STATE(700), - [sym_ident] = ACTIONS(1563), - [sym_integer_literal] = ACTIONS(1565), - [anon_sym_SQUOTE] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1565), - [anon_sym_BQUOTE] = ACTIONS(1565), - [sym_bytes_literal] = ACTIONS(1565), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1563), - [sym_at_ident] = ACTIONS(1565), - [sym_hash_ident] = ACTIONS(1565), - [sym_type_ident] = ACTIONS(1565), - [sym_ct_type_ident] = ACTIONS(1565), - [sym_const_ident] = ACTIONS(1563), - [sym_builtin] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_static] = ACTIONS(1563), - [anon_sym_tlocal] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_fn] = ACTIONS(1563), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_const] = ACTIONS(1563), - [anon_sym_var] = ACTIONS(1563), - [anon_sym_return] = ACTIONS(1563), - [anon_sym_continue] = ACTIONS(1563), - [anon_sym_break] = ACTIONS(1563), - [anon_sym_defer] = ACTIONS(1563), - [anon_sym_assert] = ACTIONS(1563), - [anon_sym_nextcase] = ACTIONS(1563), - [anon_sym_switch] = ACTIONS(1563), - [anon_sym_AMP_AMP] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1563), - [anon_sym_for] = ACTIONS(1563), - [anon_sym_foreach] = ACTIONS(1563), - [anon_sym_foreach_r] = ACTIONS(1563), - [anon_sym_while] = ACTIONS(1563), - [anon_sym_do] = ACTIONS(1563), - [anon_sym_int] = ACTIONS(1563), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_asm] = ACTIONS(1563), - [anon_sym_DOLLARassert] = ACTIONS(1563), - [anon_sym_DOLLARerror] = ACTIONS(1563), - [anon_sym_DOLLARecho] = ACTIONS(1563), - [anon_sym_DOLLARif] = ACTIONS(1563), - [anon_sym_DOLLARswitch] = ACTIONS(1563), - [anon_sym_DOLLARfor] = ACTIONS(1563), - [anon_sym_DOLLARendfor] = ACTIONS(1563), - [anon_sym_DOLLARforeach] = ACTIONS(1563), - [anon_sym_DOLLARalignof] = ACTIONS(1563), - [anon_sym_DOLLARextnameof] = ACTIONS(1563), - [anon_sym_DOLLARnameof] = ACTIONS(1563), - [anon_sym_DOLLARoffsetof] = ACTIONS(1563), - [anon_sym_DOLLARqnameof] = ACTIONS(1563), - [anon_sym_DOLLAReval] = ACTIONS(1563), - [anon_sym_DOLLARdefined] = ACTIONS(1563), - [anon_sym_DOLLARsizeof] = ACTIONS(1563), - [anon_sym_DOLLARstringify] = ACTIONS(1563), - [anon_sym_DOLLARis_const] = ACTIONS(1563), - [anon_sym_DOLLARvaconst] = ACTIONS(1563), - [anon_sym_DOLLARvaarg] = ACTIONS(1563), - [anon_sym_DOLLARvaref] = ACTIONS(1563), - [anon_sym_DOLLARvaexpr] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1563), - [anon_sym_false] = ACTIONS(1563), - [anon_sym_null] = ACTIONS(1563), - [anon_sym_DOLLARvacount] = ACTIONS(1563), - [anon_sym_DOLLARfeature] = ACTIONS(1563), - [anon_sym_DOLLARand] = ACTIONS(1563), - [anon_sym_DOLLARor] = ACTIONS(1563), - [anon_sym_DOLLARassignable] = ACTIONS(1563), - [anon_sym_DOLLARembed] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_typeid] = ACTIONS(1563), - [anon_sym_LBRACE_PIPE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1563), - [anon_sym_bool] = ACTIONS(1563), - [anon_sym_char] = ACTIONS(1563), - [anon_sym_ichar] = ACTIONS(1563), - [anon_sym_short] = ACTIONS(1563), - [anon_sym_ushort] = ACTIONS(1563), - [anon_sym_uint] = ACTIONS(1563), - [anon_sym_long] = ACTIONS(1563), - [anon_sym_ulong] = ACTIONS(1563), - [anon_sym_int128] = ACTIONS(1563), - [anon_sym_uint128] = ACTIONS(1563), - [anon_sym_float] = ACTIONS(1563), - [anon_sym_double] = ACTIONS(1563), - [anon_sym_float16] = ACTIONS(1563), - [anon_sym_bfloat16] = ACTIONS(1563), - [anon_sym_float128] = ACTIONS(1563), - [anon_sym_iptr] = ACTIONS(1563), - [anon_sym_uptr] = ACTIONS(1563), - [anon_sym_isz] = ACTIONS(1563), - [anon_sym_usz] = ACTIONS(1563), - [anon_sym_anyfault] = ACTIONS(1563), - [anon_sym_any] = ACTIONS(1563), - [anon_sym_DOLLARtypeof] = ACTIONS(1563), - [anon_sym_DOLLARtypefrom] = ACTIONS(1563), - [anon_sym_DOLLARvatype] = ACTIONS(1563), - [anon_sym_DOLLARevaltype] = ACTIONS(1563), - [sym_real_literal] = ACTIONS(1565), - }, - [701] = { - [sym_line_comment] = STATE(701), - [sym_doc_comment] = STATE(701), - [sym_block_comment] = STATE(701), + [685] = { + [sym_line_comment] = STATE(685), + [sym_doc_comment] = STATE(685), + [sym_block_comment] = STATE(685), [sym_ident] = ACTIONS(1421), [sym_integer_literal] = ACTIONS(1423), [anon_sym_SQUOTE] = ACTIONS(1423), @@ -105886,7 +104350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1423), [sym_bytes_literal] = ACTIONS(1423), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1421), [sym_at_ident] = ACTIONS(1423), @@ -105917,3584 +104381,888 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_foreach] = ACTIONS(1421), [anon_sym_foreach_r] = ACTIONS(1421), [anon_sym_while] = ACTIONS(1421), - [anon_sym_do] = ACTIONS(1421), - [anon_sym_int] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_asm] = ACTIONS(1421), - [anon_sym_DOLLARassert] = ACTIONS(1421), - [anon_sym_DOLLARerror] = ACTIONS(1421), - [anon_sym_DOLLARecho] = ACTIONS(1421), - [anon_sym_DOLLARif] = ACTIONS(1421), - [anon_sym_DOLLARswitch] = ACTIONS(1421), - [anon_sym_DOLLARfor] = ACTIONS(1421), - [anon_sym_DOLLARforeach] = ACTIONS(1421), - [anon_sym_DOLLARendforeach] = ACTIONS(1421), - [anon_sym_DOLLARalignof] = ACTIONS(1421), - [anon_sym_DOLLARextnameof] = ACTIONS(1421), - [anon_sym_DOLLARnameof] = ACTIONS(1421), - [anon_sym_DOLLARoffsetof] = ACTIONS(1421), - [anon_sym_DOLLARqnameof] = ACTIONS(1421), - [anon_sym_DOLLAReval] = ACTIONS(1421), - [anon_sym_DOLLARdefined] = ACTIONS(1421), - [anon_sym_DOLLARsizeof] = ACTIONS(1421), - [anon_sym_DOLLARstringify] = ACTIONS(1421), - [anon_sym_DOLLARis_const] = ACTIONS(1421), - [anon_sym_DOLLARvaconst] = ACTIONS(1421), - [anon_sym_DOLLARvaarg] = ACTIONS(1421), - [anon_sym_DOLLARvaref] = ACTIONS(1421), - [anon_sym_DOLLARvaexpr] = ACTIONS(1421), - [anon_sym_true] = ACTIONS(1421), - [anon_sym_false] = ACTIONS(1421), - [anon_sym_null] = ACTIONS(1421), - [anon_sym_DOLLARvacount] = ACTIONS(1421), - [anon_sym_DOLLARfeature] = ACTIONS(1421), - [anon_sym_DOLLARand] = ACTIONS(1421), - [anon_sym_DOLLARor] = ACTIONS(1421), - [anon_sym_DOLLARassignable] = ACTIONS(1421), - [anon_sym_DOLLARembed] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_TILDE] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1423), - [anon_sym_typeid] = ACTIONS(1421), - [anon_sym_LBRACE_PIPE] = ACTIONS(1423), - [anon_sym_void] = ACTIONS(1421), - [anon_sym_bool] = ACTIONS(1421), - [anon_sym_char] = ACTIONS(1421), - [anon_sym_ichar] = ACTIONS(1421), - [anon_sym_short] = ACTIONS(1421), - [anon_sym_ushort] = ACTIONS(1421), - [anon_sym_uint] = ACTIONS(1421), - [anon_sym_long] = ACTIONS(1421), - [anon_sym_ulong] = ACTIONS(1421), - [anon_sym_int128] = ACTIONS(1421), - [anon_sym_uint128] = ACTIONS(1421), - [anon_sym_float] = ACTIONS(1421), - [anon_sym_double] = ACTIONS(1421), - [anon_sym_float16] = ACTIONS(1421), - [anon_sym_bfloat16] = ACTIONS(1421), - [anon_sym_float128] = ACTIONS(1421), - [anon_sym_iptr] = ACTIONS(1421), - [anon_sym_uptr] = ACTIONS(1421), - [anon_sym_isz] = ACTIONS(1421), - [anon_sym_usz] = ACTIONS(1421), - [anon_sym_anyfault] = ACTIONS(1421), - [anon_sym_any] = ACTIONS(1421), - [anon_sym_DOLLARtypeof] = ACTIONS(1421), - [anon_sym_DOLLARtypefrom] = ACTIONS(1421), - [anon_sym_DOLLARvatype] = ACTIONS(1421), - [anon_sym_DOLLARevaltype] = ACTIONS(1421), - [sym_real_literal] = ACTIONS(1423), - }, - [702] = { - [sym_line_comment] = STATE(702), - [sym_doc_comment] = STATE(702), - [sym_block_comment] = STATE(702), - [sym_ident] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1435), - [anon_sym_SQUOTE] = ACTIONS(1435), - [anon_sym_DQUOTE] = ACTIONS(1435), - [anon_sym_BQUOTE] = ACTIONS(1435), - [sym_bytes_literal] = ACTIONS(1435), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1433), - [sym_at_ident] = ACTIONS(1435), - [sym_hash_ident] = ACTIONS(1435), - [sym_type_ident] = ACTIONS(1435), - [sym_ct_type_ident] = ACTIONS(1435), - [sym_const_ident] = ACTIONS(1433), - [sym_builtin] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_tlocal] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_var] = ACTIONS(1433), - [anon_sym_return] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_defer] = ACTIONS(1433), - [anon_sym_assert] = ACTIONS(1433), - [anon_sym_nextcase] = ACTIONS(1433), - [anon_sym_switch] = ACTIONS(1433), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_foreach] = ACTIONS(1433), - [anon_sym_foreach_r] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_do] = ACTIONS(1433), - [anon_sym_int] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_asm] = ACTIONS(1433), - [anon_sym_DOLLARassert] = ACTIONS(1433), - [anon_sym_DOLLARerror] = ACTIONS(1433), - [anon_sym_DOLLARecho] = ACTIONS(1433), - [anon_sym_DOLLARif] = ACTIONS(1433), - [anon_sym_DOLLARswitch] = ACTIONS(1433), - [anon_sym_DOLLARfor] = ACTIONS(1433), - [anon_sym_DOLLARforeach] = ACTIONS(1433), - [anon_sym_DOLLARendforeach] = ACTIONS(1433), - [anon_sym_DOLLARalignof] = ACTIONS(1433), - [anon_sym_DOLLARextnameof] = ACTIONS(1433), - [anon_sym_DOLLARnameof] = ACTIONS(1433), - [anon_sym_DOLLARoffsetof] = ACTIONS(1433), - [anon_sym_DOLLARqnameof] = ACTIONS(1433), - [anon_sym_DOLLAReval] = ACTIONS(1433), - [anon_sym_DOLLARdefined] = ACTIONS(1433), - [anon_sym_DOLLARsizeof] = ACTIONS(1433), - [anon_sym_DOLLARstringify] = ACTIONS(1433), - [anon_sym_DOLLARis_const] = ACTIONS(1433), - [anon_sym_DOLLARvaconst] = ACTIONS(1433), - [anon_sym_DOLLARvaarg] = ACTIONS(1433), - [anon_sym_DOLLARvaref] = ACTIONS(1433), - [anon_sym_DOLLARvaexpr] = ACTIONS(1433), - [anon_sym_true] = ACTIONS(1433), - [anon_sym_false] = ACTIONS(1433), - [anon_sym_null] = ACTIONS(1433), - [anon_sym_DOLLARvacount] = ACTIONS(1433), - [anon_sym_DOLLARfeature] = ACTIONS(1433), - [anon_sym_DOLLARand] = ACTIONS(1433), - [anon_sym_DOLLARor] = ACTIONS(1433), - [anon_sym_DOLLARassignable] = ACTIONS(1433), - [anon_sym_DOLLARembed] = ACTIONS(1433), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_TILDE] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_typeid] = ACTIONS(1433), - [anon_sym_LBRACE_PIPE] = ACTIONS(1435), - [anon_sym_void] = ACTIONS(1433), - [anon_sym_bool] = ACTIONS(1433), - [anon_sym_char] = ACTIONS(1433), - [anon_sym_ichar] = ACTIONS(1433), - [anon_sym_short] = ACTIONS(1433), - [anon_sym_ushort] = ACTIONS(1433), - [anon_sym_uint] = ACTIONS(1433), - [anon_sym_long] = ACTIONS(1433), - [anon_sym_ulong] = ACTIONS(1433), - [anon_sym_int128] = ACTIONS(1433), - [anon_sym_uint128] = ACTIONS(1433), - [anon_sym_float] = ACTIONS(1433), - [anon_sym_double] = ACTIONS(1433), - [anon_sym_float16] = ACTIONS(1433), - [anon_sym_bfloat16] = ACTIONS(1433), - [anon_sym_float128] = ACTIONS(1433), - [anon_sym_iptr] = ACTIONS(1433), - [anon_sym_uptr] = ACTIONS(1433), - [anon_sym_isz] = ACTIONS(1433), - [anon_sym_usz] = ACTIONS(1433), - [anon_sym_anyfault] = ACTIONS(1433), - [anon_sym_any] = ACTIONS(1433), - [anon_sym_DOLLARtypeof] = ACTIONS(1433), - [anon_sym_DOLLARtypefrom] = ACTIONS(1433), - [anon_sym_DOLLARvatype] = ACTIONS(1433), - [anon_sym_DOLLARevaltype] = ACTIONS(1433), - [sym_real_literal] = ACTIONS(1435), - }, - [703] = { - [sym_line_comment] = STATE(703), - [sym_doc_comment] = STATE(703), - [sym_block_comment] = STATE(703), - [sym_ident] = ACTIONS(1437), - [sym_integer_literal] = ACTIONS(1439), - [anon_sym_SQUOTE] = ACTIONS(1439), - [anon_sym_DQUOTE] = ACTIONS(1439), - [anon_sym_BQUOTE] = ACTIONS(1439), - [sym_bytes_literal] = ACTIONS(1439), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1437), - [sym_at_ident] = ACTIONS(1439), - [sym_hash_ident] = ACTIONS(1439), - [sym_type_ident] = ACTIONS(1439), - [sym_ct_type_ident] = ACTIONS(1439), - [sym_const_ident] = ACTIONS(1437), - [sym_builtin] = ACTIONS(1439), - [anon_sym_LPAREN] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_tlocal] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1439), - [anon_sym_fn] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_var] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_defer] = ACTIONS(1437), - [anon_sym_assert] = ACTIONS(1437), - [anon_sym_nextcase] = ACTIONS(1437), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_foreach] = ACTIONS(1437), - [anon_sym_foreach_r] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_do] = ACTIONS(1437), - [anon_sym_int] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_asm] = ACTIONS(1437), - [anon_sym_DOLLARassert] = ACTIONS(1437), - [anon_sym_DOLLARerror] = ACTIONS(1437), - [anon_sym_DOLLARecho] = ACTIONS(1437), - [anon_sym_DOLLARif] = ACTIONS(1437), - [anon_sym_DOLLARswitch] = ACTIONS(1437), - [anon_sym_DOLLARfor] = ACTIONS(1437), - [anon_sym_DOLLARforeach] = ACTIONS(1437), - [anon_sym_DOLLARendforeach] = ACTIONS(1437), - [anon_sym_DOLLARalignof] = ACTIONS(1437), - [anon_sym_DOLLARextnameof] = ACTIONS(1437), - [anon_sym_DOLLARnameof] = ACTIONS(1437), - [anon_sym_DOLLARoffsetof] = ACTIONS(1437), - [anon_sym_DOLLARqnameof] = ACTIONS(1437), - [anon_sym_DOLLAReval] = ACTIONS(1437), - [anon_sym_DOLLARdefined] = ACTIONS(1437), - [anon_sym_DOLLARsizeof] = ACTIONS(1437), - [anon_sym_DOLLARstringify] = ACTIONS(1437), - [anon_sym_DOLLARis_const] = ACTIONS(1437), - [anon_sym_DOLLARvaconst] = ACTIONS(1437), - [anon_sym_DOLLARvaarg] = ACTIONS(1437), - [anon_sym_DOLLARvaref] = ACTIONS(1437), - [anon_sym_DOLLARvaexpr] = ACTIONS(1437), - [anon_sym_true] = ACTIONS(1437), - [anon_sym_false] = ACTIONS(1437), - [anon_sym_null] = ACTIONS(1437), - [anon_sym_DOLLARvacount] = ACTIONS(1437), - [anon_sym_DOLLARfeature] = ACTIONS(1437), - [anon_sym_DOLLARand] = ACTIONS(1437), - [anon_sym_DOLLARor] = ACTIONS(1437), - [anon_sym_DOLLARassignable] = ACTIONS(1437), - [anon_sym_DOLLARembed] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_TILDE] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_typeid] = ACTIONS(1437), - [anon_sym_LBRACE_PIPE] = ACTIONS(1439), - [anon_sym_void] = ACTIONS(1437), - [anon_sym_bool] = ACTIONS(1437), - [anon_sym_char] = ACTIONS(1437), - [anon_sym_ichar] = ACTIONS(1437), - [anon_sym_short] = ACTIONS(1437), - [anon_sym_ushort] = ACTIONS(1437), - [anon_sym_uint] = ACTIONS(1437), - [anon_sym_long] = ACTIONS(1437), - [anon_sym_ulong] = ACTIONS(1437), - [anon_sym_int128] = ACTIONS(1437), - [anon_sym_uint128] = ACTIONS(1437), - [anon_sym_float] = ACTIONS(1437), - [anon_sym_double] = ACTIONS(1437), - [anon_sym_float16] = ACTIONS(1437), - [anon_sym_bfloat16] = ACTIONS(1437), - [anon_sym_float128] = ACTIONS(1437), - [anon_sym_iptr] = ACTIONS(1437), - [anon_sym_uptr] = ACTIONS(1437), - [anon_sym_isz] = ACTIONS(1437), - [anon_sym_usz] = ACTIONS(1437), - [anon_sym_anyfault] = ACTIONS(1437), - [anon_sym_any] = ACTIONS(1437), - [anon_sym_DOLLARtypeof] = ACTIONS(1437), - [anon_sym_DOLLARtypefrom] = ACTIONS(1437), - [anon_sym_DOLLARvatype] = ACTIONS(1437), - [anon_sym_DOLLARevaltype] = ACTIONS(1437), - [sym_real_literal] = ACTIONS(1439), - }, - [704] = { - [sym_line_comment] = STATE(704), - [sym_doc_comment] = STATE(704), - [sym_block_comment] = STATE(704), - [sym_ident] = ACTIONS(1551), - [sym_integer_literal] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1553), - [anon_sym_BQUOTE] = ACTIONS(1553), - [sym_bytes_literal] = ACTIONS(1553), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1551), - [sym_at_ident] = ACTIONS(1553), - [sym_hash_ident] = ACTIONS(1553), - [sym_type_ident] = ACTIONS(1553), - [sym_ct_type_ident] = ACTIONS(1553), - [sym_const_ident] = ACTIONS(1551), - [sym_builtin] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1551), - [anon_sym_tlocal] = ACTIONS(1551), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_fn] = ACTIONS(1551), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_const] = ACTIONS(1551), - [anon_sym_var] = ACTIONS(1551), - [anon_sym_return] = ACTIONS(1551), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_break] = ACTIONS(1551), - [anon_sym_defer] = ACTIONS(1551), - [anon_sym_assert] = ACTIONS(1551), - [anon_sym_nextcase] = ACTIONS(1551), - [anon_sym_switch] = ACTIONS(1551), - [anon_sym_AMP_AMP] = ACTIONS(1553), - [anon_sym_if] = ACTIONS(1551), - [anon_sym_for] = ACTIONS(1551), - [anon_sym_foreach] = ACTIONS(1551), - [anon_sym_foreach_r] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1551), - [anon_sym_do] = ACTIONS(1551), - [anon_sym_int] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(1553), - [anon_sym_asm] = ACTIONS(1551), - [anon_sym_DOLLARassert] = ACTIONS(1551), - [anon_sym_DOLLARerror] = ACTIONS(1551), - [anon_sym_DOLLARecho] = ACTIONS(1551), - [anon_sym_DOLLARif] = ACTIONS(1551), - [anon_sym_DOLLARswitch] = ACTIONS(1551), - [anon_sym_DOLLARfor] = ACTIONS(1551), - [anon_sym_DOLLARendfor] = ACTIONS(1551), - [anon_sym_DOLLARforeach] = ACTIONS(1551), - [anon_sym_DOLLARalignof] = ACTIONS(1551), - [anon_sym_DOLLARextnameof] = ACTIONS(1551), - [anon_sym_DOLLARnameof] = ACTIONS(1551), - [anon_sym_DOLLARoffsetof] = ACTIONS(1551), - [anon_sym_DOLLARqnameof] = ACTIONS(1551), - [anon_sym_DOLLAReval] = ACTIONS(1551), - [anon_sym_DOLLARdefined] = ACTIONS(1551), - [anon_sym_DOLLARsizeof] = ACTIONS(1551), - [anon_sym_DOLLARstringify] = ACTIONS(1551), - [anon_sym_DOLLARis_const] = ACTIONS(1551), - [anon_sym_DOLLARvaconst] = ACTIONS(1551), - [anon_sym_DOLLARvaarg] = ACTIONS(1551), - [anon_sym_DOLLARvaref] = ACTIONS(1551), - [anon_sym_DOLLARvaexpr] = ACTIONS(1551), - [anon_sym_true] = ACTIONS(1551), - [anon_sym_false] = ACTIONS(1551), - [anon_sym_null] = ACTIONS(1551), - [anon_sym_DOLLARvacount] = ACTIONS(1551), - [anon_sym_DOLLARfeature] = ACTIONS(1551), - [anon_sym_DOLLARand] = ACTIONS(1551), - [anon_sym_DOLLARor] = ACTIONS(1551), - [anon_sym_DOLLARassignable] = ACTIONS(1551), - [anon_sym_DOLLARembed] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1553), - [anon_sym_TILDE] = ACTIONS(1553), - [anon_sym_PLUS_PLUS] = ACTIONS(1553), - [anon_sym_DASH_DASH] = ACTIONS(1553), - [anon_sym_typeid] = ACTIONS(1551), - [anon_sym_LBRACE_PIPE] = ACTIONS(1553), - [anon_sym_void] = ACTIONS(1551), - [anon_sym_bool] = ACTIONS(1551), - [anon_sym_char] = ACTIONS(1551), - [anon_sym_ichar] = ACTIONS(1551), - [anon_sym_short] = ACTIONS(1551), - [anon_sym_ushort] = ACTIONS(1551), - [anon_sym_uint] = ACTIONS(1551), - [anon_sym_long] = ACTIONS(1551), - [anon_sym_ulong] = ACTIONS(1551), - [anon_sym_int128] = ACTIONS(1551), - [anon_sym_uint128] = ACTIONS(1551), - [anon_sym_float] = ACTIONS(1551), - [anon_sym_double] = ACTIONS(1551), - [anon_sym_float16] = ACTIONS(1551), - [anon_sym_bfloat16] = ACTIONS(1551), - [anon_sym_float128] = ACTIONS(1551), - [anon_sym_iptr] = ACTIONS(1551), - [anon_sym_uptr] = ACTIONS(1551), - [anon_sym_isz] = ACTIONS(1551), - [anon_sym_usz] = ACTIONS(1551), - [anon_sym_anyfault] = ACTIONS(1551), - [anon_sym_any] = ACTIONS(1551), - [anon_sym_DOLLARtypeof] = ACTIONS(1551), - [anon_sym_DOLLARtypefrom] = ACTIONS(1551), - [anon_sym_DOLLARvatype] = ACTIONS(1551), - [anon_sym_DOLLARevaltype] = ACTIONS(1551), - [sym_real_literal] = ACTIONS(1553), - }, - [705] = { - [sym_line_comment] = STATE(705), - [sym_doc_comment] = STATE(705), - [sym_block_comment] = STATE(705), - [sym_ident] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(1443), - [anon_sym_SQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [anon_sym_BQUOTE] = ACTIONS(1443), - [sym_bytes_literal] = ACTIONS(1443), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1441), - [sym_at_ident] = ACTIONS(1443), - [sym_hash_ident] = ACTIONS(1443), - [sym_type_ident] = ACTIONS(1443), - [sym_ct_type_ident] = ACTIONS(1443), - [sym_const_ident] = ACTIONS(1441), - [sym_builtin] = ACTIONS(1443), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1441), - [anon_sym_static] = ACTIONS(1441), - [anon_sym_tlocal] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1443), - [anon_sym_fn] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_const] = ACTIONS(1441), - [anon_sym_var] = ACTIONS(1441), - [anon_sym_return] = ACTIONS(1441), - [anon_sym_continue] = ACTIONS(1441), - [anon_sym_break] = ACTIONS(1441), - [anon_sym_defer] = ACTIONS(1441), - [anon_sym_assert] = ACTIONS(1441), - [anon_sym_nextcase] = ACTIONS(1441), - [anon_sym_switch] = ACTIONS(1441), - [anon_sym_AMP_AMP] = ACTIONS(1443), - [anon_sym_if] = ACTIONS(1441), - [anon_sym_for] = ACTIONS(1441), - [anon_sym_foreach] = ACTIONS(1441), - [anon_sym_foreach_r] = ACTIONS(1441), - [anon_sym_while] = ACTIONS(1441), - [anon_sym_do] = ACTIONS(1441), - [anon_sym_int] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_asm] = ACTIONS(1441), - [anon_sym_DOLLARassert] = ACTIONS(1441), - [anon_sym_DOLLARerror] = ACTIONS(1441), - [anon_sym_DOLLARecho] = ACTIONS(1441), - [anon_sym_DOLLARif] = ACTIONS(1441), - [anon_sym_DOLLARswitch] = ACTIONS(1441), - [anon_sym_DOLLARfor] = ACTIONS(1441), - [anon_sym_DOLLARforeach] = ACTIONS(1441), - [anon_sym_DOLLARendforeach] = ACTIONS(1441), - [anon_sym_DOLLARalignof] = ACTIONS(1441), - [anon_sym_DOLLARextnameof] = ACTIONS(1441), - [anon_sym_DOLLARnameof] = ACTIONS(1441), - [anon_sym_DOLLARoffsetof] = ACTIONS(1441), - [anon_sym_DOLLARqnameof] = ACTIONS(1441), - [anon_sym_DOLLAReval] = ACTIONS(1441), - [anon_sym_DOLLARdefined] = ACTIONS(1441), - [anon_sym_DOLLARsizeof] = ACTIONS(1441), - [anon_sym_DOLLARstringify] = ACTIONS(1441), - [anon_sym_DOLLARis_const] = ACTIONS(1441), - [anon_sym_DOLLARvaconst] = ACTIONS(1441), - [anon_sym_DOLLARvaarg] = ACTIONS(1441), - [anon_sym_DOLLARvaref] = ACTIONS(1441), - [anon_sym_DOLLARvaexpr] = ACTIONS(1441), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), - [anon_sym_null] = ACTIONS(1441), - [anon_sym_DOLLARvacount] = ACTIONS(1441), - [anon_sym_DOLLARfeature] = ACTIONS(1441), - [anon_sym_DOLLARand] = ACTIONS(1441), - [anon_sym_DOLLARor] = ACTIONS(1441), - [anon_sym_DOLLARassignable] = ACTIONS(1441), - [anon_sym_DOLLARembed] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1443), - [anon_sym_TILDE] = ACTIONS(1443), - [anon_sym_PLUS_PLUS] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1443), - [anon_sym_typeid] = ACTIONS(1441), - [anon_sym_LBRACE_PIPE] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1441), - [anon_sym_bool] = ACTIONS(1441), - [anon_sym_char] = ACTIONS(1441), - [anon_sym_ichar] = ACTIONS(1441), - [anon_sym_short] = ACTIONS(1441), - [anon_sym_ushort] = ACTIONS(1441), - [anon_sym_uint] = ACTIONS(1441), - [anon_sym_long] = ACTIONS(1441), - [anon_sym_ulong] = ACTIONS(1441), - [anon_sym_int128] = ACTIONS(1441), - [anon_sym_uint128] = ACTIONS(1441), - [anon_sym_float] = ACTIONS(1441), - [anon_sym_double] = ACTIONS(1441), - [anon_sym_float16] = ACTIONS(1441), - [anon_sym_bfloat16] = ACTIONS(1441), - [anon_sym_float128] = ACTIONS(1441), - [anon_sym_iptr] = ACTIONS(1441), - [anon_sym_uptr] = ACTIONS(1441), - [anon_sym_isz] = ACTIONS(1441), - [anon_sym_usz] = ACTIONS(1441), - [anon_sym_anyfault] = ACTIONS(1441), - [anon_sym_any] = ACTIONS(1441), - [anon_sym_DOLLARtypeof] = ACTIONS(1441), - [anon_sym_DOLLARtypefrom] = ACTIONS(1441), - [anon_sym_DOLLARvatype] = ACTIONS(1441), - [anon_sym_DOLLARevaltype] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1443), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_int] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_asm] = ACTIONS(1421), + [anon_sym_DOLLARassert] = ACTIONS(1421), + [anon_sym_DOLLARerror] = ACTIONS(1421), + [anon_sym_DOLLARecho] = ACTIONS(1421), + [anon_sym_DOLLARif] = ACTIONS(1421), + [anon_sym_DOLLARswitch] = ACTIONS(1421), + [anon_sym_DOLLARfor] = ACTIONS(1421), + [anon_sym_DOLLARforeach] = ACTIONS(1421), + [anon_sym_DOLLARendforeach] = ACTIONS(1421), + [anon_sym_DOLLARalignof] = ACTIONS(1421), + [anon_sym_DOLLARextnameof] = ACTIONS(1421), + [anon_sym_DOLLARnameof] = ACTIONS(1421), + [anon_sym_DOLLARoffsetof] = ACTIONS(1421), + [anon_sym_DOLLARqnameof] = ACTIONS(1421), + [anon_sym_DOLLARvaconst] = ACTIONS(1421), + [anon_sym_DOLLARvaarg] = ACTIONS(1421), + [anon_sym_DOLLARvaref] = ACTIONS(1421), + [anon_sym_DOLLARvaexpr] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [anon_sym_null] = ACTIONS(1421), + [anon_sym_DOLLARvacount] = ACTIONS(1421), + [anon_sym_DOLLAReval] = ACTIONS(1421), + [anon_sym_DOLLARis_const] = ACTIONS(1421), + [anon_sym_DOLLARsizeof] = ACTIONS(1421), + [anon_sym_DOLLARstringify] = ACTIONS(1421), + [anon_sym_DOLLARappend] = ACTIONS(1421), + [anon_sym_DOLLARconcat] = ACTIONS(1421), + [anon_sym_DOLLARdefined] = ACTIONS(1421), + [anon_sym_DOLLARembed] = ACTIONS(1421), + [anon_sym_DOLLARand] = ACTIONS(1421), + [anon_sym_DOLLARor] = ACTIONS(1421), + [anon_sym_DOLLARfeature] = ACTIONS(1421), + [anon_sym_DOLLARassignable] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(1423), + [anon_sym_PLUS_PLUS] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1423), + [anon_sym_typeid] = ACTIONS(1421), + [anon_sym_LBRACE_PIPE] = ACTIONS(1423), + [anon_sym_void] = ACTIONS(1421), + [anon_sym_bool] = ACTIONS(1421), + [anon_sym_char] = ACTIONS(1421), + [anon_sym_ichar] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_ushort] = ACTIONS(1421), + [anon_sym_uint] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_ulong] = ACTIONS(1421), + [anon_sym_int128] = ACTIONS(1421), + [anon_sym_uint128] = ACTIONS(1421), + [anon_sym_float] = ACTIONS(1421), + [anon_sym_double] = ACTIONS(1421), + [anon_sym_float16] = ACTIONS(1421), + [anon_sym_bfloat16] = ACTIONS(1421), + [anon_sym_float128] = ACTIONS(1421), + [anon_sym_iptr] = ACTIONS(1421), + [anon_sym_uptr] = ACTIONS(1421), + [anon_sym_isz] = ACTIONS(1421), + [anon_sym_usz] = ACTIONS(1421), + [anon_sym_anyfault] = ACTIONS(1421), + [anon_sym_any] = ACTIONS(1421), + [anon_sym_DOLLARtypeof] = ACTIONS(1421), + [anon_sym_DOLLARtypefrom] = ACTIONS(1421), + [anon_sym_DOLLARevaltype] = ACTIONS(1421), + [anon_sym_DOLLARvatype] = ACTIONS(1421), + [sym_real_literal] = ACTIONS(1423), }, - [706] = { - [sym_line_comment] = STATE(706), - [sym_doc_comment] = STATE(706), - [sym_block_comment] = STATE(706), - [sym_ident] = ACTIONS(1453), - [sym_integer_literal] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [anon_sym_BQUOTE] = ACTIONS(1455), - [sym_bytes_literal] = ACTIONS(1455), + [686] = { + [sym_line_comment] = STATE(686), + [sym_doc_comment] = STATE(686), + [sym_block_comment] = STATE(686), + [sym_ident] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(1427), + [anon_sym_BQUOTE] = ACTIONS(1427), + [sym_bytes_literal] = ACTIONS(1427), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1453), - [sym_at_ident] = ACTIONS(1455), - [sym_hash_ident] = ACTIONS(1455), - [sym_type_ident] = ACTIONS(1455), - [sym_ct_type_ident] = ACTIONS(1455), - [sym_const_ident] = ACTIONS(1453), - [sym_builtin] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1453), - [anon_sym_tlocal] = ACTIONS(1453), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym_fn] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [anon_sym_var] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_defer] = ACTIONS(1453), - [anon_sym_assert] = ACTIONS(1453), - [anon_sym_nextcase] = ACTIONS(1453), - [anon_sym_switch] = ACTIONS(1453), - [anon_sym_AMP_AMP] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_foreach] = ACTIONS(1453), - [anon_sym_foreach_r] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_int] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_asm] = ACTIONS(1453), - [anon_sym_DOLLARassert] = ACTIONS(1453), - [anon_sym_DOLLARerror] = ACTIONS(1453), - [anon_sym_DOLLARecho] = ACTIONS(1453), - [anon_sym_DOLLARif] = ACTIONS(1453), - [anon_sym_DOLLARswitch] = ACTIONS(1453), - [anon_sym_DOLLARfor] = ACTIONS(1453), - [anon_sym_DOLLARforeach] = ACTIONS(1453), - [anon_sym_DOLLARendforeach] = ACTIONS(1453), - [anon_sym_DOLLARalignof] = ACTIONS(1453), - [anon_sym_DOLLARextnameof] = ACTIONS(1453), - [anon_sym_DOLLARnameof] = ACTIONS(1453), - [anon_sym_DOLLARoffsetof] = ACTIONS(1453), - [anon_sym_DOLLARqnameof] = ACTIONS(1453), - [anon_sym_DOLLAReval] = ACTIONS(1453), - [anon_sym_DOLLARdefined] = ACTIONS(1453), - [anon_sym_DOLLARsizeof] = ACTIONS(1453), - [anon_sym_DOLLARstringify] = ACTIONS(1453), - [anon_sym_DOLLARis_const] = ACTIONS(1453), - [anon_sym_DOLLARvaconst] = ACTIONS(1453), - [anon_sym_DOLLARvaarg] = ACTIONS(1453), - [anon_sym_DOLLARvaref] = ACTIONS(1453), - [anon_sym_DOLLARvaexpr] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_DOLLARvacount] = ACTIONS(1453), - [anon_sym_DOLLARfeature] = ACTIONS(1453), - [anon_sym_DOLLARand] = ACTIONS(1453), - [anon_sym_DOLLARor] = ACTIONS(1453), - [anon_sym_DOLLARassignable] = ACTIONS(1453), - [anon_sym_DOLLARembed] = ACTIONS(1453), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_TILDE] = ACTIONS(1455), - [anon_sym_PLUS_PLUS] = ACTIONS(1455), - [anon_sym_DASH_DASH] = ACTIONS(1455), - [anon_sym_typeid] = ACTIONS(1453), - [anon_sym_LBRACE_PIPE] = ACTIONS(1455), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_bool] = ACTIONS(1453), - [anon_sym_char] = ACTIONS(1453), - [anon_sym_ichar] = ACTIONS(1453), - [anon_sym_short] = ACTIONS(1453), - [anon_sym_ushort] = ACTIONS(1453), - [anon_sym_uint] = ACTIONS(1453), - [anon_sym_long] = ACTIONS(1453), - [anon_sym_ulong] = ACTIONS(1453), - [anon_sym_int128] = ACTIONS(1453), - [anon_sym_uint128] = ACTIONS(1453), - [anon_sym_float] = ACTIONS(1453), - [anon_sym_double] = ACTIONS(1453), - [anon_sym_float16] = ACTIONS(1453), - [anon_sym_bfloat16] = ACTIONS(1453), - [anon_sym_float128] = ACTIONS(1453), - [anon_sym_iptr] = ACTIONS(1453), - [anon_sym_uptr] = ACTIONS(1453), - [anon_sym_isz] = ACTIONS(1453), - [anon_sym_usz] = ACTIONS(1453), - [anon_sym_anyfault] = ACTIONS(1453), - [anon_sym_any] = ACTIONS(1453), - [anon_sym_DOLLARtypeof] = ACTIONS(1453), - [anon_sym_DOLLARtypefrom] = ACTIONS(1453), - [anon_sym_DOLLARvatype] = ACTIONS(1453), - [anon_sym_DOLLARevaltype] = ACTIONS(1453), - [sym_real_literal] = ACTIONS(1455), - }, - [707] = { - [sym_line_comment] = STATE(707), - [sym_doc_comment] = STATE(707), - [sym_block_comment] = STATE(707), - [sym_ident] = ACTIONS(1547), - [sym_integer_literal] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1549), - [anon_sym_BQUOTE] = ACTIONS(1549), - [sym_bytes_literal] = ACTIONS(1549), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1547), - [sym_at_ident] = ACTIONS(1549), - [sym_hash_ident] = ACTIONS(1549), - [sym_type_ident] = ACTIONS(1549), - [sym_ct_type_ident] = ACTIONS(1549), - [sym_const_ident] = ACTIONS(1547), - [sym_builtin] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1547), - [anon_sym_static] = ACTIONS(1547), - [anon_sym_tlocal] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_fn] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_const] = ACTIONS(1547), - [anon_sym_var] = ACTIONS(1547), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_continue] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1547), - [anon_sym_defer] = ACTIONS(1547), - [anon_sym_assert] = ACTIONS(1547), - [anon_sym_nextcase] = ACTIONS(1547), - [anon_sym_switch] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1547), - [anon_sym_for] = ACTIONS(1547), - [anon_sym_foreach] = ACTIONS(1547), - [anon_sym_foreach_r] = ACTIONS(1547), - [anon_sym_while] = ACTIONS(1547), - [anon_sym_do] = ACTIONS(1547), - [anon_sym_int] = ACTIONS(1547), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1549), - [anon_sym_asm] = ACTIONS(1547), - [anon_sym_DOLLARassert] = ACTIONS(1547), - [anon_sym_DOLLARerror] = ACTIONS(1547), - [anon_sym_DOLLARecho] = ACTIONS(1547), - [anon_sym_DOLLARif] = ACTIONS(1547), - [anon_sym_DOLLARswitch] = ACTIONS(1547), - [anon_sym_DOLLARfor] = ACTIONS(1547), - [anon_sym_DOLLARendfor] = ACTIONS(1547), - [anon_sym_DOLLARforeach] = ACTIONS(1547), - [anon_sym_DOLLARalignof] = ACTIONS(1547), - [anon_sym_DOLLARextnameof] = ACTIONS(1547), - [anon_sym_DOLLARnameof] = ACTIONS(1547), - [anon_sym_DOLLARoffsetof] = ACTIONS(1547), - [anon_sym_DOLLARqnameof] = ACTIONS(1547), - [anon_sym_DOLLAReval] = ACTIONS(1547), - [anon_sym_DOLLARdefined] = ACTIONS(1547), - [anon_sym_DOLLARsizeof] = ACTIONS(1547), - [anon_sym_DOLLARstringify] = ACTIONS(1547), - [anon_sym_DOLLARis_const] = ACTIONS(1547), - [anon_sym_DOLLARvaconst] = ACTIONS(1547), - [anon_sym_DOLLARvaarg] = ACTIONS(1547), - [anon_sym_DOLLARvaref] = ACTIONS(1547), - [anon_sym_DOLLARvaexpr] = ACTIONS(1547), - [anon_sym_true] = ACTIONS(1547), - [anon_sym_false] = ACTIONS(1547), - [anon_sym_null] = ACTIONS(1547), - [anon_sym_DOLLARvacount] = ACTIONS(1547), - [anon_sym_DOLLARfeature] = ACTIONS(1547), - [anon_sym_DOLLARand] = ACTIONS(1547), - [anon_sym_DOLLARor] = ACTIONS(1547), - [anon_sym_DOLLARassignable] = ACTIONS(1547), - [anon_sym_DOLLARembed] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_typeid] = ACTIONS(1547), - [anon_sym_LBRACE_PIPE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1547), - [anon_sym_bool] = ACTIONS(1547), - [anon_sym_char] = ACTIONS(1547), - [anon_sym_ichar] = ACTIONS(1547), - [anon_sym_short] = ACTIONS(1547), - [anon_sym_ushort] = ACTIONS(1547), - [anon_sym_uint] = ACTIONS(1547), - [anon_sym_long] = ACTIONS(1547), - [anon_sym_ulong] = ACTIONS(1547), - [anon_sym_int128] = ACTIONS(1547), - [anon_sym_uint128] = ACTIONS(1547), - [anon_sym_float] = ACTIONS(1547), - [anon_sym_double] = ACTIONS(1547), - [anon_sym_float16] = ACTIONS(1547), - [anon_sym_bfloat16] = ACTIONS(1547), - [anon_sym_float128] = ACTIONS(1547), - [anon_sym_iptr] = ACTIONS(1547), - [anon_sym_uptr] = ACTIONS(1547), - [anon_sym_isz] = ACTIONS(1547), - [anon_sym_usz] = ACTIONS(1547), - [anon_sym_anyfault] = ACTIONS(1547), - [anon_sym_any] = ACTIONS(1547), - [anon_sym_DOLLARtypeof] = ACTIONS(1547), - [anon_sym_DOLLARtypefrom] = ACTIONS(1547), - [anon_sym_DOLLARvatype] = ACTIONS(1547), - [anon_sym_DOLLARevaltype] = ACTIONS(1547), - [sym_real_literal] = ACTIONS(1549), + [sym_ct_ident] = ACTIONS(1425), + [sym_at_ident] = ACTIONS(1427), + [sym_hash_ident] = ACTIONS(1427), + [sym_type_ident] = ACTIONS(1427), + [sym_ct_type_ident] = ACTIONS(1427), + [sym_const_ident] = ACTIONS(1425), + [sym_builtin] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_tlocal] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_fn] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_var] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_defer] = ACTIONS(1425), + [anon_sym_assert] = ACTIONS(1425), + [anon_sym_nextcase] = ACTIONS(1425), + [anon_sym_switch] = ACTIONS(1425), + [anon_sym_AMP_AMP] = ACTIONS(1427), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_foreach] = ACTIONS(1425), + [anon_sym_foreach_r] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_int] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_asm] = ACTIONS(1425), + [anon_sym_DOLLARassert] = ACTIONS(1425), + [anon_sym_DOLLARerror] = ACTIONS(1425), + [anon_sym_DOLLARecho] = ACTIONS(1425), + [anon_sym_DOLLARif] = ACTIONS(1425), + [anon_sym_DOLLARswitch] = ACTIONS(1425), + [anon_sym_DOLLARfor] = ACTIONS(1425), + [anon_sym_DOLLARforeach] = ACTIONS(1425), + [anon_sym_DOLLARendforeach] = ACTIONS(1425), + [anon_sym_DOLLARalignof] = ACTIONS(1425), + [anon_sym_DOLLARextnameof] = ACTIONS(1425), + [anon_sym_DOLLARnameof] = ACTIONS(1425), + [anon_sym_DOLLARoffsetof] = ACTIONS(1425), + [anon_sym_DOLLARqnameof] = ACTIONS(1425), + [anon_sym_DOLLARvaconst] = ACTIONS(1425), + [anon_sym_DOLLARvaarg] = ACTIONS(1425), + [anon_sym_DOLLARvaref] = ACTIONS(1425), + [anon_sym_DOLLARvaexpr] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_DOLLARvacount] = ACTIONS(1425), + [anon_sym_DOLLAReval] = ACTIONS(1425), + [anon_sym_DOLLARis_const] = ACTIONS(1425), + [anon_sym_DOLLARsizeof] = ACTIONS(1425), + [anon_sym_DOLLARstringify] = ACTIONS(1425), + [anon_sym_DOLLARappend] = ACTIONS(1425), + [anon_sym_DOLLARconcat] = ACTIONS(1425), + [anon_sym_DOLLARdefined] = ACTIONS(1425), + [anon_sym_DOLLARembed] = ACTIONS(1425), + [anon_sym_DOLLARand] = ACTIONS(1425), + [anon_sym_DOLLARor] = ACTIONS(1425), + [anon_sym_DOLLARfeature] = ACTIONS(1425), + [anon_sym_DOLLARassignable] = ACTIONS(1425), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1427), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_typeid] = ACTIONS(1425), + [anon_sym_LBRACE_PIPE] = ACTIONS(1427), + [anon_sym_void] = ACTIONS(1425), + [anon_sym_bool] = ACTIONS(1425), + [anon_sym_char] = ACTIONS(1425), + [anon_sym_ichar] = ACTIONS(1425), + [anon_sym_short] = ACTIONS(1425), + [anon_sym_ushort] = ACTIONS(1425), + [anon_sym_uint] = ACTIONS(1425), + [anon_sym_long] = ACTIONS(1425), + [anon_sym_ulong] = ACTIONS(1425), + [anon_sym_int128] = ACTIONS(1425), + [anon_sym_uint128] = ACTIONS(1425), + [anon_sym_float] = ACTIONS(1425), + [anon_sym_double] = ACTIONS(1425), + [anon_sym_float16] = ACTIONS(1425), + [anon_sym_bfloat16] = ACTIONS(1425), + [anon_sym_float128] = ACTIONS(1425), + [anon_sym_iptr] = ACTIONS(1425), + [anon_sym_uptr] = ACTIONS(1425), + [anon_sym_isz] = ACTIONS(1425), + [anon_sym_usz] = ACTIONS(1425), + [anon_sym_anyfault] = ACTIONS(1425), + [anon_sym_any] = ACTIONS(1425), + [anon_sym_DOLLARtypeof] = ACTIONS(1425), + [anon_sym_DOLLARtypefrom] = ACTIONS(1425), + [anon_sym_DOLLARevaltype] = ACTIONS(1425), + [anon_sym_DOLLARvatype] = ACTIONS(1425), + [sym_real_literal] = ACTIONS(1427), }, - [708] = { - [sym_line_comment] = STATE(708), - [sym_doc_comment] = STATE(708), - [sym_block_comment] = STATE(708), - [sym_ident] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1459), - [anon_sym_DQUOTE] = ACTIONS(1459), - [anon_sym_BQUOTE] = ACTIONS(1459), - [sym_bytes_literal] = ACTIONS(1459), + [687] = { + [sym_line_comment] = STATE(687), + [sym_doc_comment] = STATE(687), + [sym_block_comment] = STATE(687), + [sym_ident] = ACTIONS(1429), + [sym_integer_literal] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [anon_sym_BQUOTE] = ACTIONS(1431), + [sym_bytes_literal] = ACTIONS(1431), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1457), - [sym_at_ident] = ACTIONS(1459), - [sym_hash_ident] = ACTIONS(1459), - [sym_type_ident] = ACTIONS(1459), - [sym_ct_type_ident] = ACTIONS(1459), - [sym_const_ident] = ACTIONS(1457), - [sym_builtin] = ACTIONS(1459), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_AMP] = ACTIONS(1457), - [anon_sym_static] = ACTIONS(1457), - [anon_sym_tlocal] = ACTIONS(1457), - [anon_sym_SEMI] = ACTIONS(1459), - [anon_sym_fn] = ACTIONS(1457), - [anon_sym_LBRACE] = ACTIONS(1457), - [anon_sym_const] = ACTIONS(1457), - [anon_sym_var] = ACTIONS(1457), - [anon_sym_return] = ACTIONS(1457), - [anon_sym_continue] = ACTIONS(1457), - [anon_sym_break] = ACTIONS(1457), - [anon_sym_defer] = ACTIONS(1457), - [anon_sym_assert] = ACTIONS(1457), - [anon_sym_nextcase] = ACTIONS(1457), - [anon_sym_switch] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(1459), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_for] = ACTIONS(1457), - [anon_sym_foreach] = ACTIONS(1457), - [anon_sym_foreach_r] = ACTIONS(1457), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_do] = ACTIONS(1457), - [anon_sym_int] = ACTIONS(1457), - [anon_sym_PLUS] = ACTIONS(1457), - [anon_sym_DASH] = ACTIONS(1457), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_asm] = ACTIONS(1457), - [anon_sym_DOLLARassert] = ACTIONS(1457), - [anon_sym_DOLLARerror] = ACTIONS(1457), - [anon_sym_DOLLARecho] = ACTIONS(1457), - [anon_sym_DOLLARif] = ACTIONS(1457), - [anon_sym_DOLLARswitch] = ACTIONS(1457), - [anon_sym_DOLLARfor] = ACTIONS(1457), - [anon_sym_DOLLARforeach] = ACTIONS(1457), - [anon_sym_DOLLARendforeach] = ACTIONS(1457), - [anon_sym_DOLLARalignof] = ACTIONS(1457), - [anon_sym_DOLLARextnameof] = ACTIONS(1457), - [anon_sym_DOLLARnameof] = ACTIONS(1457), - [anon_sym_DOLLARoffsetof] = ACTIONS(1457), - [anon_sym_DOLLARqnameof] = ACTIONS(1457), - [anon_sym_DOLLAReval] = ACTIONS(1457), - [anon_sym_DOLLARdefined] = ACTIONS(1457), - [anon_sym_DOLLARsizeof] = ACTIONS(1457), - [anon_sym_DOLLARstringify] = ACTIONS(1457), - [anon_sym_DOLLARis_const] = ACTIONS(1457), - [anon_sym_DOLLARvaconst] = ACTIONS(1457), - [anon_sym_DOLLARvaarg] = ACTIONS(1457), - [anon_sym_DOLLARvaref] = ACTIONS(1457), - [anon_sym_DOLLARvaexpr] = ACTIONS(1457), - [anon_sym_true] = ACTIONS(1457), - [anon_sym_false] = ACTIONS(1457), - [anon_sym_null] = ACTIONS(1457), - [anon_sym_DOLLARvacount] = ACTIONS(1457), - [anon_sym_DOLLARfeature] = ACTIONS(1457), - [anon_sym_DOLLARand] = ACTIONS(1457), - [anon_sym_DOLLARor] = ACTIONS(1457), - [anon_sym_DOLLARassignable] = ACTIONS(1457), - [anon_sym_DOLLARembed] = ACTIONS(1457), - [anon_sym_BANG] = ACTIONS(1459), - [anon_sym_TILDE] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_typeid] = ACTIONS(1457), - [anon_sym_LBRACE_PIPE] = ACTIONS(1459), - [anon_sym_void] = ACTIONS(1457), - [anon_sym_bool] = ACTIONS(1457), - [anon_sym_char] = ACTIONS(1457), - [anon_sym_ichar] = ACTIONS(1457), - [anon_sym_short] = ACTIONS(1457), - [anon_sym_ushort] = ACTIONS(1457), - [anon_sym_uint] = ACTIONS(1457), - [anon_sym_long] = ACTIONS(1457), - [anon_sym_ulong] = ACTIONS(1457), - [anon_sym_int128] = ACTIONS(1457), - [anon_sym_uint128] = ACTIONS(1457), - [anon_sym_float] = ACTIONS(1457), - [anon_sym_double] = ACTIONS(1457), - [anon_sym_float16] = ACTIONS(1457), - [anon_sym_bfloat16] = ACTIONS(1457), - [anon_sym_float128] = ACTIONS(1457), - [anon_sym_iptr] = ACTIONS(1457), - [anon_sym_uptr] = ACTIONS(1457), - [anon_sym_isz] = ACTIONS(1457), - [anon_sym_usz] = ACTIONS(1457), - [anon_sym_anyfault] = ACTIONS(1457), - [anon_sym_any] = ACTIONS(1457), - [anon_sym_DOLLARtypeof] = ACTIONS(1457), - [anon_sym_DOLLARtypefrom] = ACTIONS(1457), - [anon_sym_DOLLARvatype] = ACTIONS(1457), - [anon_sym_DOLLARevaltype] = ACTIONS(1457), - [sym_real_literal] = ACTIONS(1459), - }, - [709] = { - [sym_line_comment] = STATE(709), - [sym_doc_comment] = STATE(709), - [sym_block_comment] = STATE(709), - [sym_ident] = ACTIONS(1491), - [sym_integer_literal] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_BQUOTE] = ACTIONS(1493), - [sym_bytes_literal] = ACTIONS(1493), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1491), - [sym_at_ident] = ACTIONS(1493), - [sym_hash_ident] = ACTIONS(1493), - [sym_type_ident] = ACTIONS(1493), - [sym_ct_type_ident] = ACTIONS(1493), - [sym_const_ident] = ACTIONS(1491), - [sym_builtin] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_tlocal] = ACTIONS(1491), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_fn] = ACTIONS(1491), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_const] = ACTIONS(1491), - [anon_sym_var] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_continue] = ACTIONS(1491), - [anon_sym_break] = ACTIONS(1491), - [anon_sym_defer] = ACTIONS(1491), - [anon_sym_assert] = ACTIONS(1491), - [anon_sym_nextcase] = ACTIONS(1491), - [anon_sym_switch] = ACTIONS(1491), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_if] = ACTIONS(1491), - [anon_sym_for] = ACTIONS(1491), - [anon_sym_foreach] = ACTIONS(1491), - [anon_sym_foreach_r] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_do] = ACTIONS(1491), - [anon_sym_int] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1493), - [anon_sym_asm] = ACTIONS(1491), - [anon_sym_DOLLARassert] = ACTIONS(1491), - [anon_sym_DOLLARerror] = ACTIONS(1491), - [anon_sym_DOLLARecho] = ACTIONS(1491), - [anon_sym_DOLLARif] = ACTIONS(1491), - [anon_sym_DOLLARswitch] = ACTIONS(1491), - [anon_sym_DOLLARfor] = ACTIONS(1491), - [anon_sym_DOLLARforeach] = ACTIONS(1491), - [anon_sym_DOLLARendforeach] = ACTIONS(1491), - [anon_sym_DOLLARalignof] = ACTIONS(1491), - [anon_sym_DOLLARextnameof] = ACTIONS(1491), - [anon_sym_DOLLARnameof] = ACTIONS(1491), - [anon_sym_DOLLARoffsetof] = ACTIONS(1491), - [anon_sym_DOLLARqnameof] = ACTIONS(1491), - [anon_sym_DOLLAReval] = ACTIONS(1491), - [anon_sym_DOLLARdefined] = ACTIONS(1491), - [anon_sym_DOLLARsizeof] = ACTIONS(1491), - [anon_sym_DOLLARstringify] = ACTIONS(1491), - [anon_sym_DOLLARis_const] = ACTIONS(1491), - [anon_sym_DOLLARvaconst] = ACTIONS(1491), - [anon_sym_DOLLARvaarg] = ACTIONS(1491), - [anon_sym_DOLLARvaref] = ACTIONS(1491), - [anon_sym_DOLLARvaexpr] = ACTIONS(1491), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [anon_sym_null] = ACTIONS(1491), - [anon_sym_DOLLARvacount] = ACTIONS(1491), - [anon_sym_DOLLARfeature] = ACTIONS(1491), - [anon_sym_DOLLARand] = ACTIONS(1491), - [anon_sym_DOLLARor] = ACTIONS(1491), - [anon_sym_DOLLARassignable] = ACTIONS(1491), - [anon_sym_DOLLARembed] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_typeid] = ACTIONS(1491), - [anon_sym_LBRACE_PIPE] = ACTIONS(1493), - [anon_sym_void] = ACTIONS(1491), - [anon_sym_bool] = ACTIONS(1491), - [anon_sym_char] = ACTIONS(1491), - [anon_sym_ichar] = ACTIONS(1491), - [anon_sym_short] = ACTIONS(1491), - [anon_sym_ushort] = ACTIONS(1491), - [anon_sym_uint] = ACTIONS(1491), - [anon_sym_long] = ACTIONS(1491), - [anon_sym_ulong] = ACTIONS(1491), - [anon_sym_int128] = ACTIONS(1491), - [anon_sym_uint128] = ACTIONS(1491), - [anon_sym_float] = ACTIONS(1491), - [anon_sym_double] = ACTIONS(1491), - [anon_sym_float16] = ACTIONS(1491), - [anon_sym_bfloat16] = ACTIONS(1491), - [anon_sym_float128] = ACTIONS(1491), - [anon_sym_iptr] = ACTIONS(1491), - [anon_sym_uptr] = ACTIONS(1491), - [anon_sym_isz] = ACTIONS(1491), - [anon_sym_usz] = ACTIONS(1491), - [anon_sym_anyfault] = ACTIONS(1491), - [anon_sym_any] = ACTIONS(1491), - [anon_sym_DOLLARtypeof] = ACTIONS(1491), - [anon_sym_DOLLARtypefrom] = ACTIONS(1491), - [anon_sym_DOLLARvatype] = ACTIONS(1491), - [anon_sym_DOLLARevaltype] = ACTIONS(1491), - [sym_real_literal] = ACTIONS(1493), - }, - [710] = { - [sym_line_comment] = STATE(710), - [sym_doc_comment] = STATE(710), - [sym_block_comment] = STATE(710), - [sym_ident] = ACTIONS(1543), - [sym_integer_literal] = ACTIONS(1545), - [anon_sym_SQUOTE] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1545), - [anon_sym_BQUOTE] = ACTIONS(1545), - [sym_bytes_literal] = ACTIONS(1545), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1543), - [sym_at_ident] = ACTIONS(1545), - [sym_hash_ident] = ACTIONS(1545), - [sym_type_ident] = ACTIONS(1545), - [sym_ct_type_ident] = ACTIONS(1545), - [sym_const_ident] = ACTIONS(1543), - [sym_builtin] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_tlocal] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_fn] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1543), - [anon_sym_var] = ACTIONS(1543), - [anon_sym_return] = ACTIONS(1543), - [anon_sym_continue] = ACTIONS(1543), - [anon_sym_break] = ACTIONS(1543), - [anon_sym_defer] = ACTIONS(1543), - [anon_sym_assert] = ACTIONS(1543), - [anon_sym_nextcase] = ACTIONS(1543), - [anon_sym_switch] = ACTIONS(1543), - [anon_sym_AMP_AMP] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1543), - [anon_sym_foreach] = ACTIONS(1543), - [anon_sym_foreach_r] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1543), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_int] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1543), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_asm] = ACTIONS(1543), - [anon_sym_DOLLARassert] = ACTIONS(1543), - [anon_sym_DOLLARerror] = ACTIONS(1543), - [anon_sym_DOLLARecho] = ACTIONS(1543), - [anon_sym_DOLLARif] = ACTIONS(1543), - [anon_sym_DOLLARswitch] = ACTIONS(1543), - [anon_sym_DOLLARfor] = ACTIONS(1543), - [anon_sym_DOLLARendfor] = ACTIONS(1543), - [anon_sym_DOLLARforeach] = ACTIONS(1543), - [anon_sym_DOLLARalignof] = ACTIONS(1543), - [anon_sym_DOLLARextnameof] = ACTIONS(1543), - [anon_sym_DOLLARnameof] = ACTIONS(1543), - [anon_sym_DOLLARoffsetof] = ACTIONS(1543), - [anon_sym_DOLLARqnameof] = ACTIONS(1543), - [anon_sym_DOLLAReval] = ACTIONS(1543), - [anon_sym_DOLLARdefined] = ACTIONS(1543), - [anon_sym_DOLLARsizeof] = ACTIONS(1543), - [anon_sym_DOLLARstringify] = ACTIONS(1543), - [anon_sym_DOLLARis_const] = ACTIONS(1543), - [anon_sym_DOLLARvaconst] = ACTIONS(1543), - [anon_sym_DOLLARvaarg] = ACTIONS(1543), - [anon_sym_DOLLARvaref] = ACTIONS(1543), - [anon_sym_DOLLARvaexpr] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(1543), - [anon_sym_false] = ACTIONS(1543), - [anon_sym_null] = ACTIONS(1543), - [anon_sym_DOLLARvacount] = ACTIONS(1543), - [anon_sym_DOLLARfeature] = ACTIONS(1543), - [anon_sym_DOLLARand] = ACTIONS(1543), - [anon_sym_DOLLARor] = ACTIONS(1543), - [anon_sym_DOLLARassignable] = ACTIONS(1543), - [anon_sym_DOLLARembed] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1545), - [anon_sym_TILDE] = ACTIONS(1545), - [anon_sym_PLUS_PLUS] = ACTIONS(1545), - [anon_sym_DASH_DASH] = ACTIONS(1545), - [anon_sym_typeid] = ACTIONS(1543), - [anon_sym_LBRACE_PIPE] = ACTIONS(1545), - [anon_sym_void] = ACTIONS(1543), - [anon_sym_bool] = ACTIONS(1543), - [anon_sym_char] = ACTIONS(1543), - [anon_sym_ichar] = ACTIONS(1543), - [anon_sym_short] = ACTIONS(1543), - [anon_sym_ushort] = ACTIONS(1543), - [anon_sym_uint] = ACTIONS(1543), - [anon_sym_long] = ACTIONS(1543), - [anon_sym_ulong] = ACTIONS(1543), - [anon_sym_int128] = ACTIONS(1543), - [anon_sym_uint128] = ACTIONS(1543), - [anon_sym_float] = ACTIONS(1543), - [anon_sym_double] = ACTIONS(1543), - [anon_sym_float16] = ACTIONS(1543), - [anon_sym_bfloat16] = ACTIONS(1543), - [anon_sym_float128] = ACTIONS(1543), - [anon_sym_iptr] = ACTIONS(1543), - [anon_sym_uptr] = ACTIONS(1543), - [anon_sym_isz] = ACTIONS(1543), - [anon_sym_usz] = ACTIONS(1543), - [anon_sym_anyfault] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_DOLLARtypeof] = ACTIONS(1543), - [anon_sym_DOLLARtypefrom] = ACTIONS(1543), - [anon_sym_DOLLARvatype] = ACTIONS(1543), - [anon_sym_DOLLARevaltype] = ACTIONS(1543), - [sym_real_literal] = ACTIONS(1545), - }, - [711] = { - [sym_line_comment] = STATE(711), - [sym_doc_comment] = STATE(711), - [sym_block_comment] = STATE(711), - [sym_ident] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1497), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [anon_sym_BQUOTE] = ACTIONS(1497), - [sym_bytes_literal] = ACTIONS(1497), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1495), - [sym_at_ident] = ACTIONS(1497), - [sym_hash_ident] = ACTIONS(1497), - [sym_type_ident] = ACTIONS(1497), - [sym_ct_type_ident] = ACTIONS(1497), - [sym_const_ident] = ACTIONS(1495), - [sym_builtin] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_tlocal] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1497), - [anon_sym_fn] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_var] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_defer] = ACTIONS(1495), - [anon_sym_assert] = ACTIONS(1495), - [anon_sym_nextcase] = ACTIONS(1495), - [anon_sym_switch] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_foreach] = ACTIONS(1495), - [anon_sym_foreach_r] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_int] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_asm] = ACTIONS(1495), - [anon_sym_DOLLARassert] = ACTIONS(1495), - [anon_sym_DOLLARerror] = ACTIONS(1495), - [anon_sym_DOLLARecho] = ACTIONS(1495), - [anon_sym_DOLLARif] = ACTIONS(1495), - [anon_sym_DOLLARswitch] = ACTIONS(1495), - [anon_sym_DOLLARfor] = ACTIONS(1495), - [anon_sym_DOLLARforeach] = ACTIONS(1495), - [anon_sym_DOLLARendforeach] = ACTIONS(1495), - [anon_sym_DOLLARalignof] = ACTIONS(1495), - [anon_sym_DOLLARextnameof] = ACTIONS(1495), - [anon_sym_DOLLARnameof] = ACTIONS(1495), - [anon_sym_DOLLARoffsetof] = ACTIONS(1495), - [anon_sym_DOLLARqnameof] = ACTIONS(1495), - [anon_sym_DOLLAReval] = ACTIONS(1495), - [anon_sym_DOLLARdefined] = ACTIONS(1495), - [anon_sym_DOLLARsizeof] = ACTIONS(1495), - [anon_sym_DOLLARstringify] = ACTIONS(1495), - [anon_sym_DOLLARis_const] = ACTIONS(1495), - [anon_sym_DOLLARvaconst] = ACTIONS(1495), - [anon_sym_DOLLARvaarg] = ACTIONS(1495), - [anon_sym_DOLLARvaref] = ACTIONS(1495), - [anon_sym_DOLLARvaexpr] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_DOLLARvacount] = ACTIONS(1495), - [anon_sym_DOLLARfeature] = ACTIONS(1495), - [anon_sym_DOLLARand] = ACTIONS(1495), - [anon_sym_DOLLARor] = ACTIONS(1495), - [anon_sym_DOLLARassignable] = ACTIONS(1495), - [anon_sym_DOLLARembed] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_TILDE] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [anon_sym_typeid] = ACTIONS(1495), - [anon_sym_LBRACE_PIPE] = ACTIONS(1497), - [anon_sym_void] = ACTIONS(1495), - [anon_sym_bool] = ACTIONS(1495), - [anon_sym_char] = ACTIONS(1495), - [anon_sym_ichar] = ACTIONS(1495), - [anon_sym_short] = ACTIONS(1495), - [anon_sym_ushort] = ACTIONS(1495), - [anon_sym_uint] = ACTIONS(1495), - [anon_sym_long] = ACTIONS(1495), - [anon_sym_ulong] = ACTIONS(1495), - [anon_sym_int128] = ACTIONS(1495), - [anon_sym_uint128] = ACTIONS(1495), - [anon_sym_float] = ACTIONS(1495), - [anon_sym_double] = ACTIONS(1495), - [anon_sym_float16] = ACTIONS(1495), - [anon_sym_bfloat16] = ACTIONS(1495), - [anon_sym_float128] = ACTIONS(1495), - [anon_sym_iptr] = ACTIONS(1495), - [anon_sym_uptr] = ACTIONS(1495), - [anon_sym_isz] = ACTIONS(1495), - [anon_sym_usz] = ACTIONS(1495), - [anon_sym_anyfault] = ACTIONS(1495), - [anon_sym_any] = ACTIONS(1495), - [anon_sym_DOLLARtypeof] = ACTIONS(1495), - [anon_sym_DOLLARtypefrom] = ACTIONS(1495), - [anon_sym_DOLLARvatype] = ACTIONS(1495), - [anon_sym_DOLLARevaltype] = ACTIONS(1495), - [sym_real_literal] = ACTIONS(1497), - }, - [712] = { - [sym_line_comment] = STATE(712), - [sym_doc_comment] = STATE(712), - [sym_block_comment] = STATE(712), - [sym_ident] = ACTIONS(1511), - [sym_integer_literal] = ACTIONS(1513), - [anon_sym_SQUOTE] = ACTIONS(1513), - [anon_sym_DQUOTE] = ACTIONS(1513), - [anon_sym_BQUOTE] = ACTIONS(1513), - [sym_bytes_literal] = ACTIONS(1513), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1511), - [sym_at_ident] = ACTIONS(1513), - [sym_hash_ident] = ACTIONS(1513), - [sym_type_ident] = ACTIONS(1513), - [sym_ct_type_ident] = ACTIONS(1513), - [sym_const_ident] = ACTIONS(1511), - [sym_builtin] = ACTIONS(1513), - [anon_sym_LPAREN] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_tlocal] = ACTIONS(1511), - [anon_sym_SEMI] = ACTIONS(1513), - [anon_sym_fn] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_var] = ACTIONS(1511), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_defer] = ACTIONS(1511), - [anon_sym_assert] = ACTIONS(1511), - [anon_sym_nextcase] = ACTIONS(1511), - [anon_sym_switch] = ACTIONS(1511), - [anon_sym_AMP_AMP] = ACTIONS(1513), - [anon_sym_if] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_foreach] = ACTIONS(1511), - [anon_sym_foreach_r] = ACTIONS(1511), - [anon_sym_while] = ACTIONS(1511), - [anon_sym_do] = ACTIONS(1511), - [anon_sym_int] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_asm] = ACTIONS(1511), - [anon_sym_DOLLARassert] = ACTIONS(1511), - [anon_sym_DOLLARerror] = ACTIONS(1511), - [anon_sym_DOLLARecho] = ACTIONS(1511), - [anon_sym_DOLLARif] = ACTIONS(1511), - [anon_sym_DOLLARswitch] = ACTIONS(1511), - [anon_sym_DOLLARfor] = ACTIONS(1511), - [anon_sym_DOLLARforeach] = ACTIONS(1511), - [anon_sym_DOLLARendforeach] = ACTIONS(1511), - [anon_sym_DOLLARalignof] = ACTIONS(1511), - [anon_sym_DOLLARextnameof] = ACTIONS(1511), - [anon_sym_DOLLARnameof] = ACTIONS(1511), - [anon_sym_DOLLARoffsetof] = ACTIONS(1511), - [anon_sym_DOLLARqnameof] = ACTIONS(1511), - [anon_sym_DOLLAReval] = ACTIONS(1511), - [anon_sym_DOLLARdefined] = ACTIONS(1511), - [anon_sym_DOLLARsizeof] = ACTIONS(1511), - [anon_sym_DOLLARstringify] = ACTIONS(1511), - [anon_sym_DOLLARis_const] = ACTIONS(1511), - [anon_sym_DOLLARvaconst] = ACTIONS(1511), - [anon_sym_DOLLARvaarg] = ACTIONS(1511), - [anon_sym_DOLLARvaref] = ACTIONS(1511), - [anon_sym_DOLLARvaexpr] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1511), - [anon_sym_false] = ACTIONS(1511), - [anon_sym_null] = ACTIONS(1511), - [anon_sym_DOLLARvacount] = ACTIONS(1511), - [anon_sym_DOLLARfeature] = ACTIONS(1511), - [anon_sym_DOLLARand] = ACTIONS(1511), - [anon_sym_DOLLARor] = ACTIONS(1511), - [anon_sym_DOLLARassignable] = ACTIONS(1511), - [anon_sym_DOLLARembed] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_TILDE] = ACTIONS(1513), - [anon_sym_PLUS_PLUS] = ACTIONS(1513), - [anon_sym_DASH_DASH] = ACTIONS(1513), - [anon_sym_typeid] = ACTIONS(1511), - [anon_sym_LBRACE_PIPE] = ACTIONS(1513), - [anon_sym_void] = ACTIONS(1511), - [anon_sym_bool] = ACTIONS(1511), - [anon_sym_char] = ACTIONS(1511), - [anon_sym_ichar] = ACTIONS(1511), - [anon_sym_short] = ACTIONS(1511), - [anon_sym_ushort] = ACTIONS(1511), - [anon_sym_uint] = ACTIONS(1511), - [anon_sym_long] = ACTIONS(1511), - [anon_sym_ulong] = ACTIONS(1511), - [anon_sym_int128] = ACTIONS(1511), - [anon_sym_uint128] = ACTIONS(1511), - [anon_sym_float] = ACTIONS(1511), - [anon_sym_double] = ACTIONS(1511), - [anon_sym_float16] = ACTIONS(1511), - [anon_sym_bfloat16] = ACTIONS(1511), - [anon_sym_float128] = ACTIONS(1511), - [anon_sym_iptr] = ACTIONS(1511), - [anon_sym_uptr] = ACTIONS(1511), - [anon_sym_isz] = ACTIONS(1511), - [anon_sym_usz] = ACTIONS(1511), - [anon_sym_anyfault] = ACTIONS(1511), - [anon_sym_any] = ACTIONS(1511), - [anon_sym_DOLLARtypeof] = ACTIONS(1511), - [anon_sym_DOLLARtypefrom] = ACTIONS(1511), - [anon_sym_DOLLARvatype] = ACTIONS(1511), - [anon_sym_DOLLARevaltype] = ACTIONS(1511), - [sym_real_literal] = ACTIONS(1513), - }, - [713] = { - [sym_line_comment] = STATE(713), - [sym_doc_comment] = STATE(713), - [sym_block_comment] = STATE(713), - [sym_ident] = ACTIONS(1515), - [sym_integer_literal] = ACTIONS(1517), - [anon_sym_SQUOTE] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(1517), - [anon_sym_BQUOTE] = ACTIONS(1517), - [sym_bytes_literal] = ACTIONS(1517), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1515), - [sym_at_ident] = ACTIONS(1517), - [sym_hash_ident] = ACTIONS(1517), - [sym_type_ident] = ACTIONS(1517), - [sym_ct_type_ident] = ACTIONS(1517), - [sym_const_ident] = ACTIONS(1515), - [sym_builtin] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_static] = ACTIONS(1515), - [anon_sym_tlocal] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1517), - [anon_sym_fn] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_var] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_defer] = ACTIONS(1515), - [anon_sym_assert] = ACTIONS(1515), - [anon_sym_nextcase] = ACTIONS(1515), - [anon_sym_switch] = ACTIONS(1515), - [anon_sym_AMP_AMP] = ACTIONS(1517), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_foreach] = ACTIONS(1515), - [anon_sym_foreach_r] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_int] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_asm] = ACTIONS(1515), - [anon_sym_DOLLARassert] = ACTIONS(1515), - [anon_sym_DOLLARerror] = ACTIONS(1515), - [anon_sym_DOLLARecho] = ACTIONS(1515), - [anon_sym_DOLLARif] = ACTIONS(1515), - [anon_sym_DOLLARswitch] = ACTIONS(1515), - [anon_sym_DOLLARfor] = ACTIONS(1515), - [anon_sym_DOLLARforeach] = ACTIONS(1515), - [anon_sym_DOLLARendforeach] = ACTIONS(1515), - [anon_sym_DOLLARalignof] = ACTIONS(1515), - [anon_sym_DOLLARextnameof] = ACTIONS(1515), - [anon_sym_DOLLARnameof] = ACTIONS(1515), - [anon_sym_DOLLARoffsetof] = ACTIONS(1515), - [anon_sym_DOLLARqnameof] = ACTIONS(1515), - [anon_sym_DOLLAReval] = ACTIONS(1515), - [anon_sym_DOLLARdefined] = ACTIONS(1515), - [anon_sym_DOLLARsizeof] = ACTIONS(1515), - [anon_sym_DOLLARstringify] = ACTIONS(1515), - [anon_sym_DOLLARis_const] = ACTIONS(1515), - [anon_sym_DOLLARvaconst] = ACTIONS(1515), - [anon_sym_DOLLARvaarg] = ACTIONS(1515), - [anon_sym_DOLLARvaref] = ACTIONS(1515), - [anon_sym_DOLLARvaexpr] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [anon_sym_null] = ACTIONS(1515), - [anon_sym_DOLLARvacount] = ACTIONS(1515), - [anon_sym_DOLLARfeature] = ACTIONS(1515), - [anon_sym_DOLLARand] = ACTIONS(1515), - [anon_sym_DOLLARor] = ACTIONS(1515), - [anon_sym_DOLLARassignable] = ACTIONS(1515), - [anon_sym_DOLLARembed] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [anon_sym_typeid] = ACTIONS(1515), - [anon_sym_LBRACE_PIPE] = ACTIONS(1517), - [anon_sym_void] = ACTIONS(1515), - [anon_sym_bool] = ACTIONS(1515), - [anon_sym_char] = ACTIONS(1515), - [anon_sym_ichar] = ACTIONS(1515), - [anon_sym_short] = ACTIONS(1515), - [anon_sym_ushort] = ACTIONS(1515), - [anon_sym_uint] = ACTIONS(1515), - [anon_sym_long] = ACTIONS(1515), - [anon_sym_ulong] = ACTIONS(1515), - [anon_sym_int128] = ACTIONS(1515), - [anon_sym_uint128] = ACTIONS(1515), - [anon_sym_float] = ACTIONS(1515), - [anon_sym_double] = ACTIONS(1515), - [anon_sym_float16] = ACTIONS(1515), - [anon_sym_bfloat16] = ACTIONS(1515), - [anon_sym_float128] = ACTIONS(1515), - [anon_sym_iptr] = ACTIONS(1515), - [anon_sym_uptr] = ACTIONS(1515), - [anon_sym_isz] = ACTIONS(1515), - [anon_sym_usz] = ACTIONS(1515), - [anon_sym_anyfault] = ACTIONS(1515), - [anon_sym_any] = ACTIONS(1515), - [anon_sym_DOLLARtypeof] = ACTIONS(1515), - [anon_sym_DOLLARtypefrom] = ACTIONS(1515), - [anon_sym_DOLLARvatype] = ACTIONS(1515), - [anon_sym_DOLLARevaltype] = ACTIONS(1515), - [sym_real_literal] = ACTIONS(1517), - }, - [714] = { - [sym_line_comment] = STATE(714), - [sym_doc_comment] = STATE(714), - [sym_block_comment] = STATE(714), - [sym_ident] = ACTIONS(1519), - [sym_integer_literal] = ACTIONS(1521), - [anon_sym_SQUOTE] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1521), - [anon_sym_BQUOTE] = ACTIONS(1521), - [sym_bytes_literal] = ACTIONS(1521), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1519), - [sym_at_ident] = ACTIONS(1521), - [sym_hash_ident] = ACTIONS(1521), - [sym_type_ident] = ACTIONS(1521), - [sym_ct_type_ident] = ACTIONS(1521), - [sym_const_ident] = ACTIONS(1519), - [sym_builtin] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_static] = ACTIONS(1519), - [anon_sym_tlocal] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_fn] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(1519), - [anon_sym_var] = ACTIONS(1519), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_defer] = ACTIONS(1519), - [anon_sym_assert] = ACTIONS(1519), - [anon_sym_nextcase] = ACTIONS(1519), - [anon_sym_switch] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_foreach] = ACTIONS(1519), - [anon_sym_foreach_r] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_do] = ACTIONS(1519), - [anon_sym_int] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1521), - [anon_sym_asm] = ACTIONS(1519), - [anon_sym_DOLLARassert] = ACTIONS(1519), - [anon_sym_DOLLARerror] = ACTIONS(1519), - [anon_sym_DOLLARecho] = ACTIONS(1519), - [anon_sym_DOLLARif] = ACTIONS(1519), - [anon_sym_DOLLARswitch] = ACTIONS(1519), - [anon_sym_DOLLARfor] = ACTIONS(1519), - [anon_sym_DOLLARforeach] = ACTIONS(1519), - [anon_sym_DOLLARendforeach] = ACTIONS(1519), - [anon_sym_DOLLARalignof] = ACTIONS(1519), - [anon_sym_DOLLARextnameof] = ACTIONS(1519), - [anon_sym_DOLLARnameof] = ACTIONS(1519), - [anon_sym_DOLLARoffsetof] = ACTIONS(1519), - [anon_sym_DOLLARqnameof] = ACTIONS(1519), - [anon_sym_DOLLAReval] = ACTIONS(1519), - [anon_sym_DOLLARdefined] = ACTIONS(1519), - [anon_sym_DOLLARsizeof] = ACTIONS(1519), - [anon_sym_DOLLARstringify] = ACTIONS(1519), - [anon_sym_DOLLARis_const] = ACTIONS(1519), - [anon_sym_DOLLARvaconst] = ACTIONS(1519), - [anon_sym_DOLLARvaarg] = ACTIONS(1519), - [anon_sym_DOLLARvaref] = ACTIONS(1519), - [anon_sym_DOLLARvaexpr] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1519), - [anon_sym_DOLLARvacount] = ACTIONS(1519), - [anon_sym_DOLLARfeature] = ACTIONS(1519), - [anon_sym_DOLLARand] = ACTIONS(1519), - [anon_sym_DOLLARor] = ACTIONS(1519), - [anon_sym_DOLLARassignable] = ACTIONS(1519), - [anon_sym_DOLLARembed] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1521), - [anon_sym_TILDE] = ACTIONS(1521), - [anon_sym_PLUS_PLUS] = ACTIONS(1521), - [anon_sym_DASH_DASH] = ACTIONS(1521), - [anon_sym_typeid] = ACTIONS(1519), - [anon_sym_LBRACE_PIPE] = ACTIONS(1521), - [anon_sym_void] = ACTIONS(1519), - [anon_sym_bool] = ACTIONS(1519), - [anon_sym_char] = ACTIONS(1519), - [anon_sym_ichar] = ACTIONS(1519), - [anon_sym_short] = ACTIONS(1519), - [anon_sym_ushort] = ACTIONS(1519), - [anon_sym_uint] = ACTIONS(1519), - [anon_sym_long] = ACTIONS(1519), - [anon_sym_ulong] = ACTIONS(1519), - [anon_sym_int128] = ACTIONS(1519), - [anon_sym_uint128] = ACTIONS(1519), - [anon_sym_float] = ACTIONS(1519), - [anon_sym_double] = ACTIONS(1519), - [anon_sym_float16] = ACTIONS(1519), - [anon_sym_bfloat16] = ACTIONS(1519), - [anon_sym_float128] = ACTIONS(1519), - [anon_sym_iptr] = ACTIONS(1519), - [anon_sym_uptr] = ACTIONS(1519), - [anon_sym_isz] = ACTIONS(1519), - [anon_sym_usz] = ACTIONS(1519), - [anon_sym_anyfault] = ACTIONS(1519), - [anon_sym_any] = ACTIONS(1519), - [anon_sym_DOLLARtypeof] = ACTIONS(1519), - [anon_sym_DOLLARtypefrom] = ACTIONS(1519), - [anon_sym_DOLLARvatype] = ACTIONS(1519), - [anon_sym_DOLLARevaltype] = ACTIONS(1519), - [sym_real_literal] = ACTIONS(1521), - }, - [715] = { - [sym_line_comment] = STATE(715), - [sym_doc_comment] = STATE(715), - [sym_block_comment] = STATE(715), - [sym_ident] = ACTIONS(1535), - [sym_integer_literal] = ACTIONS(1537), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [anon_sym_BQUOTE] = ACTIONS(1537), - [sym_bytes_literal] = ACTIONS(1537), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1535), - [sym_at_ident] = ACTIONS(1537), - [sym_hash_ident] = ACTIONS(1537), - [sym_type_ident] = ACTIONS(1537), - [sym_ct_type_ident] = ACTIONS(1537), - [sym_const_ident] = ACTIONS(1535), - [sym_builtin] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_tlocal] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_fn] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [anon_sym_var] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_defer] = ACTIONS(1535), - [anon_sym_assert] = ACTIONS(1535), - [anon_sym_nextcase] = ACTIONS(1535), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_foreach] = ACTIONS(1535), - [anon_sym_foreach_r] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_int] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_asm] = ACTIONS(1535), - [anon_sym_DOLLARassert] = ACTIONS(1535), - [anon_sym_DOLLARerror] = ACTIONS(1535), - [anon_sym_DOLLARecho] = ACTIONS(1535), - [anon_sym_DOLLARif] = ACTIONS(1535), - [anon_sym_DOLLARswitch] = ACTIONS(1535), - [anon_sym_DOLLARfor] = ACTIONS(1535), - [anon_sym_DOLLARendfor] = ACTIONS(1535), - [anon_sym_DOLLARforeach] = ACTIONS(1535), - [anon_sym_DOLLARalignof] = ACTIONS(1535), - [anon_sym_DOLLARextnameof] = ACTIONS(1535), - [anon_sym_DOLLARnameof] = ACTIONS(1535), - [anon_sym_DOLLARoffsetof] = ACTIONS(1535), - [anon_sym_DOLLARqnameof] = ACTIONS(1535), - [anon_sym_DOLLAReval] = ACTIONS(1535), - [anon_sym_DOLLARdefined] = ACTIONS(1535), - [anon_sym_DOLLARsizeof] = ACTIONS(1535), - [anon_sym_DOLLARstringify] = ACTIONS(1535), - [anon_sym_DOLLARis_const] = ACTIONS(1535), - [anon_sym_DOLLARvaconst] = ACTIONS(1535), - [anon_sym_DOLLARvaarg] = ACTIONS(1535), - [anon_sym_DOLLARvaref] = ACTIONS(1535), - [anon_sym_DOLLARvaexpr] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1535), - [anon_sym_false] = ACTIONS(1535), - [anon_sym_null] = ACTIONS(1535), - [anon_sym_DOLLARvacount] = ACTIONS(1535), - [anon_sym_DOLLARfeature] = ACTIONS(1535), - [anon_sym_DOLLARand] = ACTIONS(1535), - [anon_sym_DOLLARor] = ACTIONS(1535), - [anon_sym_DOLLARassignable] = ACTIONS(1535), - [anon_sym_DOLLARembed] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_typeid] = ACTIONS(1535), - [anon_sym_LBRACE_PIPE] = ACTIONS(1537), - [anon_sym_void] = ACTIONS(1535), - [anon_sym_bool] = ACTIONS(1535), - [anon_sym_char] = ACTIONS(1535), - [anon_sym_ichar] = ACTIONS(1535), - [anon_sym_short] = ACTIONS(1535), - [anon_sym_ushort] = ACTIONS(1535), - [anon_sym_uint] = ACTIONS(1535), - [anon_sym_long] = ACTIONS(1535), - [anon_sym_ulong] = ACTIONS(1535), - [anon_sym_int128] = ACTIONS(1535), - [anon_sym_uint128] = ACTIONS(1535), - [anon_sym_float] = ACTIONS(1535), - [anon_sym_double] = ACTIONS(1535), - [anon_sym_float16] = ACTIONS(1535), - [anon_sym_bfloat16] = ACTIONS(1535), - [anon_sym_float128] = ACTIONS(1535), - [anon_sym_iptr] = ACTIONS(1535), - [anon_sym_uptr] = ACTIONS(1535), - [anon_sym_isz] = ACTIONS(1535), - [anon_sym_usz] = ACTIONS(1535), - [anon_sym_anyfault] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_DOLLARtypeof] = ACTIONS(1535), - [anon_sym_DOLLARtypefrom] = ACTIONS(1535), - [anon_sym_DOLLARvatype] = ACTIONS(1535), - [anon_sym_DOLLARevaltype] = ACTIONS(1535), - [sym_real_literal] = ACTIONS(1537), - }, - [716] = { - [sym_line_comment] = STATE(716), - [sym_doc_comment] = STATE(716), - [sym_block_comment] = STATE(716), - [sym_ident] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_DQUOTE] = ACTIONS(1529), - [anon_sym_BQUOTE] = ACTIONS(1529), - [sym_bytes_literal] = ACTIONS(1529), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1527), - [sym_at_ident] = ACTIONS(1529), - [sym_hash_ident] = ACTIONS(1529), - [sym_type_ident] = ACTIONS(1529), - [sym_ct_type_ident] = ACTIONS(1529), - [sym_const_ident] = ACTIONS(1527), - [sym_builtin] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(1527), - [anon_sym_tlocal] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1529), - [anon_sym_fn] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_const] = ACTIONS(1527), - [anon_sym_var] = ACTIONS(1527), - [anon_sym_return] = ACTIONS(1527), - [anon_sym_continue] = ACTIONS(1527), - [anon_sym_break] = ACTIONS(1527), - [anon_sym_defer] = ACTIONS(1527), - [anon_sym_assert] = ACTIONS(1527), - [anon_sym_nextcase] = ACTIONS(1527), - [anon_sym_switch] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1527), - [anon_sym_for] = ACTIONS(1527), - [anon_sym_foreach] = ACTIONS(1527), - [anon_sym_foreach_r] = ACTIONS(1527), - [anon_sym_while] = ACTIONS(1527), - [anon_sym_do] = ACTIONS(1527), - [anon_sym_int] = ACTIONS(1527), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1529), - [anon_sym_asm] = ACTIONS(1527), - [anon_sym_DOLLARassert] = ACTIONS(1527), - [anon_sym_DOLLARerror] = ACTIONS(1527), - [anon_sym_DOLLARecho] = ACTIONS(1527), - [anon_sym_DOLLARif] = ACTIONS(1527), - [anon_sym_DOLLARswitch] = ACTIONS(1527), - [anon_sym_DOLLARfor] = ACTIONS(1527), - [anon_sym_DOLLARforeach] = ACTIONS(1527), - [anon_sym_DOLLARendforeach] = ACTIONS(1527), - [anon_sym_DOLLARalignof] = ACTIONS(1527), - [anon_sym_DOLLARextnameof] = ACTIONS(1527), - [anon_sym_DOLLARnameof] = ACTIONS(1527), - [anon_sym_DOLLARoffsetof] = ACTIONS(1527), - [anon_sym_DOLLARqnameof] = ACTIONS(1527), - [anon_sym_DOLLAReval] = ACTIONS(1527), - [anon_sym_DOLLARdefined] = ACTIONS(1527), - [anon_sym_DOLLARsizeof] = ACTIONS(1527), - [anon_sym_DOLLARstringify] = ACTIONS(1527), - [anon_sym_DOLLARis_const] = ACTIONS(1527), - [anon_sym_DOLLARvaconst] = ACTIONS(1527), - [anon_sym_DOLLARvaarg] = ACTIONS(1527), - [anon_sym_DOLLARvaref] = ACTIONS(1527), - [anon_sym_DOLLARvaexpr] = ACTIONS(1527), - [anon_sym_true] = ACTIONS(1527), - [anon_sym_false] = ACTIONS(1527), - [anon_sym_null] = ACTIONS(1527), - [anon_sym_DOLLARvacount] = ACTIONS(1527), - [anon_sym_DOLLARfeature] = ACTIONS(1527), - [anon_sym_DOLLARand] = ACTIONS(1527), - [anon_sym_DOLLARor] = ACTIONS(1527), - [anon_sym_DOLLARassignable] = ACTIONS(1527), - [anon_sym_DOLLARembed] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), - [anon_sym_typeid] = ACTIONS(1527), - [anon_sym_LBRACE_PIPE] = ACTIONS(1529), - [anon_sym_void] = ACTIONS(1527), - [anon_sym_bool] = ACTIONS(1527), - [anon_sym_char] = ACTIONS(1527), - [anon_sym_ichar] = ACTIONS(1527), - [anon_sym_short] = ACTIONS(1527), - [anon_sym_ushort] = ACTIONS(1527), - [anon_sym_uint] = ACTIONS(1527), - [anon_sym_long] = ACTIONS(1527), - [anon_sym_ulong] = ACTIONS(1527), - [anon_sym_int128] = ACTIONS(1527), - [anon_sym_uint128] = ACTIONS(1527), - [anon_sym_float] = ACTIONS(1527), - [anon_sym_double] = ACTIONS(1527), - [anon_sym_float16] = ACTIONS(1527), - [anon_sym_bfloat16] = ACTIONS(1527), - [anon_sym_float128] = ACTIONS(1527), - [anon_sym_iptr] = ACTIONS(1527), - [anon_sym_uptr] = ACTIONS(1527), - [anon_sym_isz] = ACTIONS(1527), - [anon_sym_usz] = ACTIONS(1527), - [anon_sym_anyfault] = ACTIONS(1527), - [anon_sym_any] = ACTIONS(1527), - [anon_sym_DOLLARtypeof] = ACTIONS(1527), - [anon_sym_DOLLARtypefrom] = ACTIONS(1527), - [anon_sym_DOLLARvatype] = ACTIONS(1527), - [anon_sym_DOLLARevaltype] = ACTIONS(1527), - [sym_real_literal] = ACTIONS(1529), - }, - [717] = { - [sym_line_comment] = STATE(717), - [sym_doc_comment] = STATE(717), - [sym_block_comment] = STATE(717), - [sym_ident] = ACTIONS(1535), - [sym_integer_literal] = ACTIONS(1537), - [anon_sym_SQUOTE] = ACTIONS(1537), - [anon_sym_DQUOTE] = ACTIONS(1537), - [anon_sym_BQUOTE] = ACTIONS(1537), - [sym_bytes_literal] = ACTIONS(1537), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1535), - [sym_at_ident] = ACTIONS(1537), - [sym_hash_ident] = ACTIONS(1537), - [sym_type_ident] = ACTIONS(1537), - [sym_ct_type_ident] = ACTIONS(1537), - [sym_const_ident] = ACTIONS(1535), - [sym_builtin] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_AMP] = ACTIONS(1535), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_tlocal] = ACTIONS(1535), - [anon_sym_SEMI] = ACTIONS(1537), - [anon_sym_fn] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_const] = ACTIONS(1535), - [anon_sym_var] = ACTIONS(1535), - [anon_sym_return] = ACTIONS(1535), - [anon_sym_continue] = ACTIONS(1535), - [anon_sym_break] = ACTIONS(1535), - [anon_sym_defer] = ACTIONS(1535), - [anon_sym_assert] = ACTIONS(1535), - [anon_sym_nextcase] = ACTIONS(1535), - [anon_sym_switch] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1535), - [anon_sym_for] = ACTIONS(1535), - [anon_sym_foreach] = ACTIONS(1535), - [anon_sym_foreach_r] = ACTIONS(1535), - [anon_sym_while] = ACTIONS(1535), - [anon_sym_do] = ACTIONS(1535), - [anon_sym_int] = ACTIONS(1535), - [anon_sym_PLUS] = ACTIONS(1535), - [anon_sym_DASH] = ACTIONS(1535), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_asm] = ACTIONS(1535), - [anon_sym_DOLLARassert] = ACTIONS(1535), - [anon_sym_DOLLARerror] = ACTIONS(1535), - [anon_sym_DOLLARecho] = ACTIONS(1535), - [anon_sym_DOLLARif] = ACTIONS(1535), - [anon_sym_DOLLARswitch] = ACTIONS(1535), - [anon_sym_DOLLARfor] = ACTIONS(1535), - [anon_sym_DOLLARforeach] = ACTIONS(1535), - [anon_sym_DOLLARendforeach] = ACTIONS(1535), - [anon_sym_DOLLARalignof] = ACTIONS(1535), - [anon_sym_DOLLARextnameof] = ACTIONS(1535), - [anon_sym_DOLLARnameof] = ACTIONS(1535), - [anon_sym_DOLLARoffsetof] = ACTIONS(1535), - [anon_sym_DOLLARqnameof] = ACTIONS(1535), - [anon_sym_DOLLAReval] = ACTIONS(1535), - [anon_sym_DOLLARdefined] = ACTIONS(1535), - [anon_sym_DOLLARsizeof] = ACTIONS(1535), - [anon_sym_DOLLARstringify] = ACTIONS(1535), - [anon_sym_DOLLARis_const] = ACTIONS(1535), - [anon_sym_DOLLARvaconst] = ACTIONS(1535), - [anon_sym_DOLLARvaarg] = ACTIONS(1535), - [anon_sym_DOLLARvaref] = ACTIONS(1535), - [anon_sym_DOLLARvaexpr] = ACTIONS(1535), - [anon_sym_true] = ACTIONS(1535), - [anon_sym_false] = ACTIONS(1535), - [anon_sym_null] = ACTIONS(1535), - [anon_sym_DOLLARvacount] = ACTIONS(1535), - [anon_sym_DOLLARfeature] = ACTIONS(1535), - [anon_sym_DOLLARand] = ACTIONS(1535), - [anon_sym_DOLLARor] = ACTIONS(1535), - [anon_sym_DOLLARassignable] = ACTIONS(1535), - [anon_sym_DOLLARembed] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1537), - [anon_sym_DASH_DASH] = ACTIONS(1537), - [anon_sym_typeid] = ACTIONS(1535), - [anon_sym_LBRACE_PIPE] = ACTIONS(1537), - [anon_sym_void] = ACTIONS(1535), - [anon_sym_bool] = ACTIONS(1535), - [anon_sym_char] = ACTIONS(1535), - [anon_sym_ichar] = ACTIONS(1535), - [anon_sym_short] = ACTIONS(1535), - [anon_sym_ushort] = ACTIONS(1535), - [anon_sym_uint] = ACTIONS(1535), - [anon_sym_long] = ACTIONS(1535), - [anon_sym_ulong] = ACTIONS(1535), - [anon_sym_int128] = ACTIONS(1535), - [anon_sym_uint128] = ACTIONS(1535), - [anon_sym_float] = ACTIONS(1535), - [anon_sym_double] = ACTIONS(1535), - [anon_sym_float16] = ACTIONS(1535), - [anon_sym_bfloat16] = ACTIONS(1535), - [anon_sym_float128] = ACTIONS(1535), - [anon_sym_iptr] = ACTIONS(1535), - [anon_sym_uptr] = ACTIONS(1535), - [anon_sym_isz] = ACTIONS(1535), - [anon_sym_usz] = ACTIONS(1535), - [anon_sym_anyfault] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_DOLLARtypeof] = ACTIONS(1535), - [anon_sym_DOLLARtypefrom] = ACTIONS(1535), - [anon_sym_DOLLARvatype] = ACTIONS(1535), - [anon_sym_DOLLARevaltype] = ACTIONS(1535), - [sym_real_literal] = ACTIONS(1537), - }, - [718] = { - [sym_line_comment] = STATE(718), - [sym_doc_comment] = STATE(718), - [sym_block_comment] = STATE(718), - [sym_ident] = ACTIONS(1543), - [sym_integer_literal] = ACTIONS(1545), - [anon_sym_SQUOTE] = ACTIONS(1545), - [anon_sym_DQUOTE] = ACTIONS(1545), - [anon_sym_BQUOTE] = ACTIONS(1545), - [sym_bytes_literal] = ACTIONS(1545), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1543), - [sym_at_ident] = ACTIONS(1545), - [sym_hash_ident] = ACTIONS(1545), - [sym_type_ident] = ACTIONS(1545), - [sym_ct_type_ident] = ACTIONS(1545), - [sym_const_ident] = ACTIONS(1543), - [sym_builtin] = ACTIONS(1545), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_tlocal] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_fn] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1543), - [anon_sym_var] = ACTIONS(1543), - [anon_sym_return] = ACTIONS(1543), - [anon_sym_continue] = ACTIONS(1543), - [anon_sym_break] = ACTIONS(1543), - [anon_sym_defer] = ACTIONS(1543), - [anon_sym_assert] = ACTIONS(1543), - [anon_sym_nextcase] = ACTIONS(1543), - [anon_sym_switch] = ACTIONS(1543), - [anon_sym_AMP_AMP] = ACTIONS(1545), - [anon_sym_if] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1543), - [anon_sym_foreach] = ACTIONS(1543), - [anon_sym_foreach_r] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1543), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_int] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1543), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_asm] = ACTIONS(1543), - [anon_sym_DOLLARassert] = ACTIONS(1543), - [anon_sym_DOLLARerror] = ACTIONS(1543), - [anon_sym_DOLLARecho] = ACTIONS(1543), - [anon_sym_DOLLARif] = ACTIONS(1543), - [anon_sym_DOLLARswitch] = ACTIONS(1543), - [anon_sym_DOLLARfor] = ACTIONS(1543), - [anon_sym_DOLLARforeach] = ACTIONS(1543), - [anon_sym_DOLLARendforeach] = ACTIONS(1543), - [anon_sym_DOLLARalignof] = ACTIONS(1543), - [anon_sym_DOLLARextnameof] = ACTIONS(1543), - [anon_sym_DOLLARnameof] = ACTIONS(1543), - [anon_sym_DOLLARoffsetof] = ACTIONS(1543), - [anon_sym_DOLLARqnameof] = ACTIONS(1543), - [anon_sym_DOLLAReval] = ACTIONS(1543), - [anon_sym_DOLLARdefined] = ACTIONS(1543), - [anon_sym_DOLLARsizeof] = ACTIONS(1543), - [anon_sym_DOLLARstringify] = ACTIONS(1543), - [anon_sym_DOLLARis_const] = ACTIONS(1543), - [anon_sym_DOLLARvaconst] = ACTIONS(1543), - [anon_sym_DOLLARvaarg] = ACTIONS(1543), - [anon_sym_DOLLARvaref] = ACTIONS(1543), - [anon_sym_DOLLARvaexpr] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(1543), - [anon_sym_false] = ACTIONS(1543), - [anon_sym_null] = ACTIONS(1543), - [anon_sym_DOLLARvacount] = ACTIONS(1543), - [anon_sym_DOLLARfeature] = ACTIONS(1543), - [anon_sym_DOLLARand] = ACTIONS(1543), - [anon_sym_DOLLARor] = ACTIONS(1543), - [anon_sym_DOLLARassignable] = ACTIONS(1543), - [anon_sym_DOLLARembed] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1545), - [anon_sym_TILDE] = ACTIONS(1545), - [anon_sym_PLUS_PLUS] = ACTIONS(1545), - [anon_sym_DASH_DASH] = ACTIONS(1545), - [anon_sym_typeid] = ACTIONS(1543), - [anon_sym_LBRACE_PIPE] = ACTIONS(1545), - [anon_sym_void] = ACTIONS(1543), - [anon_sym_bool] = ACTIONS(1543), - [anon_sym_char] = ACTIONS(1543), - [anon_sym_ichar] = ACTIONS(1543), - [anon_sym_short] = ACTIONS(1543), - [anon_sym_ushort] = ACTIONS(1543), - [anon_sym_uint] = ACTIONS(1543), - [anon_sym_long] = ACTIONS(1543), - [anon_sym_ulong] = ACTIONS(1543), - [anon_sym_int128] = ACTIONS(1543), - [anon_sym_uint128] = ACTIONS(1543), - [anon_sym_float] = ACTIONS(1543), - [anon_sym_double] = ACTIONS(1543), - [anon_sym_float16] = ACTIONS(1543), - [anon_sym_bfloat16] = ACTIONS(1543), - [anon_sym_float128] = ACTIONS(1543), - [anon_sym_iptr] = ACTIONS(1543), - [anon_sym_uptr] = ACTIONS(1543), - [anon_sym_isz] = ACTIONS(1543), - [anon_sym_usz] = ACTIONS(1543), - [anon_sym_anyfault] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_DOLLARtypeof] = ACTIONS(1543), - [anon_sym_DOLLARtypefrom] = ACTIONS(1543), - [anon_sym_DOLLARvatype] = ACTIONS(1543), - [anon_sym_DOLLARevaltype] = ACTIONS(1543), - [sym_real_literal] = ACTIONS(1545), - }, - [719] = { - [sym_line_comment] = STATE(719), - [sym_doc_comment] = STATE(719), - [sym_block_comment] = STATE(719), - [sym_ident] = ACTIONS(1547), - [sym_integer_literal] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_DQUOTE] = ACTIONS(1549), - [anon_sym_BQUOTE] = ACTIONS(1549), - [sym_bytes_literal] = ACTIONS(1549), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1547), - [sym_at_ident] = ACTIONS(1549), - [sym_hash_ident] = ACTIONS(1549), - [sym_type_ident] = ACTIONS(1549), - [sym_ct_type_ident] = ACTIONS(1549), - [sym_const_ident] = ACTIONS(1547), - [sym_builtin] = ACTIONS(1549), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1547), - [anon_sym_static] = ACTIONS(1547), - [anon_sym_tlocal] = ACTIONS(1547), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_fn] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_const] = ACTIONS(1547), - [anon_sym_var] = ACTIONS(1547), - [anon_sym_return] = ACTIONS(1547), - [anon_sym_continue] = ACTIONS(1547), - [anon_sym_break] = ACTIONS(1547), - [anon_sym_defer] = ACTIONS(1547), - [anon_sym_assert] = ACTIONS(1547), - [anon_sym_nextcase] = ACTIONS(1547), - [anon_sym_switch] = ACTIONS(1547), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_if] = ACTIONS(1547), - [anon_sym_for] = ACTIONS(1547), - [anon_sym_foreach] = ACTIONS(1547), - [anon_sym_foreach_r] = ACTIONS(1547), - [anon_sym_while] = ACTIONS(1547), - [anon_sym_do] = ACTIONS(1547), - [anon_sym_int] = ACTIONS(1547), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1549), - [anon_sym_asm] = ACTIONS(1547), - [anon_sym_DOLLARassert] = ACTIONS(1547), - [anon_sym_DOLLARerror] = ACTIONS(1547), - [anon_sym_DOLLARecho] = ACTIONS(1547), - [anon_sym_DOLLARif] = ACTIONS(1547), - [anon_sym_DOLLARswitch] = ACTIONS(1547), - [anon_sym_DOLLARfor] = ACTIONS(1547), - [anon_sym_DOLLARforeach] = ACTIONS(1547), - [anon_sym_DOLLARendforeach] = ACTIONS(1547), - [anon_sym_DOLLARalignof] = ACTIONS(1547), - [anon_sym_DOLLARextnameof] = ACTIONS(1547), - [anon_sym_DOLLARnameof] = ACTIONS(1547), - [anon_sym_DOLLARoffsetof] = ACTIONS(1547), - [anon_sym_DOLLARqnameof] = ACTIONS(1547), - [anon_sym_DOLLAReval] = ACTIONS(1547), - [anon_sym_DOLLARdefined] = ACTIONS(1547), - [anon_sym_DOLLARsizeof] = ACTIONS(1547), - [anon_sym_DOLLARstringify] = ACTIONS(1547), - [anon_sym_DOLLARis_const] = ACTIONS(1547), - [anon_sym_DOLLARvaconst] = ACTIONS(1547), - [anon_sym_DOLLARvaarg] = ACTIONS(1547), - [anon_sym_DOLLARvaref] = ACTIONS(1547), - [anon_sym_DOLLARvaexpr] = ACTIONS(1547), - [anon_sym_true] = ACTIONS(1547), - [anon_sym_false] = ACTIONS(1547), - [anon_sym_null] = ACTIONS(1547), - [anon_sym_DOLLARvacount] = ACTIONS(1547), - [anon_sym_DOLLARfeature] = ACTIONS(1547), - [anon_sym_DOLLARand] = ACTIONS(1547), - [anon_sym_DOLLARor] = ACTIONS(1547), - [anon_sym_DOLLARassignable] = ACTIONS(1547), - [anon_sym_DOLLARembed] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1549), - [anon_sym_TILDE] = ACTIONS(1549), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [anon_sym_typeid] = ACTIONS(1547), - [anon_sym_LBRACE_PIPE] = ACTIONS(1549), - [anon_sym_void] = ACTIONS(1547), - [anon_sym_bool] = ACTIONS(1547), - [anon_sym_char] = ACTIONS(1547), - [anon_sym_ichar] = ACTIONS(1547), - [anon_sym_short] = ACTIONS(1547), - [anon_sym_ushort] = ACTIONS(1547), - [anon_sym_uint] = ACTIONS(1547), - [anon_sym_long] = ACTIONS(1547), - [anon_sym_ulong] = ACTIONS(1547), - [anon_sym_int128] = ACTIONS(1547), - [anon_sym_uint128] = ACTIONS(1547), - [anon_sym_float] = ACTIONS(1547), - [anon_sym_double] = ACTIONS(1547), - [anon_sym_float16] = ACTIONS(1547), - [anon_sym_bfloat16] = ACTIONS(1547), - [anon_sym_float128] = ACTIONS(1547), - [anon_sym_iptr] = ACTIONS(1547), - [anon_sym_uptr] = ACTIONS(1547), - [anon_sym_isz] = ACTIONS(1547), - [anon_sym_usz] = ACTIONS(1547), - [anon_sym_anyfault] = ACTIONS(1547), - [anon_sym_any] = ACTIONS(1547), - [anon_sym_DOLLARtypeof] = ACTIONS(1547), - [anon_sym_DOLLARtypefrom] = ACTIONS(1547), - [anon_sym_DOLLARvatype] = ACTIONS(1547), - [anon_sym_DOLLARevaltype] = ACTIONS(1547), - [sym_real_literal] = ACTIONS(1549), - }, - [720] = { - [sym_line_comment] = STATE(720), - [sym_doc_comment] = STATE(720), - [sym_block_comment] = STATE(720), - [sym_ident] = ACTIONS(1551), - [sym_integer_literal] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1553), - [anon_sym_BQUOTE] = ACTIONS(1553), - [sym_bytes_literal] = ACTIONS(1553), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1551), - [sym_at_ident] = ACTIONS(1553), - [sym_hash_ident] = ACTIONS(1553), - [sym_type_ident] = ACTIONS(1553), - [sym_ct_type_ident] = ACTIONS(1553), - [sym_const_ident] = ACTIONS(1551), - [sym_builtin] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1551), - [anon_sym_tlocal] = ACTIONS(1551), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_fn] = ACTIONS(1551), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_const] = ACTIONS(1551), - [anon_sym_var] = ACTIONS(1551), - [anon_sym_return] = ACTIONS(1551), - [anon_sym_continue] = ACTIONS(1551), - [anon_sym_break] = ACTIONS(1551), - [anon_sym_defer] = ACTIONS(1551), - [anon_sym_assert] = ACTIONS(1551), - [anon_sym_nextcase] = ACTIONS(1551), - [anon_sym_switch] = ACTIONS(1551), - [anon_sym_AMP_AMP] = ACTIONS(1553), - [anon_sym_if] = ACTIONS(1551), - [anon_sym_for] = ACTIONS(1551), - [anon_sym_foreach] = ACTIONS(1551), - [anon_sym_foreach_r] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1551), - [anon_sym_do] = ACTIONS(1551), - [anon_sym_int] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(1553), - [anon_sym_asm] = ACTIONS(1551), - [anon_sym_DOLLARassert] = ACTIONS(1551), - [anon_sym_DOLLARerror] = ACTIONS(1551), - [anon_sym_DOLLARecho] = ACTIONS(1551), - [anon_sym_DOLLARif] = ACTIONS(1551), - [anon_sym_DOLLARswitch] = ACTIONS(1551), - [anon_sym_DOLLARfor] = ACTIONS(1551), - [anon_sym_DOLLARforeach] = ACTIONS(1551), - [anon_sym_DOLLARendforeach] = ACTIONS(1551), - [anon_sym_DOLLARalignof] = ACTIONS(1551), - [anon_sym_DOLLARextnameof] = ACTIONS(1551), - [anon_sym_DOLLARnameof] = ACTIONS(1551), - [anon_sym_DOLLARoffsetof] = ACTIONS(1551), - [anon_sym_DOLLARqnameof] = ACTIONS(1551), - [anon_sym_DOLLAReval] = ACTIONS(1551), - [anon_sym_DOLLARdefined] = ACTIONS(1551), - [anon_sym_DOLLARsizeof] = ACTIONS(1551), - [anon_sym_DOLLARstringify] = ACTIONS(1551), - [anon_sym_DOLLARis_const] = ACTIONS(1551), - [anon_sym_DOLLARvaconst] = ACTIONS(1551), - [anon_sym_DOLLARvaarg] = ACTIONS(1551), - [anon_sym_DOLLARvaref] = ACTIONS(1551), - [anon_sym_DOLLARvaexpr] = ACTIONS(1551), - [anon_sym_true] = ACTIONS(1551), - [anon_sym_false] = ACTIONS(1551), - [anon_sym_null] = ACTIONS(1551), - [anon_sym_DOLLARvacount] = ACTIONS(1551), - [anon_sym_DOLLARfeature] = ACTIONS(1551), - [anon_sym_DOLLARand] = ACTIONS(1551), - [anon_sym_DOLLARor] = ACTIONS(1551), - [anon_sym_DOLLARassignable] = ACTIONS(1551), - [anon_sym_DOLLARembed] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1553), - [anon_sym_TILDE] = ACTIONS(1553), - [anon_sym_PLUS_PLUS] = ACTIONS(1553), - [anon_sym_DASH_DASH] = ACTIONS(1553), - [anon_sym_typeid] = ACTIONS(1551), - [anon_sym_LBRACE_PIPE] = ACTIONS(1553), - [anon_sym_void] = ACTIONS(1551), - [anon_sym_bool] = ACTIONS(1551), - [anon_sym_char] = ACTIONS(1551), - [anon_sym_ichar] = ACTIONS(1551), - [anon_sym_short] = ACTIONS(1551), - [anon_sym_ushort] = ACTIONS(1551), - [anon_sym_uint] = ACTIONS(1551), - [anon_sym_long] = ACTIONS(1551), - [anon_sym_ulong] = ACTIONS(1551), - [anon_sym_int128] = ACTIONS(1551), - [anon_sym_uint128] = ACTIONS(1551), - [anon_sym_float] = ACTIONS(1551), - [anon_sym_double] = ACTIONS(1551), - [anon_sym_float16] = ACTIONS(1551), - [anon_sym_bfloat16] = ACTIONS(1551), - [anon_sym_float128] = ACTIONS(1551), - [anon_sym_iptr] = ACTIONS(1551), - [anon_sym_uptr] = ACTIONS(1551), - [anon_sym_isz] = ACTIONS(1551), - [anon_sym_usz] = ACTIONS(1551), - [anon_sym_anyfault] = ACTIONS(1551), - [anon_sym_any] = ACTIONS(1551), - [anon_sym_DOLLARtypeof] = ACTIONS(1551), - [anon_sym_DOLLARtypefrom] = ACTIONS(1551), - [anon_sym_DOLLARvatype] = ACTIONS(1551), - [anon_sym_DOLLARevaltype] = ACTIONS(1551), - [sym_real_literal] = ACTIONS(1553), - }, - [721] = { - [sym_line_comment] = STATE(721), - [sym_doc_comment] = STATE(721), - [sym_block_comment] = STATE(721), - [sym_ident] = ACTIONS(1563), - [sym_integer_literal] = ACTIONS(1565), - [anon_sym_SQUOTE] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(1565), - [anon_sym_BQUOTE] = ACTIONS(1565), - [sym_bytes_literal] = ACTIONS(1565), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1563), - [sym_at_ident] = ACTIONS(1565), - [sym_hash_ident] = ACTIONS(1565), - [sym_type_ident] = ACTIONS(1565), - [sym_ct_type_ident] = ACTIONS(1565), - [sym_const_ident] = ACTIONS(1563), - [sym_builtin] = ACTIONS(1565), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_static] = ACTIONS(1563), - [anon_sym_tlocal] = ACTIONS(1563), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_fn] = ACTIONS(1563), - [anon_sym_LBRACE] = ACTIONS(1563), - [anon_sym_const] = ACTIONS(1563), - [anon_sym_var] = ACTIONS(1563), - [anon_sym_return] = ACTIONS(1563), - [anon_sym_continue] = ACTIONS(1563), - [anon_sym_break] = ACTIONS(1563), - [anon_sym_defer] = ACTIONS(1563), - [anon_sym_assert] = ACTIONS(1563), - [anon_sym_nextcase] = ACTIONS(1563), - [anon_sym_switch] = ACTIONS(1563), - [anon_sym_AMP_AMP] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1563), - [anon_sym_for] = ACTIONS(1563), - [anon_sym_foreach] = ACTIONS(1563), - [anon_sym_foreach_r] = ACTIONS(1563), - [anon_sym_while] = ACTIONS(1563), - [anon_sym_do] = ACTIONS(1563), - [anon_sym_int] = ACTIONS(1563), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1565), - [anon_sym_asm] = ACTIONS(1563), - [anon_sym_DOLLARassert] = ACTIONS(1563), - [anon_sym_DOLLARerror] = ACTIONS(1563), - [anon_sym_DOLLARecho] = ACTIONS(1563), - [anon_sym_DOLLARif] = ACTIONS(1563), - [anon_sym_DOLLARswitch] = ACTIONS(1563), - [anon_sym_DOLLARfor] = ACTIONS(1563), - [anon_sym_DOLLARforeach] = ACTIONS(1563), - [anon_sym_DOLLARendforeach] = ACTIONS(1563), - [anon_sym_DOLLARalignof] = ACTIONS(1563), - [anon_sym_DOLLARextnameof] = ACTIONS(1563), - [anon_sym_DOLLARnameof] = ACTIONS(1563), - [anon_sym_DOLLARoffsetof] = ACTIONS(1563), - [anon_sym_DOLLARqnameof] = ACTIONS(1563), - [anon_sym_DOLLAReval] = ACTIONS(1563), - [anon_sym_DOLLARdefined] = ACTIONS(1563), - [anon_sym_DOLLARsizeof] = ACTIONS(1563), - [anon_sym_DOLLARstringify] = ACTIONS(1563), - [anon_sym_DOLLARis_const] = ACTIONS(1563), - [anon_sym_DOLLARvaconst] = ACTIONS(1563), - [anon_sym_DOLLARvaarg] = ACTIONS(1563), - [anon_sym_DOLLARvaref] = ACTIONS(1563), - [anon_sym_DOLLARvaexpr] = ACTIONS(1563), - [anon_sym_true] = ACTIONS(1563), - [anon_sym_false] = ACTIONS(1563), - [anon_sym_null] = ACTIONS(1563), - [anon_sym_DOLLARvacount] = ACTIONS(1563), - [anon_sym_DOLLARfeature] = ACTIONS(1563), - [anon_sym_DOLLARand] = ACTIONS(1563), - [anon_sym_DOLLARor] = ACTIONS(1563), - [anon_sym_DOLLARassignable] = ACTIONS(1563), - [anon_sym_DOLLARembed] = ACTIONS(1563), - [anon_sym_BANG] = ACTIONS(1565), - [anon_sym_TILDE] = ACTIONS(1565), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_DASH_DASH] = ACTIONS(1565), - [anon_sym_typeid] = ACTIONS(1563), - [anon_sym_LBRACE_PIPE] = ACTIONS(1565), - [anon_sym_void] = ACTIONS(1563), - [anon_sym_bool] = ACTIONS(1563), - [anon_sym_char] = ACTIONS(1563), - [anon_sym_ichar] = ACTIONS(1563), - [anon_sym_short] = ACTIONS(1563), - [anon_sym_ushort] = ACTIONS(1563), - [anon_sym_uint] = ACTIONS(1563), - [anon_sym_long] = ACTIONS(1563), - [anon_sym_ulong] = ACTIONS(1563), - [anon_sym_int128] = ACTIONS(1563), - [anon_sym_uint128] = ACTIONS(1563), - [anon_sym_float] = ACTIONS(1563), - [anon_sym_double] = ACTIONS(1563), - [anon_sym_float16] = ACTIONS(1563), - [anon_sym_bfloat16] = ACTIONS(1563), - [anon_sym_float128] = ACTIONS(1563), - [anon_sym_iptr] = ACTIONS(1563), - [anon_sym_uptr] = ACTIONS(1563), - [anon_sym_isz] = ACTIONS(1563), - [anon_sym_usz] = ACTIONS(1563), - [anon_sym_anyfault] = ACTIONS(1563), - [anon_sym_any] = ACTIONS(1563), - [anon_sym_DOLLARtypeof] = ACTIONS(1563), - [anon_sym_DOLLARtypefrom] = ACTIONS(1563), - [anon_sym_DOLLARvatype] = ACTIONS(1563), - [anon_sym_DOLLARevaltype] = ACTIONS(1563), - [sym_real_literal] = ACTIONS(1565), - }, - [722] = { - [sym_line_comment] = STATE(722), - [sym_doc_comment] = STATE(722), - [sym_block_comment] = STATE(722), - [sym_ident] = ACTIONS(1575), - [sym_integer_literal] = ACTIONS(1577), - [anon_sym_SQUOTE] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1577), - [anon_sym_BQUOTE] = ACTIONS(1577), - [sym_bytes_literal] = ACTIONS(1577), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1575), - [sym_at_ident] = ACTIONS(1577), - [sym_hash_ident] = ACTIONS(1577), - [sym_type_ident] = ACTIONS(1577), - [sym_ct_type_ident] = ACTIONS(1577), - [sym_const_ident] = ACTIONS(1575), - [sym_builtin] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1575), - [anon_sym_static] = ACTIONS(1575), - [anon_sym_tlocal] = ACTIONS(1575), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_fn] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [anon_sym_var] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_defer] = ACTIONS(1575), - [anon_sym_assert] = ACTIONS(1575), - [anon_sym_nextcase] = ACTIONS(1575), - [anon_sym_switch] = ACTIONS(1575), - [anon_sym_AMP_AMP] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_foreach] = ACTIONS(1575), - [anon_sym_foreach_r] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_do] = ACTIONS(1575), - [anon_sym_int] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_asm] = ACTIONS(1575), - [anon_sym_DOLLARassert] = ACTIONS(1575), - [anon_sym_DOLLARerror] = ACTIONS(1575), - [anon_sym_DOLLARecho] = ACTIONS(1575), - [anon_sym_DOLLARif] = ACTIONS(1575), - [anon_sym_DOLLARswitch] = ACTIONS(1575), - [anon_sym_DOLLARfor] = ACTIONS(1575), - [anon_sym_DOLLARforeach] = ACTIONS(1575), - [anon_sym_DOLLARendforeach] = ACTIONS(1575), - [anon_sym_DOLLARalignof] = ACTIONS(1575), - [anon_sym_DOLLARextnameof] = ACTIONS(1575), - [anon_sym_DOLLARnameof] = ACTIONS(1575), - [anon_sym_DOLLARoffsetof] = ACTIONS(1575), - [anon_sym_DOLLARqnameof] = ACTIONS(1575), - [anon_sym_DOLLAReval] = ACTIONS(1575), - [anon_sym_DOLLARdefined] = ACTIONS(1575), - [anon_sym_DOLLARsizeof] = ACTIONS(1575), - [anon_sym_DOLLARstringify] = ACTIONS(1575), - [anon_sym_DOLLARis_const] = ACTIONS(1575), - [anon_sym_DOLLARvaconst] = ACTIONS(1575), - [anon_sym_DOLLARvaarg] = ACTIONS(1575), - [anon_sym_DOLLARvaref] = ACTIONS(1575), - [anon_sym_DOLLARvaexpr] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_DOLLARvacount] = ACTIONS(1575), - [anon_sym_DOLLARfeature] = ACTIONS(1575), - [anon_sym_DOLLARand] = ACTIONS(1575), - [anon_sym_DOLLARor] = ACTIONS(1575), - [anon_sym_DOLLARassignable] = ACTIONS(1575), - [anon_sym_DOLLARembed] = ACTIONS(1575), - [anon_sym_BANG] = ACTIONS(1577), - [anon_sym_TILDE] = ACTIONS(1577), - [anon_sym_PLUS_PLUS] = ACTIONS(1577), - [anon_sym_DASH_DASH] = ACTIONS(1577), - [anon_sym_typeid] = ACTIONS(1575), - [anon_sym_LBRACE_PIPE] = ACTIONS(1577), - [anon_sym_void] = ACTIONS(1575), - [anon_sym_bool] = ACTIONS(1575), - [anon_sym_char] = ACTIONS(1575), - [anon_sym_ichar] = ACTIONS(1575), - [anon_sym_short] = ACTIONS(1575), - [anon_sym_ushort] = ACTIONS(1575), - [anon_sym_uint] = ACTIONS(1575), - [anon_sym_long] = ACTIONS(1575), - [anon_sym_ulong] = ACTIONS(1575), - [anon_sym_int128] = ACTIONS(1575), - [anon_sym_uint128] = ACTIONS(1575), - [anon_sym_float] = ACTIONS(1575), - [anon_sym_double] = ACTIONS(1575), - [anon_sym_float16] = ACTIONS(1575), - [anon_sym_bfloat16] = ACTIONS(1575), - [anon_sym_float128] = ACTIONS(1575), - [anon_sym_iptr] = ACTIONS(1575), - [anon_sym_uptr] = ACTIONS(1575), - [anon_sym_isz] = ACTIONS(1575), - [anon_sym_usz] = ACTIONS(1575), - [anon_sym_anyfault] = ACTIONS(1575), - [anon_sym_any] = ACTIONS(1575), - [anon_sym_DOLLARtypeof] = ACTIONS(1575), - [anon_sym_DOLLARtypefrom] = ACTIONS(1575), - [anon_sym_DOLLARvatype] = ACTIONS(1575), - [anon_sym_DOLLARevaltype] = ACTIONS(1575), - [sym_real_literal] = ACTIONS(1577), - }, - [723] = { - [sym_line_comment] = STATE(723), - [sym_doc_comment] = STATE(723), - [sym_block_comment] = STATE(723), - [sym_ident] = ACTIONS(1579), - [sym_integer_literal] = ACTIONS(1581), - [anon_sym_SQUOTE] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1581), - [anon_sym_BQUOTE] = ACTIONS(1581), - [sym_bytes_literal] = ACTIONS(1581), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1579), - [sym_at_ident] = ACTIONS(1581), - [sym_hash_ident] = ACTIONS(1581), - [sym_type_ident] = ACTIONS(1581), - [sym_ct_type_ident] = ACTIONS(1581), - [sym_const_ident] = ACTIONS(1579), - [sym_builtin] = ACTIONS(1581), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_tlocal] = ACTIONS(1579), - [anon_sym_SEMI] = ACTIONS(1581), - [anon_sym_fn] = ACTIONS(1579), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_const] = ACTIONS(1579), - [anon_sym_var] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_continue] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1579), - [anon_sym_defer] = ACTIONS(1579), - [anon_sym_assert] = ACTIONS(1579), - [anon_sym_nextcase] = ACTIONS(1579), - [anon_sym_switch] = ACTIONS(1579), - [anon_sym_AMP_AMP] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_for] = ACTIONS(1579), - [anon_sym_foreach] = ACTIONS(1579), - [anon_sym_foreach_r] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_do] = ACTIONS(1579), - [anon_sym_int] = ACTIONS(1579), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_STAR] = ACTIONS(1581), - [anon_sym_asm] = ACTIONS(1579), - [anon_sym_DOLLARassert] = ACTIONS(1579), - [anon_sym_DOLLARerror] = ACTIONS(1579), - [anon_sym_DOLLARecho] = ACTIONS(1579), - [anon_sym_DOLLARif] = ACTIONS(1579), - [anon_sym_DOLLARswitch] = ACTIONS(1579), - [anon_sym_DOLLARfor] = ACTIONS(1579), - [anon_sym_DOLLARforeach] = ACTIONS(1579), - [anon_sym_DOLLARendforeach] = ACTIONS(1579), - [anon_sym_DOLLARalignof] = ACTIONS(1579), - [anon_sym_DOLLARextnameof] = ACTIONS(1579), - [anon_sym_DOLLARnameof] = ACTIONS(1579), - [anon_sym_DOLLARoffsetof] = ACTIONS(1579), - [anon_sym_DOLLARqnameof] = ACTIONS(1579), - [anon_sym_DOLLAReval] = ACTIONS(1579), - [anon_sym_DOLLARdefined] = ACTIONS(1579), - [anon_sym_DOLLARsizeof] = ACTIONS(1579), - [anon_sym_DOLLARstringify] = ACTIONS(1579), - [anon_sym_DOLLARis_const] = ACTIONS(1579), - [anon_sym_DOLLARvaconst] = ACTIONS(1579), - [anon_sym_DOLLARvaarg] = ACTIONS(1579), - [anon_sym_DOLLARvaref] = ACTIONS(1579), - [anon_sym_DOLLARvaexpr] = ACTIONS(1579), - [anon_sym_true] = ACTIONS(1579), - [anon_sym_false] = ACTIONS(1579), - [anon_sym_null] = ACTIONS(1579), - [anon_sym_DOLLARvacount] = ACTIONS(1579), - [anon_sym_DOLLARfeature] = ACTIONS(1579), - [anon_sym_DOLLARand] = ACTIONS(1579), - [anon_sym_DOLLARor] = ACTIONS(1579), - [anon_sym_DOLLARassignable] = ACTIONS(1579), - [anon_sym_DOLLARembed] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1581), - [anon_sym_TILDE] = ACTIONS(1581), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [anon_sym_typeid] = ACTIONS(1579), - [anon_sym_LBRACE_PIPE] = ACTIONS(1581), - [anon_sym_void] = ACTIONS(1579), - [anon_sym_bool] = ACTIONS(1579), - [anon_sym_char] = ACTIONS(1579), - [anon_sym_ichar] = ACTIONS(1579), - [anon_sym_short] = ACTIONS(1579), - [anon_sym_ushort] = ACTIONS(1579), - [anon_sym_uint] = ACTIONS(1579), - [anon_sym_long] = ACTIONS(1579), - [anon_sym_ulong] = ACTIONS(1579), - [anon_sym_int128] = ACTIONS(1579), - [anon_sym_uint128] = ACTIONS(1579), - [anon_sym_float] = ACTIONS(1579), - [anon_sym_double] = ACTIONS(1579), - [anon_sym_float16] = ACTIONS(1579), - [anon_sym_bfloat16] = ACTIONS(1579), - [anon_sym_float128] = ACTIONS(1579), - [anon_sym_iptr] = ACTIONS(1579), - [anon_sym_uptr] = ACTIONS(1579), - [anon_sym_isz] = ACTIONS(1579), - [anon_sym_usz] = ACTIONS(1579), - [anon_sym_anyfault] = ACTIONS(1579), - [anon_sym_any] = ACTIONS(1579), - [anon_sym_DOLLARtypeof] = ACTIONS(1579), - [anon_sym_DOLLARtypefrom] = ACTIONS(1579), - [anon_sym_DOLLARvatype] = ACTIONS(1579), - [anon_sym_DOLLARevaltype] = ACTIONS(1579), - [sym_real_literal] = ACTIONS(1581), - }, - [724] = { - [sym_line_comment] = STATE(724), - [sym_doc_comment] = STATE(724), - [sym_block_comment] = STATE(724), - [sym_ident] = ACTIONS(1587), - [sym_integer_literal] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [anon_sym_BQUOTE] = ACTIONS(1589), - [sym_bytes_literal] = ACTIONS(1589), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1587), - [sym_at_ident] = ACTIONS(1589), - [sym_hash_ident] = ACTIONS(1589), - [sym_type_ident] = ACTIONS(1589), - [sym_ct_type_ident] = ACTIONS(1589), - [sym_const_ident] = ACTIONS(1587), - [sym_builtin] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_static] = ACTIONS(1587), - [anon_sym_tlocal] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_fn] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [anon_sym_var] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_defer] = ACTIONS(1587), - [anon_sym_assert] = ACTIONS(1587), - [anon_sym_nextcase] = ACTIONS(1587), - [anon_sym_switch] = ACTIONS(1587), - [anon_sym_AMP_AMP] = ACTIONS(1589), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_foreach] = ACTIONS(1587), - [anon_sym_foreach_r] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_int] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_asm] = ACTIONS(1587), - [anon_sym_DOLLARassert] = ACTIONS(1587), - [anon_sym_DOLLARerror] = ACTIONS(1587), - [anon_sym_DOLLARecho] = ACTIONS(1587), - [anon_sym_DOLLARif] = ACTIONS(1587), - [anon_sym_DOLLARswitch] = ACTIONS(1587), - [anon_sym_DOLLARfor] = ACTIONS(1587), - [anon_sym_DOLLARforeach] = ACTIONS(1587), - [anon_sym_DOLLARendforeach] = ACTIONS(1587), - [anon_sym_DOLLARalignof] = ACTIONS(1587), - [anon_sym_DOLLARextnameof] = ACTIONS(1587), - [anon_sym_DOLLARnameof] = ACTIONS(1587), - [anon_sym_DOLLARoffsetof] = ACTIONS(1587), - [anon_sym_DOLLARqnameof] = ACTIONS(1587), - [anon_sym_DOLLAReval] = ACTIONS(1587), - [anon_sym_DOLLARdefined] = ACTIONS(1587), - [anon_sym_DOLLARsizeof] = ACTIONS(1587), - [anon_sym_DOLLARstringify] = ACTIONS(1587), - [anon_sym_DOLLARis_const] = ACTIONS(1587), - [anon_sym_DOLLARvaconst] = ACTIONS(1587), - [anon_sym_DOLLARvaarg] = ACTIONS(1587), - [anon_sym_DOLLARvaref] = ACTIONS(1587), - [anon_sym_DOLLARvaexpr] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), - [anon_sym_null] = ACTIONS(1587), - [anon_sym_DOLLARvacount] = ACTIONS(1587), - [anon_sym_DOLLARfeature] = ACTIONS(1587), - [anon_sym_DOLLARand] = ACTIONS(1587), - [anon_sym_DOLLARor] = ACTIONS(1587), - [anon_sym_DOLLARassignable] = ACTIONS(1587), - [anon_sym_DOLLARembed] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_typeid] = ACTIONS(1587), - [anon_sym_LBRACE_PIPE] = ACTIONS(1589), - [anon_sym_void] = ACTIONS(1587), - [anon_sym_bool] = ACTIONS(1587), - [anon_sym_char] = ACTIONS(1587), - [anon_sym_ichar] = ACTIONS(1587), - [anon_sym_short] = ACTIONS(1587), - [anon_sym_ushort] = ACTIONS(1587), - [anon_sym_uint] = ACTIONS(1587), - [anon_sym_long] = ACTIONS(1587), - [anon_sym_ulong] = ACTIONS(1587), - [anon_sym_int128] = ACTIONS(1587), - [anon_sym_uint128] = ACTIONS(1587), - [anon_sym_float] = ACTIONS(1587), - [anon_sym_double] = ACTIONS(1587), - [anon_sym_float16] = ACTIONS(1587), - [anon_sym_bfloat16] = ACTIONS(1587), - [anon_sym_float128] = ACTIONS(1587), - [anon_sym_iptr] = ACTIONS(1587), - [anon_sym_uptr] = ACTIONS(1587), - [anon_sym_isz] = ACTIONS(1587), - [anon_sym_usz] = ACTIONS(1587), - [anon_sym_anyfault] = ACTIONS(1587), - [anon_sym_any] = ACTIONS(1587), - [anon_sym_DOLLARtypeof] = ACTIONS(1587), - [anon_sym_DOLLARtypefrom] = ACTIONS(1587), - [anon_sym_DOLLARvatype] = ACTIONS(1587), - [anon_sym_DOLLARevaltype] = ACTIONS(1587), - [sym_real_literal] = ACTIONS(1589), - }, - [725] = { - [sym_line_comment] = STATE(725), - [sym_doc_comment] = STATE(725), - [sym_block_comment] = STATE(725), - [sym_ident] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1529), - [anon_sym_DQUOTE] = ACTIONS(1529), - [anon_sym_BQUOTE] = ACTIONS(1529), - [sym_bytes_literal] = ACTIONS(1529), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1527), - [sym_at_ident] = ACTIONS(1529), - [sym_hash_ident] = ACTIONS(1529), - [sym_type_ident] = ACTIONS(1529), - [sym_ct_type_ident] = ACTIONS(1529), - [sym_const_ident] = ACTIONS(1527), - [sym_builtin] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(1527), - [anon_sym_tlocal] = ACTIONS(1527), - [anon_sym_SEMI] = ACTIONS(1529), - [anon_sym_fn] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_const] = ACTIONS(1527), - [anon_sym_var] = ACTIONS(1527), - [anon_sym_return] = ACTIONS(1527), - [anon_sym_continue] = ACTIONS(1527), - [anon_sym_break] = ACTIONS(1527), - [anon_sym_defer] = ACTIONS(1527), - [anon_sym_assert] = ACTIONS(1527), - [anon_sym_nextcase] = ACTIONS(1527), - [anon_sym_switch] = ACTIONS(1527), - [anon_sym_AMP_AMP] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1527), - [anon_sym_for] = ACTIONS(1527), - [anon_sym_foreach] = ACTIONS(1527), - [anon_sym_foreach_r] = ACTIONS(1527), - [anon_sym_while] = ACTIONS(1527), - [anon_sym_do] = ACTIONS(1527), - [anon_sym_int] = ACTIONS(1527), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1529), - [anon_sym_asm] = ACTIONS(1527), - [anon_sym_DOLLARassert] = ACTIONS(1527), - [anon_sym_DOLLARerror] = ACTIONS(1527), - [anon_sym_DOLLARecho] = ACTIONS(1527), - [anon_sym_DOLLARif] = ACTIONS(1527), - [anon_sym_DOLLARswitch] = ACTIONS(1527), - [anon_sym_DOLLARfor] = ACTIONS(1527), - [anon_sym_DOLLARendfor] = ACTIONS(1527), - [anon_sym_DOLLARforeach] = ACTIONS(1527), - [anon_sym_DOLLARalignof] = ACTIONS(1527), - [anon_sym_DOLLARextnameof] = ACTIONS(1527), - [anon_sym_DOLLARnameof] = ACTIONS(1527), - [anon_sym_DOLLARoffsetof] = ACTIONS(1527), - [anon_sym_DOLLARqnameof] = ACTIONS(1527), - [anon_sym_DOLLAReval] = ACTIONS(1527), - [anon_sym_DOLLARdefined] = ACTIONS(1527), - [anon_sym_DOLLARsizeof] = ACTIONS(1527), - [anon_sym_DOLLARstringify] = ACTIONS(1527), - [anon_sym_DOLLARis_const] = ACTIONS(1527), - [anon_sym_DOLLARvaconst] = ACTIONS(1527), - [anon_sym_DOLLARvaarg] = ACTIONS(1527), - [anon_sym_DOLLARvaref] = ACTIONS(1527), - [anon_sym_DOLLARvaexpr] = ACTIONS(1527), - [anon_sym_true] = ACTIONS(1527), - [anon_sym_false] = ACTIONS(1527), - [anon_sym_null] = ACTIONS(1527), - [anon_sym_DOLLARvacount] = ACTIONS(1527), - [anon_sym_DOLLARfeature] = ACTIONS(1527), - [anon_sym_DOLLARand] = ACTIONS(1527), - [anon_sym_DOLLARor] = ACTIONS(1527), - [anon_sym_DOLLARassignable] = ACTIONS(1527), - [anon_sym_DOLLARembed] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), - [anon_sym_typeid] = ACTIONS(1527), - [anon_sym_LBRACE_PIPE] = ACTIONS(1529), - [anon_sym_void] = ACTIONS(1527), - [anon_sym_bool] = ACTIONS(1527), - [anon_sym_char] = ACTIONS(1527), - [anon_sym_ichar] = ACTIONS(1527), - [anon_sym_short] = ACTIONS(1527), - [anon_sym_ushort] = ACTIONS(1527), - [anon_sym_uint] = ACTIONS(1527), - [anon_sym_long] = ACTIONS(1527), - [anon_sym_ulong] = ACTIONS(1527), - [anon_sym_int128] = ACTIONS(1527), - [anon_sym_uint128] = ACTIONS(1527), - [anon_sym_float] = ACTIONS(1527), - [anon_sym_double] = ACTIONS(1527), - [anon_sym_float16] = ACTIONS(1527), - [anon_sym_bfloat16] = ACTIONS(1527), - [anon_sym_float128] = ACTIONS(1527), - [anon_sym_iptr] = ACTIONS(1527), - [anon_sym_uptr] = ACTIONS(1527), - [anon_sym_isz] = ACTIONS(1527), - [anon_sym_usz] = ACTIONS(1527), - [anon_sym_anyfault] = ACTIONS(1527), - [anon_sym_any] = ACTIONS(1527), - [anon_sym_DOLLARtypeof] = ACTIONS(1527), - [anon_sym_DOLLARtypefrom] = ACTIONS(1527), - [anon_sym_DOLLARvatype] = ACTIONS(1527), - [anon_sym_DOLLARevaltype] = ACTIONS(1527), - [sym_real_literal] = ACTIONS(1529), - }, - [726] = { - [sym_line_comment] = STATE(726), - [sym_doc_comment] = STATE(726), - [sym_block_comment] = STATE(726), - [sym_ident] = ACTIONS(1519), - [sym_integer_literal] = ACTIONS(1521), - [anon_sym_SQUOTE] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1521), - [anon_sym_BQUOTE] = ACTIONS(1521), - [sym_bytes_literal] = ACTIONS(1521), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1519), - [sym_at_ident] = ACTIONS(1521), - [sym_hash_ident] = ACTIONS(1521), - [sym_type_ident] = ACTIONS(1521), - [sym_ct_type_ident] = ACTIONS(1521), - [sym_const_ident] = ACTIONS(1519), - [sym_builtin] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_static] = ACTIONS(1519), - [anon_sym_tlocal] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_fn] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(1519), - [anon_sym_var] = ACTIONS(1519), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_defer] = ACTIONS(1519), - [anon_sym_assert] = ACTIONS(1519), - [anon_sym_nextcase] = ACTIONS(1519), - [anon_sym_switch] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(1521), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_foreach] = ACTIONS(1519), - [anon_sym_foreach_r] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_do] = ACTIONS(1519), - [anon_sym_int] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1521), - [anon_sym_asm] = ACTIONS(1519), - [anon_sym_DOLLARassert] = ACTIONS(1519), - [anon_sym_DOLLARerror] = ACTIONS(1519), - [anon_sym_DOLLARecho] = ACTIONS(1519), - [anon_sym_DOLLARif] = ACTIONS(1519), - [anon_sym_DOLLARswitch] = ACTIONS(1519), - [anon_sym_DOLLARfor] = ACTIONS(1519), - [anon_sym_DOLLARendfor] = ACTIONS(1519), - [anon_sym_DOLLARforeach] = ACTIONS(1519), - [anon_sym_DOLLARalignof] = ACTIONS(1519), - [anon_sym_DOLLARextnameof] = ACTIONS(1519), - [anon_sym_DOLLARnameof] = ACTIONS(1519), - [anon_sym_DOLLARoffsetof] = ACTIONS(1519), - [anon_sym_DOLLARqnameof] = ACTIONS(1519), - [anon_sym_DOLLAReval] = ACTIONS(1519), - [anon_sym_DOLLARdefined] = ACTIONS(1519), - [anon_sym_DOLLARsizeof] = ACTIONS(1519), - [anon_sym_DOLLARstringify] = ACTIONS(1519), - [anon_sym_DOLLARis_const] = ACTIONS(1519), - [anon_sym_DOLLARvaconst] = ACTIONS(1519), - [anon_sym_DOLLARvaarg] = ACTIONS(1519), - [anon_sym_DOLLARvaref] = ACTIONS(1519), - [anon_sym_DOLLARvaexpr] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_null] = ACTIONS(1519), - [anon_sym_DOLLARvacount] = ACTIONS(1519), - [anon_sym_DOLLARfeature] = ACTIONS(1519), - [anon_sym_DOLLARand] = ACTIONS(1519), - [anon_sym_DOLLARor] = ACTIONS(1519), - [anon_sym_DOLLARassignable] = ACTIONS(1519), - [anon_sym_DOLLARembed] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1521), - [anon_sym_TILDE] = ACTIONS(1521), - [anon_sym_PLUS_PLUS] = ACTIONS(1521), - [anon_sym_DASH_DASH] = ACTIONS(1521), - [anon_sym_typeid] = ACTIONS(1519), - [anon_sym_LBRACE_PIPE] = ACTIONS(1521), - [anon_sym_void] = ACTIONS(1519), - [anon_sym_bool] = ACTIONS(1519), - [anon_sym_char] = ACTIONS(1519), - [anon_sym_ichar] = ACTIONS(1519), - [anon_sym_short] = ACTIONS(1519), - [anon_sym_ushort] = ACTIONS(1519), - [anon_sym_uint] = ACTIONS(1519), - [anon_sym_long] = ACTIONS(1519), - [anon_sym_ulong] = ACTIONS(1519), - [anon_sym_int128] = ACTIONS(1519), - [anon_sym_uint128] = ACTIONS(1519), - [anon_sym_float] = ACTIONS(1519), - [anon_sym_double] = ACTIONS(1519), - [anon_sym_float16] = ACTIONS(1519), - [anon_sym_bfloat16] = ACTIONS(1519), - [anon_sym_float128] = ACTIONS(1519), - [anon_sym_iptr] = ACTIONS(1519), - [anon_sym_uptr] = ACTIONS(1519), - [anon_sym_isz] = ACTIONS(1519), - [anon_sym_usz] = ACTIONS(1519), - [anon_sym_anyfault] = ACTIONS(1519), - [anon_sym_any] = ACTIONS(1519), - [anon_sym_DOLLARtypeof] = ACTIONS(1519), - [anon_sym_DOLLARtypefrom] = ACTIONS(1519), - [anon_sym_DOLLARvatype] = ACTIONS(1519), - [anon_sym_DOLLARevaltype] = ACTIONS(1519), - [sym_real_literal] = ACTIONS(1521), - }, - [727] = { - [sym_line_comment] = STATE(727), - [sym_doc_comment] = STATE(727), - [sym_block_comment] = STATE(727), - [sym_ident] = ACTIONS(1467), - [sym_integer_literal] = ACTIONS(1469), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_DQUOTE] = ACTIONS(1469), - [anon_sym_BQUOTE] = ACTIONS(1469), - [sym_bytes_literal] = ACTIONS(1469), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1467), - [sym_at_ident] = ACTIONS(1469), - [sym_hash_ident] = ACTIONS(1469), - [sym_type_ident] = ACTIONS(1469), - [sym_ct_type_ident] = ACTIONS(1469), - [sym_const_ident] = ACTIONS(1467), - [sym_builtin] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_static] = ACTIONS(1467), - [anon_sym_tlocal] = ACTIONS(1467), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_fn] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_const] = ACTIONS(1467), - [anon_sym_var] = ACTIONS(1467), - [anon_sym_return] = ACTIONS(1467), - [anon_sym_continue] = ACTIONS(1467), - [anon_sym_break] = ACTIONS(1467), - [anon_sym_defer] = ACTIONS(1467), - [anon_sym_assert] = ACTIONS(1467), - [anon_sym_nextcase] = ACTIONS(1467), - [anon_sym_switch] = ACTIONS(1467), - [anon_sym_AMP_AMP] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1467), - [anon_sym_for] = ACTIONS(1467), - [anon_sym_foreach] = ACTIONS(1467), - [anon_sym_foreach_r] = ACTIONS(1467), - [anon_sym_while] = ACTIONS(1467), - [anon_sym_do] = ACTIONS(1467), - [anon_sym_int] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_asm] = ACTIONS(1467), - [anon_sym_DOLLARassert] = ACTIONS(1467), - [anon_sym_DOLLARerror] = ACTIONS(1467), - [anon_sym_DOLLARecho] = ACTIONS(1467), - [anon_sym_DOLLARif] = ACTIONS(1467), - [anon_sym_DOLLARswitch] = ACTIONS(1467), - [anon_sym_DOLLARfor] = ACTIONS(1467), - [anon_sym_DOLLARendfor] = ACTIONS(1467), - [anon_sym_DOLLARforeach] = ACTIONS(1467), - [anon_sym_DOLLARalignof] = ACTIONS(1467), - [anon_sym_DOLLARextnameof] = ACTIONS(1467), - [anon_sym_DOLLARnameof] = ACTIONS(1467), - [anon_sym_DOLLARoffsetof] = ACTIONS(1467), - [anon_sym_DOLLARqnameof] = ACTIONS(1467), - [anon_sym_DOLLAReval] = ACTIONS(1467), - [anon_sym_DOLLARdefined] = ACTIONS(1467), - [anon_sym_DOLLARsizeof] = ACTIONS(1467), - [anon_sym_DOLLARstringify] = ACTIONS(1467), - [anon_sym_DOLLARis_const] = ACTIONS(1467), - [anon_sym_DOLLARvaconst] = ACTIONS(1467), - [anon_sym_DOLLARvaarg] = ACTIONS(1467), - [anon_sym_DOLLARvaref] = ACTIONS(1467), - [anon_sym_DOLLARvaexpr] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1467), - [anon_sym_false] = ACTIONS(1467), - [anon_sym_null] = ACTIONS(1467), - [anon_sym_DOLLARvacount] = ACTIONS(1467), - [anon_sym_DOLLARfeature] = ACTIONS(1467), - [anon_sym_DOLLARand] = ACTIONS(1467), - [anon_sym_DOLLARor] = ACTIONS(1467), - [anon_sym_DOLLARassignable] = ACTIONS(1467), - [anon_sym_DOLLARembed] = ACTIONS(1467), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_TILDE] = ACTIONS(1469), - [anon_sym_PLUS_PLUS] = ACTIONS(1469), - [anon_sym_DASH_DASH] = ACTIONS(1469), - [anon_sym_typeid] = ACTIONS(1467), - [anon_sym_LBRACE_PIPE] = ACTIONS(1469), - [anon_sym_void] = ACTIONS(1467), - [anon_sym_bool] = ACTIONS(1467), - [anon_sym_char] = ACTIONS(1467), - [anon_sym_ichar] = ACTIONS(1467), - [anon_sym_short] = ACTIONS(1467), - [anon_sym_ushort] = ACTIONS(1467), - [anon_sym_uint] = ACTIONS(1467), - [anon_sym_long] = ACTIONS(1467), - [anon_sym_ulong] = ACTIONS(1467), - [anon_sym_int128] = ACTIONS(1467), - [anon_sym_uint128] = ACTIONS(1467), - [anon_sym_float] = ACTIONS(1467), - [anon_sym_double] = ACTIONS(1467), - [anon_sym_float16] = ACTIONS(1467), - [anon_sym_bfloat16] = ACTIONS(1467), - [anon_sym_float128] = ACTIONS(1467), - [anon_sym_iptr] = ACTIONS(1467), - [anon_sym_uptr] = ACTIONS(1467), - [anon_sym_isz] = ACTIONS(1467), - [anon_sym_usz] = ACTIONS(1467), - [anon_sym_anyfault] = ACTIONS(1467), - [anon_sym_any] = ACTIONS(1467), - [anon_sym_DOLLARtypeof] = ACTIONS(1467), - [anon_sym_DOLLARtypefrom] = ACTIONS(1467), - [anon_sym_DOLLARvatype] = ACTIONS(1467), - [anon_sym_DOLLARevaltype] = ACTIONS(1467), - [sym_real_literal] = ACTIONS(1469), + [sym_ct_ident] = ACTIONS(1429), + [sym_at_ident] = ACTIONS(1431), + [sym_hash_ident] = ACTIONS(1431), + [sym_type_ident] = ACTIONS(1431), + [sym_ct_type_ident] = ACTIONS(1431), + [sym_const_ident] = ACTIONS(1429), + [sym_builtin] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1429), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_tlocal] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_fn] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_var] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_defer] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1429), + [anon_sym_nextcase] = ACTIONS(1429), + [anon_sym_switch] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_foreach] = ACTIONS(1429), + [anon_sym_foreach_r] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_int] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_asm] = ACTIONS(1429), + [anon_sym_DOLLARassert] = ACTIONS(1429), + [anon_sym_DOLLARerror] = ACTIONS(1429), + [anon_sym_DOLLARecho] = ACTIONS(1429), + [anon_sym_DOLLARif] = ACTIONS(1429), + [anon_sym_DOLLARswitch] = ACTIONS(1429), + [anon_sym_DOLLARfor] = ACTIONS(1429), + [anon_sym_DOLLARforeach] = ACTIONS(1429), + [anon_sym_DOLLARendforeach] = ACTIONS(1429), + [anon_sym_DOLLARalignof] = ACTIONS(1429), + [anon_sym_DOLLARextnameof] = ACTIONS(1429), + [anon_sym_DOLLARnameof] = ACTIONS(1429), + [anon_sym_DOLLARoffsetof] = ACTIONS(1429), + [anon_sym_DOLLARqnameof] = ACTIONS(1429), + [anon_sym_DOLLARvaconst] = ACTIONS(1429), + [anon_sym_DOLLARvaarg] = ACTIONS(1429), + [anon_sym_DOLLARvaref] = ACTIONS(1429), + [anon_sym_DOLLARvaexpr] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1429), + [anon_sym_DOLLARvacount] = ACTIONS(1429), + [anon_sym_DOLLAReval] = ACTIONS(1429), + [anon_sym_DOLLARis_const] = ACTIONS(1429), + [anon_sym_DOLLARsizeof] = ACTIONS(1429), + [anon_sym_DOLLARstringify] = ACTIONS(1429), + [anon_sym_DOLLARappend] = ACTIONS(1429), + [anon_sym_DOLLARconcat] = ACTIONS(1429), + [anon_sym_DOLLARdefined] = ACTIONS(1429), + [anon_sym_DOLLARembed] = ACTIONS(1429), + [anon_sym_DOLLARand] = ACTIONS(1429), + [anon_sym_DOLLARor] = ACTIONS(1429), + [anon_sym_DOLLARfeature] = ACTIONS(1429), + [anon_sym_DOLLARassignable] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_typeid] = ACTIONS(1429), + [anon_sym_LBRACE_PIPE] = ACTIONS(1431), + [anon_sym_void] = ACTIONS(1429), + [anon_sym_bool] = ACTIONS(1429), + [anon_sym_char] = ACTIONS(1429), + [anon_sym_ichar] = ACTIONS(1429), + [anon_sym_short] = ACTIONS(1429), + [anon_sym_ushort] = ACTIONS(1429), + [anon_sym_uint] = ACTIONS(1429), + [anon_sym_long] = ACTIONS(1429), + [anon_sym_ulong] = ACTIONS(1429), + [anon_sym_int128] = ACTIONS(1429), + [anon_sym_uint128] = ACTIONS(1429), + [anon_sym_float] = ACTIONS(1429), + [anon_sym_double] = ACTIONS(1429), + [anon_sym_float16] = ACTIONS(1429), + [anon_sym_bfloat16] = ACTIONS(1429), + [anon_sym_float128] = ACTIONS(1429), + [anon_sym_iptr] = ACTIONS(1429), + [anon_sym_uptr] = ACTIONS(1429), + [anon_sym_isz] = ACTIONS(1429), + [anon_sym_usz] = ACTIONS(1429), + [anon_sym_anyfault] = ACTIONS(1429), + [anon_sym_any] = ACTIONS(1429), + [anon_sym_DOLLARtypeof] = ACTIONS(1429), + [anon_sym_DOLLARtypefrom] = ACTIONS(1429), + [anon_sym_DOLLARevaltype] = ACTIONS(1429), + [anon_sym_DOLLARvatype] = ACTIONS(1429), + [sym_real_literal] = ACTIONS(1431), }, - [728] = { - [sym_line_comment] = STATE(728), - [sym_doc_comment] = STATE(728), - [sym_block_comment] = STATE(728), - [sym_ident] = ACTIONS(1515), - [sym_integer_literal] = ACTIONS(1517), - [anon_sym_SQUOTE] = ACTIONS(1517), - [anon_sym_DQUOTE] = ACTIONS(1517), - [anon_sym_BQUOTE] = ACTIONS(1517), - [sym_bytes_literal] = ACTIONS(1517), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1515), - [sym_at_ident] = ACTIONS(1517), - [sym_hash_ident] = ACTIONS(1517), - [sym_type_ident] = ACTIONS(1517), - [sym_ct_type_ident] = ACTIONS(1517), - [sym_const_ident] = ACTIONS(1515), - [sym_builtin] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_AMP] = ACTIONS(1515), - [anon_sym_static] = ACTIONS(1515), - [anon_sym_tlocal] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1517), - [anon_sym_fn] = ACTIONS(1515), - [anon_sym_LBRACE] = ACTIONS(1515), - [anon_sym_const] = ACTIONS(1515), - [anon_sym_var] = ACTIONS(1515), - [anon_sym_return] = ACTIONS(1515), - [anon_sym_continue] = ACTIONS(1515), - [anon_sym_break] = ACTIONS(1515), - [anon_sym_defer] = ACTIONS(1515), - [anon_sym_assert] = ACTIONS(1515), - [anon_sym_nextcase] = ACTIONS(1515), - [anon_sym_switch] = ACTIONS(1515), - [anon_sym_AMP_AMP] = ACTIONS(1517), - [anon_sym_if] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(1515), - [anon_sym_foreach] = ACTIONS(1515), - [anon_sym_foreach_r] = ACTIONS(1515), - [anon_sym_while] = ACTIONS(1515), - [anon_sym_do] = ACTIONS(1515), - [anon_sym_int] = ACTIONS(1515), - [anon_sym_PLUS] = ACTIONS(1515), - [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_STAR] = ACTIONS(1517), - [anon_sym_asm] = ACTIONS(1515), - [anon_sym_DOLLARassert] = ACTIONS(1515), - [anon_sym_DOLLARerror] = ACTIONS(1515), - [anon_sym_DOLLARecho] = ACTIONS(1515), - [anon_sym_DOLLARif] = ACTIONS(1515), - [anon_sym_DOLLARswitch] = ACTIONS(1515), - [anon_sym_DOLLARfor] = ACTIONS(1515), - [anon_sym_DOLLARendfor] = ACTIONS(1515), - [anon_sym_DOLLARforeach] = ACTIONS(1515), - [anon_sym_DOLLARalignof] = ACTIONS(1515), - [anon_sym_DOLLARextnameof] = ACTIONS(1515), - [anon_sym_DOLLARnameof] = ACTIONS(1515), - [anon_sym_DOLLARoffsetof] = ACTIONS(1515), - [anon_sym_DOLLARqnameof] = ACTIONS(1515), - [anon_sym_DOLLAReval] = ACTIONS(1515), - [anon_sym_DOLLARdefined] = ACTIONS(1515), - [anon_sym_DOLLARsizeof] = ACTIONS(1515), - [anon_sym_DOLLARstringify] = ACTIONS(1515), - [anon_sym_DOLLARis_const] = ACTIONS(1515), - [anon_sym_DOLLARvaconst] = ACTIONS(1515), - [anon_sym_DOLLARvaarg] = ACTIONS(1515), - [anon_sym_DOLLARvaref] = ACTIONS(1515), - [anon_sym_DOLLARvaexpr] = ACTIONS(1515), - [anon_sym_true] = ACTIONS(1515), - [anon_sym_false] = ACTIONS(1515), - [anon_sym_null] = ACTIONS(1515), - [anon_sym_DOLLARvacount] = ACTIONS(1515), - [anon_sym_DOLLARfeature] = ACTIONS(1515), - [anon_sym_DOLLARand] = ACTIONS(1515), - [anon_sym_DOLLARor] = ACTIONS(1515), - [anon_sym_DOLLARassignable] = ACTIONS(1515), - [anon_sym_DOLLARembed] = ACTIONS(1515), - [anon_sym_BANG] = ACTIONS(1517), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [anon_sym_typeid] = ACTIONS(1515), - [anon_sym_LBRACE_PIPE] = ACTIONS(1517), - [anon_sym_void] = ACTIONS(1515), - [anon_sym_bool] = ACTIONS(1515), - [anon_sym_char] = ACTIONS(1515), - [anon_sym_ichar] = ACTIONS(1515), - [anon_sym_short] = ACTIONS(1515), - [anon_sym_ushort] = ACTIONS(1515), - [anon_sym_uint] = ACTIONS(1515), - [anon_sym_long] = ACTIONS(1515), - [anon_sym_ulong] = ACTIONS(1515), - [anon_sym_int128] = ACTIONS(1515), - [anon_sym_uint128] = ACTIONS(1515), - [anon_sym_float] = ACTIONS(1515), - [anon_sym_double] = ACTIONS(1515), - [anon_sym_float16] = ACTIONS(1515), - [anon_sym_bfloat16] = ACTIONS(1515), - [anon_sym_float128] = ACTIONS(1515), - [anon_sym_iptr] = ACTIONS(1515), - [anon_sym_uptr] = ACTIONS(1515), - [anon_sym_isz] = ACTIONS(1515), - [anon_sym_usz] = ACTIONS(1515), - [anon_sym_anyfault] = ACTIONS(1515), - [anon_sym_any] = ACTIONS(1515), - [anon_sym_DOLLARtypeof] = ACTIONS(1515), - [anon_sym_DOLLARtypefrom] = ACTIONS(1515), - [anon_sym_DOLLARvatype] = ACTIONS(1515), - [anon_sym_DOLLARevaltype] = ACTIONS(1515), - [sym_real_literal] = ACTIONS(1517), + [688] = { + [sym_line_comment] = STATE(688), + [sym_doc_comment] = STATE(688), + [sym_block_comment] = STATE(688), + [sym_ident] = ACTIONS(1373), + [sym_integer_literal] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [anon_sym_BQUOTE] = ACTIONS(1375), + [sym_bytes_literal] = ACTIONS(1375), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1373), + [sym_at_ident] = ACTIONS(1375), + [sym_hash_ident] = ACTIONS(1375), + [sym_type_ident] = ACTIONS(1375), + [sym_ct_type_ident] = ACTIONS(1375), + [sym_const_ident] = ACTIONS(1373), + [sym_builtin] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_tlocal] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_fn] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_var] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [anon_sym_defer] = ACTIONS(1373), + [anon_sym_assert] = ACTIONS(1373), + [anon_sym_nextcase] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1373), + [anon_sym_AMP_AMP] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_foreach] = ACTIONS(1373), + [anon_sym_foreach_r] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(1373), + [anon_sym_int] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_asm] = ACTIONS(1373), + [anon_sym_DOLLARassert] = ACTIONS(1373), + [anon_sym_DOLLARerror] = ACTIONS(1373), + [anon_sym_DOLLARecho] = ACTIONS(1373), + [anon_sym_DOLLARif] = ACTIONS(1373), + [anon_sym_DOLLARswitch] = ACTIONS(1373), + [anon_sym_DOLLARfor] = ACTIONS(1373), + [anon_sym_DOLLARendfor] = ACTIONS(1373), + [anon_sym_DOLLARforeach] = ACTIONS(1373), + [anon_sym_DOLLARalignof] = ACTIONS(1373), + [anon_sym_DOLLARextnameof] = ACTIONS(1373), + [anon_sym_DOLLARnameof] = ACTIONS(1373), + [anon_sym_DOLLARoffsetof] = ACTIONS(1373), + [anon_sym_DOLLARqnameof] = ACTIONS(1373), + [anon_sym_DOLLARvaconst] = ACTIONS(1373), + [anon_sym_DOLLARvaarg] = ACTIONS(1373), + [anon_sym_DOLLARvaref] = ACTIONS(1373), + [anon_sym_DOLLARvaexpr] = ACTIONS(1373), + [anon_sym_true] = ACTIONS(1373), + [anon_sym_false] = ACTIONS(1373), + [anon_sym_null] = ACTIONS(1373), + [anon_sym_DOLLARvacount] = ACTIONS(1373), + [anon_sym_DOLLAReval] = ACTIONS(1373), + [anon_sym_DOLLARis_const] = ACTIONS(1373), + [anon_sym_DOLLARsizeof] = ACTIONS(1373), + [anon_sym_DOLLARstringify] = ACTIONS(1373), + [anon_sym_DOLLARappend] = ACTIONS(1373), + [anon_sym_DOLLARconcat] = ACTIONS(1373), + [anon_sym_DOLLARdefined] = ACTIONS(1373), + [anon_sym_DOLLARembed] = ACTIONS(1373), + [anon_sym_DOLLARand] = ACTIONS(1373), + [anon_sym_DOLLARor] = ACTIONS(1373), + [anon_sym_DOLLARfeature] = ACTIONS(1373), + [anon_sym_DOLLARassignable] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_typeid] = ACTIONS(1373), + [anon_sym_LBRACE_PIPE] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1373), + [anon_sym_bool] = ACTIONS(1373), + [anon_sym_char] = ACTIONS(1373), + [anon_sym_ichar] = ACTIONS(1373), + [anon_sym_short] = ACTIONS(1373), + [anon_sym_ushort] = ACTIONS(1373), + [anon_sym_uint] = ACTIONS(1373), + [anon_sym_long] = ACTIONS(1373), + [anon_sym_ulong] = ACTIONS(1373), + [anon_sym_int128] = ACTIONS(1373), + [anon_sym_uint128] = ACTIONS(1373), + [anon_sym_float] = ACTIONS(1373), + [anon_sym_double] = ACTIONS(1373), + [anon_sym_float16] = ACTIONS(1373), + [anon_sym_bfloat16] = ACTIONS(1373), + [anon_sym_float128] = ACTIONS(1373), + [anon_sym_iptr] = ACTIONS(1373), + [anon_sym_uptr] = ACTIONS(1373), + [anon_sym_isz] = ACTIONS(1373), + [anon_sym_usz] = ACTIONS(1373), + [anon_sym_anyfault] = ACTIONS(1373), + [anon_sym_any] = ACTIONS(1373), + [anon_sym_DOLLARtypeof] = ACTIONS(1373), + [anon_sym_DOLLARtypefrom] = ACTIONS(1373), + [anon_sym_DOLLARevaltype] = ACTIONS(1373), + [anon_sym_DOLLARvatype] = ACTIONS(1373), + [sym_real_literal] = ACTIONS(1375), }, - [729] = { - [sym_line_comment] = STATE(729), - [sym_doc_comment] = STATE(729), - [sym_block_comment] = STATE(729), - [sym_ident] = ACTIONS(1511), - [sym_integer_literal] = ACTIONS(1513), - [anon_sym_SQUOTE] = ACTIONS(1513), - [anon_sym_DQUOTE] = ACTIONS(1513), - [anon_sym_BQUOTE] = ACTIONS(1513), - [sym_bytes_literal] = ACTIONS(1513), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1511), - [sym_at_ident] = ACTIONS(1513), - [sym_hash_ident] = ACTIONS(1513), - [sym_type_ident] = ACTIONS(1513), - [sym_ct_type_ident] = ACTIONS(1513), - [sym_const_ident] = ACTIONS(1511), - [sym_builtin] = ACTIONS(1513), - [anon_sym_LPAREN] = ACTIONS(1513), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_tlocal] = ACTIONS(1511), - [anon_sym_SEMI] = ACTIONS(1513), - [anon_sym_fn] = ACTIONS(1511), - [anon_sym_LBRACE] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_var] = ACTIONS(1511), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_continue] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1511), - [anon_sym_defer] = ACTIONS(1511), - [anon_sym_assert] = ACTIONS(1511), - [anon_sym_nextcase] = ACTIONS(1511), - [anon_sym_switch] = ACTIONS(1511), - [anon_sym_AMP_AMP] = ACTIONS(1513), - [anon_sym_if] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(1511), - [anon_sym_foreach] = ACTIONS(1511), - [anon_sym_foreach_r] = ACTIONS(1511), - [anon_sym_while] = ACTIONS(1511), - [anon_sym_do] = ACTIONS(1511), - [anon_sym_int] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_asm] = ACTIONS(1511), - [anon_sym_DOLLARassert] = ACTIONS(1511), - [anon_sym_DOLLARerror] = ACTIONS(1511), - [anon_sym_DOLLARecho] = ACTIONS(1511), - [anon_sym_DOLLARif] = ACTIONS(1511), - [anon_sym_DOLLARswitch] = ACTIONS(1511), - [anon_sym_DOLLARfor] = ACTIONS(1511), - [anon_sym_DOLLARendfor] = ACTIONS(1511), - [anon_sym_DOLLARforeach] = ACTIONS(1511), - [anon_sym_DOLLARalignof] = ACTIONS(1511), - [anon_sym_DOLLARextnameof] = ACTIONS(1511), - [anon_sym_DOLLARnameof] = ACTIONS(1511), - [anon_sym_DOLLARoffsetof] = ACTIONS(1511), - [anon_sym_DOLLARqnameof] = ACTIONS(1511), - [anon_sym_DOLLAReval] = ACTIONS(1511), - [anon_sym_DOLLARdefined] = ACTIONS(1511), - [anon_sym_DOLLARsizeof] = ACTIONS(1511), - [anon_sym_DOLLARstringify] = ACTIONS(1511), - [anon_sym_DOLLARis_const] = ACTIONS(1511), - [anon_sym_DOLLARvaconst] = ACTIONS(1511), - [anon_sym_DOLLARvaarg] = ACTIONS(1511), - [anon_sym_DOLLARvaref] = ACTIONS(1511), - [anon_sym_DOLLARvaexpr] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1511), - [anon_sym_false] = ACTIONS(1511), - [anon_sym_null] = ACTIONS(1511), - [anon_sym_DOLLARvacount] = ACTIONS(1511), - [anon_sym_DOLLARfeature] = ACTIONS(1511), - [anon_sym_DOLLARand] = ACTIONS(1511), - [anon_sym_DOLLARor] = ACTIONS(1511), - [anon_sym_DOLLARassignable] = ACTIONS(1511), - [anon_sym_DOLLARembed] = ACTIONS(1511), - [anon_sym_BANG] = ACTIONS(1513), - [anon_sym_TILDE] = ACTIONS(1513), - [anon_sym_PLUS_PLUS] = ACTIONS(1513), - [anon_sym_DASH_DASH] = ACTIONS(1513), - [anon_sym_typeid] = ACTIONS(1511), - [anon_sym_LBRACE_PIPE] = ACTIONS(1513), - [anon_sym_void] = ACTIONS(1511), - [anon_sym_bool] = ACTIONS(1511), - [anon_sym_char] = ACTIONS(1511), - [anon_sym_ichar] = ACTIONS(1511), - [anon_sym_short] = ACTIONS(1511), - [anon_sym_ushort] = ACTIONS(1511), - [anon_sym_uint] = ACTIONS(1511), - [anon_sym_long] = ACTIONS(1511), - [anon_sym_ulong] = ACTIONS(1511), - [anon_sym_int128] = ACTIONS(1511), - [anon_sym_uint128] = ACTIONS(1511), - [anon_sym_float] = ACTIONS(1511), - [anon_sym_double] = ACTIONS(1511), - [anon_sym_float16] = ACTIONS(1511), - [anon_sym_bfloat16] = ACTIONS(1511), - [anon_sym_float128] = ACTIONS(1511), - [anon_sym_iptr] = ACTIONS(1511), - [anon_sym_uptr] = ACTIONS(1511), - [anon_sym_isz] = ACTIONS(1511), - [anon_sym_usz] = ACTIONS(1511), - [anon_sym_anyfault] = ACTIONS(1511), - [anon_sym_any] = ACTIONS(1511), - [anon_sym_DOLLARtypeof] = ACTIONS(1511), - [anon_sym_DOLLARtypefrom] = ACTIONS(1511), - [anon_sym_DOLLARvatype] = ACTIONS(1511), - [anon_sym_DOLLARevaltype] = ACTIONS(1511), - [sym_real_literal] = ACTIONS(1513), + [689] = { + [sym_line_comment] = STATE(689), + [sym_doc_comment] = STATE(689), + [sym_block_comment] = STATE(689), + [sym_ident] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1523), + [sym_bytes_literal] = ACTIONS(1523), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1521), + [sym_at_ident] = ACTIONS(1523), + [sym_hash_ident] = ACTIONS(1523), + [sym_type_ident] = ACTIONS(1523), + [sym_ct_type_ident] = ACTIONS(1523), + [sym_const_ident] = ACTIONS(1521), + [sym_builtin] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_tlocal] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_var] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_defer] = ACTIONS(1521), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_nextcase] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_foreach] = ACTIONS(1521), + [anon_sym_foreach_r] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_int] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_asm] = ACTIONS(1521), + [anon_sym_DOLLARassert] = ACTIONS(1521), + [anon_sym_DOLLARerror] = ACTIONS(1521), + [anon_sym_DOLLARecho] = ACTIONS(1521), + [anon_sym_DOLLARif] = ACTIONS(1521), + [anon_sym_DOLLARswitch] = ACTIONS(1521), + [anon_sym_DOLLARfor] = ACTIONS(1521), + [anon_sym_DOLLARendfor] = ACTIONS(1521), + [anon_sym_DOLLARforeach] = ACTIONS(1521), + [anon_sym_DOLLARalignof] = ACTIONS(1521), + [anon_sym_DOLLARextnameof] = ACTIONS(1521), + [anon_sym_DOLLARnameof] = ACTIONS(1521), + [anon_sym_DOLLARoffsetof] = ACTIONS(1521), + [anon_sym_DOLLARqnameof] = ACTIONS(1521), + [anon_sym_DOLLARvaconst] = ACTIONS(1521), + [anon_sym_DOLLARvaarg] = ACTIONS(1521), + [anon_sym_DOLLARvaref] = ACTIONS(1521), + [anon_sym_DOLLARvaexpr] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [anon_sym_DOLLARvacount] = ACTIONS(1521), + [anon_sym_DOLLAReval] = ACTIONS(1521), + [anon_sym_DOLLARis_const] = ACTIONS(1521), + [anon_sym_DOLLARsizeof] = ACTIONS(1521), + [anon_sym_DOLLARstringify] = ACTIONS(1521), + [anon_sym_DOLLARappend] = ACTIONS(1521), + [anon_sym_DOLLARconcat] = ACTIONS(1521), + [anon_sym_DOLLARdefined] = ACTIONS(1521), + [anon_sym_DOLLARembed] = ACTIONS(1521), + [anon_sym_DOLLARand] = ACTIONS(1521), + [anon_sym_DOLLARor] = ACTIONS(1521), + [anon_sym_DOLLARfeature] = ACTIONS(1521), + [anon_sym_DOLLARassignable] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_typeid] = ACTIONS(1521), + [anon_sym_LBRACE_PIPE] = ACTIONS(1523), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_ichar] = ACTIONS(1521), + [anon_sym_short] = ACTIONS(1521), + [anon_sym_ushort] = ACTIONS(1521), + [anon_sym_uint] = ACTIONS(1521), + [anon_sym_long] = ACTIONS(1521), + [anon_sym_ulong] = ACTIONS(1521), + [anon_sym_int128] = ACTIONS(1521), + [anon_sym_uint128] = ACTIONS(1521), + [anon_sym_float] = ACTIONS(1521), + [anon_sym_double] = ACTIONS(1521), + [anon_sym_float16] = ACTIONS(1521), + [anon_sym_bfloat16] = ACTIONS(1521), + [anon_sym_float128] = ACTIONS(1521), + [anon_sym_iptr] = ACTIONS(1521), + [anon_sym_uptr] = ACTIONS(1521), + [anon_sym_isz] = ACTIONS(1521), + [anon_sym_usz] = ACTIONS(1521), + [anon_sym_anyfault] = ACTIONS(1521), + [anon_sym_any] = ACTIONS(1521), + [anon_sym_DOLLARtypeof] = ACTIONS(1521), + [anon_sym_DOLLARtypefrom] = ACTIONS(1521), + [anon_sym_DOLLARevaltype] = ACTIONS(1521), + [anon_sym_DOLLARvatype] = ACTIONS(1521), + [sym_real_literal] = ACTIONS(1523), }, - [730] = { - [sym_line_comment] = STATE(730), - [sym_doc_comment] = STATE(730), - [sym_block_comment] = STATE(730), - [sym_ident] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1497), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(1497), - [anon_sym_BQUOTE] = ACTIONS(1497), - [sym_bytes_literal] = ACTIONS(1497), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1495), - [sym_at_ident] = ACTIONS(1497), - [sym_hash_ident] = ACTIONS(1497), - [sym_type_ident] = ACTIONS(1497), - [sym_ct_type_ident] = ACTIONS(1497), - [sym_const_ident] = ACTIONS(1495), - [sym_builtin] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_tlocal] = ACTIONS(1495), - [anon_sym_SEMI] = ACTIONS(1497), - [anon_sym_fn] = ACTIONS(1495), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_var] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_defer] = ACTIONS(1495), - [anon_sym_assert] = ACTIONS(1495), - [anon_sym_nextcase] = ACTIONS(1495), - [anon_sym_switch] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_foreach] = ACTIONS(1495), - [anon_sym_foreach_r] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_do] = ACTIONS(1495), - [anon_sym_int] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_asm] = ACTIONS(1495), - [anon_sym_DOLLARassert] = ACTIONS(1495), - [anon_sym_DOLLARerror] = ACTIONS(1495), - [anon_sym_DOLLARecho] = ACTIONS(1495), - [anon_sym_DOLLARif] = ACTIONS(1495), - [anon_sym_DOLLARswitch] = ACTIONS(1495), - [anon_sym_DOLLARfor] = ACTIONS(1495), - [anon_sym_DOLLARendfor] = ACTIONS(1495), - [anon_sym_DOLLARforeach] = ACTIONS(1495), - [anon_sym_DOLLARalignof] = ACTIONS(1495), - [anon_sym_DOLLARextnameof] = ACTIONS(1495), - [anon_sym_DOLLARnameof] = ACTIONS(1495), - [anon_sym_DOLLARoffsetof] = ACTIONS(1495), - [anon_sym_DOLLARqnameof] = ACTIONS(1495), - [anon_sym_DOLLAReval] = ACTIONS(1495), - [anon_sym_DOLLARdefined] = ACTIONS(1495), - [anon_sym_DOLLARsizeof] = ACTIONS(1495), - [anon_sym_DOLLARstringify] = ACTIONS(1495), - [anon_sym_DOLLARis_const] = ACTIONS(1495), - [anon_sym_DOLLARvaconst] = ACTIONS(1495), - [anon_sym_DOLLARvaarg] = ACTIONS(1495), - [anon_sym_DOLLARvaref] = ACTIONS(1495), - [anon_sym_DOLLARvaexpr] = ACTIONS(1495), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [anon_sym_null] = ACTIONS(1495), - [anon_sym_DOLLARvacount] = ACTIONS(1495), - [anon_sym_DOLLARfeature] = ACTIONS(1495), - [anon_sym_DOLLARand] = ACTIONS(1495), - [anon_sym_DOLLARor] = ACTIONS(1495), - [anon_sym_DOLLARassignable] = ACTIONS(1495), - [anon_sym_DOLLARembed] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_TILDE] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_DASH_DASH] = ACTIONS(1497), - [anon_sym_typeid] = ACTIONS(1495), - [anon_sym_LBRACE_PIPE] = ACTIONS(1497), - [anon_sym_void] = ACTIONS(1495), - [anon_sym_bool] = ACTIONS(1495), - [anon_sym_char] = ACTIONS(1495), - [anon_sym_ichar] = ACTIONS(1495), - [anon_sym_short] = ACTIONS(1495), - [anon_sym_ushort] = ACTIONS(1495), - [anon_sym_uint] = ACTIONS(1495), - [anon_sym_long] = ACTIONS(1495), - [anon_sym_ulong] = ACTIONS(1495), - [anon_sym_int128] = ACTIONS(1495), - [anon_sym_uint128] = ACTIONS(1495), - [anon_sym_float] = ACTIONS(1495), - [anon_sym_double] = ACTIONS(1495), - [anon_sym_float16] = ACTIONS(1495), - [anon_sym_bfloat16] = ACTIONS(1495), - [anon_sym_float128] = ACTIONS(1495), - [anon_sym_iptr] = ACTIONS(1495), - [anon_sym_uptr] = ACTIONS(1495), - [anon_sym_isz] = ACTIONS(1495), - [anon_sym_usz] = ACTIONS(1495), - [anon_sym_anyfault] = ACTIONS(1495), - [anon_sym_any] = ACTIONS(1495), - [anon_sym_DOLLARtypeof] = ACTIONS(1495), - [anon_sym_DOLLARtypefrom] = ACTIONS(1495), - [anon_sym_DOLLARvatype] = ACTIONS(1495), - [anon_sym_DOLLARevaltype] = ACTIONS(1495), - [sym_real_literal] = ACTIONS(1497), + [690] = { + [sym_line_comment] = STATE(690), + [sym_doc_comment] = STATE(690), + [sym_block_comment] = STATE(690), + [sym_ident] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_bytes_literal] = ACTIONS(1443), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1441), + [sym_at_ident] = ACTIONS(1443), + [sym_hash_ident] = ACTIONS(1443), + [sym_type_ident] = ACTIONS(1443), + [sym_ct_type_ident] = ACTIONS(1443), + [sym_const_ident] = ACTIONS(1441), + [sym_builtin] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_tlocal] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_defer] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_nextcase] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_foreach] = ACTIONS(1441), + [anon_sym_foreach_r] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_int] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_asm] = ACTIONS(1441), + [anon_sym_DOLLARassert] = ACTIONS(1441), + [anon_sym_DOLLARerror] = ACTIONS(1441), + [anon_sym_DOLLARecho] = ACTIONS(1441), + [anon_sym_DOLLARif] = ACTIONS(1441), + [anon_sym_DOLLARswitch] = ACTIONS(1441), + [anon_sym_DOLLARfor] = ACTIONS(1441), + [anon_sym_DOLLARforeach] = ACTIONS(1441), + [anon_sym_DOLLARendforeach] = ACTIONS(1441), + [anon_sym_DOLLARalignof] = ACTIONS(1441), + [anon_sym_DOLLARextnameof] = ACTIONS(1441), + [anon_sym_DOLLARnameof] = ACTIONS(1441), + [anon_sym_DOLLARoffsetof] = ACTIONS(1441), + [anon_sym_DOLLARqnameof] = ACTIONS(1441), + [anon_sym_DOLLARvaconst] = ACTIONS(1441), + [anon_sym_DOLLARvaarg] = ACTIONS(1441), + [anon_sym_DOLLARvaref] = ACTIONS(1441), + [anon_sym_DOLLARvaexpr] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_DOLLARvacount] = ACTIONS(1441), + [anon_sym_DOLLAReval] = ACTIONS(1441), + [anon_sym_DOLLARis_const] = ACTIONS(1441), + [anon_sym_DOLLARsizeof] = ACTIONS(1441), + [anon_sym_DOLLARstringify] = ACTIONS(1441), + [anon_sym_DOLLARappend] = ACTIONS(1441), + [anon_sym_DOLLARconcat] = ACTIONS(1441), + [anon_sym_DOLLARdefined] = ACTIONS(1441), + [anon_sym_DOLLARembed] = ACTIONS(1441), + [anon_sym_DOLLARand] = ACTIONS(1441), + [anon_sym_DOLLARor] = ACTIONS(1441), + [anon_sym_DOLLARfeature] = ACTIONS(1441), + [anon_sym_DOLLARassignable] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_typeid] = ACTIONS(1441), + [anon_sym_LBRACE_PIPE] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_ichar] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_ushort] = ACTIONS(1441), + [anon_sym_uint] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_ulong] = ACTIONS(1441), + [anon_sym_int128] = ACTIONS(1441), + [anon_sym_uint128] = ACTIONS(1441), + [anon_sym_float] = ACTIONS(1441), + [anon_sym_double] = ACTIONS(1441), + [anon_sym_float16] = ACTIONS(1441), + [anon_sym_bfloat16] = ACTIONS(1441), + [anon_sym_float128] = ACTIONS(1441), + [anon_sym_iptr] = ACTIONS(1441), + [anon_sym_uptr] = ACTIONS(1441), + [anon_sym_isz] = ACTIONS(1441), + [anon_sym_usz] = ACTIONS(1441), + [anon_sym_anyfault] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_DOLLARtypeof] = ACTIONS(1441), + [anon_sym_DOLLARtypefrom] = ACTIONS(1441), + [anon_sym_DOLLARevaltype] = ACTIONS(1441), + [anon_sym_DOLLARvatype] = ACTIONS(1441), + [sym_real_literal] = ACTIONS(1443), }, - [731] = { - [sym_line_comment] = STATE(731), - [sym_doc_comment] = STATE(731), - [sym_block_comment] = STATE(731), - [sym_ident] = ACTIONS(1463), - [sym_integer_literal] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1465), - [sym_bytes_literal] = ACTIONS(1465), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1463), - [sym_at_ident] = ACTIONS(1465), - [sym_hash_ident] = ACTIONS(1465), - [sym_type_ident] = ACTIONS(1465), - [sym_ct_type_ident] = ACTIONS(1465), - [sym_const_ident] = ACTIONS(1463), - [sym_builtin] = ACTIONS(1465), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_static] = ACTIONS(1463), - [anon_sym_tlocal] = ACTIONS(1463), - [anon_sym_SEMI] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_var] = ACTIONS(1463), - [anon_sym_return] = ACTIONS(1463), - [anon_sym_continue] = ACTIONS(1463), - [anon_sym_break] = ACTIONS(1463), - [anon_sym_defer] = ACTIONS(1463), - [anon_sym_assert] = ACTIONS(1463), - [anon_sym_nextcase] = ACTIONS(1463), - [anon_sym_switch] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1463), - [anon_sym_for] = ACTIONS(1463), - [anon_sym_foreach] = ACTIONS(1463), - [anon_sym_foreach_r] = ACTIONS(1463), - [anon_sym_while] = ACTIONS(1463), - [anon_sym_do] = ACTIONS(1463), - [anon_sym_int] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1465), - [anon_sym_asm] = ACTIONS(1463), - [anon_sym_DOLLARassert] = ACTIONS(1463), - [anon_sym_DOLLARerror] = ACTIONS(1463), - [anon_sym_DOLLARecho] = ACTIONS(1463), - [anon_sym_DOLLARif] = ACTIONS(1463), - [anon_sym_DOLLARswitch] = ACTIONS(1463), - [anon_sym_DOLLARfor] = ACTIONS(1463), - [anon_sym_DOLLARendfor] = ACTIONS(1463), - [anon_sym_DOLLARforeach] = ACTIONS(1463), - [anon_sym_DOLLARalignof] = ACTIONS(1463), - [anon_sym_DOLLARextnameof] = ACTIONS(1463), - [anon_sym_DOLLARnameof] = ACTIONS(1463), - [anon_sym_DOLLARoffsetof] = ACTIONS(1463), - [anon_sym_DOLLARqnameof] = ACTIONS(1463), - [anon_sym_DOLLAReval] = ACTIONS(1463), - [anon_sym_DOLLARdefined] = ACTIONS(1463), - [anon_sym_DOLLARsizeof] = ACTIONS(1463), - [anon_sym_DOLLARstringify] = ACTIONS(1463), - [anon_sym_DOLLARis_const] = ACTIONS(1463), - [anon_sym_DOLLARvaconst] = ACTIONS(1463), - [anon_sym_DOLLARvaarg] = ACTIONS(1463), - [anon_sym_DOLLARvaref] = ACTIONS(1463), - [anon_sym_DOLLARvaexpr] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1463), - [anon_sym_false] = ACTIONS(1463), - [anon_sym_null] = ACTIONS(1463), - [anon_sym_DOLLARvacount] = ACTIONS(1463), - [anon_sym_DOLLARfeature] = ACTIONS(1463), - [anon_sym_DOLLARand] = ACTIONS(1463), - [anon_sym_DOLLARor] = ACTIONS(1463), - [anon_sym_DOLLARassignable] = ACTIONS(1463), - [anon_sym_DOLLARembed] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1465), - [anon_sym_PLUS_PLUS] = ACTIONS(1465), - [anon_sym_DASH_DASH] = ACTIONS(1465), - [anon_sym_typeid] = ACTIONS(1463), - [anon_sym_LBRACE_PIPE] = ACTIONS(1465), - [anon_sym_void] = ACTIONS(1463), - [anon_sym_bool] = ACTIONS(1463), - [anon_sym_char] = ACTIONS(1463), - [anon_sym_ichar] = ACTIONS(1463), - [anon_sym_short] = ACTIONS(1463), - [anon_sym_ushort] = ACTIONS(1463), - [anon_sym_uint] = ACTIONS(1463), - [anon_sym_long] = ACTIONS(1463), - [anon_sym_ulong] = ACTIONS(1463), - [anon_sym_int128] = ACTIONS(1463), - [anon_sym_uint128] = ACTIONS(1463), - [anon_sym_float] = ACTIONS(1463), - [anon_sym_double] = ACTIONS(1463), - [anon_sym_float16] = ACTIONS(1463), - [anon_sym_bfloat16] = ACTIONS(1463), - [anon_sym_float128] = ACTIONS(1463), - [anon_sym_iptr] = ACTIONS(1463), - [anon_sym_uptr] = ACTIONS(1463), - [anon_sym_isz] = ACTIONS(1463), - [anon_sym_usz] = ACTIONS(1463), - [anon_sym_anyfault] = ACTIONS(1463), - [anon_sym_any] = ACTIONS(1463), - [anon_sym_DOLLARtypeof] = ACTIONS(1463), - [anon_sym_DOLLARtypefrom] = ACTIONS(1463), - [anon_sym_DOLLARvatype] = ACTIONS(1463), - [anon_sym_DOLLARevaltype] = ACTIONS(1463), - [sym_real_literal] = ACTIONS(1465), + [691] = { + [sym_line_comment] = STATE(691), + [sym_doc_comment] = STATE(691), + [sym_block_comment] = STATE(691), + [sym_ident] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [anon_sym_BQUOTE] = ACTIONS(1447), + [sym_bytes_literal] = ACTIONS(1447), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1445), + [sym_at_ident] = ACTIONS(1447), + [sym_hash_ident] = ACTIONS(1447), + [sym_type_ident] = ACTIONS(1447), + [sym_ct_type_ident] = ACTIONS(1447), + [sym_const_ident] = ACTIONS(1445), + [sym_builtin] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_tlocal] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_var] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_defer] = ACTIONS(1445), + [anon_sym_assert] = ACTIONS(1445), + [anon_sym_nextcase] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_foreach] = ACTIONS(1445), + [anon_sym_foreach_r] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_int] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_asm] = ACTIONS(1445), + [anon_sym_DOLLARassert] = ACTIONS(1445), + [anon_sym_DOLLARerror] = ACTIONS(1445), + [anon_sym_DOLLARecho] = ACTIONS(1445), + [anon_sym_DOLLARif] = ACTIONS(1445), + [anon_sym_DOLLARswitch] = ACTIONS(1445), + [anon_sym_DOLLARfor] = ACTIONS(1445), + [anon_sym_DOLLARforeach] = ACTIONS(1445), + [anon_sym_DOLLARendforeach] = ACTIONS(1445), + [anon_sym_DOLLARalignof] = ACTIONS(1445), + [anon_sym_DOLLARextnameof] = ACTIONS(1445), + [anon_sym_DOLLARnameof] = ACTIONS(1445), + [anon_sym_DOLLARoffsetof] = ACTIONS(1445), + [anon_sym_DOLLARqnameof] = ACTIONS(1445), + [anon_sym_DOLLARvaconst] = ACTIONS(1445), + [anon_sym_DOLLARvaarg] = ACTIONS(1445), + [anon_sym_DOLLARvaref] = ACTIONS(1445), + [anon_sym_DOLLARvaexpr] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_null] = ACTIONS(1445), + [anon_sym_DOLLARvacount] = ACTIONS(1445), + [anon_sym_DOLLAReval] = ACTIONS(1445), + [anon_sym_DOLLARis_const] = ACTIONS(1445), + [anon_sym_DOLLARsizeof] = ACTIONS(1445), + [anon_sym_DOLLARstringify] = ACTIONS(1445), + [anon_sym_DOLLARappend] = ACTIONS(1445), + [anon_sym_DOLLARconcat] = ACTIONS(1445), + [anon_sym_DOLLARdefined] = ACTIONS(1445), + [anon_sym_DOLLARembed] = ACTIONS(1445), + [anon_sym_DOLLARand] = ACTIONS(1445), + [anon_sym_DOLLARor] = ACTIONS(1445), + [anon_sym_DOLLARfeature] = ACTIONS(1445), + [anon_sym_DOLLARassignable] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_typeid] = ACTIONS(1445), + [anon_sym_LBRACE_PIPE] = ACTIONS(1447), + [anon_sym_void] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_ichar] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [anon_sym_ushort] = ACTIONS(1445), + [anon_sym_uint] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_ulong] = ACTIONS(1445), + [anon_sym_int128] = ACTIONS(1445), + [anon_sym_uint128] = ACTIONS(1445), + [anon_sym_float] = ACTIONS(1445), + [anon_sym_double] = ACTIONS(1445), + [anon_sym_float16] = ACTIONS(1445), + [anon_sym_bfloat16] = ACTIONS(1445), + [anon_sym_float128] = ACTIONS(1445), + [anon_sym_iptr] = ACTIONS(1445), + [anon_sym_uptr] = ACTIONS(1445), + [anon_sym_isz] = ACTIONS(1445), + [anon_sym_usz] = ACTIONS(1445), + [anon_sym_anyfault] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_DOLLARtypeof] = ACTIONS(1445), + [anon_sym_DOLLARtypefrom] = ACTIONS(1445), + [anon_sym_DOLLARevaltype] = ACTIONS(1445), + [anon_sym_DOLLARvatype] = ACTIONS(1445), + [sym_real_literal] = ACTIONS(1447), }, - [732] = { - [sym_line_comment] = STATE(732), - [sym_doc_comment] = STATE(732), - [sym_block_comment] = STATE(732), - [sym_ident] = ACTIONS(1381), - [sym_integer_literal] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1383), - [anon_sym_BQUOTE] = ACTIONS(1383), - [sym_bytes_literal] = ACTIONS(1383), + [692] = { + [sym_line_comment] = STATE(692), + [sym_doc_comment] = STATE(692), + [sym_block_comment] = STATE(692), + [sym_ident] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_BQUOTE] = ACTIONS(1451), + [sym_bytes_literal] = ACTIONS(1451), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1381), - [sym_at_ident] = ACTIONS(1383), - [sym_hash_ident] = ACTIONS(1383), - [sym_type_ident] = ACTIONS(1383), - [sym_ct_type_ident] = ACTIONS(1383), - [sym_const_ident] = ACTIONS(1381), - [sym_builtin] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_static] = ACTIONS(1381), - [anon_sym_tlocal] = ACTIONS(1381), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_fn] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_const] = ACTIONS(1381), - [anon_sym_var] = ACTIONS(1381), - [anon_sym_return] = ACTIONS(1381), - [anon_sym_continue] = ACTIONS(1381), - [anon_sym_break] = ACTIONS(1381), - [anon_sym_defer] = ACTIONS(1381), - [anon_sym_assert] = ACTIONS(1381), - [anon_sym_nextcase] = ACTIONS(1381), - [anon_sym_switch] = ACTIONS(1381), - [anon_sym_AMP_AMP] = ACTIONS(1383), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_for] = ACTIONS(1381), - [anon_sym_foreach] = ACTIONS(1381), - [anon_sym_foreach_r] = ACTIONS(1381), - [anon_sym_while] = ACTIONS(1381), - [anon_sym_do] = ACTIONS(1381), - [anon_sym_int] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1381), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_asm] = ACTIONS(1381), - [anon_sym_DOLLARassert] = ACTIONS(1381), - [anon_sym_DOLLARerror] = ACTIONS(1381), - [anon_sym_DOLLARecho] = ACTIONS(1381), - [anon_sym_DOLLARif] = ACTIONS(1381), - [anon_sym_DOLLARswitch] = ACTIONS(1381), - [anon_sym_DOLLARfor] = ACTIONS(1381), - [anon_sym_DOLLARforeach] = ACTIONS(1381), - [anon_sym_DOLLARendforeach] = ACTIONS(1381), - [anon_sym_DOLLARalignof] = ACTIONS(1381), - [anon_sym_DOLLARextnameof] = ACTIONS(1381), - [anon_sym_DOLLARnameof] = ACTIONS(1381), - [anon_sym_DOLLARoffsetof] = ACTIONS(1381), - [anon_sym_DOLLARqnameof] = ACTIONS(1381), - [anon_sym_DOLLAReval] = ACTIONS(1381), - [anon_sym_DOLLARdefined] = ACTIONS(1381), - [anon_sym_DOLLARsizeof] = ACTIONS(1381), - [anon_sym_DOLLARstringify] = ACTIONS(1381), - [anon_sym_DOLLARis_const] = ACTIONS(1381), - [anon_sym_DOLLARvaconst] = ACTIONS(1381), - [anon_sym_DOLLARvaarg] = ACTIONS(1381), - [anon_sym_DOLLARvaref] = ACTIONS(1381), - [anon_sym_DOLLARvaexpr] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1381), - [anon_sym_false] = ACTIONS(1381), - [anon_sym_null] = ACTIONS(1381), - [anon_sym_DOLLARvacount] = ACTIONS(1381), - [anon_sym_DOLLARfeature] = ACTIONS(1381), - [anon_sym_DOLLARand] = ACTIONS(1381), - [anon_sym_DOLLARor] = ACTIONS(1381), - [anon_sym_DOLLARassignable] = ACTIONS(1381), - [anon_sym_DOLLARembed] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1383), - [anon_sym_TILDE] = ACTIONS(1383), - [anon_sym_PLUS_PLUS] = ACTIONS(1383), - [anon_sym_DASH_DASH] = ACTIONS(1383), - [anon_sym_typeid] = ACTIONS(1381), - [anon_sym_LBRACE_PIPE] = ACTIONS(1383), - [anon_sym_void] = ACTIONS(1381), - [anon_sym_bool] = ACTIONS(1381), - [anon_sym_char] = ACTIONS(1381), - [anon_sym_ichar] = ACTIONS(1381), - [anon_sym_short] = ACTIONS(1381), - [anon_sym_ushort] = ACTIONS(1381), - [anon_sym_uint] = ACTIONS(1381), - [anon_sym_long] = ACTIONS(1381), - [anon_sym_ulong] = ACTIONS(1381), - [anon_sym_int128] = ACTIONS(1381), - [anon_sym_uint128] = ACTIONS(1381), - [anon_sym_float] = ACTIONS(1381), - [anon_sym_double] = ACTIONS(1381), - [anon_sym_float16] = ACTIONS(1381), - [anon_sym_bfloat16] = ACTIONS(1381), - [anon_sym_float128] = ACTIONS(1381), - [anon_sym_iptr] = ACTIONS(1381), - [anon_sym_uptr] = ACTIONS(1381), - [anon_sym_isz] = ACTIONS(1381), - [anon_sym_usz] = ACTIONS(1381), - [anon_sym_anyfault] = ACTIONS(1381), - [anon_sym_any] = ACTIONS(1381), - [anon_sym_DOLLARtypeof] = ACTIONS(1381), - [anon_sym_DOLLARtypefrom] = ACTIONS(1381), - [anon_sym_DOLLARvatype] = ACTIONS(1381), - [anon_sym_DOLLARevaltype] = ACTIONS(1381), - [sym_real_literal] = ACTIONS(1383), + [sym_ct_ident] = ACTIONS(1449), + [sym_at_ident] = ACTIONS(1451), + [sym_hash_ident] = ACTIONS(1451), + [sym_type_ident] = ACTIONS(1451), + [sym_ct_type_ident] = ACTIONS(1451), + [sym_const_ident] = ACTIONS(1449), + [sym_builtin] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_tlocal] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_defer] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1449), + [anon_sym_nextcase] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_foreach] = ACTIONS(1449), + [anon_sym_foreach_r] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_int] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_asm] = ACTIONS(1449), + [anon_sym_DOLLARassert] = ACTIONS(1449), + [anon_sym_DOLLARerror] = ACTIONS(1449), + [anon_sym_DOLLARecho] = ACTIONS(1449), + [anon_sym_DOLLARif] = ACTIONS(1449), + [anon_sym_DOLLARswitch] = ACTIONS(1449), + [anon_sym_DOLLARfor] = ACTIONS(1449), + [anon_sym_DOLLARforeach] = ACTIONS(1449), + [anon_sym_DOLLARendforeach] = ACTIONS(1449), + [anon_sym_DOLLARalignof] = ACTIONS(1449), + [anon_sym_DOLLARextnameof] = ACTIONS(1449), + [anon_sym_DOLLARnameof] = ACTIONS(1449), + [anon_sym_DOLLARoffsetof] = ACTIONS(1449), + [anon_sym_DOLLARqnameof] = ACTIONS(1449), + [anon_sym_DOLLARvaconst] = ACTIONS(1449), + [anon_sym_DOLLARvaarg] = ACTIONS(1449), + [anon_sym_DOLLARvaref] = ACTIONS(1449), + [anon_sym_DOLLARvaexpr] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_null] = ACTIONS(1449), + [anon_sym_DOLLARvacount] = ACTIONS(1449), + [anon_sym_DOLLAReval] = ACTIONS(1449), + [anon_sym_DOLLARis_const] = ACTIONS(1449), + [anon_sym_DOLLARsizeof] = ACTIONS(1449), + [anon_sym_DOLLARstringify] = ACTIONS(1449), + [anon_sym_DOLLARappend] = ACTIONS(1449), + [anon_sym_DOLLARconcat] = ACTIONS(1449), + [anon_sym_DOLLARdefined] = ACTIONS(1449), + [anon_sym_DOLLARembed] = ACTIONS(1449), + [anon_sym_DOLLARand] = ACTIONS(1449), + [anon_sym_DOLLARor] = ACTIONS(1449), + [anon_sym_DOLLARfeature] = ACTIONS(1449), + [anon_sym_DOLLARassignable] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_typeid] = ACTIONS(1449), + [anon_sym_LBRACE_PIPE] = ACTIONS(1451), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_ichar] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_ushort] = ACTIONS(1449), + [anon_sym_uint] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_ulong] = ACTIONS(1449), + [anon_sym_int128] = ACTIONS(1449), + [anon_sym_uint128] = ACTIONS(1449), + [anon_sym_float] = ACTIONS(1449), + [anon_sym_double] = ACTIONS(1449), + [anon_sym_float16] = ACTIONS(1449), + [anon_sym_bfloat16] = ACTIONS(1449), + [anon_sym_float128] = ACTIONS(1449), + [anon_sym_iptr] = ACTIONS(1449), + [anon_sym_uptr] = ACTIONS(1449), + [anon_sym_isz] = ACTIONS(1449), + [anon_sym_usz] = ACTIONS(1449), + [anon_sym_anyfault] = ACTIONS(1449), + [anon_sym_any] = ACTIONS(1449), + [anon_sym_DOLLARtypeof] = ACTIONS(1449), + [anon_sym_DOLLARtypefrom] = ACTIONS(1449), + [anon_sym_DOLLARevaltype] = ACTIONS(1449), + [anon_sym_DOLLARvatype] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1451), }, - [733] = { - [sym_line_comment] = STATE(733), - [sym_doc_comment] = STATE(733), - [sym_block_comment] = STATE(733), + [693] = { + [sym_line_comment] = STATE(693), + [sym_doc_comment] = STATE(693), + [sym_block_comment] = STATE(693), [sym_ident] = ACTIONS(1457), [sym_integer_literal] = ACTIONS(1459), [anon_sym_SQUOTE] = ACTIONS(1459), @@ -109502,7 +105270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1459), [sym_bytes_literal] = ACTIONS(1459), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1457), [sym_at_ident] = ACTIONS(1459), @@ -109545,18 +105313,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARif] = ACTIONS(1457), [anon_sym_DOLLARswitch] = ACTIONS(1457), [anon_sym_DOLLARfor] = ACTIONS(1457), - [anon_sym_DOLLARendfor] = ACTIONS(1457), [anon_sym_DOLLARforeach] = ACTIONS(1457), + [anon_sym_DOLLARendforeach] = ACTIONS(1457), [anon_sym_DOLLARalignof] = ACTIONS(1457), [anon_sym_DOLLARextnameof] = ACTIONS(1457), [anon_sym_DOLLARnameof] = ACTIONS(1457), [anon_sym_DOLLARoffsetof] = ACTIONS(1457), [anon_sym_DOLLARqnameof] = ACTIONS(1457), - [anon_sym_DOLLAReval] = ACTIONS(1457), - [anon_sym_DOLLARdefined] = ACTIONS(1457), - [anon_sym_DOLLARsizeof] = ACTIONS(1457), - [anon_sym_DOLLARstringify] = ACTIONS(1457), - [anon_sym_DOLLARis_const] = ACTIONS(1457), [anon_sym_DOLLARvaconst] = ACTIONS(1457), [anon_sym_DOLLARvaarg] = ACTIONS(1457), [anon_sym_DOLLARvaref] = ACTIONS(1457), @@ -109565,11 +105328,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1457), [anon_sym_null] = ACTIONS(1457), [anon_sym_DOLLARvacount] = ACTIONS(1457), - [anon_sym_DOLLARfeature] = ACTIONS(1457), + [anon_sym_DOLLAReval] = ACTIONS(1457), + [anon_sym_DOLLARis_const] = ACTIONS(1457), + [anon_sym_DOLLARsizeof] = ACTIONS(1457), + [anon_sym_DOLLARstringify] = ACTIONS(1457), + [anon_sym_DOLLARappend] = ACTIONS(1457), + [anon_sym_DOLLARconcat] = ACTIONS(1457), + [anon_sym_DOLLARdefined] = ACTIONS(1457), + [anon_sym_DOLLARembed] = ACTIONS(1457), [anon_sym_DOLLARand] = ACTIONS(1457), [anon_sym_DOLLARor] = ACTIONS(1457), + [anon_sym_DOLLARfeature] = ACTIONS(1457), [anon_sym_DOLLARassignable] = ACTIONS(1457), - [anon_sym_DOLLARembed] = ACTIONS(1457), [anon_sym_BANG] = ACTIONS(1459), [anon_sym_TILDE] = ACTIONS(1459), [anon_sym_PLUS_PLUS] = ACTIONS(1459), @@ -109600,918 +105370,2889 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1457), [anon_sym_DOLLARtypeof] = ACTIONS(1457), [anon_sym_DOLLARtypefrom] = ACTIONS(1457), - [anon_sym_DOLLARvatype] = ACTIONS(1457), [anon_sym_DOLLARevaltype] = ACTIONS(1457), + [anon_sym_DOLLARvatype] = ACTIONS(1457), [sym_real_literal] = ACTIONS(1459), }, - [734] = { - [sym_line_comment] = STATE(734), - [sym_doc_comment] = STATE(734), - [sym_block_comment] = STATE(734), - [sym_ident] = ACTIONS(1623), - [sym_integer_literal] = ACTIONS(1625), - [anon_sym_SQUOTE] = ACTIONS(1625), - [anon_sym_DQUOTE] = ACTIONS(1625), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_bytes_literal] = ACTIONS(1625), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1623), - [sym_at_ident] = ACTIONS(1625), - [sym_hash_ident] = ACTIONS(1625), - [sym_type_ident] = ACTIONS(1625), - [sym_ct_type_ident] = ACTIONS(1625), - [sym_const_ident] = ACTIONS(1623), - [sym_builtin] = ACTIONS(1625), - [anon_sym_LPAREN] = ACTIONS(1625), - [anon_sym_AMP] = ACTIONS(1623), - [anon_sym_static] = ACTIONS(1623), - [anon_sym_tlocal] = ACTIONS(1623), - [anon_sym_SEMI] = ACTIONS(1625), - [anon_sym_fn] = ACTIONS(1623), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_const] = ACTIONS(1623), - [anon_sym_var] = ACTIONS(1623), - [anon_sym_return] = ACTIONS(1623), - [anon_sym_continue] = ACTIONS(1623), - [anon_sym_break] = ACTIONS(1623), - [anon_sym_defer] = ACTIONS(1623), - [anon_sym_assert] = ACTIONS(1623), - [anon_sym_nextcase] = ACTIONS(1623), - [anon_sym_switch] = ACTIONS(1623), - [anon_sym_AMP_AMP] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1623), - [anon_sym_for] = ACTIONS(1623), - [anon_sym_foreach] = ACTIONS(1623), - [anon_sym_foreach_r] = ACTIONS(1623), - [anon_sym_while] = ACTIONS(1623), - [anon_sym_do] = ACTIONS(1623), - [anon_sym_int] = ACTIONS(1623), - [anon_sym_PLUS] = ACTIONS(1623), - [anon_sym_DASH] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1625), - [anon_sym_asm] = ACTIONS(1623), - [anon_sym_DOLLARassert] = ACTIONS(1623), - [anon_sym_DOLLARerror] = ACTIONS(1623), - [anon_sym_DOLLARecho] = ACTIONS(1623), - [anon_sym_DOLLARif] = ACTIONS(1623), - [anon_sym_DOLLARswitch] = ACTIONS(1623), - [anon_sym_DOLLARfor] = ACTIONS(1623), - [anon_sym_DOLLARforeach] = ACTIONS(1623), - [anon_sym_DOLLARendforeach] = ACTIONS(1623), - [anon_sym_DOLLARalignof] = ACTIONS(1623), - [anon_sym_DOLLARextnameof] = ACTIONS(1623), - [anon_sym_DOLLARnameof] = ACTIONS(1623), - [anon_sym_DOLLARoffsetof] = ACTIONS(1623), - [anon_sym_DOLLARqnameof] = ACTIONS(1623), - [anon_sym_DOLLAReval] = ACTIONS(1623), - [anon_sym_DOLLARdefined] = ACTIONS(1623), - [anon_sym_DOLLARsizeof] = ACTIONS(1623), - [anon_sym_DOLLARstringify] = ACTIONS(1623), - [anon_sym_DOLLARis_const] = ACTIONS(1623), - [anon_sym_DOLLARvaconst] = ACTIONS(1623), - [anon_sym_DOLLARvaarg] = ACTIONS(1623), - [anon_sym_DOLLARvaref] = ACTIONS(1623), - [anon_sym_DOLLARvaexpr] = ACTIONS(1623), - [anon_sym_true] = ACTIONS(1623), - [anon_sym_false] = ACTIONS(1623), - [anon_sym_null] = ACTIONS(1623), - [anon_sym_DOLLARvacount] = ACTIONS(1623), - [anon_sym_DOLLARfeature] = ACTIONS(1623), - [anon_sym_DOLLARand] = ACTIONS(1623), - [anon_sym_DOLLARor] = ACTIONS(1623), - [anon_sym_DOLLARassignable] = ACTIONS(1623), - [anon_sym_DOLLARembed] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1625), - [anon_sym_TILDE] = ACTIONS(1625), - [anon_sym_PLUS_PLUS] = ACTIONS(1625), - [anon_sym_DASH_DASH] = ACTIONS(1625), - [anon_sym_typeid] = ACTIONS(1623), - [anon_sym_LBRACE_PIPE] = ACTIONS(1625), - [anon_sym_void] = ACTIONS(1623), - [anon_sym_bool] = ACTIONS(1623), - [anon_sym_char] = ACTIONS(1623), - [anon_sym_ichar] = ACTIONS(1623), - [anon_sym_short] = ACTIONS(1623), - [anon_sym_ushort] = ACTIONS(1623), - [anon_sym_uint] = ACTIONS(1623), - [anon_sym_long] = ACTIONS(1623), - [anon_sym_ulong] = ACTIONS(1623), - [anon_sym_int128] = ACTIONS(1623), - [anon_sym_uint128] = ACTIONS(1623), - [anon_sym_float] = ACTIONS(1623), - [anon_sym_double] = ACTIONS(1623), - [anon_sym_float16] = ACTIONS(1623), - [anon_sym_bfloat16] = ACTIONS(1623), - [anon_sym_float128] = ACTIONS(1623), - [anon_sym_iptr] = ACTIONS(1623), - [anon_sym_uptr] = ACTIONS(1623), - [anon_sym_isz] = ACTIONS(1623), - [anon_sym_usz] = ACTIONS(1623), - [anon_sym_anyfault] = ACTIONS(1623), - [anon_sym_any] = ACTIONS(1623), - [anon_sym_DOLLARtypeof] = ACTIONS(1623), - [anon_sym_DOLLARtypefrom] = ACTIONS(1623), - [anon_sym_DOLLARvatype] = ACTIONS(1623), - [anon_sym_DOLLARevaltype] = ACTIONS(1623), - [sym_real_literal] = ACTIONS(1625), + [694] = { + [sym_line_comment] = STATE(694), + [sym_doc_comment] = STATE(694), + [sym_block_comment] = STATE(694), + [sym_ident] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_bytes_literal] = ACTIONS(1463), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1461), + [sym_at_ident] = ACTIONS(1463), + [sym_hash_ident] = ACTIONS(1463), + [sym_type_ident] = ACTIONS(1463), + [sym_ct_type_ident] = ACTIONS(1463), + [sym_const_ident] = ACTIONS(1461), + [sym_builtin] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_tlocal] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_defer] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1461), + [anon_sym_nextcase] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_foreach] = ACTIONS(1461), + [anon_sym_foreach_r] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_int] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_asm] = ACTIONS(1461), + [anon_sym_DOLLARassert] = ACTIONS(1461), + [anon_sym_DOLLARerror] = ACTIONS(1461), + [anon_sym_DOLLARecho] = ACTIONS(1461), + [anon_sym_DOLLARif] = ACTIONS(1461), + [anon_sym_DOLLARswitch] = ACTIONS(1461), + [anon_sym_DOLLARfor] = ACTIONS(1461), + [anon_sym_DOLLARforeach] = ACTIONS(1461), + [anon_sym_DOLLARendforeach] = ACTIONS(1461), + [anon_sym_DOLLARalignof] = ACTIONS(1461), + [anon_sym_DOLLARextnameof] = ACTIONS(1461), + [anon_sym_DOLLARnameof] = ACTIONS(1461), + [anon_sym_DOLLARoffsetof] = ACTIONS(1461), + [anon_sym_DOLLARqnameof] = ACTIONS(1461), + [anon_sym_DOLLARvaconst] = ACTIONS(1461), + [anon_sym_DOLLARvaarg] = ACTIONS(1461), + [anon_sym_DOLLARvaref] = ACTIONS(1461), + [anon_sym_DOLLARvaexpr] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_DOLLARvacount] = ACTIONS(1461), + [anon_sym_DOLLAReval] = ACTIONS(1461), + [anon_sym_DOLLARis_const] = ACTIONS(1461), + [anon_sym_DOLLARsizeof] = ACTIONS(1461), + [anon_sym_DOLLARstringify] = ACTIONS(1461), + [anon_sym_DOLLARappend] = ACTIONS(1461), + [anon_sym_DOLLARconcat] = ACTIONS(1461), + [anon_sym_DOLLARdefined] = ACTIONS(1461), + [anon_sym_DOLLARembed] = ACTIONS(1461), + [anon_sym_DOLLARand] = ACTIONS(1461), + [anon_sym_DOLLARor] = ACTIONS(1461), + [anon_sym_DOLLARfeature] = ACTIONS(1461), + [anon_sym_DOLLARassignable] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_typeid] = ACTIONS(1461), + [anon_sym_LBRACE_PIPE] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_ichar] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [anon_sym_ushort] = ACTIONS(1461), + [anon_sym_uint] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_ulong] = ACTIONS(1461), + [anon_sym_int128] = ACTIONS(1461), + [anon_sym_uint128] = ACTIONS(1461), + [anon_sym_float] = ACTIONS(1461), + [anon_sym_double] = ACTIONS(1461), + [anon_sym_float16] = ACTIONS(1461), + [anon_sym_bfloat16] = ACTIONS(1461), + [anon_sym_float128] = ACTIONS(1461), + [anon_sym_iptr] = ACTIONS(1461), + [anon_sym_uptr] = ACTIONS(1461), + [anon_sym_isz] = ACTIONS(1461), + [anon_sym_usz] = ACTIONS(1461), + [anon_sym_anyfault] = ACTIONS(1461), + [anon_sym_any] = ACTIONS(1461), + [anon_sym_DOLLARtypeof] = ACTIONS(1461), + [anon_sym_DOLLARtypefrom] = ACTIONS(1461), + [anon_sym_DOLLARevaltype] = ACTIONS(1461), + [anon_sym_DOLLARvatype] = ACTIONS(1461), + [sym_real_literal] = ACTIONS(1463), }, - [735] = { - [sym_line_comment] = STATE(735), - [sym_doc_comment] = STATE(735), - [sym_block_comment] = STATE(735), - [sym_ident] = ACTIONS(1453), - [sym_integer_literal] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1455), - [anon_sym_DQUOTE] = ACTIONS(1455), - [anon_sym_BQUOTE] = ACTIONS(1455), - [sym_bytes_literal] = ACTIONS(1455), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1453), - [sym_at_ident] = ACTIONS(1455), - [sym_hash_ident] = ACTIONS(1455), - [sym_type_ident] = ACTIONS(1455), - [sym_ct_type_ident] = ACTIONS(1455), - [sym_const_ident] = ACTIONS(1453), - [sym_builtin] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1453), - [anon_sym_tlocal] = ACTIONS(1453), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym_fn] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [anon_sym_var] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_defer] = ACTIONS(1453), - [anon_sym_assert] = ACTIONS(1453), - [anon_sym_nextcase] = ACTIONS(1453), - [anon_sym_switch] = ACTIONS(1453), - [anon_sym_AMP_AMP] = ACTIONS(1455), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_foreach] = ACTIONS(1453), - [anon_sym_foreach_r] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_do] = ACTIONS(1453), - [anon_sym_int] = ACTIONS(1453), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_asm] = ACTIONS(1453), - [anon_sym_DOLLARassert] = ACTIONS(1453), - [anon_sym_DOLLARerror] = ACTIONS(1453), - [anon_sym_DOLLARecho] = ACTIONS(1453), - [anon_sym_DOLLARif] = ACTIONS(1453), - [anon_sym_DOLLARswitch] = ACTIONS(1453), - [anon_sym_DOLLARfor] = ACTIONS(1453), - [anon_sym_DOLLARendfor] = ACTIONS(1453), - [anon_sym_DOLLARforeach] = ACTIONS(1453), - [anon_sym_DOLLARalignof] = ACTIONS(1453), - [anon_sym_DOLLARextnameof] = ACTIONS(1453), - [anon_sym_DOLLARnameof] = ACTIONS(1453), - [anon_sym_DOLLARoffsetof] = ACTIONS(1453), - [anon_sym_DOLLARqnameof] = ACTIONS(1453), - [anon_sym_DOLLAReval] = ACTIONS(1453), - [anon_sym_DOLLARdefined] = ACTIONS(1453), - [anon_sym_DOLLARsizeof] = ACTIONS(1453), - [anon_sym_DOLLARstringify] = ACTIONS(1453), - [anon_sym_DOLLARis_const] = ACTIONS(1453), - [anon_sym_DOLLARvaconst] = ACTIONS(1453), - [anon_sym_DOLLARvaarg] = ACTIONS(1453), - [anon_sym_DOLLARvaref] = ACTIONS(1453), - [anon_sym_DOLLARvaexpr] = ACTIONS(1453), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [anon_sym_null] = ACTIONS(1453), - [anon_sym_DOLLARvacount] = ACTIONS(1453), - [anon_sym_DOLLARfeature] = ACTIONS(1453), - [anon_sym_DOLLARand] = ACTIONS(1453), - [anon_sym_DOLLARor] = ACTIONS(1453), - [anon_sym_DOLLARassignable] = ACTIONS(1453), - [anon_sym_DOLLARembed] = ACTIONS(1453), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_TILDE] = ACTIONS(1455), - [anon_sym_PLUS_PLUS] = ACTIONS(1455), - [anon_sym_DASH_DASH] = ACTIONS(1455), - [anon_sym_typeid] = ACTIONS(1453), - [anon_sym_LBRACE_PIPE] = ACTIONS(1455), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_bool] = ACTIONS(1453), - [anon_sym_char] = ACTIONS(1453), - [anon_sym_ichar] = ACTIONS(1453), - [anon_sym_short] = ACTIONS(1453), - [anon_sym_ushort] = ACTIONS(1453), - [anon_sym_uint] = ACTIONS(1453), - [anon_sym_long] = ACTIONS(1453), - [anon_sym_ulong] = ACTIONS(1453), - [anon_sym_int128] = ACTIONS(1453), - [anon_sym_uint128] = ACTIONS(1453), - [anon_sym_float] = ACTIONS(1453), - [anon_sym_double] = ACTIONS(1453), - [anon_sym_float16] = ACTIONS(1453), - [anon_sym_bfloat16] = ACTIONS(1453), - [anon_sym_float128] = ACTIONS(1453), - [anon_sym_iptr] = ACTIONS(1453), - [anon_sym_uptr] = ACTIONS(1453), - [anon_sym_isz] = ACTIONS(1453), - [anon_sym_usz] = ACTIONS(1453), - [anon_sym_anyfault] = ACTIONS(1453), - [anon_sym_any] = ACTIONS(1453), - [anon_sym_DOLLARtypeof] = ACTIONS(1453), - [anon_sym_DOLLARtypefrom] = ACTIONS(1453), - [anon_sym_DOLLARvatype] = ACTIONS(1453), - [anon_sym_DOLLARevaltype] = ACTIONS(1453), - [sym_real_literal] = ACTIONS(1455), + [695] = { + [sym_line_comment] = STATE(695), + [sym_doc_comment] = STATE(695), + [sym_block_comment] = STATE(695), + [sym_ident] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_BQUOTE] = ACTIONS(1475), + [sym_bytes_literal] = ACTIONS(1475), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1473), + [sym_at_ident] = ACTIONS(1475), + [sym_hash_ident] = ACTIONS(1475), + [sym_type_ident] = ACTIONS(1475), + [sym_ct_type_ident] = ACTIONS(1475), + [sym_const_ident] = ACTIONS(1473), + [sym_builtin] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_tlocal] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_defer] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_nextcase] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_foreach] = ACTIONS(1473), + [anon_sym_foreach_r] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_asm] = ACTIONS(1473), + [anon_sym_DOLLARassert] = ACTIONS(1473), + [anon_sym_DOLLARerror] = ACTIONS(1473), + [anon_sym_DOLLARecho] = ACTIONS(1473), + [anon_sym_DOLLARif] = ACTIONS(1473), + [anon_sym_DOLLARswitch] = ACTIONS(1473), + [anon_sym_DOLLARfor] = ACTIONS(1473), + [anon_sym_DOLLARforeach] = ACTIONS(1473), + [anon_sym_DOLLARendforeach] = ACTIONS(1473), + [anon_sym_DOLLARalignof] = ACTIONS(1473), + [anon_sym_DOLLARextnameof] = ACTIONS(1473), + [anon_sym_DOLLARnameof] = ACTIONS(1473), + [anon_sym_DOLLARoffsetof] = ACTIONS(1473), + [anon_sym_DOLLARqnameof] = ACTIONS(1473), + [anon_sym_DOLLARvaconst] = ACTIONS(1473), + [anon_sym_DOLLARvaarg] = ACTIONS(1473), + [anon_sym_DOLLARvaref] = ACTIONS(1473), + [anon_sym_DOLLARvaexpr] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_DOLLARvacount] = ACTIONS(1473), + [anon_sym_DOLLAReval] = ACTIONS(1473), + [anon_sym_DOLLARis_const] = ACTIONS(1473), + [anon_sym_DOLLARsizeof] = ACTIONS(1473), + [anon_sym_DOLLARstringify] = ACTIONS(1473), + [anon_sym_DOLLARappend] = ACTIONS(1473), + [anon_sym_DOLLARconcat] = ACTIONS(1473), + [anon_sym_DOLLARdefined] = ACTIONS(1473), + [anon_sym_DOLLARembed] = ACTIONS(1473), + [anon_sym_DOLLARand] = ACTIONS(1473), + [anon_sym_DOLLARor] = ACTIONS(1473), + [anon_sym_DOLLARfeature] = ACTIONS(1473), + [anon_sym_DOLLARassignable] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_typeid] = ACTIONS(1473), + [anon_sym_LBRACE_PIPE] = ACTIONS(1475), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_ichar] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_ushort] = ACTIONS(1473), + [anon_sym_uint] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_ulong] = ACTIONS(1473), + [anon_sym_int128] = ACTIONS(1473), + [anon_sym_uint128] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_float16] = ACTIONS(1473), + [anon_sym_bfloat16] = ACTIONS(1473), + [anon_sym_float128] = ACTIONS(1473), + [anon_sym_iptr] = ACTIONS(1473), + [anon_sym_uptr] = ACTIONS(1473), + [anon_sym_isz] = ACTIONS(1473), + [anon_sym_usz] = ACTIONS(1473), + [anon_sym_anyfault] = ACTIONS(1473), + [anon_sym_any] = ACTIONS(1473), + [anon_sym_DOLLARtypeof] = ACTIONS(1473), + [anon_sym_DOLLARtypefrom] = ACTIONS(1473), + [anon_sym_DOLLARevaltype] = ACTIONS(1473), + [anon_sym_DOLLARvatype] = ACTIONS(1473), + [sym_real_literal] = ACTIONS(1475), }, - [736] = { - [sym_line_comment] = STATE(736), - [sym_doc_comment] = STATE(736), - [sym_block_comment] = STATE(736), - [sym_ident] = ACTIONS(1611), - [sym_integer_literal] = ACTIONS(1613), - [anon_sym_SQUOTE] = ACTIONS(1613), - [anon_sym_DQUOTE] = ACTIONS(1613), - [anon_sym_BQUOTE] = ACTIONS(1613), - [sym_bytes_literal] = ACTIONS(1613), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1611), - [sym_at_ident] = ACTIONS(1613), - [sym_hash_ident] = ACTIONS(1613), - [sym_type_ident] = ACTIONS(1613), - [sym_ct_type_ident] = ACTIONS(1613), - [sym_const_ident] = ACTIONS(1611), - [sym_builtin] = ACTIONS(1613), - [anon_sym_LPAREN] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_static] = ACTIONS(1611), - [anon_sym_tlocal] = ACTIONS(1611), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_const] = ACTIONS(1611), - [anon_sym_var] = ACTIONS(1611), - [anon_sym_return] = ACTIONS(1611), - [anon_sym_continue] = ACTIONS(1611), - [anon_sym_break] = ACTIONS(1611), - [anon_sym_defer] = ACTIONS(1611), - [anon_sym_assert] = ACTIONS(1611), - [anon_sym_nextcase] = ACTIONS(1611), - [anon_sym_switch] = ACTIONS(1611), - [anon_sym_AMP_AMP] = ACTIONS(1613), - [anon_sym_if] = ACTIONS(1611), - [anon_sym_for] = ACTIONS(1611), - [anon_sym_foreach] = ACTIONS(1611), - [anon_sym_foreach_r] = ACTIONS(1611), - [anon_sym_while] = ACTIONS(1611), - [anon_sym_do] = ACTIONS(1611), - [anon_sym_int] = ACTIONS(1611), - [anon_sym_PLUS] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1611), - [anon_sym_STAR] = ACTIONS(1613), - [anon_sym_asm] = ACTIONS(1611), - [anon_sym_DOLLARassert] = ACTIONS(1611), - [anon_sym_DOLLARerror] = ACTIONS(1611), - [anon_sym_DOLLARecho] = ACTIONS(1611), - [anon_sym_DOLLARif] = ACTIONS(1611), - [anon_sym_DOLLARswitch] = ACTIONS(1611), - [anon_sym_DOLLARfor] = ACTIONS(1611), - [anon_sym_DOLLARforeach] = ACTIONS(1611), - [anon_sym_DOLLARendforeach] = ACTIONS(1611), - [anon_sym_DOLLARalignof] = ACTIONS(1611), - [anon_sym_DOLLARextnameof] = ACTIONS(1611), - [anon_sym_DOLLARnameof] = ACTIONS(1611), - [anon_sym_DOLLARoffsetof] = ACTIONS(1611), - [anon_sym_DOLLARqnameof] = ACTIONS(1611), - [anon_sym_DOLLAReval] = ACTIONS(1611), - [anon_sym_DOLLARdefined] = ACTIONS(1611), - [anon_sym_DOLLARsizeof] = ACTIONS(1611), - [anon_sym_DOLLARstringify] = ACTIONS(1611), - [anon_sym_DOLLARis_const] = ACTIONS(1611), - [anon_sym_DOLLARvaconst] = ACTIONS(1611), - [anon_sym_DOLLARvaarg] = ACTIONS(1611), - [anon_sym_DOLLARvaref] = ACTIONS(1611), - [anon_sym_DOLLARvaexpr] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1611), - [anon_sym_false] = ACTIONS(1611), - [anon_sym_null] = ACTIONS(1611), - [anon_sym_DOLLARvacount] = ACTIONS(1611), - [anon_sym_DOLLARfeature] = ACTIONS(1611), - [anon_sym_DOLLARand] = ACTIONS(1611), - [anon_sym_DOLLARor] = ACTIONS(1611), - [anon_sym_DOLLARassignable] = ACTIONS(1611), - [anon_sym_DOLLARembed] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1613), - [anon_sym_TILDE] = ACTIONS(1613), - [anon_sym_PLUS_PLUS] = ACTIONS(1613), - [anon_sym_DASH_DASH] = ACTIONS(1613), - [anon_sym_typeid] = ACTIONS(1611), - [anon_sym_LBRACE_PIPE] = ACTIONS(1613), - [anon_sym_void] = ACTIONS(1611), - [anon_sym_bool] = ACTIONS(1611), - [anon_sym_char] = ACTIONS(1611), - [anon_sym_ichar] = ACTIONS(1611), - [anon_sym_short] = ACTIONS(1611), - [anon_sym_ushort] = ACTIONS(1611), - [anon_sym_uint] = ACTIONS(1611), - [anon_sym_long] = ACTIONS(1611), - [anon_sym_ulong] = ACTIONS(1611), - [anon_sym_int128] = ACTIONS(1611), - [anon_sym_uint128] = ACTIONS(1611), - [anon_sym_float] = ACTIONS(1611), - [anon_sym_double] = ACTIONS(1611), - [anon_sym_float16] = ACTIONS(1611), - [anon_sym_bfloat16] = ACTIONS(1611), - [anon_sym_float128] = ACTIONS(1611), - [anon_sym_iptr] = ACTIONS(1611), - [anon_sym_uptr] = ACTIONS(1611), - [anon_sym_isz] = ACTIONS(1611), - [anon_sym_usz] = ACTIONS(1611), - [anon_sym_anyfault] = ACTIONS(1611), - [anon_sym_any] = ACTIONS(1611), - [anon_sym_DOLLARtypeof] = ACTIONS(1611), - [anon_sym_DOLLARtypefrom] = ACTIONS(1611), - [anon_sym_DOLLARvatype] = ACTIONS(1611), - [anon_sym_DOLLARevaltype] = ACTIONS(1611), - [sym_real_literal] = ACTIONS(1613), + [696] = { + [sym_line_comment] = STATE(696), + [sym_doc_comment] = STATE(696), + [sym_block_comment] = STATE(696), + [sym_ident] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [sym_bytes_literal] = ACTIONS(1479), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1477), + [sym_at_ident] = ACTIONS(1479), + [sym_hash_ident] = ACTIONS(1479), + [sym_type_ident] = ACTIONS(1479), + [sym_ct_type_ident] = ACTIONS(1479), + [sym_const_ident] = ACTIONS(1477), + [sym_builtin] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_tlocal] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_var] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_defer] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1477), + [anon_sym_nextcase] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_foreach] = ACTIONS(1477), + [anon_sym_foreach_r] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_do] = ACTIONS(1477), + [anon_sym_int] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym_DOLLARassert] = ACTIONS(1477), + [anon_sym_DOLLARerror] = ACTIONS(1477), + [anon_sym_DOLLARecho] = ACTIONS(1477), + [anon_sym_DOLLARif] = ACTIONS(1477), + [anon_sym_DOLLARswitch] = ACTIONS(1477), + [anon_sym_DOLLARfor] = ACTIONS(1477), + [anon_sym_DOLLARforeach] = ACTIONS(1477), + [anon_sym_DOLLARendforeach] = ACTIONS(1477), + [anon_sym_DOLLARalignof] = ACTIONS(1477), + [anon_sym_DOLLARextnameof] = ACTIONS(1477), + [anon_sym_DOLLARnameof] = ACTIONS(1477), + [anon_sym_DOLLARoffsetof] = ACTIONS(1477), + [anon_sym_DOLLARqnameof] = ACTIONS(1477), + [anon_sym_DOLLARvaconst] = ACTIONS(1477), + [anon_sym_DOLLARvaarg] = ACTIONS(1477), + [anon_sym_DOLLARvaref] = ACTIONS(1477), + [anon_sym_DOLLARvaexpr] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_DOLLARvacount] = ACTIONS(1477), + [anon_sym_DOLLAReval] = ACTIONS(1477), + [anon_sym_DOLLARis_const] = ACTIONS(1477), + [anon_sym_DOLLARsizeof] = ACTIONS(1477), + [anon_sym_DOLLARstringify] = ACTIONS(1477), + [anon_sym_DOLLARappend] = ACTIONS(1477), + [anon_sym_DOLLARconcat] = ACTIONS(1477), + [anon_sym_DOLLARdefined] = ACTIONS(1477), + [anon_sym_DOLLARembed] = ACTIONS(1477), + [anon_sym_DOLLARand] = ACTIONS(1477), + [anon_sym_DOLLARor] = ACTIONS(1477), + [anon_sym_DOLLARfeature] = ACTIONS(1477), + [anon_sym_DOLLARassignable] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_PLUS_PLUS] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_typeid] = ACTIONS(1477), + [anon_sym_LBRACE_PIPE] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_ichar] = ACTIONS(1477), + [anon_sym_short] = ACTIONS(1477), + [anon_sym_ushort] = ACTIONS(1477), + [anon_sym_uint] = ACTIONS(1477), + [anon_sym_long] = ACTIONS(1477), + [anon_sym_ulong] = ACTIONS(1477), + [anon_sym_int128] = ACTIONS(1477), + [anon_sym_uint128] = ACTIONS(1477), + [anon_sym_float] = ACTIONS(1477), + [anon_sym_double] = ACTIONS(1477), + [anon_sym_float16] = ACTIONS(1477), + [anon_sym_bfloat16] = ACTIONS(1477), + [anon_sym_float128] = ACTIONS(1477), + [anon_sym_iptr] = ACTIONS(1477), + [anon_sym_uptr] = ACTIONS(1477), + [anon_sym_isz] = ACTIONS(1477), + [anon_sym_usz] = ACTIONS(1477), + [anon_sym_anyfault] = ACTIONS(1477), + [anon_sym_any] = ACTIONS(1477), + [anon_sym_DOLLARtypeof] = ACTIONS(1477), + [anon_sym_DOLLARtypefrom] = ACTIONS(1477), + [anon_sym_DOLLARevaltype] = ACTIONS(1477), + [anon_sym_DOLLARvatype] = ACTIONS(1477), + [sym_real_literal] = ACTIONS(1479), }, - [737] = { - [sym_line_comment] = STATE(737), - [sym_doc_comment] = STATE(737), - [sym_block_comment] = STATE(737), - [sym_ident] = ACTIONS(1603), - [sym_integer_literal] = ACTIONS(1605), - [anon_sym_SQUOTE] = ACTIONS(1605), - [anon_sym_DQUOTE] = ACTIONS(1605), - [anon_sym_BQUOTE] = ACTIONS(1605), - [sym_bytes_literal] = ACTIONS(1605), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1603), - [sym_at_ident] = ACTIONS(1605), - [sym_hash_ident] = ACTIONS(1605), - [sym_type_ident] = ACTIONS(1605), - [sym_ct_type_ident] = ACTIONS(1605), - [sym_const_ident] = ACTIONS(1603), - [sym_builtin] = ACTIONS(1605), - [anon_sym_LPAREN] = ACTIONS(1605), - [anon_sym_AMP] = ACTIONS(1603), - [anon_sym_static] = ACTIONS(1603), - [anon_sym_tlocal] = ACTIONS(1603), - [anon_sym_SEMI] = ACTIONS(1605), - [anon_sym_fn] = ACTIONS(1603), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_const] = ACTIONS(1603), - [anon_sym_var] = ACTIONS(1603), - [anon_sym_return] = ACTIONS(1603), - [anon_sym_continue] = ACTIONS(1603), - [anon_sym_break] = ACTIONS(1603), - [anon_sym_defer] = ACTIONS(1603), - [anon_sym_assert] = ACTIONS(1603), - [anon_sym_nextcase] = ACTIONS(1603), - [anon_sym_switch] = ACTIONS(1603), - [anon_sym_AMP_AMP] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1603), - [anon_sym_for] = ACTIONS(1603), - [anon_sym_foreach] = ACTIONS(1603), - [anon_sym_foreach_r] = ACTIONS(1603), - [anon_sym_while] = ACTIONS(1603), - [anon_sym_do] = ACTIONS(1603), - [anon_sym_int] = ACTIONS(1603), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1605), - [anon_sym_asm] = ACTIONS(1603), - [anon_sym_DOLLARassert] = ACTIONS(1603), - [anon_sym_DOLLARerror] = ACTIONS(1603), - [anon_sym_DOLLARecho] = ACTIONS(1603), - [anon_sym_DOLLARif] = ACTIONS(1603), - [anon_sym_DOLLARswitch] = ACTIONS(1603), - [anon_sym_DOLLARfor] = ACTIONS(1603), - [anon_sym_DOLLARforeach] = ACTIONS(1603), - [anon_sym_DOLLARendforeach] = ACTIONS(1603), - [anon_sym_DOLLARalignof] = ACTIONS(1603), - [anon_sym_DOLLARextnameof] = ACTIONS(1603), - [anon_sym_DOLLARnameof] = ACTIONS(1603), - [anon_sym_DOLLARoffsetof] = ACTIONS(1603), - [anon_sym_DOLLARqnameof] = ACTIONS(1603), - [anon_sym_DOLLAReval] = ACTIONS(1603), - [anon_sym_DOLLARdefined] = ACTIONS(1603), - [anon_sym_DOLLARsizeof] = ACTIONS(1603), - [anon_sym_DOLLARstringify] = ACTIONS(1603), - [anon_sym_DOLLARis_const] = ACTIONS(1603), - [anon_sym_DOLLARvaconst] = ACTIONS(1603), - [anon_sym_DOLLARvaarg] = ACTIONS(1603), - [anon_sym_DOLLARvaref] = ACTIONS(1603), - [anon_sym_DOLLARvaexpr] = ACTIONS(1603), - [anon_sym_true] = ACTIONS(1603), - [anon_sym_false] = ACTIONS(1603), - [anon_sym_null] = ACTIONS(1603), - [anon_sym_DOLLARvacount] = ACTIONS(1603), - [anon_sym_DOLLARfeature] = ACTIONS(1603), - [anon_sym_DOLLARand] = ACTIONS(1603), - [anon_sym_DOLLARor] = ACTIONS(1603), - [anon_sym_DOLLARassignable] = ACTIONS(1603), - [anon_sym_DOLLARembed] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_TILDE] = ACTIONS(1605), - [anon_sym_PLUS_PLUS] = ACTIONS(1605), - [anon_sym_DASH_DASH] = ACTIONS(1605), - [anon_sym_typeid] = ACTIONS(1603), - [anon_sym_LBRACE_PIPE] = ACTIONS(1605), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_ichar] = ACTIONS(1603), - [anon_sym_short] = ACTIONS(1603), - [anon_sym_ushort] = ACTIONS(1603), - [anon_sym_uint] = ACTIONS(1603), - [anon_sym_long] = ACTIONS(1603), - [anon_sym_ulong] = ACTIONS(1603), - [anon_sym_int128] = ACTIONS(1603), - [anon_sym_uint128] = ACTIONS(1603), - [anon_sym_float] = ACTIONS(1603), - [anon_sym_double] = ACTIONS(1603), - [anon_sym_float16] = ACTIONS(1603), - [anon_sym_bfloat16] = ACTIONS(1603), - [anon_sym_float128] = ACTIONS(1603), - [anon_sym_iptr] = ACTIONS(1603), - [anon_sym_uptr] = ACTIONS(1603), - [anon_sym_isz] = ACTIONS(1603), - [anon_sym_usz] = ACTIONS(1603), - [anon_sym_anyfault] = ACTIONS(1603), - [anon_sym_any] = ACTIONS(1603), - [anon_sym_DOLLARtypeof] = ACTIONS(1603), - [anon_sym_DOLLARtypefrom] = ACTIONS(1603), - [anon_sym_DOLLARvatype] = ACTIONS(1603), - [anon_sym_DOLLARevaltype] = ACTIONS(1603), - [sym_real_literal] = ACTIONS(1605), + [697] = { + [sym_line_comment] = STATE(697), + [sym_doc_comment] = STATE(697), + [sym_block_comment] = STATE(697), + [sym_ident] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_BQUOTE] = ACTIONS(1483), + [sym_bytes_literal] = ACTIONS(1483), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1481), + [sym_at_ident] = ACTIONS(1483), + [sym_hash_ident] = ACTIONS(1483), + [sym_type_ident] = ACTIONS(1483), + [sym_ct_type_ident] = ACTIONS(1483), + [sym_const_ident] = ACTIONS(1481), + [sym_builtin] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_tlocal] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_defer] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1481), + [anon_sym_nextcase] = ACTIONS(1481), + [anon_sym_switch] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_foreach] = ACTIONS(1481), + [anon_sym_foreach_r] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_int] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_asm] = ACTIONS(1481), + [anon_sym_DOLLARassert] = ACTIONS(1481), + [anon_sym_DOLLARerror] = ACTIONS(1481), + [anon_sym_DOLLARecho] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1481), + [anon_sym_DOLLARswitch] = ACTIONS(1481), + [anon_sym_DOLLARfor] = ACTIONS(1481), + [anon_sym_DOLLARforeach] = ACTIONS(1481), + [anon_sym_DOLLARendforeach] = ACTIONS(1481), + [anon_sym_DOLLARalignof] = ACTIONS(1481), + [anon_sym_DOLLARextnameof] = ACTIONS(1481), + [anon_sym_DOLLARnameof] = ACTIONS(1481), + [anon_sym_DOLLARoffsetof] = ACTIONS(1481), + [anon_sym_DOLLARqnameof] = ACTIONS(1481), + [anon_sym_DOLLARvaconst] = ACTIONS(1481), + [anon_sym_DOLLARvaarg] = ACTIONS(1481), + [anon_sym_DOLLARvaref] = ACTIONS(1481), + [anon_sym_DOLLARvaexpr] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_DOLLARvacount] = ACTIONS(1481), + [anon_sym_DOLLAReval] = ACTIONS(1481), + [anon_sym_DOLLARis_const] = ACTIONS(1481), + [anon_sym_DOLLARsizeof] = ACTIONS(1481), + [anon_sym_DOLLARstringify] = ACTIONS(1481), + [anon_sym_DOLLARappend] = ACTIONS(1481), + [anon_sym_DOLLARconcat] = ACTIONS(1481), + [anon_sym_DOLLARdefined] = ACTIONS(1481), + [anon_sym_DOLLARembed] = ACTIONS(1481), + [anon_sym_DOLLARand] = ACTIONS(1481), + [anon_sym_DOLLARor] = ACTIONS(1481), + [anon_sym_DOLLARfeature] = ACTIONS(1481), + [anon_sym_DOLLARassignable] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_typeid] = ACTIONS(1481), + [anon_sym_LBRACE_PIPE] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_ichar] = ACTIONS(1481), + [anon_sym_short] = ACTIONS(1481), + [anon_sym_ushort] = ACTIONS(1481), + [anon_sym_uint] = ACTIONS(1481), + [anon_sym_long] = ACTIONS(1481), + [anon_sym_ulong] = ACTIONS(1481), + [anon_sym_int128] = ACTIONS(1481), + [anon_sym_uint128] = ACTIONS(1481), + [anon_sym_float] = ACTIONS(1481), + [anon_sym_double] = ACTIONS(1481), + [anon_sym_float16] = ACTIONS(1481), + [anon_sym_bfloat16] = ACTIONS(1481), + [anon_sym_float128] = ACTIONS(1481), + [anon_sym_iptr] = ACTIONS(1481), + [anon_sym_uptr] = ACTIONS(1481), + [anon_sym_isz] = ACTIONS(1481), + [anon_sym_usz] = ACTIONS(1481), + [anon_sym_anyfault] = ACTIONS(1481), + [anon_sym_any] = ACTIONS(1481), + [anon_sym_DOLLARtypeof] = ACTIONS(1481), + [anon_sym_DOLLARtypefrom] = ACTIONS(1481), + [anon_sym_DOLLARevaltype] = ACTIONS(1481), + [anon_sym_DOLLARvatype] = ACTIONS(1481), + [sym_real_literal] = ACTIONS(1483), }, - [738] = { - [sym_line_comment] = STATE(738), - [sym_doc_comment] = STATE(738), - [sym_block_comment] = STATE(738), - [sym_ident] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(1443), - [anon_sym_SQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [anon_sym_BQUOTE] = ACTIONS(1443), - [sym_bytes_literal] = ACTIONS(1443), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1441), - [sym_at_ident] = ACTIONS(1443), - [sym_hash_ident] = ACTIONS(1443), - [sym_type_ident] = ACTIONS(1443), - [sym_ct_type_ident] = ACTIONS(1443), - [sym_const_ident] = ACTIONS(1441), - [sym_builtin] = ACTIONS(1443), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_AMP] = ACTIONS(1441), - [anon_sym_static] = ACTIONS(1441), - [anon_sym_tlocal] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1443), - [anon_sym_fn] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_const] = ACTIONS(1441), - [anon_sym_var] = ACTIONS(1441), - [anon_sym_return] = ACTIONS(1441), - [anon_sym_continue] = ACTIONS(1441), - [anon_sym_break] = ACTIONS(1441), - [anon_sym_defer] = ACTIONS(1441), - [anon_sym_assert] = ACTIONS(1441), - [anon_sym_nextcase] = ACTIONS(1441), - [anon_sym_switch] = ACTIONS(1441), - [anon_sym_AMP_AMP] = ACTIONS(1443), - [anon_sym_if] = ACTIONS(1441), - [anon_sym_for] = ACTIONS(1441), - [anon_sym_foreach] = ACTIONS(1441), - [anon_sym_foreach_r] = ACTIONS(1441), - [anon_sym_while] = ACTIONS(1441), - [anon_sym_do] = ACTIONS(1441), - [anon_sym_int] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_asm] = ACTIONS(1441), - [anon_sym_DOLLARassert] = ACTIONS(1441), - [anon_sym_DOLLARerror] = ACTIONS(1441), - [anon_sym_DOLLARecho] = ACTIONS(1441), - [anon_sym_DOLLARif] = ACTIONS(1441), - [anon_sym_DOLLARswitch] = ACTIONS(1441), - [anon_sym_DOLLARfor] = ACTIONS(1441), - [anon_sym_DOLLARendfor] = ACTIONS(1441), - [anon_sym_DOLLARforeach] = ACTIONS(1441), - [anon_sym_DOLLARalignof] = ACTIONS(1441), - [anon_sym_DOLLARextnameof] = ACTIONS(1441), - [anon_sym_DOLLARnameof] = ACTIONS(1441), - [anon_sym_DOLLARoffsetof] = ACTIONS(1441), - [anon_sym_DOLLARqnameof] = ACTIONS(1441), - [anon_sym_DOLLAReval] = ACTIONS(1441), - [anon_sym_DOLLARdefined] = ACTIONS(1441), - [anon_sym_DOLLARsizeof] = ACTIONS(1441), - [anon_sym_DOLLARstringify] = ACTIONS(1441), - [anon_sym_DOLLARis_const] = ACTIONS(1441), - [anon_sym_DOLLARvaconst] = ACTIONS(1441), - [anon_sym_DOLLARvaarg] = ACTIONS(1441), - [anon_sym_DOLLARvaref] = ACTIONS(1441), - [anon_sym_DOLLARvaexpr] = ACTIONS(1441), - [anon_sym_true] = ACTIONS(1441), - [anon_sym_false] = ACTIONS(1441), - [anon_sym_null] = ACTIONS(1441), - [anon_sym_DOLLARvacount] = ACTIONS(1441), - [anon_sym_DOLLARfeature] = ACTIONS(1441), - [anon_sym_DOLLARand] = ACTIONS(1441), - [anon_sym_DOLLARor] = ACTIONS(1441), - [anon_sym_DOLLARassignable] = ACTIONS(1441), - [anon_sym_DOLLARembed] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1443), - [anon_sym_TILDE] = ACTIONS(1443), - [anon_sym_PLUS_PLUS] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1443), - [anon_sym_typeid] = ACTIONS(1441), - [anon_sym_LBRACE_PIPE] = ACTIONS(1443), - [anon_sym_void] = ACTIONS(1441), - [anon_sym_bool] = ACTIONS(1441), - [anon_sym_char] = ACTIONS(1441), - [anon_sym_ichar] = ACTIONS(1441), - [anon_sym_short] = ACTIONS(1441), - [anon_sym_ushort] = ACTIONS(1441), - [anon_sym_uint] = ACTIONS(1441), - [anon_sym_long] = ACTIONS(1441), - [anon_sym_ulong] = ACTIONS(1441), - [anon_sym_int128] = ACTIONS(1441), - [anon_sym_uint128] = ACTIONS(1441), - [anon_sym_float] = ACTIONS(1441), - [anon_sym_double] = ACTIONS(1441), - [anon_sym_float16] = ACTIONS(1441), - [anon_sym_bfloat16] = ACTIONS(1441), - [anon_sym_float128] = ACTIONS(1441), - [anon_sym_iptr] = ACTIONS(1441), - [anon_sym_uptr] = ACTIONS(1441), - [anon_sym_isz] = ACTIONS(1441), - [anon_sym_usz] = ACTIONS(1441), - [anon_sym_anyfault] = ACTIONS(1441), - [anon_sym_any] = ACTIONS(1441), - [anon_sym_DOLLARtypeof] = ACTIONS(1441), - [anon_sym_DOLLARtypefrom] = ACTIONS(1441), - [anon_sym_DOLLARvatype] = ACTIONS(1441), - [anon_sym_DOLLARevaltype] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1443), + [698] = { + [sym_line_comment] = STATE(698), + [sym_doc_comment] = STATE(698), + [sym_block_comment] = STATE(698), + [sym_ident] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_BQUOTE] = ACTIONS(1487), + [sym_bytes_literal] = ACTIONS(1487), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1485), + [sym_at_ident] = ACTIONS(1487), + [sym_hash_ident] = ACTIONS(1487), + [sym_type_ident] = ACTIONS(1487), + [sym_ct_type_ident] = ACTIONS(1487), + [sym_const_ident] = ACTIONS(1485), + [sym_builtin] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_tlocal] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_var] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_defer] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1485), + [anon_sym_nextcase] = ACTIONS(1485), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_foreach] = ACTIONS(1485), + [anon_sym_foreach_r] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_int] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_asm] = ACTIONS(1485), + [anon_sym_DOLLARassert] = ACTIONS(1485), + [anon_sym_DOLLARerror] = ACTIONS(1485), + [anon_sym_DOLLARecho] = ACTIONS(1485), + [anon_sym_DOLLARif] = ACTIONS(1485), + [anon_sym_DOLLARswitch] = ACTIONS(1485), + [anon_sym_DOLLARfor] = ACTIONS(1485), + [anon_sym_DOLLARforeach] = ACTIONS(1485), + [anon_sym_DOLLARendforeach] = ACTIONS(1485), + [anon_sym_DOLLARalignof] = ACTIONS(1485), + [anon_sym_DOLLARextnameof] = ACTIONS(1485), + [anon_sym_DOLLARnameof] = ACTIONS(1485), + [anon_sym_DOLLARoffsetof] = ACTIONS(1485), + [anon_sym_DOLLARqnameof] = ACTIONS(1485), + [anon_sym_DOLLARvaconst] = ACTIONS(1485), + [anon_sym_DOLLARvaarg] = ACTIONS(1485), + [anon_sym_DOLLARvaref] = ACTIONS(1485), + [anon_sym_DOLLARvaexpr] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_DOLLARvacount] = ACTIONS(1485), + [anon_sym_DOLLAReval] = ACTIONS(1485), + [anon_sym_DOLLARis_const] = ACTIONS(1485), + [anon_sym_DOLLARsizeof] = ACTIONS(1485), + [anon_sym_DOLLARstringify] = ACTIONS(1485), + [anon_sym_DOLLARappend] = ACTIONS(1485), + [anon_sym_DOLLARconcat] = ACTIONS(1485), + [anon_sym_DOLLARdefined] = ACTIONS(1485), + [anon_sym_DOLLARembed] = ACTIONS(1485), + [anon_sym_DOLLARand] = ACTIONS(1485), + [anon_sym_DOLLARor] = ACTIONS(1485), + [anon_sym_DOLLARfeature] = ACTIONS(1485), + [anon_sym_DOLLARassignable] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_typeid] = ACTIONS(1485), + [anon_sym_LBRACE_PIPE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_ichar] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_ushort] = ACTIONS(1485), + [anon_sym_uint] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_ulong] = ACTIONS(1485), + [anon_sym_int128] = ACTIONS(1485), + [anon_sym_uint128] = ACTIONS(1485), + [anon_sym_float] = ACTIONS(1485), + [anon_sym_double] = ACTIONS(1485), + [anon_sym_float16] = ACTIONS(1485), + [anon_sym_bfloat16] = ACTIONS(1485), + [anon_sym_float128] = ACTIONS(1485), + [anon_sym_iptr] = ACTIONS(1485), + [anon_sym_uptr] = ACTIONS(1485), + [anon_sym_isz] = ACTIONS(1485), + [anon_sym_usz] = ACTIONS(1485), + [anon_sym_anyfault] = ACTIONS(1485), + [anon_sym_any] = ACTIONS(1485), + [anon_sym_DOLLARtypeof] = ACTIONS(1485), + [anon_sym_DOLLARtypefrom] = ACTIONS(1485), + [anon_sym_DOLLARevaltype] = ACTIONS(1485), + [anon_sym_DOLLARvatype] = ACTIONS(1485), + [sym_real_literal] = ACTIONS(1487), }, - [739] = { - [sym_line_comment] = STATE(739), - [sym_doc_comment] = STATE(739), - [sym_block_comment] = STATE(739), - [sym_ident] = ACTIONS(1599), - [sym_integer_literal] = ACTIONS(1601), - [anon_sym_SQUOTE] = ACTIONS(1601), - [anon_sym_DQUOTE] = ACTIONS(1601), - [anon_sym_BQUOTE] = ACTIONS(1601), - [sym_bytes_literal] = ACTIONS(1601), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1599), - [sym_at_ident] = ACTIONS(1601), - [sym_hash_ident] = ACTIONS(1601), - [sym_type_ident] = ACTIONS(1601), - [sym_ct_type_ident] = ACTIONS(1601), - [sym_const_ident] = ACTIONS(1599), - [sym_builtin] = ACTIONS(1601), - [anon_sym_LPAREN] = ACTIONS(1601), - [anon_sym_AMP] = ACTIONS(1599), - [anon_sym_static] = ACTIONS(1599), - [anon_sym_tlocal] = ACTIONS(1599), - [anon_sym_SEMI] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_const] = ACTIONS(1599), - [anon_sym_var] = ACTIONS(1599), - [anon_sym_return] = ACTIONS(1599), - [anon_sym_continue] = ACTIONS(1599), - [anon_sym_break] = ACTIONS(1599), - [anon_sym_defer] = ACTIONS(1599), - [anon_sym_assert] = ACTIONS(1599), - [anon_sym_nextcase] = ACTIONS(1599), - [anon_sym_switch] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1599), - [anon_sym_foreach] = ACTIONS(1599), - [anon_sym_foreach_r] = ACTIONS(1599), - [anon_sym_while] = ACTIONS(1599), - [anon_sym_do] = ACTIONS(1599), - [anon_sym_int] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(1599), - [anon_sym_DASH] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1601), - [anon_sym_asm] = ACTIONS(1599), - [anon_sym_DOLLARassert] = ACTIONS(1599), - [anon_sym_DOLLARerror] = ACTIONS(1599), - [anon_sym_DOLLARecho] = ACTIONS(1599), - [anon_sym_DOLLARif] = ACTIONS(1599), - [anon_sym_DOLLARswitch] = ACTIONS(1599), - [anon_sym_DOLLARfor] = ACTIONS(1599), - [anon_sym_DOLLARforeach] = ACTIONS(1599), - [anon_sym_DOLLARendforeach] = ACTIONS(1599), - [anon_sym_DOLLARalignof] = ACTIONS(1599), - [anon_sym_DOLLARextnameof] = ACTIONS(1599), - [anon_sym_DOLLARnameof] = ACTIONS(1599), - [anon_sym_DOLLARoffsetof] = ACTIONS(1599), - [anon_sym_DOLLARqnameof] = ACTIONS(1599), - [anon_sym_DOLLAReval] = ACTIONS(1599), - [anon_sym_DOLLARdefined] = ACTIONS(1599), - [anon_sym_DOLLARsizeof] = ACTIONS(1599), - [anon_sym_DOLLARstringify] = ACTIONS(1599), - [anon_sym_DOLLARis_const] = ACTIONS(1599), - [anon_sym_DOLLARvaconst] = ACTIONS(1599), - [anon_sym_DOLLARvaarg] = ACTIONS(1599), - [anon_sym_DOLLARvaref] = ACTIONS(1599), - [anon_sym_DOLLARvaexpr] = ACTIONS(1599), - [anon_sym_true] = ACTIONS(1599), - [anon_sym_false] = ACTIONS(1599), - [anon_sym_null] = ACTIONS(1599), - [anon_sym_DOLLARvacount] = ACTIONS(1599), - [anon_sym_DOLLARfeature] = ACTIONS(1599), - [anon_sym_DOLLARand] = ACTIONS(1599), - [anon_sym_DOLLARor] = ACTIONS(1599), - [anon_sym_DOLLARassignable] = ACTIONS(1599), - [anon_sym_DOLLARembed] = ACTIONS(1599), - [anon_sym_BANG] = ACTIONS(1601), - [anon_sym_TILDE] = ACTIONS(1601), - [anon_sym_PLUS_PLUS] = ACTIONS(1601), - [anon_sym_DASH_DASH] = ACTIONS(1601), - [anon_sym_typeid] = ACTIONS(1599), - [anon_sym_LBRACE_PIPE] = ACTIONS(1601), - [anon_sym_void] = ACTIONS(1599), - [anon_sym_bool] = ACTIONS(1599), - [anon_sym_char] = ACTIONS(1599), - [anon_sym_ichar] = ACTIONS(1599), - [anon_sym_short] = ACTIONS(1599), - [anon_sym_ushort] = ACTIONS(1599), - [anon_sym_uint] = ACTIONS(1599), - [anon_sym_long] = ACTIONS(1599), - [anon_sym_ulong] = ACTIONS(1599), - [anon_sym_int128] = ACTIONS(1599), - [anon_sym_uint128] = ACTIONS(1599), - [anon_sym_float] = ACTIONS(1599), - [anon_sym_double] = ACTIONS(1599), - [anon_sym_float16] = ACTIONS(1599), - [anon_sym_bfloat16] = ACTIONS(1599), - [anon_sym_float128] = ACTIONS(1599), - [anon_sym_iptr] = ACTIONS(1599), - [anon_sym_uptr] = ACTIONS(1599), - [anon_sym_isz] = ACTIONS(1599), - [anon_sym_usz] = ACTIONS(1599), - [anon_sym_anyfault] = ACTIONS(1599), - [anon_sym_any] = ACTIONS(1599), - [anon_sym_DOLLARtypeof] = ACTIONS(1599), - [anon_sym_DOLLARtypefrom] = ACTIONS(1599), - [anon_sym_DOLLARvatype] = ACTIONS(1599), - [anon_sym_DOLLARevaltype] = ACTIONS(1599), - [sym_real_literal] = ACTIONS(1601), + [699] = { + [sym_line_comment] = STATE(699), + [sym_doc_comment] = STATE(699), + [sym_block_comment] = STATE(699), + [sym_ident] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_BQUOTE] = ACTIONS(1491), + [sym_bytes_literal] = ACTIONS(1491), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1489), + [sym_at_ident] = ACTIONS(1491), + [sym_hash_ident] = ACTIONS(1491), + [sym_type_ident] = ACTIONS(1491), + [sym_ct_type_ident] = ACTIONS(1491), + [sym_const_ident] = ACTIONS(1489), + [sym_builtin] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_tlocal] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_var] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_defer] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1489), + [anon_sym_nextcase] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_foreach] = ACTIONS(1489), + [anon_sym_foreach_r] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_int] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_asm] = ACTIONS(1489), + [anon_sym_DOLLARassert] = ACTIONS(1489), + [anon_sym_DOLLARerror] = ACTIONS(1489), + [anon_sym_DOLLARecho] = ACTIONS(1489), + [anon_sym_DOLLARif] = ACTIONS(1489), + [anon_sym_DOLLARswitch] = ACTIONS(1489), + [anon_sym_DOLLARfor] = ACTIONS(1489), + [anon_sym_DOLLARforeach] = ACTIONS(1489), + [anon_sym_DOLLARendforeach] = ACTIONS(1489), + [anon_sym_DOLLARalignof] = ACTIONS(1489), + [anon_sym_DOLLARextnameof] = ACTIONS(1489), + [anon_sym_DOLLARnameof] = ACTIONS(1489), + [anon_sym_DOLLARoffsetof] = ACTIONS(1489), + [anon_sym_DOLLARqnameof] = ACTIONS(1489), + [anon_sym_DOLLARvaconst] = ACTIONS(1489), + [anon_sym_DOLLARvaarg] = ACTIONS(1489), + [anon_sym_DOLLARvaref] = ACTIONS(1489), + [anon_sym_DOLLARvaexpr] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_DOLLARvacount] = ACTIONS(1489), + [anon_sym_DOLLAReval] = ACTIONS(1489), + [anon_sym_DOLLARis_const] = ACTIONS(1489), + [anon_sym_DOLLARsizeof] = ACTIONS(1489), + [anon_sym_DOLLARstringify] = ACTIONS(1489), + [anon_sym_DOLLARappend] = ACTIONS(1489), + [anon_sym_DOLLARconcat] = ACTIONS(1489), + [anon_sym_DOLLARdefined] = ACTIONS(1489), + [anon_sym_DOLLARembed] = ACTIONS(1489), + [anon_sym_DOLLARand] = ACTIONS(1489), + [anon_sym_DOLLARor] = ACTIONS(1489), + [anon_sym_DOLLARfeature] = ACTIONS(1489), + [anon_sym_DOLLARassignable] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_typeid] = ACTIONS(1489), + [anon_sym_LBRACE_PIPE] = ACTIONS(1491), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_ichar] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_ushort] = ACTIONS(1489), + [anon_sym_uint] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_ulong] = ACTIONS(1489), + [anon_sym_int128] = ACTIONS(1489), + [anon_sym_uint128] = ACTIONS(1489), + [anon_sym_float] = ACTIONS(1489), + [anon_sym_double] = ACTIONS(1489), + [anon_sym_float16] = ACTIONS(1489), + [anon_sym_bfloat16] = ACTIONS(1489), + [anon_sym_float128] = ACTIONS(1489), + [anon_sym_iptr] = ACTIONS(1489), + [anon_sym_uptr] = ACTIONS(1489), + [anon_sym_isz] = ACTIONS(1489), + [anon_sym_usz] = ACTIONS(1489), + [anon_sym_anyfault] = ACTIONS(1489), + [anon_sym_any] = ACTIONS(1489), + [anon_sym_DOLLARtypeof] = ACTIONS(1489), + [anon_sym_DOLLARtypefrom] = ACTIONS(1489), + [anon_sym_DOLLARevaltype] = ACTIONS(1489), + [anon_sym_DOLLARvatype] = ACTIONS(1489), + [sym_real_literal] = ACTIONS(1491), }, - [740] = { - [sym_line_comment] = STATE(740), - [sym_doc_comment] = STATE(740), - [sym_block_comment] = STATE(740), - [sym_ident] = ACTIONS(1437), - [sym_integer_literal] = ACTIONS(1439), - [anon_sym_SQUOTE] = ACTIONS(1439), - [anon_sym_DQUOTE] = ACTIONS(1439), - [anon_sym_BQUOTE] = ACTIONS(1439), - [sym_bytes_literal] = ACTIONS(1439), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1437), - [sym_at_ident] = ACTIONS(1439), - [sym_hash_ident] = ACTIONS(1439), - [sym_type_ident] = ACTIONS(1439), - [sym_ct_type_ident] = ACTIONS(1439), - [sym_const_ident] = ACTIONS(1437), - [sym_builtin] = ACTIONS(1439), - [anon_sym_LPAREN] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1437), - [anon_sym_static] = ACTIONS(1437), - [anon_sym_tlocal] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1439), - [anon_sym_fn] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1437), - [anon_sym_const] = ACTIONS(1437), - [anon_sym_var] = ACTIONS(1437), - [anon_sym_return] = ACTIONS(1437), - [anon_sym_continue] = ACTIONS(1437), - [anon_sym_break] = ACTIONS(1437), - [anon_sym_defer] = ACTIONS(1437), - [anon_sym_assert] = ACTIONS(1437), - [anon_sym_nextcase] = ACTIONS(1437), - [anon_sym_switch] = ACTIONS(1437), - [anon_sym_AMP_AMP] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1437), - [anon_sym_for] = ACTIONS(1437), - [anon_sym_foreach] = ACTIONS(1437), - [anon_sym_foreach_r] = ACTIONS(1437), - [anon_sym_while] = ACTIONS(1437), - [anon_sym_do] = ACTIONS(1437), - [anon_sym_int] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1437), - [anon_sym_DASH] = ACTIONS(1437), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_asm] = ACTIONS(1437), - [anon_sym_DOLLARassert] = ACTIONS(1437), - [anon_sym_DOLLARerror] = ACTIONS(1437), - [anon_sym_DOLLARecho] = ACTIONS(1437), - [anon_sym_DOLLARif] = ACTIONS(1437), - [anon_sym_DOLLARswitch] = ACTIONS(1437), - [anon_sym_DOLLARfor] = ACTIONS(1437), - [anon_sym_DOLLARendfor] = ACTIONS(1437), - [anon_sym_DOLLARforeach] = ACTIONS(1437), - [anon_sym_DOLLARalignof] = ACTIONS(1437), - [anon_sym_DOLLARextnameof] = ACTIONS(1437), - [anon_sym_DOLLARnameof] = ACTIONS(1437), - [anon_sym_DOLLARoffsetof] = ACTIONS(1437), - [anon_sym_DOLLARqnameof] = ACTIONS(1437), - [anon_sym_DOLLAReval] = ACTIONS(1437), - [anon_sym_DOLLARdefined] = ACTIONS(1437), - [anon_sym_DOLLARsizeof] = ACTIONS(1437), - [anon_sym_DOLLARstringify] = ACTIONS(1437), - [anon_sym_DOLLARis_const] = ACTIONS(1437), - [anon_sym_DOLLARvaconst] = ACTIONS(1437), - [anon_sym_DOLLARvaarg] = ACTIONS(1437), - [anon_sym_DOLLARvaref] = ACTIONS(1437), - [anon_sym_DOLLARvaexpr] = ACTIONS(1437), - [anon_sym_true] = ACTIONS(1437), - [anon_sym_false] = ACTIONS(1437), - [anon_sym_null] = ACTIONS(1437), - [anon_sym_DOLLARvacount] = ACTIONS(1437), - [anon_sym_DOLLARfeature] = ACTIONS(1437), - [anon_sym_DOLLARand] = ACTIONS(1437), - [anon_sym_DOLLARor] = ACTIONS(1437), - [anon_sym_DOLLARassignable] = ACTIONS(1437), - [anon_sym_DOLLARembed] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_TILDE] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1439), - [anon_sym_DASH_DASH] = ACTIONS(1439), - [anon_sym_typeid] = ACTIONS(1437), - [anon_sym_LBRACE_PIPE] = ACTIONS(1439), - [anon_sym_void] = ACTIONS(1437), - [anon_sym_bool] = ACTIONS(1437), - [anon_sym_char] = ACTIONS(1437), - [anon_sym_ichar] = ACTIONS(1437), - [anon_sym_short] = ACTIONS(1437), - [anon_sym_ushort] = ACTIONS(1437), - [anon_sym_uint] = ACTIONS(1437), - [anon_sym_long] = ACTIONS(1437), - [anon_sym_ulong] = ACTIONS(1437), - [anon_sym_int128] = ACTIONS(1437), - [anon_sym_uint128] = ACTIONS(1437), - [anon_sym_float] = ACTIONS(1437), - [anon_sym_double] = ACTIONS(1437), - [anon_sym_float16] = ACTIONS(1437), - [anon_sym_bfloat16] = ACTIONS(1437), - [anon_sym_float128] = ACTIONS(1437), - [anon_sym_iptr] = ACTIONS(1437), - [anon_sym_uptr] = ACTIONS(1437), - [anon_sym_isz] = ACTIONS(1437), - [anon_sym_usz] = ACTIONS(1437), - [anon_sym_anyfault] = ACTIONS(1437), - [anon_sym_any] = ACTIONS(1437), - [anon_sym_DOLLARtypeof] = ACTIONS(1437), - [anon_sym_DOLLARtypefrom] = ACTIONS(1437), - [anon_sym_DOLLARvatype] = ACTIONS(1437), - [anon_sym_DOLLARevaltype] = ACTIONS(1437), - [sym_real_literal] = ACTIONS(1439), + [700] = { + [sym_line_comment] = STATE(700), + [sym_doc_comment] = STATE(700), + [sym_block_comment] = STATE(700), + [sym_ident] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_BQUOTE] = ACTIONS(1495), + [sym_bytes_literal] = ACTIONS(1495), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1493), + [sym_at_ident] = ACTIONS(1495), + [sym_hash_ident] = ACTIONS(1495), + [sym_type_ident] = ACTIONS(1495), + [sym_ct_type_ident] = ACTIONS(1495), + [sym_const_ident] = ACTIONS(1493), + [sym_builtin] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_tlocal] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_var] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_defer] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_nextcase] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_foreach] = ACTIONS(1493), + [anon_sym_foreach_r] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_asm] = ACTIONS(1493), + [anon_sym_DOLLARassert] = ACTIONS(1493), + [anon_sym_DOLLARerror] = ACTIONS(1493), + [anon_sym_DOLLARecho] = ACTIONS(1493), + [anon_sym_DOLLARif] = ACTIONS(1493), + [anon_sym_DOLLARswitch] = ACTIONS(1493), + [anon_sym_DOLLARfor] = ACTIONS(1493), + [anon_sym_DOLLARforeach] = ACTIONS(1493), + [anon_sym_DOLLARendforeach] = ACTIONS(1493), + [anon_sym_DOLLARalignof] = ACTIONS(1493), + [anon_sym_DOLLARextnameof] = ACTIONS(1493), + [anon_sym_DOLLARnameof] = ACTIONS(1493), + [anon_sym_DOLLARoffsetof] = ACTIONS(1493), + [anon_sym_DOLLARqnameof] = ACTIONS(1493), + [anon_sym_DOLLARvaconst] = ACTIONS(1493), + [anon_sym_DOLLARvaarg] = ACTIONS(1493), + [anon_sym_DOLLARvaref] = ACTIONS(1493), + [anon_sym_DOLLARvaexpr] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_DOLLARvacount] = ACTIONS(1493), + [anon_sym_DOLLAReval] = ACTIONS(1493), + [anon_sym_DOLLARis_const] = ACTIONS(1493), + [anon_sym_DOLLARsizeof] = ACTIONS(1493), + [anon_sym_DOLLARstringify] = ACTIONS(1493), + [anon_sym_DOLLARappend] = ACTIONS(1493), + [anon_sym_DOLLARconcat] = ACTIONS(1493), + [anon_sym_DOLLARdefined] = ACTIONS(1493), + [anon_sym_DOLLARembed] = ACTIONS(1493), + [anon_sym_DOLLARand] = ACTIONS(1493), + [anon_sym_DOLLARor] = ACTIONS(1493), + [anon_sym_DOLLARfeature] = ACTIONS(1493), + [anon_sym_DOLLARassignable] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_typeid] = ACTIONS(1493), + [anon_sym_LBRACE_PIPE] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_ichar] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_ushort] = ACTIONS(1493), + [anon_sym_uint] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_ulong] = ACTIONS(1493), + [anon_sym_int128] = ACTIONS(1493), + [anon_sym_uint128] = ACTIONS(1493), + [anon_sym_float] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_float16] = ACTIONS(1493), + [anon_sym_bfloat16] = ACTIONS(1493), + [anon_sym_float128] = ACTIONS(1493), + [anon_sym_iptr] = ACTIONS(1493), + [anon_sym_uptr] = ACTIONS(1493), + [anon_sym_isz] = ACTIONS(1493), + [anon_sym_usz] = ACTIONS(1493), + [anon_sym_anyfault] = ACTIONS(1493), + [anon_sym_any] = ACTIONS(1493), + [anon_sym_DOLLARtypeof] = ACTIONS(1493), + [anon_sym_DOLLARtypefrom] = ACTIONS(1493), + [anon_sym_DOLLARevaltype] = ACTIONS(1493), + [anon_sym_DOLLARvatype] = ACTIONS(1493), + [sym_real_literal] = ACTIONS(1495), + }, + [701] = { + [sym_line_comment] = STATE(701), + [sym_doc_comment] = STATE(701), + [sym_block_comment] = STATE(701), + [sym_ident] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1499), + [sym_bytes_literal] = ACTIONS(1499), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1497), + [sym_at_ident] = ACTIONS(1499), + [sym_hash_ident] = ACTIONS(1499), + [sym_type_ident] = ACTIONS(1499), + [sym_ct_type_ident] = ACTIONS(1499), + [sym_const_ident] = ACTIONS(1497), + [sym_builtin] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_tlocal] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_var] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_defer] = ACTIONS(1497), + [anon_sym_assert] = ACTIONS(1497), + [anon_sym_nextcase] = ACTIONS(1497), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_foreach] = ACTIONS(1497), + [anon_sym_foreach_r] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_int] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_asm] = ACTIONS(1497), + [anon_sym_DOLLARassert] = ACTIONS(1497), + [anon_sym_DOLLARerror] = ACTIONS(1497), + [anon_sym_DOLLARecho] = ACTIONS(1497), + [anon_sym_DOLLARif] = ACTIONS(1497), + [anon_sym_DOLLARswitch] = ACTIONS(1497), + [anon_sym_DOLLARfor] = ACTIONS(1497), + [anon_sym_DOLLARforeach] = ACTIONS(1497), + [anon_sym_DOLLARendforeach] = ACTIONS(1497), + [anon_sym_DOLLARalignof] = ACTIONS(1497), + [anon_sym_DOLLARextnameof] = ACTIONS(1497), + [anon_sym_DOLLARnameof] = ACTIONS(1497), + [anon_sym_DOLLARoffsetof] = ACTIONS(1497), + [anon_sym_DOLLARqnameof] = ACTIONS(1497), + [anon_sym_DOLLARvaconst] = ACTIONS(1497), + [anon_sym_DOLLARvaarg] = ACTIONS(1497), + [anon_sym_DOLLARvaref] = ACTIONS(1497), + [anon_sym_DOLLARvaexpr] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_DOLLARvacount] = ACTIONS(1497), + [anon_sym_DOLLAReval] = ACTIONS(1497), + [anon_sym_DOLLARis_const] = ACTIONS(1497), + [anon_sym_DOLLARsizeof] = ACTIONS(1497), + [anon_sym_DOLLARstringify] = ACTIONS(1497), + [anon_sym_DOLLARappend] = ACTIONS(1497), + [anon_sym_DOLLARconcat] = ACTIONS(1497), + [anon_sym_DOLLARdefined] = ACTIONS(1497), + [anon_sym_DOLLARembed] = ACTIONS(1497), + [anon_sym_DOLLARand] = ACTIONS(1497), + [anon_sym_DOLLARor] = ACTIONS(1497), + [anon_sym_DOLLARfeature] = ACTIONS(1497), + [anon_sym_DOLLARassignable] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_typeid] = ACTIONS(1497), + [anon_sym_LBRACE_PIPE] = ACTIONS(1499), + [anon_sym_void] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_ichar] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [anon_sym_ushort] = ACTIONS(1497), + [anon_sym_uint] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_ulong] = ACTIONS(1497), + [anon_sym_int128] = ACTIONS(1497), + [anon_sym_uint128] = ACTIONS(1497), + [anon_sym_float] = ACTIONS(1497), + [anon_sym_double] = ACTIONS(1497), + [anon_sym_float16] = ACTIONS(1497), + [anon_sym_bfloat16] = ACTIONS(1497), + [anon_sym_float128] = ACTIONS(1497), + [anon_sym_iptr] = ACTIONS(1497), + [anon_sym_uptr] = ACTIONS(1497), + [anon_sym_isz] = ACTIONS(1497), + [anon_sym_usz] = ACTIONS(1497), + [anon_sym_anyfault] = ACTIONS(1497), + [anon_sym_any] = ACTIONS(1497), + [anon_sym_DOLLARtypeof] = ACTIONS(1497), + [anon_sym_DOLLARtypefrom] = ACTIONS(1497), + [anon_sym_DOLLARevaltype] = ACTIONS(1497), + [anon_sym_DOLLARvatype] = ACTIONS(1497), + [sym_real_literal] = ACTIONS(1499), + }, + [702] = { + [sym_line_comment] = STATE(702), + [sym_doc_comment] = STATE(702), + [sym_block_comment] = STATE(702), + [sym_ident] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1503), + [anon_sym_BQUOTE] = ACTIONS(1503), + [sym_bytes_literal] = ACTIONS(1503), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1501), + [sym_at_ident] = ACTIONS(1503), + [sym_hash_ident] = ACTIONS(1503), + [sym_type_ident] = ACTIONS(1503), + [sym_ct_type_ident] = ACTIONS(1503), + [sym_const_ident] = ACTIONS(1501), + [sym_builtin] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_tlocal] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_var] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_defer] = ACTIONS(1501), + [anon_sym_assert] = ACTIONS(1501), + [anon_sym_nextcase] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_foreach] = ACTIONS(1501), + [anon_sym_foreach_r] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_int] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym_DOLLARassert] = ACTIONS(1501), + [anon_sym_DOLLARerror] = ACTIONS(1501), + [anon_sym_DOLLARecho] = ACTIONS(1501), + [anon_sym_DOLLARif] = ACTIONS(1501), + [anon_sym_DOLLARswitch] = ACTIONS(1501), + [anon_sym_DOLLARfor] = ACTIONS(1501), + [anon_sym_DOLLARforeach] = ACTIONS(1501), + [anon_sym_DOLLARendforeach] = ACTIONS(1501), + [anon_sym_DOLLARalignof] = ACTIONS(1501), + [anon_sym_DOLLARextnameof] = ACTIONS(1501), + [anon_sym_DOLLARnameof] = ACTIONS(1501), + [anon_sym_DOLLARoffsetof] = ACTIONS(1501), + [anon_sym_DOLLARqnameof] = ACTIONS(1501), + [anon_sym_DOLLARvaconst] = ACTIONS(1501), + [anon_sym_DOLLARvaarg] = ACTIONS(1501), + [anon_sym_DOLLARvaref] = ACTIONS(1501), + [anon_sym_DOLLARvaexpr] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_DOLLARvacount] = ACTIONS(1501), + [anon_sym_DOLLAReval] = ACTIONS(1501), + [anon_sym_DOLLARis_const] = ACTIONS(1501), + [anon_sym_DOLLARsizeof] = ACTIONS(1501), + [anon_sym_DOLLARstringify] = ACTIONS(1501), + [anon_sym_DOLLARappend] = ACTIONS(1501), + [anon_sym_DOLLARconcat] = ACTIONS(1501), + [anon_sym_DOLLARdefined] = ACTIONS(1501), + [anon_sym_DOLLARembed] = ACTIONS(1501), + [anon_sym_DOLLARand] = ACTIONS(1501), + [anon_sym_DOLLARor] = ACTIONS(1501), + [anon_sym_DOLLARfeature] = ACTIONS(1501), + [anon_sym_DOLLARassignable] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_typeid] = ACTIONS(1501), + [anon_sym_LBRACE_PIPE] = ACTIONS(1503), + [anon_sym_void] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_ichar] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_ushort] = ACTIONS(1501), + [anon_sym_uint] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_ulong] = ACTIONS(1501), + [anon_sym_int128] = ACTIONS(1501), + [anon_sym_uint128] = ACTIONS(1501), + [anon_sym_float] = ACTIONS(1501), + [anon_sym_double] = ACTIONS(1501), + [anon_sym_float16] = ACTIONS(1501), + [anon_sym_bfloat16] = ACTIONS(1501), + [anon_sym_float128] = ACTIONS(1501), + [anon_sym_iptr] = ACTIONS(1501), + [anon_sym_uptr] = ACTIONS(1501), + [anon_sym_isz] = ACTIONS(1501), + [anon_sym_usz] = ACTIONS(1501), + [anon_sym_anyfault] = ACTIONS(1501), + [anon_sym_any] = ACTIONS(1501), + [anon_sym_DOLLARtypeof] = ACTIONS(1501), + [anon_sym_DOLLARtypefrom] = ACTIONS(1501), + [anon_sym_DOLLARevaltype] = ACTIONS(1501), + [anon_sym_DOLLARvatype] = ACTIONS(1501), + [sym_real_literal] = ACTIONS(1503), + }, + [703] = { + [sym_line_comment] = STATE(703), + [sym_doc_comment] = STATE(703), + [sym_block_comment] = STATE(703), + [sym_ident] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_bytes_literal] = ACTIONS(1507), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1505), + [sym_at_ident] = ACTIONS(1507), + [sym_hash_ident] = ACTIONS(1507), + [sym_type_ident] = ACTIONS(1507), + [sym_ct_type_ident] = ACTIONS(1507), + [sym_const_ident] = ACTIONS(1505), + [sym_builtin] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_tlocal] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_defer] = ACTIONS(1505), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_nextcase] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(1505), + [anon_sym_foreach_r] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_int] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_asm] = ACTIONS(1505), + [anon_sym_DOLLARassert] = ACTIONS(1505), + [anon_sym_DOLLARerror] = ACTIONS(1505), + [anon_sym_DOLLARecho] = ACTIONS(1505), + [anon_sym_DOLLARif] = ACTIONS(1505), + [anon_sym_DOLLARswitch] = ACTIONS(1505), + [anon_sym_DOLLARfor] = ACTIONS(1505), + [anon_sym_DOLLARforeach] = ACTIONS(1505), + [anon_sym_DOLLARendforeach] = ACTIONS(1505), + [anon_sym_DOLLARalignof] = ACTIONS(1505), + [anon_sym_DOLLARextnameof] = ACTIONS(1505), + [anon_sym_DOLLARnameof] = ACTIONS(1505), + [anon_sym_DOLLARoffsetof] = ACTIONS(1505), + [anon_sym_DOLLARqnameof] = ACTIONS(1505), + [anon_sym_DOLLARvaconst] = ACTIONS(1505), + [anon_sym_DOLLARvaarg] = ACTIONS(1505), + [anon_sym_DOLLARvaref] = ACTIONS(1505), + [anon_sym_DOLLARvaexpr] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_DOLLARvacount] = ACTIONS(1505), + [anon_sym_DOLLAReval] = ACTIONS(1505), + [anon_sym_DOLLARis_const] = ACTIONS(1505), + [anon_sym_DOLLARsizeof] = ACTIONS(1505), + [anon_sym_DOLLARstringify] = ACTIONS(1505), + [anon_sym_DOLLARappend] = ACTIONS(1505), + [anon_sym_DOLLARconcat] = ACTIONS(1505), + [anon_sym_DOLLARdefined] = ACTIONS(1505), + [anon_sym_DOLLARembed] = ACTIONS(1505), + [anon_sym_DOLLARand] = ACTIONS(1505), + [anon_sym_DOLLARor] = ACTIONS(1505), + [anon_sym_DOLLARfeature] = ACTIONS(1505), + [anon_sym_DOLLARassignable] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_typeid] = ACTIONS(1505), + [anon_sym_LBRACE_PIPE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_ichar] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [anon_sym_ushort] = ACTIONS(1505), + [anon_sym_uint] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_ulong] = ACTIONS(1505), + [anon_sym_int128] = ACTIONS(1505), + [anon_sym_uint128] = ACTIONS(1505), + [anon_sym_float] = ACTIONS(1505), + [anon_sym_double] = ACTIONS(1505), + [anon_sym_float16] = ACTIONS(1505), + [anon_sym_bfloat16] = ACTIONS(1505), + [anon_sym_float128] = ACTIONS(1505), + [anon_sym_iptr] = ACTIONS(1505), + [anon_sym_uptr] = ACTIONS(1505), + [anon_sym_isz] = ACTIONS(1505), + [anon_sym_usz] = ACTIONS(1505), + [anon_sym_anyfault] = ACTIONS(1505), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_DOLLARtypeof] = ACTIONS(1505), + [anon_sym_DOLLARtypefrom] = ACTIONS(1505), + [anon_sym_DOLLARevaltype] = ACTIONS(1505), + [anon_sym_DOLLARvatype] = ACTIONS(1505), + [sym_real_literal] = ACTIONS(1507), + }, + [704] = { + [sym_line_comment] = STATE(704), + [sym_doc_comment] = STATE(704), + [sym_block_comment] = STATE(704), + [sym_ident] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_BQUOTE] = ACTIONS(1519), + [sym_bytes_literal] = ACTIONS(1519), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1517), + [sym_at_ident] = ACTIONS(1519), + [sym_hash_ident] = ACTIONS(1519), + [sym_type_ident] = ACTIONS(1519), + [sym_ct_type_ident] = ACTIONS(1519), + [sym_const_ident] = ACTIONS(1517), + [sym_builtin] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_tlocal] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_defer] = ACTIONS(1517), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_nextcase] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_foreach] = ACTIONS(1517), + [anon_sym_foreach_r] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_int] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_asm] = ACTIONS(1517), + [anon_sym_DOLLARassert] = ACTIONS(1517), + [anon_sym_DOLLARerror] = ACTIONS(1517), + [anon_sym_DOLLARecho] = ACTIONS(1517), + [anon_sym_DOLLARif] = ACTIONS(1517), + [anon_sym_DOLLARswitch] = ACTIONS(1517), + [anon_sym_DOLLARfor] = ACTIONS(1517), + [anon_sym_DOLLARforeach] = ACTIONS(1517), + [anon_sym_DOLLARendforeach] = ACTIONS(1517), + [anon_sym_DOLLARalignof] = ACTIONS(1517), + [anon_sym_DOLLARextnameof] = ACTIONS(1517), + [anon_sym_DOLLARnameof] = ACTIONS(1517), + [anon_sym_DOLLARoffsetof] = ACTIONS(1517), + [anon_sym_DOLLARqnameof] = ACTIONS(1517), + [anon_sym_DOLLARvaconst] = ACTIONS(1517), + [anon_sym_DOLLARvaarg] = ACTIONS(1517), + [anon_sym_DOLLARvaref] = ACTIONS(1517), + [anon_sym_DOLLARvaexpr] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_DOLLARvacount] = ACTIONS(1517), + [anon_sym_DOLLAReval] = ACTIONS(1517), + [anon_sym_DOLLARis_const] = ACTIONS(1517), + [anon_sym_DOLLARsizeof] = ACTIONS(1517), + [anon_sym_DOLLARstringify] = ACTIONS(1517), + [anon_sym_DOLLARappend] = ACTIONS(1517), + [anon_sym_DOLLARconcat] = ACTIONS(1517), + [anon_sym_DOLLARdefined] = ACTIONS(1517), + [anon_sym_DOLLARembed] = ACTIONS(1517), + [anon_sym_DOLLARand] = ACTIONS(1517), + [anon_sym_DOLLARor] = ACTIONS(1517), + [anon_sym_DOLLARfeature] = ACTIONS(1517), + [anon_sym_DOLLARassignable] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_typeid] = ACTIONS(1517), + [anon_sym_LBRACE_PIPE] = ACTIONS(1519), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_ichar] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [anon_sym_ushort] = ACTIONS(1517), + [anon_sym_uint] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_ulong] = ACTIONS(1517), + [anon_sym_int128] = ACTIONS(1517), + [anon_sym_uint128] = ACTIONS(1517), + [anon_sym_float] = ACTIONS(1517), + [anon_sym_double] = ACTIONS(1517), + [anon_sym_float16] = ACTIONS(1517), + [anon_sym_bfloat16] = ACTIONS(1517), + [anon_sym_float128] = ACTIONS(1517), + [anon_sym_iptr] = ACTIONS(1517), + [anon_sym_uptr] = ACTIONS(1517), + [anon_sym_isz] = ACTIONS(1517), + [anon_sym_usz] = ACTIONS(1517), + [anon_sym_anyfault] = ACTIONS(1517), + [anon_sym_any] = ACTIONS(1517), + [anon_sym_DOLLARtypeof] = ACTIONS(1517), + [anon_sym_DOLLARtypefrom] = ACTIONS(1517), + [anon_sym_DOLLARevaltype] = ACTIONS(1517), + [anon_sym_DOLLARvatype] = ACTIONS(1517), + [sym_real_literal] = ACTIONS(1519), + }, + [705] = { + [sym_line_comment] = STATE(705), + [sym_doc_comment] = STATE(705), + [sym_block_comment] = STATE(705), + [sym_ident] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_bytes_literal] = ACTIONS(1653), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1651), + [sym_at_ident] = ACTIONS(1653), + [sym_hash_ident] = ACTIONS(1653), + [sym_type_ident] = ACTIONS(1653), + [sym_ct_type_ident] = ACTIONS(1653), + [sym_const_ident] = ACTIONS(1651), + [sym_builtin] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_static] = ACTIONS(1651), + [anon_sym_tlocal] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [anon_sym_var] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_defer] = ACTIONS(1651), + [anon_sym_assert] = ACTIONS(1651), + [anon_sym_nextcase] = ACTIONS(1651), + [anon_sym_switch] = ACTIONS(1651), + [anon_sym_AMP_AMP] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_foreach] = ACTIONS(1651), + [anon_sym_foreach_r] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_int] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1653), + [anon_sym_asm] = ACTIONS(1651), + [anon_sym_DOLLARassert] = ACTIONS(1651), + [anon_sym_DOLLARerror] = ACTIONS(1651), + [anon_sym_DOLLARecho] = ACTIONS(1651), + [anon_sym_DOLLARif] = ACTIONS(1651), + [anon_sym_DOLLARswitch] = ACTIONS(1651), + [anon_sym_DOLLARfor] = ACTIONS(1651), + [anon_sym_DOLLARforeach] = ACTIONS(1651), + [anon_sym_DOLLARendforeach] = ACTIONS(1651), + [anon_sym_DOLLARalignof] = ACTIONS(1651), + [anon_sym_DOLLARextnameof] = ACTIONS(1651), + [anon_sym_DOLLARnameof] = ACTIONS(1651), + [anon_sym_DOLLARoffsetof] = ACTIONS(1651), + [anon_sym_DOLLARqnameof] = ACTIONS(1651), + [anon_sym_DOLLARvaconst] = ACTIONS(1651), + [anon_sym_DOLLARvaarg] = ACTIONS(1651), + [anon_sym_DOLLARvaref] = ACTIONS(1651), + [anon_sym_DOLLARvaexpr] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_DOLLARvacount] = ACTIONS(1651), + [anon_sym_DOLLAReval] = ACTIONS(1651), + [anon_sym_DOLLARis_const] = ACTIONS(1651), + [anon_sym_DOLLARsizeof] = ACTIONS(1651), + [anon_sym_DOLLARstringify] = ACTIONS(1651), + [anon_sym_DOLLARappend] = ACTIONS(1651), + [anon_sym_DOLLARconcat] = ACTIONS(1651), + [anon_sym_DOLLARdefined] = ACTIONS(1651), + [anon_sym_DOLLARembed] = ACTIONS(1651), + [anon_sym_DOLLARand] = ACTIONS(1651), + [anon_sym_DOLLARor] = ACTIONS(1651), + [anon_sym_DOLLARfeature] = ACTIONS(1651), + [anon_sym_DOLLARassignable] = ACTIONS(1651), + [anon_sym_BANG] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_typeid] = ACTIONS(1651), + [anon_sym_LBRACE_PIPE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1651), + [anon_sym_bool] = ACTIONS(1651), + [anon_sym_char] = ACTIONS(1651), + [anon_sym_ichar] = ACTIONS(1651), + [anon_sym_short] = ACTIONS(1651), + [anon_sym_ushort] = ACTIONS(1651), + [anon_sym_uint] = ACTIONS(1651), + [anon_sym_long] = ACTIONS(1651), + [anon_sym_ulong] = ACTIONS(1651), + [anon_sym_int128] = ACTIONS(1651), + [anon_sym_uint128] = ACTIONS(1651), + [anon_sym_float] = ACTIONS(1651), + [anon_sym_double] = ACTIONS(1651), + [anon_sym_float16] = ACTIONS(1651), + [anon_sym_bfloat16] = ACTIONS(1651), + [anon_sym_float128] = ACTIONS(1651), + [anon_sym_iptr] = ACTIONS(1651), + [anon_sym_uptr] = ACTIONS(1651), + [anon_sym_isz] = ACTIONS(1651), + [anon_sym_usz] = ACTIONS(1651), + [anon_sym_anyfault] = ACTIONS(1651), + [anon_sym_any] = ACTIONS(1651), + [anon_sym_DOLLARtypeof] = ACTIONS(1651), + [anon_sym_DOLLARtypefrom] = ACTIONS(1651), + [anon_sym_DOLLARevaltype] = ACTIONS(1651), + [anon_sym_DOLLARvatype] = ACTIONS(1651), + [sym_real_literal] = ACTIONS(1653), + }, + [706] = { + [sym_line_comment] = STATE(706), + [sym_doc_comment] = STATE(706), + [sym_block_comment] = STATE(706), + [sym_ident] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), + [anon_sym_BQUOTE] = ACTIONS(1527), + [sym_bytes_literal] = ACTIONS(1527), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1525), + [sym_at_ident] = ACTIONS(1527), + [sym_hash_ident] = ACTIONS(1527), + [sym_type_ident] = ACTIONS(1527), + [sym_ct_type_ident] = ACTIONS(1527), + [sym_const_ident] = ACTIONS(1525), + [sym_builtin] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_tlocal] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_fn] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_var] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_defer] = ACTIONS(1525), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_nextcase] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_foreach] = ACTIONS(1525), + [anon_sym_foreach_r] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_int] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym_DOLLARassert] = ACTIONS(1525), + [anon_sym_DOLLARerror] = ACTIONS(1525), + [anon_sym_DOLLARecho] = ACTIONS(1525), + [anon_sym_DOLLARif] = ACTIONS(1525), + [anon_sym_DOLLARswitch] = ACTIONS(1525), + [anon_sym_DOLLARfor] = ACTIONS(1525), + [anon_sym_DOLLARforeach] = ACTIONS(1525), + [anon_sym_DOLLARendforeach] = ACTIONS(1525), + [anon_sym_DOLLARalignof] = ACTIONS(1525), + [anon_sym_DOLLARextnameof] = ACTIONS(1525), + [anon_sym_DOLLARnameof] = ACTIONS(1525), + [anon_sym_DOLLARoffsetof] = ACTIONS(1525), + [anon_sym_DOLLARqnameof] = ACTIONS(1525), + [anon_sym_DOLLARvaconst] = ACTIONS(1525), + [anon_sym_DOLLARvaarg] = ACTIONS(1525), + [anon_sym_DOLLARvaref] = ACTIONS(1525), + [anon_sym_DOLLARvaexpr] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_DOLLARvacount] = ACTIONS(1525), + [anon_sym_DOLLAReval] = ACTIONS(1525), + [anon_sym_DOLLARis_const] = ACTIONS(1525), + [anon_sym_DOLLARsizeof] = ACTIONS(1525), + [anon_sym_DOLLARstringify] = ACTIONS(1525), + [anon_sym_DOLLARappend] = ACTIONS(1525), + [anon_sym_DOLLARconcat] = ACTIONS(1525), + [anon_sym_DOLLARdefined] = ACTIONS(1525), + [anon_sym_DOLLARembed] = ACTIONS(1525), + [anon_sym_DOLLARand] = ACTIONS(1525), + [anon_sym_DOLLARor] = ACTIONS(1525), + [anon_sym_DOLLARfeature] = ACTIONS(1525), + [anon_sym_DOLLARassignable] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_typeid] = ACTIONS(1525), + [anon_sym_LBRACE_PIPE] = ACTIONS(1527), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_bool] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_ichar] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [anon_sym_ushort] = ACTIONS(1525), + [anon_sym_uint] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_ulong] = ACTIONS(1525), + [anon_sym_int128] = ACTIONS(1525), + [anon_sym_uint128] = ACTIONS(1525), + [anon_sym_float] = ACTIONS(1525), + [anon_sym_double] = ACTIONS(1525), + [anon_sym_float16] = ACTIONS(1525), + [anon_sym_bfloat16] = ACTIONS(1525), + [anon_sym_float128] = ACTIONS(1525), + [anon_sym_iptr] = ACTIONS(1525), + [anon_sym_uptr] = ACTIONS(1525), + [anon_sym_isz] = ACTIONS(1525), + [anon_sym_usz] = ACTIONS(1525), + [anon_sym_anyfault] = ACTIONS(1525), + [anon_sym_any] = ACTIONS(1525), + [anon_sym_DOLLARtypeof] = ACTIONS(1525), + [anon_sym_DOLLARtypefrom] = ACTIONS(1525), + [anon_sym_DOLLARevaltype] = ACTIONS(1525), + [anon_sym_DOLLARvatype] = ACTIONS(1525), + [sym_real_literal] = ACTIONS(1527), + }, + [707] = { + [sym_line_comment] = STATE(707), + [sym_doc_comment] = STATE(707), + [sym_block_comment] = STATE(707), + [sym_ident] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_BQUOTE] = ACTIONS(1543), + [sym_bytes_literal] = ACTIONS(1543), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1541), + [sym_at_ident] = ACTIONS(1543), + [sym_hash_ident] = ACTIONS(1543), + [sym_type_ident] = ACTIONS(1543), + [sym_ct_type_ident] = ACTIONS(1543), + [sym_const_ident] = ACTIONS(1541), + [sym_builtin] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_tlocal] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_defer] = ACTIONS(1541), + [anon_sym_assert] = ACTIONS(1541), + [anon_sym_nextcase] = ACTIONS(1541), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_foreach] = ACTIONS(1541), + [anon_sym_foreach_r] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_int] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym_DOLLARassert] = ACTIONS(1541), + [anon_sym_DOLLARerror] = ACTIONS(1541), + [anon_sym_DOLLARecho] = ACTIONS(1541), + [anon_sym_DOLLARif] = ACTIONS(1541), + [anon_sym_DOLLARswitch] = ACTIONS(1541), + [anon_sym_DOLLARfor] = ACTIONS(1541), + [anon_sym_DOLLARforeach] = ACTIONS(1541), + [anon_sym_DOLLARendforeach] = ACTIONS(1541), + [anon_sym_DOLLARalignof] = ACTIONS(1541), + [anon_sym_DOLLARextnameof] = ACTIONS(1541), + [anon_sym_DOLLARnameof] = ACTIONS(1541), + [anon_sym_DOLLARoffsetof] = ACTIONS(1541), + [anon_sym_DOLLARqnameof] = ACTIONS(1541), + [anon_sym_DOLLARvaconst] = ACTIONS(1541), + [anon_sym_DOLLARvaarg] = ACTIONS(1541), + [anon_sym_DOLLARvaref] = ACTIONS(1541), + [anon_sym_DOLLARvaexpr] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_null] = ACTIONS(1541), + [anon_sym_DOLLARvacount] = ACTIONS(1541), + [anon_sym_DOLLAReval] = ACTIONS(1541), + [anon_sym_DOLLARis_const] = ACTIONS(1541), + [anon_sym_DOLLARsizeof] = ACTIONS(1541), + [anon_sym_DOLLARstringify] = ACTIONS(1541), + [anon_sym_DOLLARappend] = ACTIONS(1541), + [anon_sym_DOLLARconcat] = ACTIONS(1541), + [anon_sym_DOLLARdefined] = ACTIONS(1541), + [anon_sym_DOLLARembed] = ACTIONS(1541), + [anon_sym_DOLLARand] = ACTIONS(1541), + [anon_sym_DOLLARor] = ACTIONS(1541), + [anon_sym_DOLLARfeature] = ACTIONS(1541), + [anon_sym_DOLLARassignable] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_typeid] = ACTIONS(1541), + [anon_sym_LBRACE_PIPE] = ACTIONS(1543), + [anon_sym_void] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_ichar] = ACTIONS(1541), + [anon_sym_short] = ACTIONS(1541), + [anon_sym_ushort] = ACTIONS(1541), + [anon_sym_uint] = ACTIONS(1541), + [anon_sym_long] = ACTIONS(1541), + [anon_sym_ulong] = ACTIONS(1541), + [anon_sym_int128] = ACTIONS(1541), + [anon_sym_uint128] = ACTIONS(1541), + [anon_sym_float] = ACTIONS(1541), + [anon_sym_double] = ACTIONS(1541), + [anon_sym_float16] = ACTIONS(1541), + [anon_sym_bfloat16] = ACTIONS(1541), + [anon_sym_float128] = ACTIONS(1541), + [anon_sym_iptr] = ACTIONS(1541), + [anon_sym_uptr] = ACTIONS(1541), + [anon_sym_isz] = ACTIONS(1541), + [anon_sym_usz] = ACTIONS(1541), + [anon_sym_anyfault] = ACTIONS(1541), + [anon_sym_any] = ACTIONS(1541), + [anon_sym_DOLLARtypeof] = ACTIONS(1541), + [anon_sym_DOLLARtypefrom] = ACTIONS(1541), + [anon_sym_DOLLARevaltype] = ACTIONS(1541), + [anon_sym_DOLLARvatype] = ACTIONS(1541), + [sym_real_literal] = ACTIONS(1543), + }, + [708] = { + [sym_line_comment] = STATE(708), + [sym_doc_comment] = STATE(708), + [sym_block_comment] = STATE(708), + [sym_ident] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_bytes_literal] = ACTIONS(1547), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1545), + [sym_at_ident] = ACTIONS(1547), + [sym_hash_ident] = ACTIONS(1547), + [sym_type_ident] = ACTIONS(1547), + [sym_ct_type_ident] = ACTIONS(1547), + [sym_const_ident] = ACTIONS(1545), + [sym_builtin] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_tlocal] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_fn] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_defer] = ACTIONS(1545), + [anon_sym_assert] = ACTIONS(1545), + [anon_sym_nextcase] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_foreach] = ACTIONS(1545), + [anon_sym_foreach_r] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_int] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_asm] = ACTIONS(1545), + [anon_sym_DOLLARassert] = ACTIONS(1545), + [anon_sym_DOLLARerror] = ACTIONS(1545), + [anon_sym_DOLLARecho] = ACTIONS(1545), + [anon_sym_DOLLARif] = ACTIONS(1545), + [anon_sym_DOLLARswitch] = ACTIONS(1545), + [anon_sym_DOLLARfor] = ACTIONS(1545), + [anon_sym_DOLLARforeach] = ACTIONS(1545), + [anon_sym_DOLLARendforeach] = ACTIONS(1545), + [anon_sym_DOLLARalignof] = ACTIONS(1545), + [anon_sym_DOLLARextnameof] = ACTIONS(1545), + [anon_sym_DOLLARnameof] = ACTIONS(1545), + [anon_sym_DOLLARoffsetof] = ACTIONS(1545), + [anon_sym_DOLLARqnameof] = ACTIONS(1545), + [anon_sym_DOLLARvaconst] = ACTIONS(1545), + [anon_sym_DOLLARvaarg] = ACTIONS(1545), + [anon_sym_DOLLARvaref] = ACTIONS(1545), + [anon_sym_DOLLARvaexpr] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_DOLLARvacount] = ACTIONS(1545), + [anon_sym_DOLLAReval] = ACTIONS(1545), + [anon_sym_DOLLARis_const] = ACTIONS(1545), + [anon_sym_DOLLARsizeof] = ACTIONS(1545), + [anon_sym_DOLLARstringify] = ACTIONS(1545), + [anon_sym_DOLLARappend] = ACTIONS(1545), + [anon_sym_DOLLARconcat] = ACTIONS(1545), + [anon_sym_DOLLARdefined] = ACTIONS(1545), + [anon_sym_DOLLARembed] = ACTIONS(1545), + [anon_sym_DOLLARand] = ACTIONS(1545), + [anon_sym_DOLLARor] = ACTIONS(1545), + [anon_sym_DOLLARfeature] = ACTIONS(1545), + [anon_sym_DOLLARassignable] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1547), + [anon_sym_typeid] = ACTIONS(1545), + [anon_sym_LBRACE_PIPE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_ichar] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [anon_sym_ushort] = ACTIONS(1545), + [anon_sym_uint] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_ulong] = ACTIONS(1545), + [anon_sym_int128] = ACTIONS(1545), + [anon_sym_uint128] = ACTIONS(1545), + [anon_sym_float] = ACTIONS(1545), + [anon_sym_double] = ACTIONS(1545), + [anon_sym_float16] = ACTIONS(1545), + [anon_sym_bfloat16] = ACTIONS(1545), + [anon_sym_float128] = ACTIONS(1545), + [anon_sym_iptr] = ACTIONS(1545), + [anon_sym_uptr] = ACTIONS(1545), + [anon_sym_isz] = ACTIONS(1545), + [anon_sym_usz] = ACTIONS(1545), + [anon_sym_anyfault] = ACTIONS(1545), + [anon_sym_any] = ACTIONS(1545), + [anon_sym_DOLLARtypeof] = ACTIONS(1545), + [anon_sym_DOLLARtypefrom] = ACTIONS(1545), + [anon_sym_DOLLARevaltype] = ACTIONS(1545), + [anon_sym_DOLLARvatype] = ACTIONS(1545), + [sym_real_literal] = ACTIONS(1547), + }, + [709] = { + [sym_line_comment] = STATE(709), + [sym_doc_comment] = STATE(709), + [sym_block_comment] = STATE(709), + [sym_ident] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [anon_sym_BQUOTE] = ACTIONS(1551), + [sym_bytes_literal] = ACTIONS(1551), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1549), + [sym_at_ident] = ACTIONS(1551), + [sym_hash_ident] = ACTIONS(1551), + [sym_type_ident] = ACTIONS(1551), + [sym_ct_type_ident] = ACTIONS(1551), + [sym_const_ident] = ACTIONS(1549), + [sym_builtin] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_tlocal] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_defer] = ACTIONS(1549), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_nextcase] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_foreach] = ACTIONS(1549), + [anon_sym_foreach_r] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_int] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_asm] = ACTIONS(1549), + [anon_sym_DOLLARassert] = ACTIONS(1549), + [anon_sym_DOLLARerror] = ACTIONS(1549), + [anon_sym_DOLLARecho] = ACTIONS(1549), + [anon_sym_DOLLARif] = ACTIONS(1549), + [anon_sym_DOLLARswitch] = ACTIONS(1549), + [anon_sym_DOLLARfor] = ACTIONS(1549), + [anon_sym_DOLLARforeach] = ACTIONS(1549), + [anon_sym_DOLLARendforeach] = ACTIONS(1549), + [anon_sym_DOLLARalignof] = ACTIONS(1549), + [anon_sym_DOLLARextnameof] = ACTIONS(1549), + [anon_sym_DOLLARnameof] = ACTIONS(1549), + [anon_sym_DOLLARoffsetof] = ACTIONS(1549), + [anon_sym_DOLLARqnameof] = ACTIONS(1549), + [anon_sym_DOLLARvaconst] = ACTIONS(1549), + [anon_sym_DOLLARvaarg] = ACTIONS(1549), + [anon_sym_DOLLARvaref] = ACTIONS(1549), + [anon_sym_DOLLARvaexpr] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_null] = ACTIONS(1549), + [anon_sym_DOLLARvacount] = ACTIONS(1549), + [anon_sym_DOLLAReval] = ACTIONS(1549), + [anon_sym_DOLLARis_const] = ACTIONS(1549), + [anon_sym_DOLLARsizeof] = ACTIONS(1549), + [anon_sym_DOLLARstringify] = ACTIONS(1549), + [anon_sym_DOLLARappend] = ACTIONS(1549), + [anon_sym_DOLLARconcat] = ACTIONS(1549), + [anon_sym_DOLLARdefined] = ACTIONS(1549), + [anon_sym_DOLLARembed] = ACTIONS(1549), + [anon_sym_DOLLARand] = ACTIONS(1549), + [anon_sym_DOLLARor] = ACTIONS(1549), + [anon_sym_DOLLARfeature] = ACTIONS(1549), + [anon_sym_DOLLARassignable] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_typeid] = ACTIONS(1549), + [anon_sym_LBRACE_PIPE] = ACTIONS(1551), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_ichar] = ACTIONS(1549), + [anon_sym_short] = ACTIONS(1549), + [anon_sym_ushort] = ACTIONS(1549), + [anon_sym_uint] = ACTIONS(1549), + [anon_sym_long] = ACTIONS(1549), + [anon_sym_ulong] = ACTIONS(1549), + [anon_sym_int128] = ACTIONS(1549), + [anon_sym_uint128] = ACTIONS(1549), + [anon_sym_float] = ACTIONS(1549), + [anon_sym_double] = ACTIONS(1549), + [anon_sym_float16] = ACTIONS(1549), + [anon_sym_bfloat16] = ACTIONS(1549), + [anon_sym_float128] = ACTIONS(1549), + [anon_sym_iptr] = ACTIONS(1549), + [anon_sym_uptr] = ACTIONS(1549), + [anon_sym_isz] = ACTIONS(1549), + [anon_sym_usz] = ACTIONS(1549), + [anon_sym_anyfault] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_DOLLARtypeof] = ACTIONS(1549), + [anon_sym_DOLLARtypefrom] = ACTIONS(1549), + [anon_sym_DOLLARevaltype] = ACTIONS(1549), + [anon_sym_DOLLARvatype] = ACTIONS(1549), + [sym_real_literal] = ACTIONS(1551), + }, + [710] = { + [sym_line_comment] = STATE(710), + [sym_doc_comment] = STATE(710), + [sym_block_comment] = STATE(710), + [sym_ident] = ACTIONS(1557), + [sym_integer_literal] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [sym_bytes_literal] = ACTIONS(1559), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1557), + [sym_at_ident] = ACTIONS(1559), + [sym_hash_ident] = ACTIONS(1559), + [sym_type_ident] = ACTIONS(1559), + [sym_ct_type_ident] = ACTIONS(1559), + [sym_const_ident] = ACTIONS(1557), + [sym_builtin] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_static] = ACTIONS(1557), + [anon_sym_tlocal] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_fn] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_defer] = ACTIONS(1557), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_nextcase] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_foreach] = ACTIONS(1557), + [anon_sym_foreach_r] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_int] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_asm] = ACTIONS(1557), + [anon_sym_DOLLARassert] = ACTIONS(1557), + [anon_sym_DOLLARerror] = ACTIONS(1557), + [anon_sym_DOLLARecho] = ACTIONS(1557), + [anon_sym_DOLLARif] = ACTIONS(1557), + [anon_sym_DOLLARswitch] = ACTIONS(1557), + [anon_sym_DOLLARfor] = ACTIONS(1557), + [anon_sym_DOLLARforeach] = ACTIONS(1557), + [anon_sym_DOLLARendforeach] = ACTIONS(1557), + [anon_sym_DOLLARalignof] = ACTIONS(1557), + [anon_sym_DOLLARextnameof] = ACTIONS(1557), + [anon_sym_DOLLARnameof] = ACTIONS(1557), + [anon_sym_DOLLARoffsetof] = ACTIONS(1557), + [anon_sym_DOLLARqnameof] = ACTIONS(1557), + [anon_sym_DOLLARvaconst] = ACTIONS(1557), + [anon_sym_DOLLARvaarg] = ACTIONS(1557), + [anon_sym_DOLLARvaref] = ACTIONS(1557), + [anon_sym_DOLLARvaexpr] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_DOLLARvacount] = ACTIONS(1557), + [anon_sym_DOLLAReval] = ACTIONS(1557), + [anon_sym_DOLLARis_const] = ACTIONS(1557), + [anon_sym_DOLLARsizeof] = ACTIONS(1557), + [anon_sym_DOLLARstringify] = ACTIONS(1557), + [anon_sym_DOLLARappend] = ACTIONS(1557), + [anon_sym_DOLLARconcat] = ACTIONS(1557), + [anon_sym_DOLLARdefined] = ACTIONS(1557), + [anon_sym_DOLLARembed] = ACTIONS(1557), + [anon_sym_DOLLARand] = ACTIONS(1557), + [anon_sym_DOLLARor] = ACTIONS(1557), + [anon_sym_DOLLARfeature] = ACTIONS(1557), + [anon_sym_DOLLARassignable] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_typeid] = ACTIONS(1557), + [anon_sym_LBRACE_PIPE] = ACTIONS(1559), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_bool] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_ichar] = ACTIONS(1557), + [anon_sym_short] = ACTIONS(1557), + [anon_sym_ushort] = ACTIONS(1557), + [anon_sym_uint] = ACTIONS(1557), + [anon_sym_long] = ACTIONS(1557), + [anon_sym_ulong] = ACTIONS(1557), + [anon_sym_int128] = ACTIONS(1557), + [anon_sym_uint128] = ACTIONS(1557), + [anon_sym_float] = ACTIONS(1557), + [anon_sym_double] = ACTIONS(1557), + [anon_sym_float16] = ACTIONS(1557), + [anon_sym_bfloat16] = ACTIONS(1557), + [anon_sym_float128] = ACTIONS(1557), + [anon_sym_iptr] = ACTIONS(1557), + [anon_sym_uptr] = ACTIONS(1557), + [anon_sym_isz] = ACTIONS(1557), + [anon_sym_usz] = ACTIONS(1557), + [anon_sym_anyfault] = ACTIONS(1557), + [anon_sym_any] = ACTIONS(1557), + [anon_sym_DOLLARtypeof] = ACTIONS(1557), + [anon_sym_DOLLARtypefrom] = ACTIONS(1557), + [anon_sym_DOLLARevaltype] = ACTIONS(1557), + [anon_sym_DOLLARvatype] = ACTIONS(1557), + [sym_real_literal] = ACTIONS(1559), + }, + [711] = { + [sym_line_comment] = STATE(711), + [sym_doc_comment] = STATE(711), + [sym_block_comment] = STATE(711), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARendforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), + }, + [712] = { + [sym_line_comment] = STATE(712), + [sym_doc_comment] = STATE(712), + [sym_block_comment] = STATE(712), + [sym_ident] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [anon_sym_BQUOTE] = ACTIONS(1567), + [sym_bytes_literal] = ACTIONS(1567), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1565), + [sym_at_ident] = ACTIONS(1567), + [sym_hash_ident] = ACTIONS(1567), + [sym_type_ident] = ACTIONS(1567), + [sym_ct_type_ident] = ACTIONS(1567), + [sym_const_ident] = ACTIONS(1565), + [sym_builtin] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_tlocal] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_fn] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_var] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_defer] = ACTIONS(1565), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_nextcase] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_foreach] = ACTIONS(1565), + [anon_sym_foreach_r] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_int] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_asm] = ACTIONS(1565), + [anon_sym_DOLLARassert] = ACTIONS(1565), + [anon_sym_DOLLARerror] = ACTIONS(1565), + [anon_sym_DOLLARecho] = ACTIONS(1565), + [anon_sym_DOLLARif] = ACTIONS(1565), + [anon_sym_DOLLARswitch] = ACTIONS(1565), + [anon_sym_DOLLARfor] = ACTIONS(1565), + [anon_sym_DOLLARforeach] = ACTIONS(1565), + [anon_sym_DOLLARendforeach] = ACTIONS(1565), + [anon_sym_DOLLARalignof] = ACTIONS(1565), + [anon_sym_DOLLARextnameof] = ACTIONS(1565), + [anon_sym_DOLLARnameof] = ACTIONS(1565), + [anon_sym_DOLLARoffsetof] = ACTIONS(1565), + [anon_sym_DOLLARqnameof] = ACTIONS(1565), + [anon_sym_DOLLARvaconst] = ACTIONS(1565), + [anon_sym_DOLLARvaarg] = ACTIONS(1565), + [anon_sym_DOLLARvaref] = ACTIONS(1565), + [anon_sym_DOLLARvaexpr] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_DOLLARvacount] = ACTIONS(1565), + [anon_sym_DOLLAReval] = ACTIONS(1565), + [anon_sym_DOLLARis_const] = ACTIONS(1565), + [anon_sym_DOLLARsizeof] = ACTIONS(1565), + [anon_sym_DOLLARstringify] = ACTIONS(1565), + [anon_sym_DOLLARappend] = ACTIONS(1565), + [anon_sym_DOLLARconcat] = ACTIONS(1565), + [anon_sym_DOLLARdefined] = ACTIONS(1565), + [anon_sym_DOLLARembed] = ACTIONS(1565), + [anon_sym_DOLLARand] = ACTIONS(1565), + [anon_sym_DOLLARor] = ACTIONS(1565), + [anon_sym_DOLLARfeature] = ACTIONS(1565), + [anon_sym_DOLLARassignable] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_typeid] = ACTIONS(1565), + [anon_sym_LBRACE_PIPE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_bool] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_ichar] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [anon_sym_ushort] = ACTIONS(1565), + [anon_sym_uint] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_ulong] = ACTIONS(1565), + [anon_sym_int128] = ACTIONS(1565), + [anon_sym_uint128] = ACTIONS(1565), + [anon_sym_float] = ACTIONS(1565), + [anon_sym_double] = ACTIONS(1565), + [anon_sym_float16] = ACTIONS(1565), + [anon_sym_bfloat16] = ACTIONS(1565), + [anon_sym_float128] = ACTIONS(1565), + [anon_sym_iptr] = ACTIONS(1565), + [anon_sym_uptr] = ACTIONS(1565), + [anon_sym_isz] = ACTIONS(1565), + [anon_sym_usz] = ACTIONS(1565), + [anon_sym_anyfault] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1565), + [anon_sym_DOLLARtypeof] = ACTIONS(1565), + [anon_sym_DOLLARtypefrom] = ACTIONS(1565), + [anon_sym_DOLLARevaltype] = ACTIONS(1565), + [anon_sym_DOLLARvatype] = ACTIONS(1565), + [sym_real_literal] = ACTIONS(1567), + }, + [713] = { + [sym_line_comment] = STATE(713), + [sym_doc_comment] = STATE(713), + [sym_block_comment] = STATE(713), + [sym_ident] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [anon_sym_BQUOTE] = ACTIONS(1571), + [sym_bytes_literal] = ACTIONS(1571), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1569), + [sym_at_ident] = ACTIONS(1571), + [sym_hash_ident] = ACTIONS(1571), + [sym_type_ident] = ACTIONS(1571), + [sym_ct_type_ident] = ACTIONS(1571), + [sym_const_ident] = ACTIONS(1569), + [sym_builtin] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_tlocal] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_var] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_defer] = ACTIONS(1569), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_nextcase] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_foreach] = ACTIONS(1569), + [anon_sym_foreach_r] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_int] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_asm] = ACTIONS(1569), + [anon_sym_DOLLARassert] = ACTIONS(1569), + [anon_sym_DOLLARerror] = ACTIONS(1569), + [anon_sym_DOLLARecho] = ACTIONS(1569), + [anon_sym_DOLLARif] = ACTIONS(1569), + [anon_sym_DOLLARswitch] = ACTIONS(1569), + [anon_sym_DOLLARfor] = ACTIONS(1569), + [anon_sym_DOLLARforeach] = ACTIONS(1569), + [anon_sym_DOLLARendforeach] = ACTIONS(1569), + [anon_sym_DOLLARalignof] = ACTIONS(1569), + [anon_sym_DOLLARextnameof] = ACTIONS(1569), + [anon_sym_DOLLARnameof] = ACTIONS(1569), + [anon_sym_DOLLARoffsetof] = ACTIONS(1569), + [anon_sym_DOLLARqnameof] = ACTIONS(1569), + [anon_sym_DOLLARvaconst] = ACTIONS(1569), + [anon_sym_DOLLARvaarg] = ACTIONS(1569), + [anon_sym_DOLLARvaref] = ACTIONS(1569), + [anon_sym_DOLLARvaexpr] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [anon_sym_DOLLARvacount] = ACTIONS(1569), + [anon_sym_DOLLAReval] = ACTIONS(1569), + [anon_sym_DOLLARis_const] = ACTIONS(1569), + [anon_sym_DOLLARsizeof] = ACTIONS(1569), + [anon_sym_DOLLARstringify] = ACTIONS(1569), + [anon_sym_DOLLARappend] = ACTIONS(1569), + [anon_sym_DOLLARconcat] = ACTIONS(1569), + [anon_sym_DOLLARdefined] = ACTIONS(1569), + [anon_sym_DOLLARembed] = ACTIONS(1569), + [anon_sym_DOLLARand] = ACTIONS(1569), + [anon_sym_DOLLARor] = ACTIONS(1569), + [anon_sym_DOLLARfeature] = ACTIONS(1569), + [anon_sym_DOLLARassignable] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_typeid] = ACTIONS(1569), + [anon_sym_LBRACE_PIPE] = ACTIONS(1571), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_bool] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_ichar] = ACTIONS(1569), + [anon_sym_short] = ACTIONS(1569), + [anon_sym_ushort] = ACTIONS(1569), + [anon_sym_uint] = ACTIONS(1569), + [anon_sym_long] = ACTIONS(1569), + [anon_sym_ulong] = ACTIONS(1569), + [anon_sym_int128] = ACTIONS(1569), + [anon_sym_uint128] = ACTIONS(1569), + [anon_sym_float] = ACTIONS(1569), + [anon_sym_double] = ACTIONS(1569), + [anon_sym_float16] = ACTIONS(1569), + [anon_sym_bfloat16] = ACTIONS(1569), + [anon_sym_float128] = ACTIONS(1569), + [anon_sym_iptr] = ACTIONS(1569), + [anon_sym_uptr] = ACTIONS(1569), + [anon_sym_isz] = ACTIONS(1569), + [anon_sym_usz] = ACTIONS(1569), + [anon_sym_anyfault] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1569), + [anon_sym_DOLLARtypeof] = ACTIONS(1569), + [anon_sym_DOLLARtypefrom] = ACTIONS(1569), + [anon_sym_DOLLARevaltype] = ACTIONS(1569), + [anon_sym_DOLLARvatype] = ACTIONS(1569), + [sym_real_literal] = ACTIONS(1571), }, - [741] = { - [sym_line_comment] = STATE(741), - [sym_doc_comment] = STATE(741), - [sym_block_comment] = STATE(741), - [sym_ident] = ACTIONS(1595), - [sym_integer_literal] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(1597), - [anon_sym_DQUOTE] = ACTIONS(1597), - [anon_sym_BQUOTE] = ACTIONS(1597), - [sym_bytes_literal] = ACTIONS(1597), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1595), - [sym_at_ident] = ACTIONS(1597), - [sym_hash_ident] = ACTIONS(1597), - [sym_type_ident] = ACTIONS(1597), - [sym_ct_type_ident] = ACTIONS(1597), - [sym_const_ident] = ACTIONS(1595), - [sym_builtin] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_AMP] = ACTIONS(1595), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_tlocal] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_fn] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1595), - [anon_sym_const] = ACTIONS(1595), - [anon_sym_var] = ACTIONS(1595), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_continue] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1595), - [anon_sym_defer] = ACTIONS(1595), - [anon_sym_assert] = ACTIONS(1595), - [anon_sym_nextcase] = ACTIONS(1595), - [anon_sym_switch] = ACTIONS(1595), - [anon_sym_AMP_AMP] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1595), - [anon_sym_for] = ACTIONS(1595), - [anon_sym_foreach] = ACTIONS(1595), - [anon_sym_foreach_r] = ACTIONS(1595), - [anon_sym_while] = ACTIONS(1595), - [anon_sym_do] = ACTIONS(1595), - [anon_sym_int] = ACTIONS(1595), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(1597), - [anon_sym_asm] = ACTIONS(1595), - [anon_sym_DOLLARassert] = ACTIONS(1595), - [anon_sym_DOLLARerror] = ACTIONS(1595), - [anon_sym_DOLLARecho] = ACTIONS(1595), - [anon_sym_DOLLARif] = ACTIONS(1595), - [anon_sym_DOLLARswitch] = ACTIONS(1595), - [anon_sym_DOLLARfor] = ACTIONS(1595), - [anon_sym_DOLLARforeach] = ACTIONS(1595), - [anon_sym_DOLLARendforeach] = ACTIONS(1595), - [anon_sym_DOLLARalignof] = ACTIONS(1595), - [anon_sym_DOLLARextnameof] = ACTIONS(1595), - [anon_sym_DOLLARnameof] = ACTIONS(1595), - [anon_sym_DOLLARoffsetof] = ACTIONS(1595), - [anon_sym_DOLLARqnameof] = ACTIONS(1595), - [anon_sym_DOLLAReval] = ACTIONS(1595), - [anon_sym_DOLLARdefined] = ACTIONS(1595), - [anon_sym_DOLLARsizeof] = ACTIONS(1595), - [anon_sym_DOLLARstringify] = ACTIONS(1595), - [anon_sym_DOLLARis_const] = ACTIONS(1595), - [anon_sym_DOLLARvaconst] = ACTIONS(1595), - [anon_sym_DOLLARvaarg] = ACTIONS(1595), - [anon_sym_DOLLARvaref] = ACTIONS(1595), - [anon_sym_DOLLARvaexpr] = ACTIONS(1595), - [anon_sym_true] = ACTIONS(1595), - [anon_sym_false] = ACTIONS(1595), - [anon_sym_null] = ACTIONS(1595), - [anon_sym_DOLLARvacount] = ACTIONS(1595), - [anon_sym_DOLLARfeature] = ACTIONS(1595), - [anon_sym_DOLLARand] = ACTIONS(1595), - [anon_sym_DOLLARor] = ACTIONS(1595), - [anon_sym_DOLLARassignable] = ACTIONS(1595), - [anon_sym_DOLLARembed] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1597), - [anon_sym_TILDE] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_DASH_DASH] = ACTIONS(1597), - [anon_sym_typeid] = ACTIONS(1595), - [anon_sym_LBRACE_PIPE] = ACTIONS(1597), - [anon_sym_void] = ACTIONS(1595), - [anon_sym_bool] = ACTIONS(1595), - [anon_sym_char] = ACTIONS(1595), - [anon_sym_ichar] = ACTIONS(1595), - [anon_sym_short] = ACTIONS(1595), - [anon_sym_ushort] = ACTIONS(1595), - [anon_sym_uint] = ACTIONS(1595), - [anon_sym_long] = ACTIONS(1595), - [anon_sym_ulong] = ACTIONS(1595), - [anon_sym_int128] = ACTIONS(1595), - [anon_sym_uint128] = ACTIONS(1595), - [anon_sym_float] = ACTIONS(1595), - [anon_sym_double] = ACTIONS(1595), - [anon_sym_float16] = ACTIONS(1595), - [anon_sym_bfloat16] = ACTIONS(1595), - [anon_sym_float128] = ACTIONS(1595), - [anon_sym_iptr] = ACTIONS(1595), - [anon_sym_uptr] = ACTIONS(1595), - [anon_sym_isz] = ACTIONS(1595), - [anon_sym_usz] = ACTIONS(1595), - [anon_sym_anyfault] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_DOLLARtypeof] = ACTIONS(1595), - [anon_sym_DOLLARtypefrom] = ACTIONS(1595), - [anon_sym_DOLLARvatype] = ACTIONS(1595), - [anon_sym_DOLLARevaltype] = ACTIONS(1595), - [sym_real_literal] = ACTIONS(1597), + [714] = { + [sym_line_comment] = STATE(714), + [sym_doc_comment] = STATE(714), + [sym_block_comment] = STATE(714), + [sym_ident] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_bytes_literal] = ACTIONS(1583), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1581), + [sym_at_ident] = ACTIONS(1583), + [sym_hash_ident] = ACTIONS(1583), + [sym_type_ident] = ACTIONS(1583), + [sym_ct_type_ident] = ACTIONS(1583), + [sym_const_ident] = ACTIONS(1581), + [sym_builtin] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_tlocal] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_fn] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_var] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_defer] = ACTIONS(1581), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_nextcase] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_AMP_AMP] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_foreach] = ACTIONS(1581), + [anon_sym_foreach_r] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_int] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_asm] = ACTIONS(1581), + [anon_sym_DOLLARassert] = ACTIONS(1581), + [anon_sym_DOLLARerror] = ACTIONS(1581), + [anon_sym_DOLLARecho] = ACTIONS(1581), + [anon_sym_DOLLARif] = ACTIONS(1581), + [anon_sym_DOLLARswitch] = ACTIONS(1581), + [anon_sym_DOLLARfor] = ACTIONS(1581), + [anon_sym_DOLLARforeach] = ACTIONS(1581), + [anon_sym_DOLLARendforeach] = ACTIONS(1581), + [anon_sym_DOLLARalignof] = ACTIONS(1581), + [anon_sym_DOLLARextnameof] = ACTIONS(1581), + [anon_sym_DOLLARnameof] = ACTIONS(1581), + [anon_sym_DOLLARoffsetof] = ACTIONS(1581), + [anon_sym_DOLLARqnameof] = ACTIONS(1581), + [anon_sym_DOLLARvaconst] = ACTIONS(1581), + [anon_sym_DOLLARvaarg] = ACTIONS(1581), + [anon_sym_DOLLARvaref] = ACTIONS(1581), + [anon_sym_DOLLARvaexpr] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_DOLLARvacount] = ACTIONS(1581), + [anon_sym_DOLLAReval] = ACTIONS(1581), + [anon_sym_DOLLARis_const] = ACTIONS(1581), + [anon_sym_DOLLARsizeof] = ACTIONS(1581), + [anon_sym_DOLLARstringify] = ACTIONS(1581), + [anon_sym_DOLLARappend] = ACTIONS(1581), + [anon_sym_DOLLARconcat] = ACTIONS(1581), + [anon_sym_DOLLARdefined] = ACTIONS(1581), + [anon_sym_DOLLARembed] = ACTIONS(1581), + [anon_sym_DOLLARand] = ACTIONS(1581), + [anon_sym_DOLLARor] = ACTIONS(1581), + [anon_sym_DOLLARfeature] = ACTIONS(1581), + [anon_sym_DOLLARassignable] = ACTIONS(1581), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_typeid] = ACTIONS(1581), + [anon_sym_LBRACE_PIPE] = ACTIONS(1583), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_bool] = ACTIONS(1581), + [anon_sym_char] = ACTIONS(1581), + [anon_sym_ichar] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [anon_sym_ushort] = ACTIONS(1581), + [anon_sym_uint] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_ulong] = ACTIONS(1581), + [anon_sym_int128] = ACTIONS(1581), + [anon_sym_uint128] = ACTIONS(1581), + [anon_sym_float] = ACTIONS(1581), + [anon_sym_double] = ACTIONS(1581), + [anon_sym_float16] = ACTIONS(1581), + [anon_sym_bfloat16] = ACTIONS(1581), + [anon_sym_float128] = ACTIONS(1581), + [anon_sym_iptr] = ACTIONS(1581), + [anon_sym_uptr] = ACTIONS(1581), + [anon_sym_isz] = ACTIONS(1581), + [anon_sym_usz] = ACTIONS(1581), + [anon_sym_anyfault] = ACTIONS(1581), + [anon_sym_any] = ACTIONS(1581), + [anon_sym_DOLLARtypeof] = ACTIONS(1581), + [anon_sym_DOLLARtypefrom] = ACTIONS(1581), + [anon_sym_DOLLARevaltype] = ACTIONS(1581), + [anon_sym_DOLLARvatype] = ACTIONS(1581), + [sym_real_literal] = ACTIONS(1583), }, - [742] = { - [sym_line_comment] = STATE(742), - [sym_doc_comment] = STATE(742), - [sym_block_comment] = STATE(742), + [715] = { + [sym_line_comment] = STATE(715), + [sym_doc_comment] = STATE(715), + [sym_block_comment] = STATE(715), + [sym_ident] = ACTIONS(1597), + [sym_integer_literal] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_bytes_literal] = ACTIONS(1599), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1597), + [sym_at_ident] = ACTIONS(1599), + [sym_hash_ident] = ACTIONS(1599), + [sym_type_ident] = ACTIONS(1599), + [sym_ct_type_ident] = ACTIONS(1599), + [sym_const_ident] = ACTIONS(1597), + [sym_builtin] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_tlocal] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_fn] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_var] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_defer] = ACTIONS(1597), + [anon_sym_assert] = ACTIONS(1597), + [anon_sym_nextcase] = ACTIONS(1597), + [anon_sym_switch] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_foreach] = ACTIONS(1597), + [anon_sym_foreach_r] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_int] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_asm] = ACTIONS(1597), + [anon_sym_DOLLARassert] = ACTIONS(1597), + [anon_sym_DOLLARerror] = ACTIONS(1597), + [anon_sym_DOLLARecho] = ACTIONS(1597), + [anon_sym_DOLLARif] = ACTIONS(1597), + [anon_sym_DOLLARswitch] = ACTIONS(1597), + [anon_sym_DOLLARfor] = ACTIONS(1597), + [anon_sym_DOLLARforeach] = ACTIONS(1597), + [anon_sym_DOLLARendforeach] = ACTIONS(1597), + [anon_sym_DOLLARalignof] = ACTIONS(1597), + [anon_sym_DOLLARextnameof] = ACTIONS(1597), + [anon_sym_DOLLARnameof] = ACTIONS(1597), + [anon_sym_DOLLARoffsetof] = ACTIONS(1597), + [anon_sym_DOLLARqnameof] = ACTIONS(1597), + [anon_sym_DOLLARvaconst] = ACTIONS(1597), + [anon_sym_DOLLARvaarg] = ACTIONS(1597), + [anon_sym_DOLLARvaref] = ACTIONS(1597), + [anon_sym_DOLLARvaexpr] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_DOLLARvacount] = ACTIONS(1597), + [anon_sym_DOLLAReval] = ACTIONS(1597), + [anon_sym_DOLLARis_const] = ACTIONS(1597), + [anon_sym_DOLLARsizeof] = ACTIONS(1597), + [anon_sym_DOLLARstringify] = ACTIONS(1597), + [anon_sym_DOLLARappend] = ACTIONS(1597), + [anon_sym_DOLLARconcat] = ACTIONS(1597), + [anon_sym_DOLLARdefined] = ACTIONS(1597), + [anon_sym_DOLLARembed] = ACTIONS(1597), + [anon_sym_DOLLARand] = ACTIONS(1597), + [anon_sym_DOLLARor] = ACTIONS(1597), + [anon_sym_DOLLARfeature] = ACTIONS(1597), + [anon_sym_DOLLARassignable] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_typeid] = ACTIONS(1597), + [anon_sym_LBRACE_PIPE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1597), + [anon_sym_bool] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_ichar] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [anon_sym_ushort] = ACTIONS(1597), + [anon_sym_uint] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_ulong] = ACTIONS(1597), + [anon_sym_int128] = ACTIONS(1597), + [anon_sym_uint128] = ACTIONS(1597), + [anon_sym_float] = ACTIONS(1597), + [anon_sym_double] = ACTIONS(1597), + [anon_sym_float16] = ACTIONS(1597), + [anon_sym_bfloat16] = ACTIONS(1597), + [anon_sym_float128] = ACTIONS(1597), + [anon_sym_iptr] = ACTIONS(1597), + [anon_sym_uptr] = ACTIONS(1597), + [anon_sym_isz] = ACTIONS(1597), + [anon_sym_usz] = ACTIONS(1597), + [anon_sym_anyfault] = ACTIONS(1597), + [anon_sym_any] = ACTIONS(1597), + [anon_sym_DOLLARtypeof] = ACTIONS(1597), + [anon_sym_DOLLARtypefrom] = ACTIONS(1597), + [anon_sym_DOLLARevaltype] = ACTIONS(1597), + [anon_sym_DOLLARvatype] = ACTIONS(1597), + [sym_real_literal] = ACTIONS(1599), + }, + [716] = { + [sym_line_comment] = STATE(716), + [sym_doc_comment] = STATE(716), + [sym_block_comment] = STATE(716), + [sym_ident] = ACTIONS(1701), + [sym_integer_literal] = ACTIONS(1703), + [anon_sym_SQUOTE] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [anon_sym_BQUOTE] = ACTIONS(1703), + [sym_bytes_literal] = ACTIONS(1703), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1701), + [sym_at_ident] = ACTIONS(1703), + [sym_hash_ident] = ACTIONS(1703), + [sym_type_ident] = ACTIONS(1703), + [sym_ct_type_ident] = ACTIONS(1703), + [sym_const_ident] = ACTIONS(1701), + [sym_builtin] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_AMP] = ACTIONS(1701), + [anon_sym_static] = ACTIONS(1701), + [anon_sym_tlocal] = ACTIONS(1701), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_fn] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [anon_sym_var] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_defer] = ACTIONS(1701), + [anon_sym_assert] = ACTIONS(1701), + [anon_sym_nextcase] = ACTIONS(1701), + [anon_sym_switch] = ACTIONS(1701), + [anon_sym_AMP_AMP] = ACTIONS(1703), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_foreach] = ACTIONS(1701), + [anon_sym_foreach_r] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_int] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1701), + [anon_sym_DASH] = ACTIONS(1701), + [anon_sym_STAR] = ACTIONS(1703), + [anon_sym_asm] = ACTIONS(1701), + [anon_sym_DOLLARassert] = ACTIONS(1701), + [anon_sym_DOLLARerror] = ACTIONS(1701), + [anon_sym_DOLLARecho] = ACTIONS(1701), + [anon_sym_DOLLARif] = ACTIONS(1701), + [anon_sym_DOLLARswitch] = ACTIONS(1701), + [anon_sym_DOLLARfor] = ACTIONS(1701), + [anon_sym_DOLLARforeach] = ACTIONS(1701), + [anon_sym_DOLLARendforeach] = ACTIONS(1701), + [anon_sym_DOLLARalignof] = ACTIONS(1701), + [anon_sym_DOLLARextnameof] = ACTIONS(1701), + [anon_sym_DOLLARnameof] = ACTIONS(1701), + [anon_sym_DOLLARoffsetof] = ACTIONS(1701), + [anon_sym_DOLLARqnameof] = ACTIONS(1701), + [anon_sym_DOLLARvaconst] = ACTIONS(1701), + [anon_sym_DOLLARvaarg] = ACTIONS(1701), + [anon_sym_DOLLARvaref] = ACTIONS(1701), + [anon_sym_DOLLARvaexpr] = ACTIONS(1701), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [anon_sym_null] = ACTIONS(1701), + [anon_sym_DOLLARvacount] = ACTIONS(1701), + [anon_sym_DOLLAReval] = ACTIONS(1701), + [anon_sym_DOLLARis_const] = ACTIONS(1701), + [anon_sym_DOLLARsizeof] = ACTIONS(1701), + [anon_sym_DOLLARstringify] = ACTIONS(1701), + [anon_sym_DOLLARappend] = ACTIONS(1701), + [anon_sym_DOLLARconcat] = ACTIONS(1701), + [anon_sym_DOLLARdefined] = ACTIONS(1701), + [anon_sym_DOLLARembed] = ACTIONS(1701), + [anon_sym_DOLLARand] = ACTIONS(1701), + [anon_sym_DOLLARor] = ACTIONS(1701), + [anon_sym_DOLLARfeature] = ACTIONS(1701), + [anon_sym_DOLLARassignable] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1703), + [anon_sym_TILDE] = ACTIONS(1703), + [anon_sym_PLUS_PLUS] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_typeid] = ACTIONS(1701), + [anon_sym_LBRACE_PIPE] = ACTIONS(1703), + [anon_sym_void] = ACTIONS(1701), + [anon_sym_bool] = ACTIONS(1701), + [anon_sym_char] = ACTIONS(1701), + [anon_sym_ichar] = ACTIONS(1701), + [anon_sym_short] = ACTIONS(1701), + [anon_sym_ushort] = ACTIONS(1701), + [anon_sym_uint] = ACTIONS(1701), + [anon_sym_long] = ACTIONS(1701), + [anon_sym_ulong] = ACTIONS(1701), + [anon_sym_int128] = ACTIONS(1701), + [anon_sym_uint128] = ACTIONS(1701), + [anon_sym_float] = ACTIONS(1701), + [anon_sym_double] = ACTIONS(1701), + [anon_sym_float16] = ACTIONS(1701), + [anon_sym_bfloat16] = ACTIONS(1701), + [anon_sym_float128] = ACTIONS(1701), + [anon_sym_iptr] = ACTIONS(1701), + [anon_sym_uptr] = ACTIONS(1701), + [anon_sym_isz] = ACTIONS(1701), + [anon_sym_usz] = ACTIONS(1701), + [anon_sym_anyfault] = ACTIONS(1701), + [anon_sym_any] = ACTIONS(1701), + [anon_sym_DOLLARtypeof] = ACTIONS(1701), + [anon_sym_DOLLARtypefrom] = ACTIONS(1701), + [anon_sym_DOLLARevaltype] = ACTIONS(1701), + [anon_sym_DOLLARvatype] = ACTIONS(1701), + [sym_real_literal] = ACTIONS(1703), + }, + [717] = { + [sym_line_comment] = STATE(717), + [sym_doc_comment] = STATE(717), + [sym_block_comment] = STATE(717), + [sym_ident] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1607), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [anon_sym_BQUOTE] = ACTIONS(1607), + [sym_bytes_literal] = ACTIONS(1607), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1605), + [sym_at_ident] = ACTIONS(1607), + [sym_hash_ident] = ACTIONS(1607), + [sym_type_ident] = ACTIONS(1607), + [sym_ct_type_ident] = ACTIONS(1607), + [sym_const_ident] = ACTIONS(1605), + [sym_builtin] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_tlocal] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_var] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_defer] = ACTIONS(1605), + [anon_sym_assert] = ACTIONS(1605), + [anon_sym_nextcase] = ACTIONS(1605), + [anon_sym_switch] = ACTIONS(1605), + [anon_sym_AMP_AMP] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_foreach] = ACTIONS(1605), + [anon_sym_foreach_r] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_int] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_asm] = ACTIONS(1605), + [anon_sym_DOLLARassert] = ACTIONS(1605), + [anon_sym_DOLLARerror] = ACTIONS(1605), + [anon_sym_DOLLARecho] = ACTIONS(1605), + [anon_sym_DOLLARif] = ACTIONS(1605), + [anon_sym_DOLLARswitch] = ACTIONS(1605), + [anon_sym_DOLLARfor] = ACTIONS(1605), + [anon_sym_DOLLARforeach] = ACTIONS(1605), + [anon_sym_DOLLARendforeach] = ACTIONS(1605), + [anon_sym_DOLLARalignof] = ACTIONS(1605), + [anon_sym_DOLLARextnameof] = ACTIONS(1605), + [anon_sym_DOLLARnameof] = ACTIONS(1605), + [anon_sym_DOLLARoffsetof] = ACTIONS(1605), + [anon_sym_DOLLARqnameof] = ACTIONS(1605), + [anon_sym_DOLLARvaconst] = ACTIONS(1605), + [anon_sym_DOLLARvaarg] = ACTIONS(1605), + [anon_sym_DOLLARvaref] = ACTIONS(1605), + [anon_sym_DOLLARvaexpr] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1605), + [anon_sym_false] = ACTIONS(1605), + [anon_sym_null] = ACTIONS(1605), + [anon_sym_DOLLARvacount] = ACTIONS(1605), + [anon_sym_DOLLAReval] = ACTIONS(1605), + [anon_sym_DOLLARis_const] = ACTIONS(1605), + [anon_sym_DOLLARsizeof] = ACTIONS(1605), + [anon_sym_DOLLARstringify] = ACTIONS(1605), + [anon_sym_DOLLARappend] = ACTIONS(1605), + [anon_sym_DOLLARconcat] = ACTIONS(1605), + [anon_sym_DOLLARdefined] = ACTIONS(1605), + [anon_sym_DOLLARembed] = ACTIONS(1605), + [anon_sym_DOLLARand] = ACTIONS(1605), + [anon_sym_DOLLARor] = ACTIONS(1605), + [anon_sym_DOLLARfeature] = ACTIONS(1605), + [anon_sym_DOLLARassignable] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_typeid] = ACTIONS(1605), + [anon_sym_LBRACE_PIPE] = ACTIONS(1607), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_bool] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_ichar] = ACTIONS(1605), + [anon_sym_short] = ACTIONS(1605), + [anon_sym_ushort] = ACTIONS(1605), + [anon_sym_uint] = ACTIONS(1605), + [anon_sym_long] = ACTIONS(1605), + [anon_sym_ulong] = ACTIONS(1605), + [anon_sym_int128] = ACTIONS(1605), + [anon_sym_uint128] = ACTIONS(1605), + [anon_sym_float] = ACTIONS(1605), + [anon_sym_double] = ACTIONS(1605), + [anon_sym_float16] = ACTIONS(1605), + [anon_sym_bfloat16] = ACTIONS(1605), + [anon_sym_float128] = ACTIONS(1605), + [anon_sym_iptr] = ACTIONS(1605), + [anon_sym_uptr] = ACTIONS(1605), + [anon_sym_isz] = ACTIONS(1605), + [anon_sym_usz] = ACTIONS(1605), + [anon_sym_anyfault] = ACTIONS(1605), + [anon_sym_any] = ACTIONS(1605), + [anon_sym_DOLLARtypeof] = ACTIONS(1605), + [anon_sym_DOLLARtypefrom] = ACTIONS(1605), + [anon_sym_DOLLARevaltype] = ACTIONS(1605), + [anon_sym_DOLLARvatype] = ACTIONS(1605), + [sym_real_literal] = ACTIONS(1607), + }, + [718] = { + [sym_line_comment] = STATE(718), + [sym_doc_comment] = STATE(718), + [sym_block_comment] = STATE(718), + [sym_ident] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [sym_bytes_literal] = ACTIONS(1611), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1609), + [sym_at_ident] = ACTIONS(1611), + [sym_hash_ident] = ACTIONS(1611), + [sym_type_ident] = ACTIONS(1611), + [sym_ct_type_ident] = ACTIONS(1611), + [sym_const_ident] = ACTIONS(1609), + [sym_builtin] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_static] = ACTIONS(1609), + [anon_sym_tlocal] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_fn] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_const] = ACTIONS(1609), + [anon_sym_var] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1609), + [anon_sym_defer] = ACTIONS(1609), + [anon_sym_assert] = ACTIONS(1609), + [anon_sym_nextcase] = ACTIONS(1609), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_for] = ACTIONS(1609), + [anon_sym_foreach] = ACTIONS(1609), + [anon_sym_foreach_r] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_do] = ACTIONS(1609), + [anon_sym_int] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1609), + [anon_sym_DOLLARassert] = ACTIONS(1609), + [anon_sym_DOLLARerror] = ACTIONS(1609), + [anon_sym_DOLLARecho] = ACTIONS(1609), + [anon_sym_DOLLARif] = ACTIONS(1609), + [anon_sym_DOLLARswitch] = ACTIONS(1609), + [anon_sym_DOLLARfor] = ACTIONS(1609), + [anon_sym_DOLLARforeach] = ACTIONS(1609), + [anon_sym_DOLLARendforeach] = ACTIONS(1609), + [anon_sym_DOLLARalignof] = ACTIONS(1609), + [anon_sym_DOLLARextnameof] = ACTIONS(1609), + [anon_sym_DOLLARnameof] = ACTIONS(1609), + [anon_sym_DOLLARoffsetof] = ACTIONS(1609), + [anon_sym_DOLLARqnameof] = ACTIONS(1609), + [anon_sym_DOLLARvaconst] = ACTIONS(1609), + [anon_sym_DOLLARvaarg] = ACTIONS(1609), + [anon_sym_DOLLARvaref] = ACTIONS(1609), + [anon_sym_DOLLARvaexpr] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_DOLLARvacount] = ACTIONS(1609), + [anon_sym_DOLLAReval] = ACTIONS(1609), + [anon_sym_DOLLARis_const] = ACTIONS(1609), + [anon_sym_DOLLARsizeof] = ACTIONS(1609), + [anon_sym_DOLLARstringify] = ACTIONS(1609), + [anon_sym_DOLLARappend] = ACTIONS(1609), + [anon_sym_DOLLARconcat] = ACTIONS(1609), + [anon_sym_DOLLARdefined] = ACTIONS(1609), + [anon_sym_DOLLARembed] = ACTIONS(1609), + [anon_sym_DOLLARand] = ACTIONS(1609), + [anon_sym_DOLLARor] = ACTIONS(1609), + [anon_sym_DOLLARfeature] = ACTIONS(1609), + [anon_sym_DOLLARassignable] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_TILDE] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_typeid] = ACTIONS(1609), + [anon_sym_LBRACE_PIPE] = ACTIONS(1611), + [anon_sym_void] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_ichar] = ACTIONS(1609), + [anon_sym_short] = ACTIONS(1609), + [anon_sym_ushort] = ACTIONS(1609), + [anon_sym_uint] = ACTIONS(1609), + [anon_sym_long] = ACTIONS(1609), + [anon_sym_ulong] = ACTIONS(1609), + [anon_sym_int128] = ACTIONS(1609), + [anon_sym_uint128] = ACTIONS(1609), + [anon_sym_float] = ACTIONS(1609), + [anon_sym_double] = ACTIONS(1609), + [anon_sym_float16] = ACTIONS(1609), + [anon_sym_bfloat16] = ACTIONS(1609), + [anon_sym_float128] = ACTIONS(1609), + [anon_sym_iptr] = ACTIONS(1609), + [anon_sym_uptr] = ACTIONS(1609), + [anon_sym_isz] = ACTIONS(1609), + [anon_sym_usz] = ACTIONS(1609), + [anon_sym_anyfault] = ACTIONS(1609), + [anon_sym_any] = ACTIONS(1609), + [anon_sym_DOLLARtypeof] = ACTIONS(1609), + [anon_sym_DOLLARtypefrom] = ACTIONS(1609), + [anon_sym_DOLLARevaltype] = ACTIONS(1609), + [anon_sym_DOLLARvatype] = ACTIONS(1609), + [sym_real_literal] = ACTIONS(1611), + }, + [719] = { + [sym_line_comment] = STATE(719), + [sym_doc_comment] = STATE(719), + [sym_block_comment] = STATE(719), [sym_ident] = ACTIONS(1433), [sym_integer_literal] = ACTIONS(1435), [anon_sym_SQUOTE] = ACTIONS(1435), @@ -110519,7 +108260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1435), [sym_bytes_literal] = ACTIONS(1435), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1433), [sym_at_ident] = ACTIONS(1435), @@ -110560,20 +108301,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1433), [anon_sym_DOLLARecho] = ACTIONS(1433), [anon_sym_DOLLARif] = ACTIONS(1433), + [anon_sym_DOLLARendif] = ACTIONS(1433), [anon_sym_DOLLARswitch] = ACTIONS(1433), [anon_sym_DOLLARfor] = ACTIONS(1433), - [anon_sym_DOLLARendfor] = ACTIONS(1433), [anon_sym_DOLLARforeach] = ACTIONS(1433), [anon_sym_DOLLARalignof] = ACTIONS(1433), [anon_sym_DOLLARextnameof] = ACTIONS(1433), [anon_sym_DOLLARnameof] = ACTIONS(1433), [anon_sym_DOLLARoffsetof] = ACTIONS(1433), [anon_sym_DOLLARqnameof] = ACTIONS(1433), - [anon_sym_DOLLAReval] = ACTIONS(1433), - [anon_sym_DOLLARdefined] = ACTIONS(1433), - [anon_sym_DOLLARsizeof] = ACTIONS(1433), - [anon_sym_DOLLARstringify] = ACTIONS(1433), - [anon_sym_DOLLARis_const] = ACTIONS(1433), [anon_sym_DOLLARvaconst] = ACTIONS(1433), [anon_sym_DOLLARvaarg] = ACTIONS(1433), [anon_sym_DOLLARvaref] = ACTIONS(1433), @@ -110582,11 +108318,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1433), [anon_sym_null] = ACTIONS(1433), [anon_sym_DOLLARvacount] = ACTIONS(1433), - [anon_sym_DOLLARfeature] = ACTIONS(1433), + [anon_sym_DOLLAReval] = ACTIONS(1433), + [anon_sym_DOLLARis_const] = ACTIONS(1433), + [anon_sym_DOLLARsizeof] = ACTIONS(1433), + [anon_sym_DOLLARstringify] = ACTIONS(1433), + [anon_sym_DOLLARappend] = ACTIONS(1433), + [anon_sym_DOLLARconcat] = ACTIONS(1433), + [anon_sym_DOLLARdefined] = ACTIONS(1433), + [anon_sym_DOLLARembed] = ACTIONS(1433), [anon_sym_DOLLARand] = ACTIONS(1433), [anon_sym_DOLLARor] = ACTIONS(1433), + [anon_sym_DOLLARfeature] = ACTIONS(1433), [anon_sym_DOLLARassignable] = ACTIONS(1433), - [anon_sym_DOLLARembed] = ACTIONS(1433), [anon_sym_BANG] = ACTIONS(1435), [anon_sym_TILDE] = ACTIONS(1435), [anon_sym_PLUS_PLUS] = ACTIONS(1435), @@ -110617,2726 +108360,3464 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1433), [anon_sym_DOLLARtypeof] = ACTIONS(1433), [anon_sym_DOLLARtypefrom] = ACTIONS(1433), - [anon_sym_DOLLARvatype] = ACTIONS(1433), [anon_sym_DOLLARevaltype] = ACTIONS(1433), + [anon_sym_DOLLARvatype] = ACTIONS(1433), [sym_real_literal] = ACTIONS(1435), }, - [743] = { - [sym_line_comment] = STATE(743), - [sym_doc_comment] = STATE(743), - [sym_block_comment] = STATE(743), - [sym_ident] = ACTIONS(1421), - [sym_integer_literal] = ACTIONS(1423), - [anon_sym_SQUOTE] = ACTIONS(1423), - [anon_sym_DQUOTE] = ACTIONS(1423), - [anon_sym_BQUOTE] = ACTIONS(1423), - [sym_bytes_literal] = ACTIONS(1423), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1421), - [sym_at_ident] = ACTIONS(1423), - [sym_hash_ident] = ACTIONS(1423), - [sym_type_ident] = ACTIONS(1423), - [sym_ct_type_ident] = ACTIONS(1423), - [sym_const_ident] = ACTIONS(1421), - [sym_builtin] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_static] = ACTIONS(1421), - [anon_sym_tlocal] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym_fn] = ACTIONS(1421), - [anon_sym_LBRACE] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_var] = ACTIONS(1421), - [anon_sym_return] = ACTIONS(1421), - [anon_sym_continue] = ACTIONS(1421), - [anon_sym_break] = ACTIONS(1421), - [anon_sym_defer] = ACTIONS(1421), - [anon_sym_assert] = ACTIONS(1421), - [anon_sym_nextcase] = ACTIONS(1421), - [anon_sym_switch] = ACTIONS(1421), - [anon_sym_AMP_AMP] = ACTIONS(1423), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_for] = ACTIONS(1421), - [anon_sym_foreach] = ACTIONS(1421), - [anon_sym_foreach_r] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1421), - [anon_sym_do] = ACTIONS(1421), - [anon_sym_int] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1421), - [anon_sym_DASH] = ACTIONS(1421), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_asm] = ACTIONS(1421), - [anon_sym_DOLLARassert] = ACTIONS(1421), - [anon_sym_DOLLARerror] = ACTIONS(1421), - [anon_sym_DOLLARecho] = ACTIONS(1421), - [anon_sym_DOLLARif] = ACTIONS(1421), - [anon_sym_DOLLARswitch] = ACTIONS(1421), - [anon_sym_DOLLARfor] = ACTIONS(1421), - [anon_sym_DOLLARendfor] = ACTIONS(1421), - [anon_sym_DOLLARforeach] = ACTIONS(1421), - [anon_sym_DOLLARalignof] = ACTIONS(1421), - [anon_sym_DOLLARextnameof] = ACTIONS(1421), - [anon_sym_DOLLARnameof] = ACTIONS(1421), - [anon_sym_DOLLARoffsetof] = ACTIONS(1421), - [anon_sym_DOLLARqnameof] = ACTIONS(1421), - [anon_sym_DOLLAReval] = ACTIONS(1421), - [anon_sym_DOLLARdefined] = ACTIONS(1421), - [anon_sym_DOLLARsizeof] = ACTIONS(1421), - [anon_sym_DOLLARstringify] = ACTIONS(1421), - [anon_sym_DOLLARis_const] = ACTIONS(1421), - [anon_sym_DOLLARvaconst] = ACTIONS(1421), - [anon_sym_DOLLARvaarg] = ACTIONS(1421), - [anon_sym_DOLLARvaref] = ACTIONS(1421), - [anon_sym_DOLLARvaexpr] = ACTIONS(1421), - [anon_sym_true] = ACTIONS(1421), - [anon_sym_false] = ACTIONS(1421), - [anon_sym_null] = ACTIONS(1421), - [anon_sym_DOLLARvacount] = ACTIONS(1421), - [anon_sym_DOLLARfeature] = ACTIONS(1421), - [anon_sym_DOLLARand] = ACTIONS(1421), - [anon_sym_DOLLARor] = ACTIONS(1421), - [anon_sym_DOLLARassignable] = ACTIONS(1421), - [anon_sym_DOLLARembed] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_TILDE] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1423), - [anon_sym_DASH_DASH] = ACTIONS(1423), - [anon_sym_typeid] = ACTIONS(1421), - [anon_sym_LBRACE_PIPE] = ACTIONS(1423), - [anon_sym_void] = ACTIONS(1421), - [anon_sym_bool] = ACTIONS(1421), - [anon_sym_char] = ACTIONS(1421), - [anon_sym_ichar] = ACTIONS(1421), - [anon_sym_short] = ACTIONS(1421), - [anon_sym_ushort] = ACTIONS(1421), - [anon_sym_uint] = ACTIONS(1421), - [anon_sym_long] = ACTIONS(1421), - [anon_sym_ulong] = ACTIONS(1421), - [anon_sym_int128] = ACTIONS(1421), - [anon_sym_uint128] = ACTIONS(1421), - [anon_sym_float] = ACTIONS(1421), - [anon_sym_double] = ACTIONS(1421), - [anon_sym_float16] = ACTIONS(1421), - [anon_sym_bfloat16] = ACTIONS(1421), - [anon_sym_float128] = ACTIONS(1421), - [anon_sym_iptr] = ACTIONS(1421), - [anon_sym_uptr] = ACTIONS(1421), - [anon_sym_isz] = ACTIONS(1421), - [anon_sym_usz] = ACTIONS(1421), - [anon_sym_anyfault] = ACTIONS(1421), - [anon_sym_any] = ACTIONS(1421), - [anon_sym_DOLLARtypeof] = ACTIONS(1421), - [anon_sym_DOLLARtypefrom] = ACTIONS(1421), - [anon_sym_DOLLARvatype] = ACTIONS(1421), - [anon_sym_DOLLARevaltype] = ACTIONS(1421), - [sym_real_literal] = ACTIONS(1423), + [720] = { + [sym_line_comment] = STATE(720), + [sym_doc_comment] = STATE(720), + [sym_block_comment] = STATE(720), + [sym_ident] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [sym_bytes_literal] = ACTIONS(1531), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1529), + [sym_at_ident] = ACTIONS(1531), + [sym_hash_ident] = ACTIONS(1531), + [sym_type_ident] = ACTIONS(1531), + [sym_ct_type_ident] = ACTIONS(1531), + [sym_const_ident] = ACTIONS(1529), + [sym_builtin] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_tlocal] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_var] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_defer] = ACTIONS(1529), + [anon_sym_assert] = ACTIONS(1529), + [anon_sym_nextcase] = ACTIONS(1529), + [anon_sym_switch] = ACTIONS(1529), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_foreach] = ACTIONS(1529), + [anon_sym_foreach_r] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_int] = ACTIONS(1529), + [anon_sym_PLUS] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1529), + [anon_sym_STAR] = ACTIONS(1531), + [anon_sym_asm] = ACTIONS(1529), + [anon_sym_DOLLARassert] = ACTIONS(1529), + [anon_sym_DOLLARerror] = ACTIONS(1529), + [anon_sym_DOLLARecho] = ACTIONS(1529), + [anon_sym_DOLLARif] = ACTIONS(1529), + [anon_sym_DOLLARendif] = ACTIONS(1529), + [anon_sym_DOLLARswitch] = ACTIONS(1529), + [anon_sym_DOLLARfor] = ACTIONS(1529), + [anon_sym_DOLLARforeach] = ACTIONS(1529), + [anon_sym_DOLLARalignof] = ACTIONS(1529), + [anon_sym_DOLLARextnameof] = ACTIONS(1529), + [anon_sym_DOLLARnameof] = ACTIONS(1529), + [anon_sym_DOLLARoffsetof] = ACTIONS(1529), + [anon_sym_DOLLARqnameof] = ACTIONS(1529), + [anon_sym_DOLLARvaconst] = ACTIONS(1529), + [anon_sym_DOLLARvaarg] = ACTIONS(1529), + [anon_sym_DOLLARvaref] = ACTIONS(1529), + [anon_sym_DOLLARvaexpr] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_null] = ACTIONS(1529), + [anon_sym_DOLLARvacount] = ACTIONS(1529), + [anon_sym_DOLLAReval] = ACTIONS(1529), + [anon_sym_DOLLARis_const] = ACTIONS(1529), + [anon_sym_DOLLARsizeof] = ACTIONS(1529), + [anon_sym_DOLLARstringify] = ACTIONS(1529), + [anon_sym_DOLLARappend] = ACTIONS(1529), + [anon_sym_DOLLARconcat] = ACTIONS(1529), + [anon_sym_DOLLARdefined] = ACTIONS(1529), + [anon_sym_DOLLARembed] = ACTIONS(1529), + [anon_sym_DOLLARand] = ACTIONS(1529), + [anon_sym_DOLLARor] = ACTIONS(1529), + [anon_sym_DOLLARfeature] = ACTIONS(1529), + [anon_sym_DOLLARassignable] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1531), + [anon_sym_TILDE] = ACTIONS(1531), + [anon_sym_PLUS_PLUS] = ACTIONS(1531), + [anon_sym_DASH_DASH] = ACTIONS(1531), + [anon_sym_typeid] = ACTIONS(1529), + [anon_sym_LBRACE_PIPE] = ACTIONS(1531), + [anon_sym_void] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_ichar] = ACTIONS(1529), + [anon_sym_short] = ACTIONS(1529), + [anon_sym_ushort] = ACTIONS(1529), + [anon_sym_uint] = ACTIONS(1529), + [anon_sym_long] = ACTIONS(1529), + [anon_sym_ulong] = ACTIONS(1529), + [anon_sym_int128] = ACTIONS(1529), + [anon_sym_uint128] = ACTIONS(1529), + [anon_sym_float] = ACTIONS(1529), + [anon_sym_double] = ACTIONS(1529), + [anon_sym_float16] = ACTIONS(1529), + [anon_sym_bfloat16] = ACTIONS(1529), + [anon_sym_float128] = ACTIONS(1529), + [anon_sym_iptr] = ACTIONS(1529), + [anon_sym_uptr] = ACTIONS(1529), + [anon_sym_isz] = ACTIONS(1529), + [anon_sym_usz] = ACTIONS(1529), + [anon_sym_anyfault] = ACTIONS(1529), + [anon_sym_any] = ACTIONS(1529), + [anon_sym_DOLLARtypeof] = ACTIONS(1529), + [anon_sym_DOLLARtypefrom] = ACTIONS(1529), + [anon_sym_DOLLARevaltype] = ACTIONS(1529), + [anon_sym_DOLLARvatype] = ACTIONS(1529), + [sym_real_literal] = ACTIONS(1531), }, - [744] = { - [sym_line_comment] = STATE(744), - [sym_doc_comment] = STATE(744), - [sym_block_comment] = STATE(744), - [sym_ident] = ACTIONS(1591), - [sym_integer_literal] = ACTIONS(1593), - [anon_sym_SQUOTE] = ACTIONS(1593), - [anon_sym_DQUOTE] = ACTIONS(1593), - [anon_sym_BQUOTE] = ACTIONS(1593), - [sym_bytes_literal] = ACTIONS(1593), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1591), - [sym_at_ident] = ACTIONS(1593), - [sym_hash_ident] = ACTIONS(1593), - [sym_type_ident] = ACTIONS(1593), - [sym_ct_type_ident] = ACTIONS(1593), - [sym_const_ident] = ACTIONS(1591), - [sym_builtin] = ACTIONS(1593), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_AMP] = ACTIONS(1591), - [anon_sym_static] = ACTIONS(1591), - [anon_sym_tlocal] = ACTIONS(1591), - [anon_sym_SEMI] = ACTIONS(1593), - [anon_sym_fn] = ACTIONS(1591), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_const] = ACTIONS(1591), - [anon_sym_var] = ACTIONS(1591), - [anon_sym_return] = ACTIONS(1591), - [anon_sym_continue] = ACTIONS(1591), - [anon_sym_break] = ACTIONS(1591), - [anon_sym_defer] = ACTIONS(1591), - [anon_sym_assert] = ACTIONS(1591), - [anon_sym_nextcase] = ACTIONS(1591), - [anon_sym_switch] = ACTIONS(1591), - [anon_sym_AMP_AMP] = ACTIONS(1593), - [anon_sym_if] = ACTIONS(1591), - [anon_sym_for] = ACTIONS(1591), - [anon_sym_foreach] = ACTIONS(1591), - [anon_sym_foreach_r] = ACTIONS(1591), - [anon_sym_while] = ACTIONS(1591), - [anon_sym_do] = ACTIONS(1591), - [anon_sym_int] = ACTIONS(1591), - [anon_sym_PLUS] = ACTIONS(1591), - [anon_sym_DASH] = ACTIONS(1591), - [anon_sym_STAR] = ACTIONS(1593), - [anon_sym_asm] = ACTIONS(1591), - [anon_sym_DOLLARassert] = ACTIONS(1591), - [anon_sym_DOLLARerror] = ACTIONS(1591), - [anon_sym_DOLLARecho] = ACTIONS(1591), - [anon_sym_DOLLARif] = ACTIONS(1591), - [anon_sym_DOLLARswitch] = ACTIONS(1591), - [anon_sym_DOLLARfor] = ACTIONS(1591), - [anon_sym_DOLLARforeach] = ACTIONS(1591), - [anon_sym_DOLLARendforeach] = ACTIONS(1591), - [anon_sym_DOLLARalignof] = ACTIONS(1591), - [anon_sym_DOLLARextnameof] = ACTIONS(1591), - [anon_sym_DOLLARnameof] = ACTIONS(1591), - [anon_sym_DOLLARoffsetof] = ACTIONS(1591), - [anon_sym_DOLLARqnameof] = ACTIONS(1591), - [anon_sym_DOLLAReval] = ACTIONS(1591), - [anon_sym_DOLLARdefined] = ACTIONS(1591), - [anon_sym_DOLLARsizeof] = ACTIONS(1591), - [anon_sym_DOLLARstringify] = ACTIONS(1591), - [anon_sym_DOLLARis_const] = ACTIONS(1591), - [anon_sym_DOLLARvaconst] = ACTIONS(1591), - [anon_sym_DOLLARvaarg] = ACTIONS(1591), - [anon_sym_DOLLARvaref] = ACTIONS(1591), - [anon_sym_DOLLARvaexpr] = ACTIONS(1591), - [anon_sym_true] = ACTIONS(1591), - [anon_sym_false] = ACTIONS(1591), - [anon_sym_null] = ACTIONS(1591), - [anon_sym_DOLLARvacount] = ACTIONS(1591), - [anon_sym_DOLLARfeature] = ACTIONS(1591), - [anon_sym_DOLLARand] = ACTIONS(1591), - [anon_sym_DOLLARor] = ACTIONS(1591), - [anon_sym_DOLLARassignable] = ACTIONS(1591), - [anon_sym_DOLLARembed] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1593), - [anon_sym_TILDE] = ACTIONS(1593), - [anon_sym_PLUS_PLUS] = ACTIONS(1593), - [anon_sym_DASH_DASH] = ACTIONS(1593), - [anon_sym_typeid] = ACTIONS(1591), - [anon_sym_LBRACE_PIPE] = ACTIONS(1593), - [anon_sym_void] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_ichar] = ACTIONS(1591), - [anon_sym_short] = ACTIONS(1591), - [anon_sym_ushort] = ACTIONS(1591), - [anon_sym_uint] = ACTIONS(1591), - [anon_sym_long] = ACTIONS(1591), - [anon_sym_ulong] = ACTIONS(1591), - [anon_sym_int128] = ACTIONS(1591), - [anon_sym_uint128] = ACTIONS(1591), - [anon_sym_float] = ACTIONS(1591), - [anon_sym_double] = ACTIONS(1591), - [anon_sym_float16] = ACTIONS(1591), - [anon_sym_bfloat16] = ACTIONS(1591), - [anon_sym_float128] = ACTIONS(1591), - [anon_sym_iptr] = ACTIONS(1591), - [anon_sym_uptr] = ACTIONS(1591), - [anon_sym_isz] = ACTIONS(1591), - [anon_sym_usz] = ACTIONS(1591), - [anon_sym_anyfault] = ACTIONS(1591), - [anon_sym_any] = ACTIONS(1591), - [anon_sym_DOLLARtypeof] = ACTIONS(1591), - [anon_sym_DOLLARtypefrom] = ACTIONS(1591), - [anon_sym_DOLLARvatype] = ACTIONS(1591), - [anon_sym_DOLLARevaltype] = ACTIONS(1591), - [sym_real_literal] = ACTIONS(1593), + [721] = { + [sym_line_comment] = STATE(721), + [sym_doc_comment] = STATE(721), + [sym_block_comment] = STATE(721), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARendforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, - [745] = { - [sym_line_comment] = STATE(745), - [sym_doc_comment] = STATE(745), - [sym_block_comment] = STATE(745), - [sym_ident] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [anon_sym_SQUOTE] = ACTIONS(1419), - [anon_sym_DQUOTE] = ACTIONS(1419), - [anon_sym_BQUOTE] = ACTIONS(1419), - [sym_bytes_literal] = ACTIONS(1419), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1417), - [sym_at_ident] = ACTIONS(1419), - [sym_hash_ident] = ACTIONS(1419), - [sym_type_ident] = ACTIONS(1419), - [sym_ct_type_ident] = ACTIONS(1419), - [sym_const_ident] = ACTIONS(1417), - [sym_builtin] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1417), - [anon_sym_static] = ACTIONS(1417), - [anon_sym_tlocal] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1419), - [anon_sym_fn] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_const] = ACTIONS(1417), - [anon_sym_var] = ACTIONS(1417), - [anon_sym_return] = ACTIONS(1417), - [anon_sym_continue] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1417), - [anon_sym_defer] = ACTIONS(1417), - [anon_sym_assert] = ACTIONS(1417), - [anon_sym_nextcase] = ACTIONS(1417), - [anon_sym_switch] = ACTIONS(1417), - [anon_sym_AMP_AMP] = ACTIONS(1419), - [anon_sym_if] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1417), - [anon_sym_foreach] = ACTIONS(1417), - [anon_sym_foreach_r] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1417), - [anon_sym_do] = ACTIONS(1417), - [anon_sym_int] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_asm] = ACTIONS(1417), - [anon_sym_DOLLARassert] = ACTIONS(1417), - [anon_sym_DOLLARerror] = ACTIONS(1417), - [anon_sym_DOLLARecho] = ACTIONS(1417), - [anon_sym_DOLLARif] = ACTIONS(1417), - [anon_sym_DOLLARswitch] = ACTIONS(1417), - [anon_sym_DOLLARfor] = ACTIONS(1417), - [anon_sym_DOLLARendfor] = ACTIONS(1417), - [anon_sym_DOLLARforeach] = ACTIONS(1417), - [anon_sym_DOLLARalignof] = ACTIONS(1417), - [anon_sym_DOLLARextnameof] = ACTIONS(1417), - [anon_sym_DOLLARnameof] = ACTIONS(1417), - [anon_sym_DOLLARoffsetof] = ACTIONS(1417), - [anon_sym_DOLLARqnameof] = ACTIONS(1417), - [anon_sym_DOLLAReval] = ACTIONS(1417), - [anon_sym_DOLLARdefined] = ACTIONS(1417), - [anon_sym_DOLLARsizeof] = ACTIONS(1417), - [anon_sym_DOLLARstringify] = ACTIONS(1417), - [anon_sym_DOLLARis_const] = ACTIONS(1417), - [anon_sym_DOLLARvaconst] = ACTIONS(1417), - [anon_sym_DOLLARvaarg] = ACTIONS(1417), - [anon_sym_DOLLARvaref] = ACTIONS(1417), - [anon_sym_DOLLARvaexpr] = ACTIONS(1417), - [anon_sym_true] = ACTIONS(1417), - [anon_sym_false] = ACTIONS(1417), - [anon_sym_null] = ACTIONS(1417), - [anon_sym_DOLLARvacount] = ACTIONS(1417), - [anon_sym_DOLLARfeature] = ACTIONS(1417), - [anon_sym_DOLLARand] = ACTIONS(1417), - [anon_sym_DOLLARor] = ACTIONS(1417), - [anon_sym_DOLLARassignable] = ACTIONS(1417), - [anon_sym_DOLLARembed] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1419), - [anon_sym_PLUS_PLUS] = ACTIONS(1419), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_typeid] = ACTIONS(1417), - [anon_sym_LBRACE_PIPE] = ACTIONS(1419), - [anon_sym_void] = ACTIONS(1417), - [anon_sym_bool] = ACTIONS(1417), - [anon_sym_char] = ACTIONS(1417), - [anon_sym_ichar] = ACTIONS(1417), - [anon_sym_short] = ACTIONS(1417), - [anon_sym_ushort] = ACTIONS(1417), - [anon_sym_uint] = ACTIONS(1417), - [anon_sym_long] = ACTIONS(1417), - [anon_sym_ulong] = ACTIONS(1417), - [anon_sym_int128] = ACTIONS(1417), - [anon_sym_uint128] = ACTIONS(1417), - [anon_sym_float] = ACTIONS(1417), - [anon_sym_double] = ACTIONS(1417), - [anon_sym_float16] = ACTIONS(1417), - [anon_sym_bfloat16] = ACTIONS(1417), - [anon_sym_float128] = ACTIONS(1417), - [anon_sym_iptr] = ACTIONS(1417), - [anon_sym_uptr] = ACTIONS(1417), - [anon_sym_isz] = ACTIONS(1417), - [anon_sym_usz] = ACTIONS(1417), - [anon_sym_anyfault] = ACTIONS(1417), - [anon_sym_any] = ACTIONS(1417), - [anon_sym_DOLLARtypeof] = ACTIONS(1417), - [anon_sym_DOLLARtypefrom] = ACTIONS(1417), - [anon_sym_DOLLARvatype] = ACTIONS(1417), - [anon_sym_DOLLARevaltype] = ACTIONS(1417), - [sym_real_literal] = ACTIONS(1419), + [722] = { + [sym_line_comment] = STATE(722), + [sym_doc_comment] = STATE(722), + [sym_block_comment] = STATE(722), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARendforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, - [746] = { - [sym_line_comment] = STATE(746), - [sym_doc_comment] = STATE(746), - [sym_block_comment] = STATE(746), - [sym_ident] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1415), - [anon_sym_SQUOTE] = ACTIONS(1415), - [anon_sym_DQUOTE] = ACTIONS(1415), - [anon_sym_BQUOTE] = ACTIONS(1415), - [sym_bytes_literal] = ACTIONS(1415), + [723] = { + [sym_line_comment] = STATE(723), + [sym_doc_comment] = STATE(723), + [sym_block_comment] = STATE(723), + [sym_ident] = ACTIONS(1617), + [sym_integer_literal] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [anon_sym_BQUOTE] = ACTIONS(1619), + [sym_bytes_literal] = ACTIONS(1619), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1617), + [sym_at_ident] = ACTIONS(1619), + [sym_hash_ident] = ACTIONS(1619), + [sym_type_ident] = ACTIONS(1619), + [sym_ct_type_ident] = ACTIONS(1619), + [sym_const_ident] = ACTIONS(1617), + [sym_builtin] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_tlocal] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [anon_sym_var] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_defer] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_nextcase] = ACTIONS(1617), + [anon_sym_switch] = ACTIONS(1617), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_foreach] = ACTIONS(1617), + [anon_sym_foreach_r] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_int] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym_DOLLARassert] = ACTIONS(1617), + [anon_sym_DOLLARerror] = ACTIONS(1617), + [anon_sym_DOLLARecho] = ACTIONS(1617), + [anon_sym_DOLLARif] = ACTIONS(1617), + [anon_sym_DOLLARswitch] = ACTIONS(1617), + [anon_sym_DOLLARfor] = ACTIONS(1617), + [anon_sym_DOLLARforeach] = ACTIONS(1617), + [anon_sym_DOLLARendforeach] = ACTIONS(1617), + [anon_sym_DOLLARalignof] = ACTIONS(1617), + [anon_sym_DOLLARextnameof] = ACTIONS(1617), + [anon_sym_DOLLARnameof] = ACTIONS(1617), + [anon_sym_DOLLARoffsetof] = ACTIONS(1617), + [anon_sym_DOLLARqnameof] = ACTIONS(1617), + [anon_sym_DOLLARvaconst] = ACTIONS(1617), + [anon_sym_DOLLARvaarg] = ACTIONS(1617), + [anon_sym_DOLLARvaref] = ACTIONS(1617), + [anon_sym_DOLLARvaexpr] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [anon_sym_DOLLARvacount] = ACTIONS(1617), + [anon_sym_DOLLAReval] = ACTIONS(1617), + [anon_sym_DOLLARis_const] = ACTIONS(1617), + [anon_sym_DOLLARsizeof] = ACTIONS(1617), + [anon_sym_DOLLARstringify] = ACTIONS(1617), + [anon_sym_DOLLARappend] = ACTIONS(1617), + [anon_sym_DOLLARconcat] = ACTIONS(1617), + [anon_sym_DOLLARdefined] = ACTIONS(1617), + [anon_sym_DOLLARembed] = ACTIONS(1617), + [anon_sym_DOLLARand] = ACTIONS(1617), + [anon_sym_DOLLARor] = ACTIONS(1617), + [anon_sym_DOLLARfeature] = ACTIONS(1617), + [anon_sym_DOLLARassignable] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_typeid] = ACTIONS(1617), + [anon_sym_LBRACE_PIPE] = ACTIONS(1619), + [anon_sym_void] = ACTIONS(1617), + [anon_sym_bool] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_ichar] = ACTIONS(1617), + [anon_sym_short] = ACTIONS(1617), + [anon_sym_ushort] = ACTIONS(1617), + [anon_sym_uint] = ACTIONS(1617), + [anon_sym_long] = ACTIONS(1617), + [anon_sym_ulong] = ACTIONS(1617), + [anon_sym_int128] = ACTIONS(1617), + [anon_sym_uint128] = ACTIONS(1617), + [anon_sym_float] = ACTIONS(1617), + [anon_sym_double] = ACTIONS(1617), + [anon_sym_float16] = ACTIONS(1617), + [anon_sym_bfloat16] = ACTIONS(1617), + [anon_sym_float128] = ACTIONS(1617), + [anon_sym_iptr] = ACTIONS(1617), + [anon_sym_uptr] = ACTIONS(1617), + [anon_sym_isz] = ACTIONS(1617), + [anon_sym_usz] = ACTIONS(1617), + [anon_sym_anyfault] = ACTIONS(1617), + [anon_sym_any] = ACTIONS(1617), + [anon_sym_DOLLARtypeof] = ACTIONS(1617), + [anon_sym_DOLLARtypefrom] = ACTIONS(1617), + [anon_sym_DOLLARevaltype] = ACTIONS(1617), + [anon_sym_DOLLARvatype] = ACTIONS(1617), + [sym_real_literal] = ACTIONS(1619), + }, + [724] = { + [sym_line_comment] = STATE(724), + [sym_doc_comment] = STATE(724), + [sym_block_comment] = STATE(724), + [sym_ident] = ACTIONS(1621), + [sym_integer_literal] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_bytes_literal] = ACTIONS(1623), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1621), + [sym_at_ident] = ACTIONS(1623), + [sym_hash_ident] = ACTIONS(1623), + [sym_type_ident] = ACTIONS(1623), + [sym_ct_type_ident] = ACTIONS(1623), + [sym_const_ident] = ACTIONS(1621), + [sym_builtin] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_tlocal] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_var] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_defer] = ACTIONS(1621), + [anon_sym_assert] = ACTIONS(1621), + [anon_sym_nextcase] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_foreach] = ACTIONS(1621), + [anon_sym_foreach_r] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_int] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_asm] = ACTIONS(1621), + [anon_sym_DOLLARassert] = ACTIONS(1621), + [anon_sym_DOLLARerror] = ACTIONS(1621), + [anon_sym_DOLLARecho] = ACTIONS(1621), + [anon_sym_DOLLARif] = ACTIONS(1621), + [anon_sym_DOLLARswitch] = ACTIONS(1621), + [anon_sym_DOLLARfor] = ACTIONS(1621), + [anon_sym_DOLLARforeach] = ACTIONS(1621), + [anon_sym_DOLLARendforeach] = ACTIONS(1621), + [anon_sym_DOLLARalignof] = ACTIONS(1621), + [anon_sym_DOLLARextnameof] = ACTIONS(1621), + [anon_sym_DOLLARnameof] = ACTIONS(1621), + [anon_sym_DOLLARoffsetof] = ACTIONS(1621), + [anon_sym_DOLLARqnameof] = ACTIONS(1621), + [anon_sym_DOLLARvaconst] = ACTIONS(1621), + [anon_sym_DOLLARvaarg] = ACTIONS(1621), + [anon_sym_DOLLARvaref] = ACTIONS(1621), + [anon_sym_DOLLARvaexpr] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_null] = ACTIONS(1621), + [anon_sym_DOLLARvacount] = ACTIONS(1621), + [anon_sym_DOLLAReval] = ACTIONS(1621), + [anon_sym_DOLLARis_const] = ACTIONS(1621), + [anon_sym_DOLLARsizeof] = ACTIONS(1621), + [anon_sym_DOLLARstringify] = ACTIONS(1621), + [anon_sym_DOLLARappend] = ACTIONS(1621), + [anon_sym_DOLLARconcat] = ACTIONS(1621), + [anon_sym_DOLLARdefined] = ACTIONS(1621), + [anon_sym_DOLLARembed] = ACTIONS(1621), + [anon_sym_DOLLARand] = ACTIONS(1621), + [anon_sym_DOLLARor] = ACTIONS(1621), + [anon_sym_DOLLARfeature] = ACTIONS(1621), + [anon_sym_DOLLARassignable] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_typeid] = ACTIONS(1621), + [anon_sym_LBRACE_PIPE] = ACTIONS(1623), + [anon_sym_void] = ACTIONS(1621), + [anon_sym_bool] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_ichar] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_ushort] = ACTIONS(1621), + [anon_sym_uint] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_ulong] = ACTIONS(1621), + [anon_sym_int128] = ACTIONS(1621), + [anon_sym_uint128] = ACTIONS(1621), + [anon_sym_float] = ACTIONS(1621), + [anon_sym_double] = ACTIONS(1621), + [anon_sym_float16] = ACTIONS(1621), + [anon_sym_bfloat16] = ACTIONS(1621), + [anon_sym_float128] = ACTIONS(1621), + [anon_sym_iptr] = ACTIONS(1621), + [anon_sym_uptr] = ACTIONS(1621), + [anon_sym_isz] = ACTIONS(1621), + [anon_sym_usz] = ACTIONS(1621), + [anon_sym_anyfault] = ACTIONS(1621), + [anon_sym_any] = ACTIONS(1621), + [anon_sym_DOLLARtypeof] = ACTIONS(1621), + [anon_sym_DOLLARtypefrom] = ACTIONS(1621), + [anon_sym_DOLLARevaltype] = ACTIONS(1621), + [anon_sym_DOLLARvatype] = ACTIONS(1621), + [sym_real_literal] = ACTIONS(1623), + }, + [725] = { + [sym_line_comment] = STATE(725), + [sym_doc_comment] = STATE(725), + [sym_block_comment] = STATE(725), + [sym_ident] = ACTIONS(1625), + [sym_integer_literal] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [sym_bytes_literal] = ACTIONS(1627), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1625), + [sym_at_ident] = ACTIONS(1627), + [sym_hash_ident] = ACTIONS(1627), + [sym_type_ident] = ACTIONS(1627), + [sym_ct_type_ident] = ACTIONS(1627), + [sym_const_ident] = ACTIONS(1625), + [sym_builtin] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_tlocal] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_defer] = ACTIONS(1625), + [anon_sym_assert] = ACTIONS(1625), + [anon_sym_nextcase] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_foreach] = ACTIONS(1625), + [anon_sym_foreach_r] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_int] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_asm] = ACTIONS(1625), + [anon_sym_DOLLARassert] = ACTIONS(1625), + [anon_sym_DOLLARerror] = ACTIONS(1625), + [anon_sym_DOLLARecho] = ACTIONS(1625), + [anon_sym_DOLLARif] = ACTIONS(1625), + [anon_sym_DOLLARswitch] = ACTIONS(1625), + [anon_sym_DOLLARfor] = ACTIONS(1625), + [anon_sym_DOLLARforeach] = ACTIONS(1625), + [anon_sym_DOLLARendforeach] = ACTIONS(1625), + [anon_sym_DOLLARalignof] = ACTIONS(1625), + [anon_sym_DOLLARextnameof] = ACTIONS(1625), + [anon_sym_DOLLARnameof] = ACTIONS(1625), + [anon_sym_DOLLARoffsetof] = ACTIONS(1625), + [anon_sym_DOLLARqnameof] = ACTIONS(1625), + [anon_sym_DOLLARvaconst] = ACTIONS(1625), + [anon_sym_DOLLARvaarg] = ACTIONS(1625), + [anon_sym_DOLLARvaref] = ACTIONS(1625), + [anon_sym_DOLLARvaexpr] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_DOLLARvacount] = ACTIONS(1625), + [anon_sym_DOLLAReval] = ACTIONS(1625), + [anon_sym_DOLLARis_const] = ACTIONS(1625), + [anon_sym_DOLLARsizeof] = ACTIONS(1625), + [anon_sym_DOLLARstringify] = ACTIONS(1625), + [anon_sym_DOLLARappend] = ACTIONS(1625), + [anon_sym_DOLLARconcat] = ACTIONS(1625), + [anon_sym_DOLLARdefined] = ACTIONS(1625), + [anon_sym_DOLLARembed] = ACTIONS(1625), + [anon_sym_DOLLARand] = ACTIONS(1625), + [anon_sym_DOLLARor] = ACTIONS(1625), + [anon_sym_DOLLARfeature] = ACTIONS(1625), + [anon_sym_DOLLARassignable] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_typeid] = ACTIONS(1625), + [anon_sym_LBRACE_PIPE] = ACTIONS(1627), + [anon_sym_void] = ACTIONS(1625), + [anon_sym_bool] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_ichar] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_ushort] = ACTIONS(1625), + [anon_sym_uint] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_ulong] = ACTIONS(1625), + [anon_sym_int128] = ACTIONS(1625), + [anon_sym_uint128] = ACTIONS(1625), + [anon_sym_float] = ACTIONS(1625), + [anon_sym_double] = ACTIONS(1625), + [anon_sym_float16] = ACTIONS(1625), + [anon_sym_bfloat16] = ACTIONS(1625), + [anon_sym_float128] = ACTIONS(1625), + [anon_sym_iptr] = ACTIONS(1625), + [anon_sym_uptr] = ACTIONS(1625), + [anon_sym_isz] = ACTIONS(1625), + [anon_sym_usz] = ACTIONS(1625), + [anon_sym_anyfault] = ACTIONS(1625), + [anon_sym_any] = ACTIONS(1625), + [anon_sym_DOLLARtypeof] = ACTIONS(1625), + [anon_sym_DOLLARtypefrom] = ACTIONS(1625), + [anon_sym_DOLLARevaltype] = ACTIONS(1625), + [anon_sym_DOLLARvatype] = ACTIONS(1625), + [sym_real_literal] = ACTIONS(1627), + }, + [726] = { + [sym_line_comment] = STATE(726), + [sym_doc_comment] = STATE(726), + [sym_block_comment] = STATE(726), + [sym_ident] = ACTIONS(1629), + [sym_integer_literal] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1631), + [sym_bytes_literal] = ACTIONS(1631), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1629), + [sym_at_ident] = ACTIONS(1631), + [sym_hash_ident] = ACTIONS(1631), + [sym_type_ident] = ACTIONS(1631), + [sym_ct_type_ident] = ACTIONS(1631), + [sym_const_ident] = ACTIONS(1629), + [sym_builtin] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_tlocal] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_fn] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_var] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_defer] = ACTIONS(1629), + [anon_sym_assert] = ACTIONS(1629), + [anon_sym_nextcase] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_foreach] = ACTIONS(1629), + [anon_sym_foreach_r] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_int] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_asm] = ACTIONS(1629), + [anon_sym_DOLLARassert] = ACTIONS(1629), + [anon_sym_DOLLARerror] = ACTIONS(1629), + [anon_sym_DOLLARecho] = ACTIONS(1629), + [anon_sym_DOLLARif] = ACTIONS(1629), + [anon_sym_DOLLARswitch] = ACTIONS(1629), + [anon_sym_DOLLARfor] = ACTIONS(1629), + [anon_sym_DOLLARforeach] = ACTIONS(1629), + [anon_sym_DOLLARendforeach] = ACTIONS(1629), + [anon_sym_DOLLARalignof] = ACTIONS(1629), + [anon_sym_DOLLARextnameof] = ACTIONS(1629), + [anon_sym_DOLLARnameof] = ACTIONS(1629), + [anon_sym_DOLLARoffsetof] = ACTIONS(1629), + [anon_sym_DOLLARqnameof] = ACTIONS(1629), + [anon_sym_DOLLARvaconst] = ACTIONS(1629), + [anon_sym_DOLLARvaarg] = ACTIONS(1629), + [anon_sym_DOLLARvaref] = ACTIONS(1629), + [anon_sym_DOLLARvaexpr] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_DOLLARvacount] = ACTIONS(1629), + [anon_sym_DOLLAReval] = ACTIONS(1629), + [anon_sym_DOLLARis_const] = ACTIONS(1629), + [anon_sym_DOLLARsizeof] = ACTIONS(1629), + [anon_sym_DOLLARstringify] = ACTIONS(1629), + [anon_sym_DOLLARappend] = ACTIONS(1629), + [anon_sym_DOLLARconcat] = ACTIONS(1629), + [anon_sym_DOLLARdefined] = ACTIONS(1629), + [anon_sym_DOLLARembed] = ACTIONS(1629), + [anon_sym_DOLLARand] = ACTIONS(1629), + [anon_sym_DOLLARor] = ACTIONS(1629), + [anon_sym_DOLLARfeature] = ACTIONS(1629), + [anon_sym_DOLLARassignable] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_typeid] = ACTIONS(1629), + [anon_sym_LBRACE_PIPE] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_ichar] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_ushort] = ACTIONS(1629), + [anon_sym_uint] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_ulong] = ACTIONS(1629), + [anon_sym_int128] = ACTIONS(1629), + [anon_sym_uint128] = ACTIONS(1629), + [anon_sym_float] = ACTIONS(1629), + [anon_sym_double] = ACTIONS(1629), + [anon_sym_float16] = ACTIONS(1629), + [anon_sym_bfloat16] = ACTIONS(1629), + [anon_sym_float128] = ACTIONS(1629), + [anon_sym_iptr] = ACTIONS(1629), + [anon_sym_uptr] = ACTIONS(1629), + [anon_sym_isz] = ACTIONS(1629), + [anon_sym_usz] = ACTIONS(1629), + [anon_sym_anyfault] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_DOLLARtypeof] = ACTIONS(1629), + [anon_sym_DOLLARtypefrom] = ACTIONS(1629), + [anon_sym_DOLLARevaltype] = ACTIONS(1629), + [anon_sym_DOLLARvatype] = ACTIONS(1629), + [sym_real_literal] = ACTIONS(1631), + }, + [727] = { + [sym_line_comment] = STATE(727), + [sym_doc_comment] = STATE(727), + [sym_block_comment] = STATE(727), + [sym_ident] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1439), + [anon_sym_SQUOTE] = ACTIONS(1439), + [anon_sym_DQUOTE] = ACTIONS(1439), + [anon_sym_BQUOTE] = ACTIONS(1439), + [sym_bytes_literal] = ACTIONS(1439), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1413), - [sym_at_ident] = ACTIONS(1415), - [sym_hash_ident] = ACTIONS(1415), - [sym_type_ident] = ACTIONS(1415), - [sym_ct_type_ident] = ACTIONS(1415), - [sym_const_ident] = ACTIONS(1413), - [sym_builtin] = ACTIONS(1415), - [anon_sym_LPAREN] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_tlocal] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_fn] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_defer] = ACTIONS(1413), - [anon_sym_assert] = ACTIONS(1413), - [anon_sym_nextcase] = ACTIONS(1413), - [anon_sym_switch] = ACTIONS(1413), - [anon_sym_AMP_AMP] = ACTIONS(1415), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_foreach] = ACTIONS(1413), - [anon_sym_foreach_r] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_do] = ACTIONS(1413), - [anon_sym_int] = ACTIONS(1413), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_asm] = ACTIONS(1413), - [anon_sym_DOLLARassert] = ACTIONS(1413), - [anon_sym_DOLLARerror] = ACTIONS(1413), - [anon_sym_DOLLARecho] = ACTIONS(1413), - [anon_sym_DOLLARif] = ACTIONS(1413), - [anon_sym_DOLLARswitch] = ACTIONS(1413), - [anon_sym_DOLLARfor] = ACTIONS(1413), - [anon_sym_DOLLARendfor] = ACTIONS(1413), - [anon_sym_DOLLARforeach] = ACTIONS(1413), - [anon_sym_DOLLARalignof] = ACTIONS(1413), - [anon_sym_DOLLARextnameof] = ACTIONS(1413), - [anon_sym_DOLLARnameof] = ACTIONS(1413), - [anon_sym_DOLLARoffsetof] = ACTIONS(1413), - [anon_sym_DOLLARqnameof] = ACTIONS(1413), - [anon_sym_DOLLAReval] = ACTIONS(1413), - [anon_sym_DOLLARdefined] = ACTIONS(1413), - [anon_sym_DOLLARsizeof] = ACTIONS(1413), - [anon_sym_DOLLARstringify] = ACTIONS(1413), - [anon_sym_DOLLARis_const] = ACTIONS(1413), - [anon_sym_DOLLARvaconst] = ACTIONS(1413), - [anon_sym_DOLLARvaarg] = ACTIONS(1413), - [anon_sym_DOLLARvaref] = ACTIONS(1413), - [anon_sym_DOLLARvaexpr] = ACTIONS(1413), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_null] = ACTIONS(1413), - [anon_sym_DOLLARvacount] = ACTIONS(1413), - [anon_sym_DOLLARfeature] = ACTIONS(1413), - [anon_sym_DOLLARand] = ACTIONS(1413), - [anon_sym_DOLLARor] = ACTIONS(1413), - [anon_sym_DOLLARassignable] = ACTIONS(1413), - [anon_sym_DOLLARembed] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_TILDE] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1415), - [anon_sym_DASH_DASH] = ACTIONS(1415), - [anon_sym_typeid] = ACTIONS(1413), - [anon_sym_LBRACE_PIPE] = ACTIONS(1415), - [anon_sym_void] = ACTIONS(1413), - [anon_sym_bool] = ACTIONS(1413), - [anon_sym_char] = ACTIONS(1413), - [anon_sym_ichar] = ACTIONS(1413), - [anon_sym_short] = ACTIONS(1413), - [anon_sym_ushort] = ACTIONS(1413), - [anon_sym_uint] = ACTIONS(1413), - [anon_sym_long] = ACTIONS(1413), - [anon_sym_ulong] = ACTIONS(1413), - [anon_sym_int128] = ACTIONS(1413), - [anon_sym_uint128] = ACTIONS(1413), - [anon_sym_float] = ACTIONS(1413), - [anon_sym_double] = ACTIONS(1413), - [anon_sym_float16] = ACTIONS(1413), - [anon_sym_bfloat16] = ACTIONS(1413), - [anon_sym_float128] = ACTIONS(1413), - [anon_sym_iptr] = ACTIONS(1413), - [anon_sym_uptr] = ACTIONS(1413), - [anon_sym_isz] = ACTIONS(1413), - [anon_sym_usz] = ACTIONS(1413), - [anon_sym_anyfault] = ACTIONS(1413), - [anon_sym_any] = ACTIONS(1413), - [anon_sym_DOLLARtypeof] = ACTIONS(1413), - [anon_sym_DOLLARtypefrom] = ACTIONS(1413), - [anon_sym_DOLLARvatype] = ACTIONS(1413), - [anon_sym_DOLLARevaltype] = ACTIONS(1413), - [sym_real_literal] = ACTIONS(1415), + [sym_ct_ident] = ACTIONS(1437), + [sym_at_ident] = ACTIONS(1439), + [sym_hash_ident] = ACTIONS(1439), + [sym_type_ident] = ACTIONS(1439), + [sym_ct_type_ident] = ACTIONS(1439), + [sym_const_ident] = ACTIONS(1437), + [sym_builtin] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_tlocal] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_var] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_defer] = ACTIONS(1437), + [anon_sym_assert] = ACTIONS(1437), + [anon_sym_nextcase] = ACTIONS(1437), + [anon_sym_switch] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1439), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_foreach] = ACTIONS(1437), + [anon_sym_foreach_r] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_do] = ACTIONS(1437), + [anon_sym_int] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_asm] = ACTIONS(1437), + [anon_sym_DOLLARassert] = ACTIONS(1437), + [anon_sym_DOLLARerror] = ACTIONS(1437), + [anon_sym_DOLLARecho] = ACTIONS(1437), + [anon_sym_DOLLARif] = ACTIONS(1437), + [anon_sym_DOLLARendif] = ACTIONS(1437), + [anon_sym_DOLLARswitch] = ACTIONS(1437), + [anon_sym_DOLLARfor] = ACTIONS(1437), + [anon_sym_DOLLARforeach] = ACTIONS(1437), + [anon_sym_DOLLARalignof] = ACTIONS(1437), + [anon_sym_DOLLARextnameof] = ACTIONS(1437), + [anon_sym_DOLLARnameof] = ACTIONS(1437), + [anon_sym_DOLLARoffsetof] = ACTIONS(1437), + [anon_sym_DOLLARqnameof] = ACTIONS(1437), + [anon_sym_DOLLARvaconst] = ACTIONS(1437), + [anon_sym_DOLLARvaarg] = ACTIONS(1437), + [anon_sym_DOLLARvaref] = ACTIONS(1437), + [anon_sym_DOLLARvaexpr] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1437), + [anon_sym_DOLLARvacount] = ACTIONS(1437), + [anon_sym_DOLLAReval] = ACTIONS(1437), + [anon_sym_DOLLARis_const] = ACTIONS(1437), + [anon_sym_DOLLARsizeof] = ACTIONS(1437), + [anon_sym_DOLLARstringify] = ACTIONS(1437), + [anon_sym_DOLLARappend] = ACTIONS(1437), + [anon_sym_DOLLARconcat] = ACTIONS(1437), + [anon_sym_DOLLARdefined] = ACTIONS(1437), + [anon_sym_DOLLARembed] = ACTIONS(1437), + [anon_sym_DOLLARand] = ACTIONS(1437), + [anon_sym_DOLLARor] = ACTIONS(1437), + [anon_sym_DOLLARfeature] = ACTIONS(1437), + [anon_sym_DOLLARassignable] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1439), + [anon_sym_TILDE] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_typeid] = ACTIONS(1437), + [anon_sym_LBRACE_PIPE] = ACTIONS(1439), + [anon_sym_void] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_ichar] = ACTIONS(1437), + [anon_sym_short] = ACTIONS(1437), + [anon_sym_ushort] = ACTIONS(1437), + [anon_sym_uint] = ACTIONS(1437), + [anon_sym_long] = ACTIONS(1437), + [anon_sym_ulong] = ACTIONS(1437), + [anon_sym_int128] = ACTIONS(1437), + [anon_sym_uint128] = ACTIONS(1437), + [anon_sym_float] = ACTIONS(1437), + [anon_sym_double] = ACTIONS(1437), + [anon_sym_float16] = ACTIONS(1437), + [anon_sym_bfloat16] = ACTIONS(1437), + [anon_sym_float128] = ACTIONS(1437), + [anon_sym_iptr] = ACTIONS(1437), + [anon_sym_uptr] = ACTIONS(1437), + [anon_sym_isz] = ACTIONS(1437), + [anon_sym_usz] = ACTIONS(1437), + [anon_sym_anyfault] = ACTIONS(1437), + [anon_sym_any] = ACTIONS(1437), + [anon_sym_DOLLARtypeof] = ACTIONS(1437), + [anon_sym_DOLLARtypefrom] = ACTIONS(1437), + [anon_sym_DOLLARevaltype] = ACTIONS(1437), + [anon_sym_DOLLARvatype] = ACTIONS(1437), + [sym_real_literal] = ACTIONS(1439), }, - [747] = { - [sym_line_comment] = STATE(747), - [sym_doc_comment] = STATE(747), - [sym_block_comment] = STATE(747), - [sym_ident] = ACTIONS(1409), - [sym_integer_literal] = ACTIONS(1411), - [anon_sym_SQUOTE] = ACTIONS(1411), - [anon_sym_DQUOTE] = ACTIONS(1411), - [anon_sym_BQUOTE] = ACTIONS(1411), - [sym_bytes_literal] = ACTIONS(1411), + [728] = { + [sym_line_comment] = STATE(728), + [sym_doc_comment] = STATE(728), + [sym_block_comment] = STATE(728), + [sym_ident] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1455), + [anon_sym_BQUOTE] = ACTIONS(1455), + [sym_bytes_literal] = ACTIONS(1455), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1409), - [sym_at_ident] = ACTIONS(1411), - [sym_hash_ident] = ACTIONS(1411), - [sym_type_ident] = ACTIONS(1411), - [sym_ct_type_ident] = ACTIONS(1411), - [sym_const_ident] = ACTIONS(1409), - [sym_builtin] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_tlocal] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_fn] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_var] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_defer] = ACTIONS(1409), - [anon_sym_assert] = ACTIONS(1409), - [anon_sym_nextcase] = ACTIONS(1409), - [anon_sym_switch] = ACTIONS(1409), - [anon_sym_AMP_AMP] = ACTIONS(1411), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_foreach] = ACTIONS(1409), - [anon_sym_foreach_r] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_do] = ACTIONS(1409), - [anon_sym_int] = ACTIONS(1409), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_asm] = ACTIONS(1409), - [anon_sym_DOLLARassert] = ACTIONS(1409), - [anon_sym_DOLLARerror] = ACTIONS(1409), - [anon_sym_DOLLARecho] = ACTIONS(1409), - [anon_sym_DOLLARif] = ACTIONS(1409), - [anon_sym_DOLLARswitch] = ACTIONS(1409), - [anon_sym_DOLLARfor] = ACTIONS(1409), - [anon_sym_DOLLARendfor] = ACTIONS(1409), - [anon_sym_DOLLARforeach] = ACTIONS(1409), - [anon_sym_DOLLARalignof] = ACTIONS(1409), - [anon_sym_DOLLARextnameof] = ACTIONS(1409), - [anon_sym_DOLLARnameof] = ACTIONS(1409), - [anon_sym_DOLLARoffsetof] = ACTIONS(1409), - [anon_sym_DOLLARqnameof] = ACTIONS(1409), - [anon_sym_DOLLAReval] = ACTIONS(1409), - [anon_sym_DOLLARdefined] = ACTIONS(1409), - [anon_sym_DOLLARsizeof] = ACTIONS(1409), - [anon_sym_DOLLARstringify] = ACTIONS(1409), - [anon_sym_DOLLARis_const] = ACTIONS(1409), - [anon_sym_DOLLARvaconst] = ACTIONS(1409), - [anon_sym_DOLLARvaarg] = ACTIONS(1409), - [anon_sym_DOLLARvaref] = ACTIONS(1409), - [anon_sym_DOLLARvaexpr] = ACTIONS(1409), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_null] = ACTIONS(1409), - [anon_sym_DOLLARvacount] = ACTIONS(1409), - [anon_sym_DOLLARfeature] = ACTIONS(1409), - [anon_sym_DOLLARand] = ACTIONS(1409), - [anon_sym_DOLLARor] = ACTIONS(1409), - [anon_sym_DOLLARassignable] = ACTIONS(1409), - [anon_sym_DOLLARembed] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_TILDE] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1411), - [anon_sym_DASH_DASH] = ACTIONS(1411), - [anon_sym_typeid] = ACTIONS(1409), - [anon_sym_LBRACE_PIPE] = ACTIONS(1411), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_bool] = ACTIONS(1409), - [anon_sym_char] = ACTIONS(1409), - [anon_sym_ichar] = ACTIONS(1409), - [anon_sym_short] = ACTIONS(1409), - [anon_sym_ushort] = ACTIONS(1409), - [anon_sym_uint] = ACTIONS(1409), - [anon_sym_long] = ACTIONS(1409), - [anon_sym_ulong] = ACTIONS(1409), - [anon_sym_int128] = ACTIONS(1409), - [anon_sym_uint128] = ACTIONS(1409), - [anon_sym_float] = ACTIONS(1409), - [anon_sym_double] = ACTIONS(1409), - [anon_sym_float16] = ACTIONS(1409), - [anon_sym_bfloat16] = ACTIONS(1409), - [anon_sym_float128] = ACTIONS(1409), - [anon_sym_iptr] = ACTIONS(1409), - [anon_sym_uptr] = ACTIONS(1409), - [anon_sym_isz] = ACTIONS(1409), - [anon_sym_usz] = ACTIONS(1409), - [anon_sym_anyfault] = ACTIONS(1409), - [anon_sym_any] = ACTIONS(1409), - [anon_sym_DOLLARtypeof] = ACTIONS(1409), - [anon_sym_DOLLARtypefrom] = ACTIONS(1409), - [anon_sym_DOLLARvatype] = ACTIONS(1409), - [anon_sym_DOLLARevaltype] = ACTIONS(1409), - [sym_real_literal] = ACTIONS(1411), + [sym_ct_ident] = ACTIONS(1453), + [sym_at_ident] = ACTIONS(1455), + [sym_hash_ident] = ACTIONS(1455), + [sym_type_ident] = ACTIONS(1455), + [sym_ct_type_ident] = ACTIONS(1455), + [sym_const_ident] = ACTIONS(1453), + [sym_builtin] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_static] = ACTIONS(1453), + [anon_sym_tlocal] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [anon_sym_var] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_defer] = ACTIONS(1453), + [anon_sym_assert] = ACTIONS(1453), + [anon_sym_nextcase] = ACTIONS(1453), + [anon_sym_switch] = ACTIONS(1453), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_foreach] = ACTIONS(1453), + [anon_sym_foreach_r] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_int] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_asm] = ACTIONS(1453), + [anon_sym_DOLLARassert] = ACTIONS(1453), + [anon_sym_DOLLARerror] = ACTIONS(1453), + [anon_sym_DOLLARecho] = ACTIONS(1453), + [anon_sym_DOLLARif] = ACTIONS(1453), + [anon_sym_DOLLARendif] = ACTIONS(1453), + [anon_sym_DOLLARswitch] = ACTIONS(1453), + [anon_sym_DOLLARfor] = ACTIONS(1453), + [anon_sym_DOLLARforeach] = ACTIONS(1453), + [anon_sym_DOLLARalignof] = ACTIONS(1453), + [anon_sym_DOLLARextnameof] = ACTIONS(1453), + [anon_sym_DOLLARnameof] = ACTIONS(1453), + [anon_sym_DOLLARoffsetof] = ACTIONS(1453), + [anon_sym_DOLLARqnameof] = ACTIONS(1453), + [anon_sym_DOLLARvaconst] = ACTIONS(1453), + [anon_sym_DOLLARvaarg] = ACTIONS(1453), + [anon_sym_DOLLARvaref] = ACTIONS(1453), + [anon_sym_DOLLARvaexpr] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1453), + [anon_sym_false] = ACTIONS(1453), + [anon_sym_null] = ACTIONS(1453), + [anon_sym_DOLLARvacount] = ACTIONS(1453), + [anon_sym_DOLLAReval] = ACTIONS(1453), + [anon_sym_DOLLARis_const] = ACTIONS(1453), + [anon_sym_DOLLARsizeof] = ACTIONS(1453), + [anon_sym_DOLLARstringify] = ACTIONS(1453), + [anon_sym_DOLLARappend] = ACTIONS(1453), + [anon_sym_DOLLARconcat] = ACTIONS(1453), + [anon_sym_DOLLARdefined] = ACTIONS(1453), + [anon_sym_DOLLARembed] = ACTIONS(1453), + [anon_sym_DOLLARand] = ACTIONS(1453), + [anon_sym_DOLLARor] = ACTIONS(1453), + [anon_sym_DOLLARfeature] = ACTIONS(1453), + [anon_sym_DOLLARassignable] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_typeid] = ACTIONS(1453), + [anon_sym_LBRACE_PIPE] = ACTIONS(1455), + [anon_sym_void] = ACTIONS(1453), + [anon_sym_bool] = ACTIONS(1453), + [anon_sym_char] = ACTIONS(1453), + [anon_sym_ichar] = ACTIONS(1453), + [anon_sym_short] = ACTIONS(1453), + [anon_sym_ushort] = ACTIONS(1453), + [anon_sym_uint] = ACTIONS(1453), + [anon_sym_long] = ACTIONS(1453), + [anon_sym_ulong] = ACTIONS(1453), + [anon_sym_int128] = ACTIONS(1453), + [anon_sym_uint128] = ACTIONS(1453), + [anon_sym_float] = ACTIONS(1453), + [anon_sym_double] = ACTIONS(1453), + [anon_sym_float16] = ACTIONS(1453), + [anon_sym_bfloat16] = ACTIONS(1453), + [anon_sym_float128] = ACTIONS(1453), + [anon_sym_iptr] = ACTIONS(1453), + [anon_sym_uptr] = ACTIONS(1453), + [anon_sym_isz] = ACTIONS(1453), + [anon_sym_usz] = ACTIONS(1453), + [anon_sym_anyfault] = ACTIONS(1453), + [anon_sym_any] = ACTIONS(1453), + [anon_sym_DOLLARtypeof] = ACTIONS(1453), + [anon_sym_DOLLARtypefrom] = ACTIONS(1453), + [anon_sym_DOLLARevaltype] = ACTIONS(1453), + [anon_sym_DOLLARvatype] = ACTIONS(1453), + [sym_real_literal] = ACTIONS(1455), }, - [748] = { - [sym_line_comment] = STATE(748), - [sym_doc_comment] = STATE(748), - [sym_block_comment] = STATE(748), - [sym_ident] = ACTIONS(1405), - [sym_integer_literal] = ACTIONS(1407), - [anon_sym_SQUOTE] = ACTIONS(1407), - [anon_sym_DQUOTE] = ACTIONS(1407), - [anon_sym_BQUOTE] = ACTIONS(1407), - [sym_bytes_literal] = ACTIONS(1407), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1405), - [sym_at_ident] = ACTIONS(1407), - [sym_hash_ident] = ACTIONS(1407), - [sym_type_ident] = ACTIONS(1407), - [sym_ct_type_ident] = ACTIONS(1407), - [sym_const_ident] = ACTIONS(1405), - [sym_builtin] = ACTIONS(1407), - [anon_sym_LPAREN] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_static] = ACTIONS(1405), - [anon_sym_tlocal] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_fn] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_var] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_defer] = ACTIONS(1405), - [anon_sym_assert] = ACTIONS(1405), - [anon_sym_nextcase] = ACTIONS(1405), - [anon_sym_switch] = ACTIONS(1405), - [anon_sym_AMP_AMP] = ACTIONS(1407), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_foreach] = ACTIONS(1405), - [anon_sym_foreach_r] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_do] = ACTIONS(1405), - [anon_sym_int] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_asm] = ACTIONS(1405), - [anon_sym_DOLLARassert] = ACTIONS(1405), - [anon_sym_DOLLARerror] = ACTIONS(1405), - [anon_sym_DOLLARecho] = ACTIONS(1405), - [anon_sym_DOLLARif] = ACTIONS(1405), - [anon_sym_DOLLARswitch] = ACTIONS(1405), - [anon_sym_DOLLARfor] = ACTIONS(1405), - [anon_sym_DOLLARendfor] = ACTIONS(1405), - [anon_sym_DOLLARforeach] = ACTIONS(1405), - [anon_sym_DOLLARalignof] = ACTIONS(1405), - [anon_sym_DOLLARextnameof] = ACTIONS(1405), - [anon_sym_DOLLARnameof] = ACTIONS(1405), - [anon_sym_DOLLARoffsetof] = ACTIONS(1405), - [anon_sym_DOLLARqnameof] = ACTIONS(1405), - [anon_sym_DOLLAReval] = ACTIONS(1405), - [anon_sym_DOLLARdefined] = ACTIONS(1405), - [anon_sym_DOLLARsizeof] = ACTIONS(1405), - [anon_sym_DOLLARstringify] = ACTIONS(1405), - [anon_sym_DOLLARis_const] = ACTIONS(1405), - [anon_sym_DOLLARvaconst] = ACTIONS(1405), - [anon_sym_DOLLARvaarg] = ACTIONS(1405), - [anon_sym_DOLLARvaref] = ACTIONS(1405), - [anon_sym_DOLLARvaexpr] = ACTIONS(1405), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_null] = ACTIONS(1405), - [anon_sym_DOLLARvacount] = ACTIONS(1405), - [anon_sym_DOLLARfeature] = ACTIONS(1405), - [anon_sym_DOLLARand] = ACTIONS(1405), - [anon_sym_DOLLARor] = ACTIONS(1405), - [anon_sym_DOLLARassignable] = ACTIONS(1405), - [anon_sym_DOLLARembed] = ACTIONS(1405), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_TILDE] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1407), - [anon_sym_DASH_DASH] = ACTIONS(1407), - [anon_sym_typeid] = ACTIONS(1405), - [anon_sym_LBRACE_PIPE] = ACTIONS(1407), - [anon_sym_void] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_char] = ACTIONS(1405), - [anon_sym_ichar] = ACTIONS(1405), - [anon_sym_short] = ACTIONS(1405), - [anon_sym_ushort] = ACTIONS(1405), - [anon_sym_uint] = ACTIONS(1405), - [anon_sym_long] = ACTIONS(1405), - [anon_sym_ulong] = ACTIONS(1405), - [anon_sym_int128] = ACTIONS(1405), - [anon_sym_uint128] = ACTIONS(1405), - [anon_sym_float] = ACTIONS(1405), - [anon_sym_double] = ACTIONS(1405), - [anon_sym_float16] = ACTIONS(1405), - [anon_sym_bfloat16] = ACTIONS(1405), - [anon_sym_float128] = ACTIONS(1405), - [anon_sym_iptr] = ACTIONS(1405), - [anon_sym_uptr] = ACTIONS(1405), - [anon_sym_isz] = ACTIONS(1405), - [anon_sym_usz] = ACTIONS(1405), - [anon_sym_anyfault] = ACTIONS(1405), - [anon_sym_any] = ACTIONS(1405), - [anon_sym_DOLLARtypeof] = ACTIONS(1405), - [anon_sym_DOLLARtypefrom] = ACTIONS(1405), - [anon_sym_DOLLARvatype] = ACTIONS(1405), - [anon_sym_DOLLARevaltype] = ACTIONS(1405), - [sym_real_literal] = ACTIONS(1407), + [729] = { + [sym_line_comment] = STATE(729), + [sym_doc_comment] = STATE(729), + [sym_block_comment] = STATE(729), + [sym_ident] = ACTIONS(1465), + [sym_integer_literal] = ACTIONS(1467), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(1467), + [anon_sym_BQUOTE] = ACTIONS(1467), + [sym_bytes_literal] = ACTIONS(1467), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1465), + [sym_at_ident] = ACTIONS(1467), + [sym_hash_ident] = ACTIONS(1467), + [sym_type_ident] = ACTIONS(1467), + [sym_ct_type_ident] = ACTIONS(1467), + [sym_const_ident] = ACTIONS(1465), + [sym_builtin] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_static] = ACTIONS(1465), + [anon_sym_tlocal] = ACTIONS(1465), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_const] = ACTIONS(1465), + [anon_sym_var] = ACTIONS(1465), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_continue] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1465), + [anon_sym_defer] = ACTIONS(1465), + [anon_sym_assert] = ACTIONS(1465), + [anon_sym_nextcase] = ACTIONS(1465), + [anon_sym_switch] = ACTIONS(1465), + [anon_sym_AMP_AMP] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1465), + [anon_sym_for] = ACTIONS(1465), + [anon_sym_foreach] = ACTIONS(1465), + [anon_sym_foreach_r] = ACTIONS(1465), + [anon_sym_while] = ACTIONS(1465), + [anon_sym_do] = ACTIONS(1465), + [anon_sym_int] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_asm] = ACTIONS(1465), + [anon_sym_DOLLARassert] = ACTIONS(1465), + [anon_sym_DOLLARerror] = ACTIONS(1465), + [anon_sym_DOLLARecho] = ACTIONS(1465), + [anon_sym_DOLLARif] = ACTIONS(1465), + [anon_sym_DOLLARendif] = ACTIONS(1465), + [anon_sym_DOLLARswitch] = ACTIONS(1465), + [anon_sym_DOLLARfor] = ACTIONS(1465), + [anon_sym_DOLLARforeach] = ACTIONS(1465), + [anon_sym_DOLLARalignof] = ACTIONS(1465), + [anon_sym_DOLLARextnameof] = ACTIONS(1465), + [anon_sym_DOLLARnameof] = ACTIONS(1465), + [anon_sym_DOLLARoffsetof] = ACTIONS(1465), + [anon_sym_DOLLARqnameof] = ACTIONS(1465), + [anon_sym_DOLLARvaconst] = ACTIONS(1465), + [anon_sym_DOLLARvaarg] = ACTIONS(1465), + [anon_sym_DOLLARvaref] = ACTIONS(1465), + [anon_sym_DOLLARvaexpr] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1465), + [anon_sym_false] = ACTIONS(1465), + [anon_sym_null] = ACTIONS(1465), + [anon_sym_DOLLARvacount] = ACTIONS(1465), + [anon_sym_DOLLAReval] = ACTIONS(1465), + [anon_sym_DOLLARis_const] = ACTIONS(1465), + [anon_sym_DOLLARsizeof] = ACTIONS(1465), + [anon_sym_DOLLARstringify] = ACTIONS(1465), + [anon_sym_DOLLARappend] = ACTIONS(1465), + [anon_sym_DOLLARconcat] = ACTIONS(1465), + [anon_sym_DOLLARdefined] = ACTIONS(1465), + [anon_sym_DOLLARembed] = ACTIONS(1465), + [anon_sym_DOLLARand] = ACTIONS(1465), + [anon_sym_DOLLARor] = ACTIONS(1465), + [anon_sym_DOLLARfeature] = ACTIONS(1465), + [anon_sym_DOLLARassignable] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_TILDE] = ACTIONS(1467), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_DASH_DASH] = ACTIONS(1467), + [anon_sym_typeid] = ACTIONS(1465), + [anon_sym_LBRACE_PIPE] = ACTIONS(1467), + [anon_sym_void] = ACTIONS(1465), + [anon_sym_bool] = ACTIONS(1465), + [anon_sym_char] = ACTIONS(1465), + [anon_sym_ichar] = ACTIONS(1465), + [anon_sym_short] = ACTIONS(1465), + [anon_sym_ushort] = ACTIONS(1465), + [anon_sym_uint] = ACTIONS(1465), + [anon_sym_long] = ACTIONS(1465), + [anon_sym_ulong] = ACTIONS(1465), + [anon_sym_int128] = ACTIONS(1465), + [anon_sym_uint128] = ACTIONS(1465), + [anon_sym_float] = ACTIONS(1465), + [anon_sym_double] = ACTIONS(1465), + [anon_sym_float16] = ACTIONS(1465), + [anon_sym_bfloat16] = ACTIONS(1465), + [anon_sym_float128] = ACTIONS(1465), + [anon_sym_iptr] = ACTIONS(1465), + [anon_sym_uptr] = ACTIONS(1465), + [anon_sym_isz] = ACTIONS(1465), + [anon_sym_usz] = ACTIONS(1465), + [anon_sym_anyfault] = ACTIONS(1465), + [anon_sym_any] = ACTIONS(1465), + [anon_sym_DOLLARtypeof] = ACTIONS(1465), + [anon_sym_DOLLARtypefrom] = ACTIONS(1465), + [anon_sym_DOLLARevaltype] = ACTIONS(1465), + [anon_sym_DOLLARvatype] = ACTIONS(1465), + [sym_real_literal] = ACTIONS(1467), }, - [749] = { - [sym_line_comment] = STATE(749), - [sym_doc_comment] = STATE(749), - [sym_block_comment] = STATE(749), - [sym_ident] = ACTIONS(1583), - [sym_integer_literal] = ACTIONS(1585), - [anon_sym_SQUOTE] = ACTIONS(1585), - [anon_sym_DQUOTE] = ACTIONS(1585), - [anon_sym_BQUOTE] = ACTIONS(1585), - [sym_bytes_literal] = ACTIONS(1585), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1583), - [sym_at_ident] = ACTIONS(1585), - [sym_hash_ident] = ACTIONS(1585), - [sym_type_ident] = ACTIONS(1585), - [sym_ct_type_ident] = ACTIONS(1585), - [sym_const_ident] = ACTIONS(1583), - [sym_builtin] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_static] = ACTIONS(1583), - [anon_sym_tlocal] = ACTIONS(1583), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_fn] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1583), - [anon_sym_const] = ACTIONS(1583), - [anon_sym_var] = ACTIONS(1583), - [anon_sym_return] = ACTIONS(1583), - [anon_sym_continue] = ACTIONS(1583), - [anon_sym_break] = ACTIONS(1583), - [anon_sym_defer] = ACTIONS(1583), - [anon_sym_assert] = ACTIONS(1583), - [anon_sym_nextcase] = ACTIONS(1583), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1585), - [anon_sym_if] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1583), - [anon_sym_foreach] = ACTIONS(1583), - [anon_sym_foreach_r] = ACTIONS(1583), - [anon_sym_while] = ACTIONS(1583), - [anon_sym_do] = ACTIONS(1583), - [anon_sym_int] = ACTIONS(1583), - [anon_sym_PLUS] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1585), - [anon_sym_asm] = ACTIONS(1583), - [anon_sym_DOLLARassert] = ACTIONS(1583), - [anon_sym_DOLLARerror] = ACTIONS(1583), - [anon_sym_DOLLARecho] = ACTIONS(1583), - [anon_sym_DOLLARif] = ACTIONS(1583), - [anon_sym_DOLLARswitch] = ACTIONS(1583), - [anon_sym_DOLLARfor] = ACTIONS(1583), - [anon_sym_DOLLARforeach] = ACTIONS(1583), - [anon_sym_DOLLARendforeach] = ACTIONS(1583), - [anon_sym_DOLLARalignof] = ACTIONS(1583), - [anon_sym_DOLLARextnameof] = ACTIONS(1583), - [anon_sym_DOLLARnameof] = ACTIONS(1583), - [anon_sym_DOLLARoffsetof] = ACTIONS(1583), - [anon_sym_DOLLARqnameof] = ACTIONS(1583), - [anon_sym_DOLLAReval] = ACTIONS(1583), - [anon_sym_DOLLARdefined] = ACTIONS(1583), - [anon_sym_DOLLARsizeof] = ACTIONS(1583), - [anon_sym_DOLLARstringify] = ACTIONS(1583), - [anon_sym_DOLLARis_const] = ACTIONS(1583), - [anon_sym_DOLLARvaconst] = ACTIONS(1583), - [anon_sym_DOLLARvaarg] = ACTIONS(1583), - [anon_sym_DOLLARvaref] = ACTIONS(1583), - [anon_sym_DOLLARvaexpr] = ACTIONS(1583), - [anon_sym_true] = ACTIONS(1583), - [anon_sym_false] = ACTIONS(1583), - [anon_sym_null] = ACTIONS(1583), - [anon_sym_DOLLARvacount] = ACTIONS(1583), - [anon_sym_DOLLARfeature] = ACTIONS(1583), - [anon_sym_DOLLARand] = ACTIONS(1583), - [anon_sym_DOLLARor] = ACTIONS(1583), - [anon_sym_DOLLARassignable] = ACTIONS(1583), - [anon_sym_DOLLARembed] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1585), - [anon_sym_TILDE] = ACTIONS(1585), - [anon_sym_PLUS_PLUS] = ACTIONS(1585), - [anon_sym_DASH_DASH] = ACTIONS(1585), - [anon_sym_typeid] = ACTIONS(1583), - [anon_sym_LBRACE_PIPE] = ACTIONS(1585), - [anon_sym_void] = ACTIONS(1583), - [anon_sym_bool] = ACTIONS(1583), - [anon_sym_char] = ACTIONS(1583), - [anon_sym_ichar] = ACTIONS(1583), - [anon_sym_short] = ACTIONS(1583), - [anon_sym_ushort] = ACTIONS(1583), - [anon_sym_uint] = ACTIONS(1583), - [anon_sym_long] = ACTIONS(1583), - [anon_sym_ulong] = ACTIONS(1583), - [anon_sym_int128] = ACTIONS(1583), - [anon_sym_uint128] = ACTIONS(1583), - [anon_sym_float] = ACTIONS(1583), - [anon_sym_double] = ACTIONS(1583), - [anon_sym_float16] = ACTIONS(1583), - [anon_sym_bfloat16] = ACTIONS(1583), - [anon_sym_float128] = ACTIONS(1583), - [anon_sym_iptr] = ACTIONS(1583), - [anon_sym_uptr] = ACTIONS(1583), - [anon_sym_isz] = ACTIONS(1583), - [anon_sym_usz] = ACTIONS(1583), - [anon_sym_anyfault] = ACTIONS(1583), - [anon_sym_any] = ACTIONS(1583), - [anon_sym_DOLLARtypeof] = ACTIONS(1583), - [anon_sym_DOLLARtypefrom] = ACTIONS(1583), - [anon_sym_DOLLARvatype] = ACTIONS(1583), - [anon_sym_DOLLARevaltype] = ACTIONS(1583), - [sym_real_literal] = ACTIONS(1585), + [730] = { + [sym_line_comment] = STATE(730), + [sym_doc_comment] = STATE(730), + [sym_block_comment] = STATE(730), + [sym_ident] = ACTIONS(1469), + [sym_integer_literal] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1471), + [anon_sym_BQUOTE] = ACTIONS(1471), + [sym_bytes_literal] = ACTIONS(1471), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1469), + [sym_at_ident] = ACTIONS(1471), + [sym_hash_ident] = ACTIONS(1471), + [sym_type_ident] = ACTIONS(1471), + [sym_ct_type_ident] = ACTIONS(1471), + [sym_const_ident] = ACTIONS(1469), + [sym_builtin] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_tlocal] = ACTIONS(1469), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_fn] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_const] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_defer] = ACTIONS(1469), + [anon_sym_assert] = ACTIONS(1469), + [anon_sym_nextcase] = ACTIONS(1469), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_foreach] = ACTIONS(1469), + [anon_sym_foreach_r] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_int] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_asm] = ACTIONS(1469), + [anon_sym_DOLLARassert] = ACTIONS(1469), + [anon_sym_DOLLARerror] = ACTIONS(1469), + [anon_sym_DOLLARecho] = ACTIONS(1469), + [anon_sym_DOLLARif] = ACTIONS(1469), + [anon_sym_DOLLARendif] = ACTIONS(1469), + [anon_sym_DOLLARswitch] = ACTIONS(1469), + [anon_sym_DOLLARfor] = ACTIONS(1469), + [anon_sym_DOLLARforeach] = ACTIONS(1469), + [anon_sym_DOLLARalignof] = ACTIONS(1469), + [anon_sym_DOLLARextnameof] = ACTIONS(1469), + [anon_sym_DOLLARnameof] = ACTIONS(1469), + [anon_sym_DOLLARoffsetof] = ACTIONS(1469), + [anon_sym_DOLLARqnameof] = ACTIONS(1469), + [anon_sym_DOLLARvaconst] = ACTIONS(1469), + [anon_sym_DOLLARvaarg] = ACTIONS(1469), + [anon_sym_DOLLARvaref] = ACTIONS(1469), + [anon_sym_DOLLARvaexpr] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_DOLLARvacount] = ACTIONS(1469), + [anon_sym_DOLLAReval] = ACTIONS(1469), + [anon_sym_DOLLARis_const] = ACTIONS(1469), + [anon_sym_DOLLARsizeof] = ACTIONS(1469), + [anon_sym_DOLLARstringify] = ACTIONS(1469), + [anon_sym_DOLLARappend] = ACTIONS(1469), + [anon_sym_DOLLARconcat] = ACTIONS(1469), + [anon_sym_DOLLARdefined] = ACTIONS(1469), + [anon_sym_DOLLARembed] = ACTIONS(1469), + [anon_sym_DOLLARand] = ACTIONS(1469), + [anon_sym_DOLLARor] = ACTIONS(1469), + [anon_sym_DOLLARfeature] = ACTIONS(1469), + [anon_sym_DOLLARassignable] = ACTIONS(1469), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_typeid] = ACTIONS(1469), + [anon_sym_LBRACE_PIPE] = ACTIONS(1471), + [anon_sym_void] = ACTIONS(1469), + [anon_sym_bool] = ACTIONS(1469), + [anon_sym_char] = ACTIONS(1469), + [anon_sym_ichar] = ACTIONS(1469), + [anon_sym_short] = ACTIONS(1469), + [anon_sym_ushort] = ACTIONS(1469), + [anon_sym_uint] = ACTIONS(1469), + [anon_sym_long] = ACTIONS(1469), + [anon_sym_ulong] = ACTIONS(1469), + [anon_sym_int128] = ACTIONS(1469), + [anon_sym_uint128] = ACTIONS(1469), + [anon_sym_float] = ACTIONS(1469), + [anon_sym_double] = ACTIONS(1469), + [anon_sym_float16] = ACTIONS(1469), + [anon_sym_bfloat16] = ACTIONS(1469), + [anon_sym_float128] = ACTIONS(1469), + [anon_sym_iptr] = ACTIONS(1469), + [anon_sym_uptr] = ACTIONS(1469), + [anon_sym_isz] = ACTIONS(1469), + [anon_sym_usz] = ACTIONS(1469), + [anon_sym_anyfault] = ACTIONS(1469), + [anon_sym_any] = ACTIONS(1469), + [anon_sym_DOLLARtypeof] = ACTIONS(1469), + [anon_sym_DOLLARtypefrom] = ACTIONS(1469), + [anon_sym_DOLLARevaltype] = ACTIONS(1469), + [anon_sym_DOLLARvatype] = ACTIONS(1469), + [sym_real_literal] = ACTIONS(1471), }, - [750] = { - [sym_line_comment] = STATE(750), - [sym_doc_comment] = STATE(750), - [sym_block_comment] = STATE(750), - [sym_ident] = ACTIONS(1567), - [sym_integer_literal] = ACTIONS(1569), - [anon_sym_SQUOTE] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(1569), - [anon_sym_BQUOTE] = ACTIONS(1569), - [sym_bytes_literal] = ACTIONS(1569), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1567), - [sym_at_ident] = ACTIONS(1569), - [sym_hash_ident] = ACTIONS(1569), - [sym_type_ident] = ACTIONS(1569), - [sym_ct_type_ident] = ACTIONS(1569), - [sym_const_ident] = ACTIONS(1567), - [sym_builtin] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_AMP] = ACTIONS(1567), - [anon_sym_static] = ACTIONS(1567), - [anon_sym_tlocal] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1569), - [anon_sym_fn] = ACTIONS(1567), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_const] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(1567), - [anon_sym_return] = ACTIONS(1567), - [anon_sym_continue] = ACTIONS(1567), - [anon_sym_break] = ACTIONS(1567), - [anon_sym_defer] = ACTIONS(1567), - [anon_sym_assert] = ACTIONS(1567), - [anon_sym_nextcase] = ACTIONS(1567), - [anon_sym_switch] = ACTIONS(1567), - [anon_sym_AMP_AMP] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1567), - [anon_sym_for] = ACTIONS(1567), - [anon_sym_foreach] = ACTIONS(1567), - [anon_sym_foreach_r] = ACTIONS(1567), - [anon_sym_while] = ACTIONS(1567), - [anon_sym_do] = ACTIONS(1567), - [anon_sym_int] = ACTIONS(1567), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), - [anon_sym_STAR] = ACTIONS(1569), - [anon_sym_asm] = ACTIONS(1567), - [anon_sym_DOLLARassert] = ACTIONS(1567), - [anon_sym_DOLLARerror] = ACTIONS(1567), - [anon_sym_DOLLARecho] = ACTIONS(1567), - [anon_sym_DOLLARif] = ACTIONS(1567), - [anon_sym_DOLLARswitch] = ACTIONS(1567), - [anon_sym_DOLLARfor] = ACTIONS(1567), - [anon_sym_DOLLARforeach] = ACTIONS(1567), - [anon_sym_DOLLARendforeach] = ACTIONS(1567), - [anon_sym_DOLLARalignof] = ACTIONS(1567), - [anon_sym_DOLLARextnameof] = ACTIONS(1567), - [anon_sym_DOLLARnameof] = ACTIONS(1567), - [anon_sym_DOLLARoffsetof] = ACTIONS(1567), - [anon_sym_DOLLARqnameof] = ACTIONS(1567), - [anon_sym_DOLLAReval] = ACTIONS(1567), - [anon_sym_DOLLARdefined] = ACTIONS(1567), - [anon_sym_DOLLARsizeof] = ACTIONS(1567), - [anon_sym_DOLLARstringify] = ACTIONS(1567), - [anon_sym_DOLLARis_const] = ACTIONS(1567), - [anon_sym_DOLLARvaconst] = ACTIONS(1567), - [anon_sym_DOLLARvaarg] = ACTIONS(1567), - [anon_sym_DOLLARvaref] = ACTIONS(1567), - [anon_sym_DOLLARvaexpr] = ACTIONS(1567), - [anon_sym_true] = ACTIONS(1567), - [anon_sym_false] = ACTIONS(1567), - [anon_sym_null] = ACTIONS(1567), - [anon_sym_DOLLARvacount] = ACTIONS(1567), - [anon_sym_DOLLARfeature] = ACTIONS(1567), - [anon_sym_DOLLARand] = ACTIONS(1567), - [anon_sym_DOLLARor] = ACTIONS(1567), - [anon_sym_DOLLARassignable] = ACTIONS(1567), - [anon_sym_DOLLARembed] = ACTIONS(1567), - [anon_sym_BANG] = ACTIONS(1569), - [anon_sym_TILDE] = ACTIONS(1569), - [anon_sym_PLUS_PLUS] = ACTIONS(1569), - [anon_sym_DASH_DASH] = ACTIONS(1569), - [anon_sym_typeid] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_bool] = ACTIONS(1567), - [anon_sym_char] = ACTIONS(1567), - [anon_sym_ichar] = ACTIONS(1567), - [anon_sym_short] = ACTIONS(1567), - [anon_sym_ushort] = ACTIONS(1567), - [anon_sym_uint] = ACTIONS(1567), - [anon_sym_long] = ACTIONS(1567), - [anon_sym_ulong] = ACTIONS(1567), - [anon_sym_int128] = ACTIONS(1567), - [anon_sym_uint128] = ACTIONS(1567), - [anon_sym_float] = ACTIONS(1567), - [anon_sym_double] = ACTIONS(1567), - [anon_sym_float16] = ACTIONS(1567), - [anon_sym_bfloat16] = ACTIONS(1567), - [anon_sym_float128] = ACTIONS(1567), - [anon_sym_iptr] = ACTIONS(1567), - [anon_sym_uptr] = ACTIONS(1567), - [anon_sym_isz] = ACTIONS(1567), - [anon_sym_usz] = ACTIONS(1567), - [anon_sym_anyfault] = ACTIONS(1567), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_DOLLARtypeof] = ACTIONS(1567), - [anon_sym_DOLLARtypefrom] = ACTIONS(1567), - [anon_sym_DOLLARvatype] = ACTIONS(1567), - [anon_sym_DOLLARevaltype] = ACTIONS(1567), - [sym_real_literal] = ACTIONS(1569), + [731] = { + [sym_line_comment] = STATE(731), + [sym_doc_comment] = STATE(731), + [sym_block_comment] = STATE(731), + [sym_ident] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(1511), + [anon_sym_BQUOTE] = ACTIONS(1511), + [sym_bytes_literal] = ACTIONS(1511), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1509), + [sym_at_ident] = ACTIONS(1511), + [sym_hash_ident] = ACTIONS(1511), + [sym_type_ident] = ACTIONS(1511), + [sym_ct_type_ident] = ACTIONS(1511), + [sym_const_ident] = ACTIONS(1509), + [sym_builtin] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_tlocal] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_fn] = ACTIONS(1509), + [anon_sym_LBRACE] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_var] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_defer] = ACTIONS(1509), + [anon_sym_assert] = ACTIONS(1509), + [anon_sym_nextcase] = ACTIONS(1509), + [anon_sym_switch] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1511), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_foreach] = ACTIONS(1509), + [anon_sym_foreach_r] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_do] = ACTIONS(1509), + [anon_sym_int] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1511), + [anon_sym_asm] = ACTIONS(1509), + [anon_sym_DOLLARassert] = ACTIONS(1509), + [anon_sym_DOLLARerror] = ACTIONS(1509), + [anon_sym_DOLLARecho] = ACTIONS(1509), + [anon_sym_DOLLARif] = ACTIONS(1509), + [anon_sym_DOLLARendif] = ACTIONS(1509), + [anon_sym_DOLLARswitch] = ACTIONS(1509), + [anon_sym_DOLLARfor] = ACTIONS(1509), + [anon_sym_DOLLARforeach] = ACTIONS(1509), + [anon_sym_DOLLARalignof] = ACTIONS(1509), + [anon_sym_DOLLARextnameof] = ACTIONS(1509), + [anon_sym_DOLLARnameof] = ACTIONS(1509), + [anon_sym_DOLLARoffsetof] = ACTIONS(1509), + [anon_sym_DOLLARqnameof] = ACTIONS(1509), + [anon_sym_DOLLARvaconst] = ACTIONS(1509), + [anon_sym_DOLLARvaarg] = ACTIONS(1509), + [anon_sym_DOLLARvaref] = ACTIONS(1509), + [anon_sym_DOLLARvaexpr] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_null] = ACTIONS(1509), + [anon_sym_DOLLARvacount] = ACTIONS(1509), + [anon_sym_DOLLAReval] = ACTIONS(1509), + [anon_sym_DOLLARis_const] = ACTIONS(1509), + [anon_sym_DOLLARsizeof] = ACTIONS(1509), + [anon_sym_DOLLARstringify] = ACTIONS(1509), + [anon_sym_DOLLARappend] = ACTIONS(1509), + [anon_sym_DOLLARconcat] = ACTIONS(1509), + [anon_sym_DOLLARdefined] = ACTIONS(1509), + [anon_sym_DOLLARembed] = ACTIONS(1509), + [anon_sym_DOLLARand] = ACTIONS(1509), + [anon_sym_DOLLARor] = ACTIONS(1509), + [anon_sym_DOLLARfeature] = ACTIONS(1509), + [anon_sym_DOLLARassignable] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1511), + [anon_sym_TILDE] = ACTIONS(1511), + [anon_sym_PLUS_PLUS] = ACTIONS(1511), + [anon_sym_DASH_DASH] = ACTIONS(1511), + [anon_sym_typeid] = ACTIONS(1509), + [anon_sym_LBRACE_PIPE] = ACTIONS(1511), + [anon_sym_void] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_ichar] = ACTIONS(1509), + [anon_sym_short] = ACTIONS(1509), + [anon_sym_ushort] = ACTIONS(1509), + [anon_sym_uint] = ACTIONS(1509), + [anon_sym_long] = ACTIONS(1509), + [anon_sym_ulong] = ACTIONS(1509), + [anon_sym_int128] = ACTIONS(1509), + [anon_sym_uint128] = ACTIONS(1509), + [anon_sym_float] = ACTIONS(1509), + [anon_sym_double] = ACTIONS(1509), + [anon_sym_float16] = ACTIONS(1509), + [anon_sym_bfloat16] = ACTIONS(1509), + [anon_sym_float128] = ACTIONS(1509), + [anon_sym_iptr] = ACTIONS(1509), + [anon_sym_uptr] = ACTIONS(1509), + [anon_sym_isz] = ACTIONS(1509), + [anon_sym_usz] = ACTIONS(1509), + [anon_sym_anyfault] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_DOLLARtypeof] = ACTIONS(1509), + [anon_sym_DOLLARtypefrom] = ACTIONS(1509), + [anon_sym_DOLLARevaltype] = ACTIONS(1509), + [anon_sym_DOLLARvatype] = ACTIONS(1509), + [sym_real_literal] = ACTIONS(1511), }, - [751] = { - [sym_line_comment] = STATE(751), - [sym_doc_comment] = STATE(751), - [sym_block_comment] = STATE(751), - [sym_ident] = ACTIONS(1559), - [sym_integer_literal] = ACTIONS(1561), - [anon_sym_SQUOTE] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_BQUOTE] = ACTIONS(1561), - [sym_bytes_literal] = ACTIONS(1561), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1559), - [sym_at_ident] = ACTIONS(1561), - [sym_hash_ident] = ACTIONS(1561), - [sym_type_ident] = ACTIONS(1561), - [sym_ct_type_ident] = ACTIONS(1561), - [sym_const_ident] = ACTIONS(1559), - [sym_builtin] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_static] = ACTIONS(1559), - [anon_sym_tlocal] = ACTIONS(1559), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_fn] = ACTIONS(1559), - [anon_sym_LBRACE] = ACTIONS(1559), - [anon_sym_const] = ACTIONS(1559), - [anon_sym_var] = ACTIONS(1559), - [anon_sym_return] = ACTIONS(1559), - [anon_sym_continue] = ACTIONS(1559), - [anon_sym_break] = ACTIONS(1559), - [anon_sym_defer] = ACTIONS(1559), - [anon_sym_assert] = ACTIONS(1559), - [anon_sym_nextcase] = ACTIONS(1559), - [anon_sym_switch] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_for] = ACTIONS(1559), - [anon_sym_foreach] = ACTIONS(1559), - [anon_sym_foreach_r] = ACTIONS(1559), - [anon_sym_while] = ACTIONS(1559), - [anon_sym_do] = ACTIONS(1559), - [anon_sym_int] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_STAR] = ACTIONS(1561), - [anon_sym_asm] = ACTIONS(1559), - [anon_sym_DOLLARassert] = ACTIONS(1559), - [anon_sym_DOLLARerror] = ACTIONS(1559), - [anon_sym_DOLLARecho] = ACTIONS(1559), - [anon_sym_DOLLARif] = ACTIONS(1559), - [anon_sym_DOLLARswitch] = ACTIONS(1559), - [anon_sym_DOLLARfor] = ACTIONS(1559), - [anon_sym_DOLLARforeach] = ACTIONS(1559), - [anon_sym_DOLLARendforeach] = ACTIONS(1559), - [anon_sym_DOLLARalignof] = ACTIONS(1559), - [anon_sym_DOLLARextnameof] = ACTIONS(1559), - [anon_sym_DOLLARnameof] = ACTIONS(1559), - [anon_sym_DOLLARoffsetof] = ACTIONS(1559), - [anon_sym_DOLLARqnameof] = ACTIONS(1559), - [anon_sym_DOLLAReval] = ACTIONS(1559), - [anon_sym_DOLLARdefined] = ACTIONS(1559), - [anon_sym_DOLLARsizeof] = ACTIONS(1559), - [anon_sym_DOLLARstringify] = ACTIONS(1559), - [anon_sym_DOLLARis_const] = ACTIONS(1559), - [anon_sym_DOLLARvaconst] = ACTIONS(1559), - [anon_sym_DOLLARvaarg] = ACTIONS(1559), - [anon_sym_DOLLARvaref] = ACTIONS(1559), - [anon_sym_DOLLARvaexpr] = ACTIONS(1559), - [anon_sym_true] = ACTIONS(1559), - [anon_sym_false] = ACTIONS(1559), - [anon_sym_null] = ACTIONS(1559), - [anon_sym_DOLLARvacount] = ACTIONS(1559), - [anon_sym_DOLLARfeature] = ACTIONS(1559), - [anon_sym_DOLLARand] = ACTIONS(1559), - [anon_sym_DOLLARor] = ACTIONS(1559), - [anon_sym_DOLLARassignable] = ACTIONS(1559), - [anon_sym_DOLLARembed] = ACTIONS(1559), - [anon_sym_BANG] = ACTIONS(1561), - [anon_sym_TILDE] = ACTIONS(1561), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_DASH_DASH] = ACTIONS(1561), - [anon_sym_typeid] = ACTIONS(1559), - [anon_sym_LBRACE_PIPE] = ACTIONS(1561), - [anon_sym_void] = ACTIONS(1559), - [anon_sym_bool] = ACTIONS(1559), - [anon_sym_char] = ACTIONS(1559), - [anon_sym_ichar] = ACTIONS(1559), - [anon_sym_short] = ACTIONS(1559), - [anon_sym_ushort] = ACTIONS(1559), - [anon_sym_uint] = ACTIONS(1559), - [anon_sym_long] = ACTIONS(1559), - [anon_sym_ulong] = ACTIONS(1559), - [anon_sym_int128] = ACTIONS(1559), - [anon_sym_uint128] = ACTIONS(1559), - [anon_sym_float] = ACTIONS(1559), - [anon_sym_double] = ACTIONS(1559), - [anon_sym_float16] = ACTIONS(1559), - [anon_sym_bfloat16] = ACTIONS(1559), - [anon_sym_float128] = ACTIONS(1559), - [anon_sym_iptr] = ACTIONS(1559), - [anon_sym_uptr] = ACTIONS(1559), - [anon_sym_isz] = ACTIONS(1559), - [anon_sym_usz] = ACTIONS(1559), - [anon_sym_anyfault] = ACTIONS(1559), - [anon_sym_any] = ACTIONS(1559), - [anon_sym_DOLLARtypeof] = ACTIONS(1559), - [anon_sym_DOLLARtypefrom] = ACTIONS(1559), - [anon_sym_DOLLARvatype] = ACTIONS(1559), - [anon_sym_DOLLARevaltype] = ACTIONS(1559), - [sym_real_literal] = ACTIONS(1561), + [732] = { + [sym_line_comment] = STATE(732), + [sym_doc_comment] = STATE(732), + [sym_block_comment] = STATE(732), + [sym_ident] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_DQUOTE] = ACTIONS(1515), + [anon_sym_BQUOTE] = ACTIONS(1515), + [sym_bytes_literal] = ACTIONS(1515), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1513), + [sym_at_ident] = ACTIONS(1515), + [sym_hash_ident] = ACTIONS(1515), + [sym_type_ident] = ACTIONS(1515), + [sym_ct_type_ident] = ACTIONS(1515), + [sym_const_ident] = ACTIONS(1513), + [sym_builtin] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_tlocal] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_fn] = ACTIONS(1513), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_var] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_defer] = ACTIONS(1513), + [anon_sym_assert] = ACTIONS(1513), + [anon_sym_nextcase] = ACTIONS(1513), + [anon_sym_switch] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_foreach] = ACTIONS(1513), + [anon_sym_foreach_r] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_do] = ACTIONS(1513), + [anon_sym_int] = ACTIONS(1513), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_asm] = ACTIONS(1513), + [anon_sym_DOLLARassert] = ACTIONS(1513), + [anon_sym_DOLLARerror] = ACTIONS(1513), + [anon_sym_DOLLARecho] = ACTIONS(1513), + [anon_sym_DOLLARif] = ACTIONS(1513), + [anon_sym_DOLLARendif] = ACTIONS(1513), + [anon_sym_DOLLARswitch] = ACTIONS(1513), + [anon_sym_DOLLARfor] = ACTIONS(1513), + [anon_sym_DOLLARforeach] = ACTIONS(1513), + [anon_sym_DOLLARalignof] = ACTIONS(1513), + [anon_sym_DOLLARextnameof] = ACTIONS(1513), + [anon_sym_DOLLARnameof] = ACTIONS(1513), + [anon_sym_DOLLARoffsetof] = ACTIONS(1513), + [anon_sym_DOLLARqnameof] = ACTIONS(1513), + [anon_sym_DOLLARvaconst] = ACTIONS(1513), + [anon_sym_DOLLARvaarg] = ACTIONS(1513), + [anon_sym_DOLLARvaref] = ACTIONS(1513), + [anon_sym_DOLLARvaexpr] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_null] = ACTIONS(1513), + [anon_sym_DOLLARvacount] = ACTIONS(1513), + [anon_sym_DOLLAReval] = ACTIONS(1513), + [anon_sym_DOLLARis_const] = ACTIONS(1513), + [anon_sym_DOLLARsizeof] = ACTIONS(1513), + [anon_sym_DOLLARstringify] = ACTIONS(1513), + [anon_sym_DOLLARappend] = ACTIONS(1513), + [anon_sym_DOLLARconcat] = ACTIONS(1513), + [anon_sym_DOLLARdefined] = ACTIONS(1513), + [anon_sym_DOLLARembed] = ACTIONS(1513), + [anon_sym_DOLLARand] = ACTIONS(1513), + [anon_sym_DOLLARor] = ACTIONS(1513), + [anon_sym_DOLLARfeature] = ACTIONS(1513), + [anon_sym_DOLLARassignable] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_TILDE] = ACTIONS(1515), + [anon_sym_PLUS_PLUS] = ACTIONS(1515), + [anon_sym_DASH_DASH] = ACTIONS(1515), + [anon_sym_typeid] = ACTIONS(1513), + [anon_sym_LBRACE_PIPE] = ACTIONS(1515), + [anon_sym_void] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_ichar] = ACTIONS(1513), + [anon_sym_short] = ACTIONS(1513), + [anon_sym_ushort] = ACTIONS(1513), + [anon_sym_uint] = ACTIONS(1513), + [anon_sym_long] = ACTIONS(1513), + [anon_sym_ulong] = ACTIONS(1513), + [anon_sym_int128] = ACTIONS(1513), + [anon_sym_uint128] = ACTIONS(1513), + [anon_sym_float] = ACTIONS(1513), + [anon_sym_double] = ACTIONS(1513), + [anon_sym_float16] = ACTIONS(1513), + [anon_sym_bfloat16] = ACTIONS(1513), + [anon_sym_float128] = ACTIONS(1513), + [anon_sym_iptr] = ACTIONS(1513), + [anon_sym_uptr] = ACTIONS(1513), + [anon_sym_isz] = ACTIONS(1513), + [anon_sym_usz] = ACTIONS(1513), + [anon_sym_anyfault] = ACTIONS(1513), + [anon_sym_any] = ACTIONS(1513), + [anon_sym_DOLLARtypeof] = ACTIONS(1513), + [anon_sym_DOLLARtypefrom] = ACTIONS(1513), + [anon_sym_DOLLARevaltype] = ACTIONS(1513), + [anon_sym_DOLLARvatype] = ACTIONS(1513), + [sym_real_literal] = ACTIONS(1515), }, - [752] = { - [sym_line_comment] = STATE(752), - [sym_doc_comment] = STATE(752), - [sym_block_comment] = STATE(752), - [sym_ident] = ACTIONS(1555), - [sym_integer_literal] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_BQUOTE] = ACTIONS(1557), - [sym_bytes_literal] = ACTIONS(1557), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1555), - [sym_at_ident] = ACTIONS(1557), - [sym_hash_ident] = ACTIONS(1557), - [sym_type_ident] = ACTIONS(1557), - [sym_ct_type_ident] = ACTIONS(1557), - [sym_const_ident] = ACTIONS(1555), - [sym_builtin] = ACTIONS(1557), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_AMP] = ACTIONS(1555), - [anon_sym_static] = ACTIONS(1555), - [anon_sym_tlocal] = ACTIONS(1555), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_fn] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_const] = ACTIONS(1555), - [anon_sym_var] = ACTIONS(1555), - [anon_sym_return] = ACTIONS(1555), - [anon_sym_continue] = ACTIONS(1555), - [anon_sym_break] = ACTIONS(1555), - [anon_sym_defer] = ACTIONS(1555), - [anon_sym_assert] = ACTIONS(1555), - [anon_sym_nextcase] = ACTIONS(1555), - [anon_sym_switch] = ACTIONS(1555), - [anon_sym_AMP_AMP] = ACTIONS(1557), - [anon_sym_if] = ACTIONS(1555), - [anon_sym_for] = ACTIONS(1555), - [anon_sym_foreach] = ACTIONS(1555), - [anon_sym_foreach_r] = ACTIONS(1555), - [anon_sym_while] = ACTIONS(1555), - [anon_sym_do] = ACTIONS(1555), - [anon_sym_int] = ACTIONS(1555), - [anon_sym_PLUS] = ACTIONS(1555), - [anon_sym_DASH] = ACTIONS(1555), - [anon_sym_STAR] = ACTIONS(1557), - [anon_sym_asm] = ACTIONS(1555), - [anon_sym_DOLLARassert] = ACTIONS(1555), - [anon_sym_DOLLARerror] = ACTIONS(1555), - [anon_sym_DOLLARecho] = ACTIONS(1555), - [anon_sym_DOLLARif] = ACTIONS(1555), - [anon_sym_DOLLARswitch] = ACTIONS(1555), - [anon_sym_DOLLARfor] = ACTIONS(1555), - [anon_sym_DOLLARforeach] = ACTIONS(1555), - [anon_sym_DOLLARendforeach] = ACTIONS(1555), - [anon_sym_DOLLARalignof] = ACTIONS(1555), - [anon_sym_DOLLARextnameof] = ACTIONS(1555), - [anon_sym_DOLLARnameof] = ACTIONS(1555), - [anon_sym_DOLLARoffsetof] = ACTIONS(1555), - [anon_sym_DOLLARqnameof] = ACTIONS(1555), - [anon_sym_DOLLAReval] = ACTIONS(1555), - [anon_sym_DOLLARdefined] = ACTIONS(1555), - [anon_sym_DOLLARsizeof] = ACTIONS(1555), - [anon_sym_DOLLARstringify] = ACTIONS(1555), - [anon_sym_DOLLARis_const] = ACTIONS(1555), - [anon_sym_DOLLARvaconst] = ACTIONS(1555), - [anon_sym_DOLLARvaarg] = ACTIONS(1555), - [anon_sym_DOLLARvaref] = ACTIONS(1555), - [anon_sym_DOLLARvaexpr] = ACTIONS(1555), - [anon_sym_true] = ACTIONS(1555), - [anon_sym_false] = ACTIONS(1555), - [anon_sym_null] = ACTIONS(1555), - [anon_sym_DOLLARvacount] = ACTIONS(1555), - [anon_sym_DOLLARfeature] = ACTIONS(1555), - [anon_sym_DOLLARand] = ACTIONS(1555), - [anon_sym_DOLLARor] = ACTIONS(1555), - [anon_sym_DOLLARassignable] = ACTIONS(1555), - [anon_sym_DOLLARembed] = ACTIONS(1555), - [anon_sym_BANG] = ACTIONS(1557), - [anon_sym_TILDE] = ACTIONS(1557), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [anon_sym_typeid] = ACTIONS(1555), - [anon_sym_LBRACE_PIPE] = ACTIONS(1557), - [anon_sym_void] = ACTIONS(1555), - [anon_sym_bool] = ACTIONS(1555), - [anon_sym_char] = ACTIONS(1555), - [anon_sym_ichar] = ACTIONS(1555), - [anon_sym_short] = ACTIONS(1555), - [anon_sym_ushort] = ACTIONS(1555), - [anon_sym_uint] = ACTIONS(1555), - [anon_sym_long] = ACTIONS(1555), - [anon_sym_ulong] = ACTIONS(1555), - [anon_sym_int128] = ACTIONS(1555), - [anon_sym_uint128] = ACTIONS(1555), - [anon_sym_float] = ACTIONS(1555), - [anon_sym_double] = ACTIONS(1555), - [anon_sym_float16] = ACTIONS(1555), - [anon_sym_bfloat16] = ACTIONS(1555), - [anon_sym_float128] = ACTIONS(1555), - [anon_sym_iptr] = ACTIONS(1555), - [anon_sym_uptr] = ACTIONS(1555), - [anon_sym_isz] = ACTIONS(1555), - [anon_sym_usz] = ACTIONS(1555), - [anon_sym_anyfault] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1555), - [anon_sym_DOLLARtypeof] = ACTIONS(1555), - [anon_sym_DOLLARtypefrom] = ACTIONS(1555), - [anon_sym_DOLLARvatype] = ACTIONS(1555), - [anon_sym_DOLLARevaltype] = ACTIONS(1555), - [sym_real_literal] = ACTIONS(1557), + [733] = { + [sym_line_comment] = STATE(733), + [sym_doc_comment] = STATE(733), + [sym_block_comment] = STATE(733), + [sym_ident] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_DQUOTE] = ACTIONS(1587), + [anon_sym_BQUOTE] = ACTIONS(1587), + [sym_bytes_literal] = ACTIONS(1587), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1585), + [sym_at_ident] = ACTIONS(1587), + [sym_hash_ident] = ACTIONS(1587), + [sym_type_ident] = ACTIONS(1587), + [sym_ct_type_ident] = ACTIONS(1587), + [sym_const_ident] = ACTIONS(1585), + [sym_builtin] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_tlocal] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_fn] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_var] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_defer] = ACTIONS(1585), + [anon_sym_assert] = ACTIONS(1585), + [anon_sym_nextcase] = ACTIONS(1585), + [anon_sym_switch] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_foreach] = ACTIONS(1585), + [anon_sym_foreach_r] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_do] = ACTIONS(1585), + [anon_sym_int] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1587), + [anon_sym_asm] = ACTIONS(1585), + [anon_sym_DOLLARassert] = ACTIONS(1585), + [anon_sym_DOLLARerror] = ACTIONS(1585), + [anon_sym_DOLLARecho] = ACTIONS(1585), + [anon_sym_DOLLARif] = ACTIONS(1585), + [anon_sym_DOLLARendif] = ACTIONS(1585), + [anon_sym_DOLLARswitch] = ACTIONS(1585), + [anon_sym_DOLLARfor] = ACTIONS(1585), + [anon_sym_DOLLARforeach] = ACTIONS(1585), + [anon_sym_DOLLARalignof] = ACTIONS(1585), + [anon_sym_DOLLARextnameof] = ACTIONS(1585), + [anon_sym_DOLLARnameof] = ACTIONS(1585), + [anon_sym_DOLLARoffsetof] = ACTIONS(1585), + [anon_sym_DOLLARqnameof] = ACTIONS(1585), + [anon_sym_DOLLARvaconst] = ACTIONS(1585), + [anon_sym_DOLLARvaarg] = ACTIONS(1585), + [anon_sym_DOLLARvaref] = ACTIONS(1585), + [anon_sym_DOLLARvaexpr] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_null] = ACTIONS(1585), + [anon_sym_DOLLARvacount] = ACTIONS(1585), + [anon_sym_DOLLAReval] = ACTIONS(1585), + [anon_sym_DOLLARis_const] = ACTIONS(1585), + [anon_sym_DOLLARsizeof] = ACTIONS(1585), + [anon_sym_DOLLARstringify] = ACTIONS(1585), + [anon_sym_DOLLARappend] = ACTIONS(1585), + [anon_sym_DOLLARconcat] = ACTIONS(1585), + [anon_sym_DOLLARdefined] = ACTIONS(1585), + [anon_sym_DOLLARembed] = ACTIONS(1585), + [anon_sym_DOLLARand] = ACTIONS(1585), + [anon_sym_DOLLARor] = ACTIONS(1585), + [anon_sym_DOLLARfeature] = ACTIONS(1585), + [anon_sym_DOLLARassignable] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1587), + [anon_sym_TILDE] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(1587), + [anon_sym_DASH_DASH] = ACTIONS(1587), + [anon_sym_typeid] = ACTIONS(1585), + [anon_sym_LBRACE_PIPE] = ACTIONS(1587), + [anon_sym_void] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_ichar] = ACTIONS(1585), + [anon_sym_short] = ACTIONS(1585), + [anon_sym_ushort] = ACTIONS(1585), + [anon_sym_uint] = ACTIONS(1585), + [anon_sym_long] = ACTIONS(1585), + [anon_sym_ulong] = ACTIONS(1585), + [anon_sym_int128] = ACTIONS(1585), + [anon_sym_uint128] = ACTIONS(1585), + [anon_sym_float] = ACTIONS(1585), + [anon_sym_double] = ACTIONS(1585), + [anon_sym_float16] = ACTIONS(1585), + [anon_sym_bfloat16] = ACTIONS(1585), + [anon_sym_float128] = ACTIONS(1585), + [anon_sym_iptr] = ACTIONS(1585), + [anon_sym_uptr] = ACTIONS(1585), + [anon_sym_isz] = ACTIONS(1585), + [anon_sym_usz] = ACTIONS(1585), + [anon_sym_anyfault] = ACTIONS(1585), + [anon_sym_any] = ACTIONS(1585), + [anon_sym_DOLLARtypeof] = ACTIONS(1585), + [anon_sym_DOLLARtypefrom] = ACTIONS(1585), + [anon_sym_DOLLARevaltype] = ACTIONS(1585), + [anon_sym_DOLLARvatype] = ACTIONS(1585), + [sym_real_literal] = ACTIONS(1587), }, - [753] = { - [sym_line_comment] = STATE(753), - [sym_doc_comment] = STATE(753), - [sym_block_comment] = STATE(753), - [sym_ident] = ACTIONS(1365), - [sym_integer_literal] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(1367), - [anon_sym_BQUOTE] = ACTIONS(1367), - [sym_bytes_literal] = ACTIONS(1367), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1365), - [sym_at_ident] = ACTIONS(1367), - [sym_hash_ident] = ACTIONS(1367), - [sym_type_ident] = ACTIONS(1367), - [sym_ct_type_ident] = ACTIONS(1367), - [sym_const_ident] = ACTIONS(1365), - [sym_builtin] = ACTIONS(1367), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_tlocal] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_fn] = ACTIONS(1365), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_var] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_defer] = ACTIONS(1365), - [anon_sym_assert] = ACTIONS(1365), - [anon_sym_nextcase] = ACTIONS(1365), - [anon_sym_switch] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_foreach] = ACTIONS(1365), - [anon_sym_foreach_r] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_do] = ACTIONS(1365), - [anon_sym_int] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_STAR] = ACTIONS(1367), - [anon_sym_asm] = ACTIONS(1365), - [anon_sym_DOLLARassert] = ACTIONS(1365), - [anon_sym_DOLLARerror] = ACTIONS(1365), - [anon_sym_DOLLARecho] = ACTIONS(1365), - [anon_sym_DOLLARif] = ACTIONS(1365), - [anon_sym_DOLLARswitch] = ACTIONS(1365), - [anon_sym_DOLLARfor] = ACTIONS(1365), - [anon_sym_DOLLARforeach] = ACTIONS(1365), - [anon_sym_DOLLARendforeach] = ACTIONS(1365), - [anon_sym_DOLLARalignof] = ACTIONS(1365), - [anon_sym_DOLLARextnameof] = ACTIONS(1365), - [anon_sym_DOLLARnameof] = ACTIONS(1365), - [anon_sym_DOLLARoffsetof] = ACTIONS(1365), - [anon_sym_DOLLARqnameof] = ACTIONS(1365), - [anon_sym_DOLLAReval] = ACTIONS(1365), - [anon_sym_DOLLARdefined] = ACTIONS(1365), - [anon_sym_DOLLARsizeof] = ACTIONS(1365), - [anon_sym_DOLLARstringify] = ACTIONS(1365), - [anon_sym_DOLLARis_const] = ACTIONS(1365), - [anon_sym_DOLLARvaconst] = ACTIONS(1365), - [anon_sym_DOLLARvaarg] = ACTIONS(1365), - [anon_sym_DOLLARvaref] = ACTIONS(1365), - [anon_sym_DOLLARvaexpr] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1365), - [anon_sym_false] = ACTIONS(1365), - [anon_sym_null] = ACTIONS(1365), - [anon_sym_DOLLARvacount] = ACTIONS(1365), - [anon_sym_DOLLARfeature] = ACTIONS(1365), - [anon_sym_DOLLARand] = ACTIONS(1365), - [anon_sym_DOLLARor] = ACTIONS(1365), - [anon_sym_DOLLARassignable] = ACTIONS(1365), - [anon_sym_DOLLARembed] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1367), - [anon_sym_PLUS_PLUS] = ACTIONS(1367), - [anon_sym_DASH_DASH] = ACTIONS(1367), - [anon_sym_typeid] = ACTIONS(1365), - [anon_sym_LBRACE_PIPE] = ACTIONS(1367), - [anon_sym_void] = ACTIONS(1365), - [anon_sym_bool] = ACTIONS(1365), - [anon_sym_char] = ACTIONS(1365), - [anon_sym_ichar] = ACTIONS(1365), - [anon_sym_short] = ACTIONS(1365), - [anon_sym_ushort] = ACTIONS(1365), - [anon_sym_uint] = ACTIONS(1365), - [anon_sym_long] = ACTIONS(1365), - [anon_sym_ulong] = ACTIONS(1365), - [anon_sym_int128] = ACTIONS(1365), - [anon_sym_uint128] = ACTIONS(1365), - [anon_sym_float] = ACTIONS(1365), - [anon_sym_double] = ACTIONS(1365), - [anon_sym_float16] = ACTIONS(1365), - [anon_sym_bfloat16] = ACTIONS(1365), - [anon_sym_float128] = ACTIONS(1365), - [anon_sym_iptr] = ACTIONS(1365), - [anon_sym_uptr] = ACTIONS(1365), - [anon_sym_isz] = ACTIONS(1365), - [anon_sym_usz] = ACTIONS(1365), - [anon_sym_anyfault] = ACTIONS(1365), - [anon_sym_any] = ACTIONS(1365), - [anon_sym_DOLLARtypeof] = ACTIONS(1365), - [anon_sym_DOLLARtypefrom] = ACTIONS(1365), - [anon_sym_DOLLARvatype] = ACTIONS(1365), - [anon_sym_DOLLARevaltype] = ACTIONS(1365), - [sym_real_literal] = ACTIONS(1367), + [734] = { + [sym_line_comment] = STATE(734), + [sym_doc_comment] = STATE(734), + [sym_block_comment] = STATE(734), + [sym_ident] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1591), + [anon_sym_BQUOTE] = ACTIONS(1591), + [sym_bytes_literal] = ACTIONS(1591), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1589), + [sym_at_ident] = ACTIONS(1591), + [sym_hash_ident] = ACTIONS(1591), + [sym_type_ident] = ACTIONS(1591), + [sym_ct_type_ident] = ACTIONS(1591), + [sym_const_ident] = ACTIONS(1589), + [sym_builtin] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_tlocal] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1591), + [anon_sym_fn] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_var] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_defer] = ACTIONS(1589), + [anon_sym_assert] = ACTIONS(1589), + [anon_sym_nextcase] = ACTIONS(1589), + [anon_sym_switch] = ACTIONS(1589), + [anon_sym_AMP_AMP] = ACTIONS(1591), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_foreach] = ACTIONS(1589), + [anon_sym_foreach_r] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_do] = ACTIONS(1589), + [anon_sym_int] = ACTIONS(1589), + [anon_sym_PLUS] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_asm] = ACTIONS(1589), + [anon_sym_DOLLARassert] = ACTIONS(1589), + [anon_sym_DOLLARerror] = ACTIONS(1589), + [anon_sym_DOLLARecho] = ACTIONS(1589), + [anon_sym_DOLLARif] = ACTIONS(1589), + [anon_sym_DOLLARendif] = ACTIONS(1589), + [anon_sym_DOLLARswitch] = ACTIONS(1589), + [anon_sym_DOLLARfor] = ACTIONS(1589), + [anon_sym_DOLLARforeach] = ACTIONS(1589), + [anon_sym_DOLLARalignof] = ACTIONS(1589), + [anon_sym_DOLLARextnameof] = ACTIONS(1589), + [anon_sym_DOLLARnameof] = ACTIONS(1589), + [anon_sym_DOLLARoffsetof] = ACTIONS(1589), + [anon_sym_DOLLARqnameof] = ACTIONS(1589), + [anon_sym_DOLLARvaconst] = ACTIONS(1589), + [anon_sym_DOLLARvaarg] = ACTIONS(1589), + [anon_sym_DOLLARvaref] = ACTIONS(1589), + [anon_sym_DOLLARvaexpr] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_null] = ACTIONS(1589), + [anon_sym_DOLLARvacount] = ACTIONS(1589), + [anon_sym_DOLLAReval] = ACTIONS(1589), + [anon_sym_DOLLARis_const] = ACTIONS(1589), + [anon_sym_DOLLARsizeof] = ACTIONS(1589), + [anon_sym_DOLLARstringify] = ACTIONS(1589), + [anon_sym_DOLLARappend] = ACTIONS(1589), + [anon_sym_DOLLARconcat] = ACTIONS(1589), + [anon_sym_DOLLARdefined] = ACTIONS(1589), + [anon_sym_DOLLARembed] = ACTIONS(1589), + [anon_sym_DOLLARand] = ACTIONS(1589), + [anon_sym_DOLLARor] = ACTIONS(1589), + [anon_sym_DOLLARfeature] = ACTIONS(1589), + [anon_sym_DOLLARassignable] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1591), + [anon_sym_PLUS_PLUS] = ACTIONS(1591), + [anon_sym_DASH_DASH] = ACTIONS(1591), + [anon_sym_typeid] = ACTIONS(1589), + [anon_sym_LBRACE_PIPE] = ACTIONS(1591), + [anon_sym_void] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_ichar] = ACTIONS(1589), + [anon_sym_short] = ACTIONS(1589), + [anon_sym_ushort] = ACTIONS(1589), + [anon_sym_uint] = ACTIONS(1589), + [anon_sym_long] = ACTIONS(1589), + [anon_sym_ulong] = ACTIONS(1589), + [anon_sym_int128] = ACTIONS(1589), + [anon_sym_uint128] = ACTIONS(1589), + [anon_sym_float] = ACTIONS(1589), + [anon_sym_double] = ACTIONS(1589), + [anon_sym_float16] = ACTIONS(1589), + [anon_sym_bfloat16] = ACTIONS(1589), + [anon_sym_float128] = ACTIONS(1589), + [anon_sym_iptr] = ACTIONS(1589), + [anon_sym_uptr] = ACTIONS(1589), + [anon_sym_isz] = ACTIONS(1589), + [anon_sym_usz] = ACTIONS(1589), + [anon_sym_anyfault] = ACTIONS(1589), + [anon_sym_any] = ACTIONS(1589), + [anon_sym_DOLLARtypeof] = ACTIONS(1589), + [anon_sym_DOLLARtypefrom] = ACTIONS(1589), + [anon_sym_DOLLARevaltype] = ACTIONS(1589), + [anon_sym_DOLLARvatype] = ACTIONS(1589), + [sym_real_literal] = ACTIONS(1591), + }, + [735] = { + [sym_line_comment] = STATE(735), + [sym_doc_comment] = STATE(735), + [sym_block_comment] = STATE(735), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARendforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), + }, + [736] = { + [sym_line_comment] = STATE(736), + [sym_doc_comment] = STATE(736), + [sym_block_comment] = STATE(736), + [sym_ident] = ACTIONS(1637), + [sym_integer_literal] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_BQUOTE] = ACTIONS(1639), + [sym_bytes_literal] = ACTIONS(1639), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1637), + [sym_at_ident] = ACTIONS(1639), + [sym_hash_ident] = ACTIONS(1639), + [sym_type_ident] = ACTIONS(1639), + [sym_ct_type_ident] = ACTIONS(1639), + [sym_const_ident] = ACTIONS(1637), + [sym_builtin] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_tlocal] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_fn] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_var] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_defer] = ACTIONS(1637), + [anon_sym_assert] = ACTIONS(1637), + [anon_sym_nextcase] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_foreach] = ACTIONS(1637), + [anon_sym_foreach_r] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_int] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_asm] = ACTIONS(1637), + [anon_sym_DOLLARassert] = ACTIONS(1637), + [anon_sym_DOLLARerror] = ACTIONS(1637), + [anon_sym_DOLLARecho] = ACTIONS(1637), + [anon_sym_DOLLARif] = ACTIONS(1637), + [anon_sym_DOLLARswitch] = ACTIONS(1637), + [anon_sym_DOLLARfor] = ACTIONS(1637), + [anon_sym_DOLLARforeach] = ACTIONS(1637), + [anon_sym_DOLLARendforeach] = ACTIONS(1637), + [anon_sym_DOLLARalignof] = ACTIONS(1637), + [anon_sym_DOLLARextnameof] = ACTIONS(1637), + [anon_sym_DOLLARnameof] = ACTIONS(1637), + [anon_sym_DOLLARoffsetof] = ACTIONS(1637), + [anon_sym_DOLLARqnameof] = ACTIONS(1637), + [anon_sym_DOLLARvaconst] = ACTIONS(1637), + [anon_sym_DOLLARvaarg] = ACTIONS(1637), + [anon_sym_DOLLARvaref] = ACTIONS(1637), + [anon_sym_DOLLARvaexpr] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_DOLLARvacount] = ACTIONS(1637), + [anon_sym_DOLLAReval] = ACTIONS(1637), + [anon_sym_DOLLARis_const] = ACTIONS(1637), + [anon_sym_DOLLARsizeof] = ACTIONS(1637), + [anon_sym_DOLLARstringify] = ACTIONS(1637), + [anon_sym_DOLLARappend] = ACTIONS(1637), + [anon_sym_DOLLARconcat] = ACTIONS(1637), + [anon_sym_DOLLARdefined] = ACTIONS(1637), + [anon_sym_DOLLARembed] = ACTIONS(1637), + [anon_sym_DOLLARand] = ACTIONS(1637), + [anon_sym_DOLLARor] = ACTIONS(1637), + [anon_sym_DOLLARfeature] = ACTIONS(1637), + [anon_sym_DOLLARassignable] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_typeid] = ACTIONS(1637), + [anon_sym_LBRACE_PIPE] = ACTIONS(1639), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_bool] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_ichar] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_ushort] = ACTIONS(1637), + [anon_sym_uint] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_ulong] = ACTIONS(1637), + [anon_sym_int128] = ACTIONS(1637), + [anon_sym_uint128] = ACTIONS(1637), + [anon_sym_float] = ACTIONS(1637), + [anon_sym_double] = ACTIONS(1637), + [anon_sym_float16] = ACTIONS(1637), + [anon_sym_bfloat16] = ACTIONS(1637), + [anon_sym_float128] = ACTIONS(1637), + [anon_sym_iptr] = ACTIONS(1637), + [anon_sym_uptr] = ACTIONS(1637), + [anon_sym_isz] = ACTIONS(1637), + [anon_sym_usz] = ACTIONS(1637), + [anon_sym_anyfault] = ACTIONS(1637), + [anon_sym_any] = ACTIONS(1637), + [anon_sym_DOLLARtypeof] = ACTIONS(1637), + [anon_sym_DOLLARtypefrom] = ACTIONS(1637), + [anon_sym_DOLLARevaltype] = ACTIONS(1637), + [anon_sym_DOLLARvatype] = ACTIONS(1637), + [sym_real_literal] = ACTIONS(1639), + }, + [737] = { + [sym_line_comment] = STATE(737), + [sym_doc_comment] = STATE(737), + [sym_block_comment] = STATE(737), + [sym_ident] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_bytes_literal] = ACTIONS(1643), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1641), + [sym_at_ident] = ACTIONS(1643), + [sym_hash_ident] = ACTIONS(1643), + [sym_type_ident] = ACTIONS(1643), + [sym_ct_type_ident] = ACTIONS(1643), + [sym_const_ident] = ACTIONS(1641), + [sym_builtin] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_tlocal] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_fn] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [anon_sym_var] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_defer] = ACTIONS(1641), + [anon_sym_assert] = ACTIONS(1641), + [anon_sym_nextcase] = ACTIONS(1641), + [anon_sym_switch] = ACTIONS(1641), + [anon_sym_AMP_AMP] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_foreach] = ACTIONS(1641), + [anon_sym_foreach_r] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_int] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_asm] = ACTIONS(1641), + [anon_sym_DOLLARassert] = ACTIONS(1641), + [anon_sym_DOLLARerror] = ACTIONS(1641), + [anon_sym_DOLLARecho] = ACTIONS(1641), + [anon_sym_DOLLARif] = ACTIONS(1641), + [anon_sym_DOLLARswitch] = ACTIONS(1641), + [anon_sym_DOLLARfor] = ACTIONS(1641), + [anon_sym_DOLLARforeach] = ACTIONS(1641), + [anon_sym_DOLLARendforeach] = ACTIONS(1641), + [anon_sym_DOLLARalignof] = ACTIONS(1641), + [anon_sym_DOLLARextnameof] = ACTIONS(1641), + [anon_sym_DOLLARnameof] = ACTIONS(1641), + [anon_sym_DOLLARoffsetof] = ACTIONS(1641), + [anon_sym_DOLLARqnameof] = ACTIONS(1641), + [anon_sym_DOLLARvaconst] = ACTIONS(1641), + [anon_sym_DOLLARvaarg] = ACTIONS(1641), + [anon_sym_DOLLARvaref] = ACTIONS(1641), + [anon_sym_DOLLARvaexpr] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [anon_sym_DOLLARvacount] = ACTIONS(1641), + [anon_sym_DOLLAReval] = ACTIONS(1641), + [anon_sym_DOLLARis_const] = ACTIONS(1641), + [anon_sym_DOLLARsizeof] = ACTIONS(1641), + [anon_sym_DOLLARstringify] = ACTIONS(1641), + [anon_sym_DOLLARappend] = ACTIONS(1641), + [anon_sym_DOLLARconcat] = ACTIONS(1641), + [anon_sym_DOLLARdefined] = ACTIONS(1641), + [anon_sym_DOLLARembed] = ACTIONS(1641), + [anon_sym_DOLLARand] = ACTIONS(1641), + [anon_sym_DOLLARor] = ACTIONS(1641), + [anon_sym_DOLLARfeature] = ACTIONS(1641), + [anon_sym_DOLLARassignable] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1643), + [anon_sym_TILDE] = ACTIONS(1643), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_typeid] = ACTIONS(1641), + [anon_sym_LBRACE_PIPE] = ACTIONS(1643), + [anon_sym_void] = ACTIONS(1641), + [anon_sym_bool] = ACTIONS(1641), + [anon_sym_char] = ACTIONS(1641), + [anon_sym_ichar] = ACTIONS(1641), + [anon_sym_short] = ACTIONS(1641), + [anon_sym_ushort] = ACTIONS(1641), + [anon_sym_uint] = ACTIONS(1641), + [anon_sym_long] = ACTIONS(1641), + [anon_sym_ulong] = ACTIONS(1641), + [anon_sym_int128] = ACTIONS(1641), + [anon_sym_uint128] = ACTIONS(1641), + [anon_sym_float] = ACTIONS(1641), + [anon_sym_double] = ACTIONS(1641), + [anon_sym_float16] = ACTIONS(1641), + [anon_sym_bfloat16] = ACTIONS(1641), + [anon_sym_float128] = ACTIONS(1641), + [anon_sym_iptr] = ACTIONS(1641), + [anon_sym_uptr] = ACTIONS(1641), + [anon_sym_isz] = ACTIONS(1641), + [anon_sym_usz] = ACTIONS(1641), + [anon_sym_anyfault] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_DOLLARtypeof] = ACTIONS(1641), + [anon_sym_DOLLARtypefrom] = ACTIONS(1641), + [anon_sym_DOLLARevaltype] = ACTIONS(1641), + [anon_sym_DOLLARvatype] = ACTIONS(1641), + [sym_real_literal] = ACTIONS(1643), }, - [754] = { - [sym_line_comment] = STATE(754), - [sym_doc_comment] = STATE(754), - [sym_block_comment] = STATE(754), - [sym_ident] = ACTIONS(1539), - [sym_integer_literal] = ACTIONS(1541), - [anon_sym_SQUOTE] = ACTIONS(1541), - [anon_sym_DQUOTE] = ACTIONS(1541), - [anon_sym_BQUOTE] = ACTIONS(1541), - [sym_bytes_literal] = ACTIONS(1541), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1539), - [sym_at_ident] = ACTIONS(1541), - [sym_hash_ident] = ACTIONS(1541), - [sym_type_ident] = ACTIONS(1541), - [sym_ct_type_ident] = ACTIONS(1541), - [sym_const_ident] = ACTIONS(1539), - [sym_builtin] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1541), - [anon_sym_AMP] = ACTIONS(1539), - [anon_sym_static] = ACTIONS(1539), - [anon_sym_tlocal] = ACTIONS(1539), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_fn] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_defer] = ACTIONS(1539), - [anon_sym_assert] = ACTIONS(1539), - [anon_sym_nextcase] = ACTIONS(1539), - [anon_sym_switch] = ACTIONS(1539), - [anon_sym_AMP_AMP] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_foreach] = ACTIONS(1539), - [anon_sym_foreach_r] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_int] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1539), - [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1541), - [anon_sym_asm] = ACTIONS(1539), - [anon_sym_DOLLARassert] = ACTIONS(1539), - [anon_sym_DOLLARerror] = ACTIONS(1539), - [anon_sym_DOLLARecho] = ACTIONS(1539), - [anon_sym_DOLLARif] = ACTIONS(1539), - [anon_sym_DOLLARswitch] = ACTIONS(1539), - [anon_sym_DOLLARfor] = ACTIONS(1539), - [anon_sym_DOLLARforeach] = ACTIONS(1539), - [anon_sym_DOLLARendforeach] = ACTIONS(1539), - [anon_sym_DOLLARalignof] = ACTIONS(1539), - [anon_sym_DOLLARextnameof] = ACTIONS(1539), - [anon_sym_DOLLARnameof] = ACTIONS(1539), - [anon_sym_DOLLARoffsetof] = ACTIONS(1539), - [anon_sym_DOLLARqnameof] = ACTIONS(1539), - [anon_sym_DOLLAReval] = ACTIONS(1539), - [anon_sym_DOLLARdefined] = ACTIONS(1539), - [anon_sym_DOLLARsizeof] = ACTIONS(1539), - [anon_sym_DOLLARstringify] = ACTIONS(1539), - [anon_sym_DOLLARis_const] = ACTIONS(1539), - [anon_sym_DOLLARvaconst] = ACTIONS(1539), - [anon_sym_DOLLARvaarg] = ACTIONS(1539), - [anon_sym_DOLLARvaref] = ACTIONS(1539), - [anon_sym_DOLLARvaexpr] = ACTIONS(1539), - [anon_sym_true] = ACTIONS(1539), - [anon_sym_false] = ACTIONS(1539), - [anon_sym_null] = ACTIONS(1539), - [anon_sym_DOLLARvacount] = ACTIONS(1539), - [anon_sym_DOLLARfeature] = ACTIONS(1539), - [anon_sym_DOLLARand] = ACTIONS(1539), - [anon_sym_DOLLARor] = ACTIONS(1539), - [anon_sym_DOLLARassignable] = ACTIONS(1539), - [anon_sym_DOLLARembed] = ACTIONS(1539), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1541), - [anon_sym_DASH_DASH] = ACTIONS(1541), - [anon_sym_typeid] = ACTIONS(1539), - [anon_sym_LBRACE_PIPE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1539), - [anon_sym_bool] = ACTIONS(1539), - [anon_sym_char] = ACTIONS(1539), - [anon_sym_ichar] = ACTIONS(1539), - [anon_sym_short] = ACTIONS(1539), - [anon_sym_ushort] = ACTIONS(1539), - [anon_sym_uint] = ACTIONS(1539), - [anon_sym_long] = ACTIONS(1539), - [anon_sym_ulong] = ACTIONS(1539), - [anon_sym_int128] = ACTIONS(1539), - [anon_sym_uint128] = ACTIONS(1539), - [anon_sym_float] = ACTIONS(1539), - [anon_sym_double] = ACTIONS(1539), - [anon_sym_float16] = ACTIONS(1539), - [anon_sym_bfloat16] = ACTIONS(1539), - [anon_sym_float128] = ACTIONS(1539), - [anon_sym_iptr] = ACTIONS(1539), - [anon_sym_uptr] = ACTIONS(1539), - [anon_sym_isz] = ACTIONS(1539), - [anon_sym_usz] = ACTIONS(1539), - [anon_sym_anyfault] = ACTIONS(1539), - [anon_sym_any] = ACTIONS(1539), - [anon_sym_DOLLARtypeof] = ACTIONS(1539), - [anon_sym_DOLLARtypefrom] = ACTIONS(1539), - [anon_sym_DOLLARvatype] = ACTIONS(1539), - [anon_sym_DOLLARevaltype] = ACTIONS(1539), - [sym_real_literal] = ACTIONS(1541), + [738] = { + [sym_line_comment] = STATE(738), + [sym_doc_comment] = STATE(738), + [sym_block_comment] = STATE(738), + [sym_ident] = ACTIONS(1645), + [sym_integer_literal] = ACTIONS(1647), + [anon_sym_SQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), + [sym_bytes_literal] = ACTIONS(1647), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1645), + [sym_at_ident] = ACTIONS(1647), + [sym_hash_ident] = ACTIONS(1647), + [sym_type_ident] = ACTIONS(1647), + [sym_ct_type_ident] = ACTIONS(1647), + [sym_const_ident] = ACTIONS(1645), + [sym_builtin] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_static] = ACTIONS(1645), + [anon_sym_tlocal] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_fn] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_var] = ACTIONS(1645), + [anon_sym_return] = ACTIONS(1645), + [anon_sym_continue] = ACTIONS(1645), + [anon_sym_break] = ACTIONS(1645), + [anon_sym_defer] = ACTIONS(1645), + [anon_sym_assert] = ACTIONS(1645), + [anon_sym_nextcase] = ACTIONS(1645), + [anon_sym_switch] = ACTIONS(1645), + [anon_sym_AMP_AMP] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1645), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_foreach] = ACTIONS(1645), + [anon_sym_foreach_r] = ACTIONS(1645), + [anon_sym_while] = ACTIONS(1645), + [anon_sym_do] = ACTIONS(1645), + [anon_sym_int] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_asm] = ACTIONS(1645), + [anon_sym_DOLLARassert] = ACTIONS(1645), + [anon_sym_DOLLARerror] = ACTIONS(1645), + [anon_sym_DOLLARecho] = ACTIONS(1645), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_DOLLARswitch] = ACTIONS(1645), + [anon_sym_DOLLARfor] = ACTIONS(1645), + [anon_sym_DOLLARforeach] = ACTIONS(1645), + [anon_sym_DOLLARendforeach] = ACTIONS(1645), + [anon_sym_DOLLARalignof] = ACTIONS(1645), + [anon_sym_DOLLARextnameof] = ACTIONS(1645), + [anon_sym_DOLLARnameof] = ACTIONS(1645), + [anon_sym_DOLLARoffsetof] = ACTIONS(1645), + [anon_sym_DOLLARqnameof] = ACTIONS(1645), + [anon_sym_DOLLARvaconst] = ACTIONS(1645), + [anon_sym_DOLLARvaarg] = ACTIONS(1645), + [anon_sym_DOLLARvaref] = ACTIONS(1645), + [anon_sym_DOLLARvaexpr] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [anon_sym_DOLLARvacount] = ACTIONS(1645), + [anon_sym_DOLLAReval] = ACTIONS(1645), + [anon_sym_DOLLARis_const] = ACTIONS(1645), + [anon_sym_DOLLARsizeof] = ACTIONS(1645), + [anon_sym_DOLLARstringify] = ACTIONS(1645), + [anon_sym_DOLLARappend] = ACTIONS(1645), + [anon_sym_DOLLARconcat] = ACTIONS(1645), + [anon_sym_DOLLARdefined] = ACTIONS(1645), + [anon_sym_DOLLARembed] = ACTIONS(1645), + [anon_sym_DOLLARand] = ACTIONS(1645), + [anon_sym_DOLLARor] = ACTIONS(1645), + [anon_sym_DOLLARfeature] = ACTIONS(1645), + [anon_sym_DOLLARassignable] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1647), + [anon_sym_DASH_DASH] = ACTIONS(1647), + [anon_sym_typeid] = ACTIONS(1645), + [anon_sym_LBRACE_PIPE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_ichar] = ACTIONS(1645), + [anon_sym_short] = ACTIONS(1645), + [anon_sym_ushort] = ACTIONS(1645), + [anon_sym_uint] = ACTIONS(1645), + [anon_sym_long] = ACTIONS(1645), + [anon_sym_ulong] = ACTIONS(1645), + [anon_sym_int128] = ACTIONS(1645), + [anon_sym_uint128] = ACTIONS(1645), + [anon_sym_float] = ACTIONS(1645), + [anon_sym_double] = ACTIONS(1645), + [anon_sym_float16] = ACTIONS(1645), + [anon_sym_bfloat16] = ACTIONS(1645), + [anon_sym_float128] = ACTIONS(1645), + [anon_sym_iptr] = ACTIONS(1645), + [anon_sym_uptr] = ACTIONS(1645), + [anon_sym_isz] = ACTIONS(1645), + [anon_sym_usz] = ACTIONS(1645), + [anon_sym_anyfault] = ACTIONS(1645), + [anon_sym_any] = ACTIONS(1645), + [anon_sym_DOLLARtypeof] = ACTIONS(1645), + [anon_sym_DOLLARtypefrom] = ACTIONS(1645), + [anon_sym_DOLLARevaltype] = ACTIONS(1645), + [anon_sym_DOLLARvatype] = ACTIONS(1645), + [sym_real_literal] = ACTIONS(1647), }, - [755] = { - [sym_line_comment] = STATE(755), - [sym_doc_comment] = STATE(755), - [sym_block_comment] = STATE(755), - [sym_ident] = ACTIONS(1531), - [sym_integer_literal] = ACTIONS(1533), - [anon_sym_SQUOTE] = ACTIONS(1533), - [anon_sym_DQUOTE] = ACTIONS(1533), - [anon_sym_BQUOTE] = ACTIONS(1533), - [sym_bytes_literal] = ACTIONS(1533), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1531), - [sym_at_ident] = ACTIONS(1533), - [sym_hash_ident] = ACTIONS(1533), - [sym_type_ident] = ACTIONS(1533), - [sym_ct_type_ident] = ACTIONS(1533), - [sym_const_ident] = ACTIONS(1531), - [sym_builtin] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1531), - [anon_sym_static] = ACTIONS(1531), - [anon_sym_tlocal] = ACTIONS(1531), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_fn] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_const] = ACTIONS(1531), - [anon_sym_var] = ACTIONS(1531), - [anon_sym_return] = ACTIONS(1531), - [anon_sym_continue] = ACTIONS(1531), - [anon_sym_break] = ACTIONS(1531), - [anon_sym_defer] = ACTIONS(1531), - [anon_sym_assert] = ACTIONS(1531), - [anon_sym_nextcase] = ACTIONS(1531), - [anon_sym_switch] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1531), - [anon_sym_for] = ACTIONS(1531), - [anon_sym_foreach] = ACTIONS(1531), - [anon_sym_foreach_r] = ACTIONS(1531), - [anon_sym_while] = ACTIONS(1531), - [anon_sym_do] = ACTIONS(1531), - [anon_sym_int] = ACTIONS(1531), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_asm] = ACTIONS(1531), - [anon_sym_DOLLARassert] = ACTIONS(1531), - [anon_sym_DOLLARerror] = ACTIONS(1531), - [anon_sym_DOLLARecho] = ACTIONS(1531), - [anon_sym_DOLLARif] = ACTIONS(1531), - [anon_sym_DOLLARswitch] = ACTIONS(1531), - [anon_sym_DOLLARfor] = ACTIONS(1531), - [anon_sym_DOLLARforeach] = ACTIONS(1531), - [anon_sym_DOLLARendforeach] = ACTIONS(1531), - [anon_sym_DOLLARalignof] = ACTIONS(1531), - [anon_sym_DOLLARextnameof] = ACTIONS(1531), - [anon_sym_DOLLARnameof] = ACTIONS(1531), - [anon_sym_DOLLARoffsetof] = ACTIONS(1531), - [anon_sym_DOLLARqnameof] = ACTIONS(1531), - [anon_sym_DOLLAReval] = ACTIONS(1531), - [anon_sym_DOLLARdefined] = ACTIONS(1531), - [anon_sym_DOLLARsizeof] = ACTIONS(1531), - [anon_sym_DOLLARstringify] = ACTIONS(1531), - [anon_sym_DOLLARis_const] = ACTIONS(1531), - [anon_sym_DOLLARvaconst] = ACTIONS(1531), - [anon_sym_DOLLARvaarg] = ACTIONS(1531), - [anon_sym_DOLLARvaref] = ACTIONS(1531), - [anon_sym_DOLLARvaexpr] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1531), - [anon_sym_false] = ACTIONS(1531), - [anon_sym_null] = ACTIONS(1531), - [anon_sym_DOLLARvacount] = ACTIONS(1531), - [anon_sym_DOLLARfeature] = ACTIONS(1531), - [anon_sym_DOLLARand] = ACTIONS(1531), - [anon_sym_DOLLARor] = ACTIONS(1531), - [anon_sym_DOLLARassignable] = ACTIONS(1531), - [anon_sym_DOLLARembed] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1533), - [anon_sym_typeid] = ACTIONS(1531), - [anon_sym_LBRACE_PIPE] = ACTIONS(1533), - [anon_sym_void] = ACTIONS(1531), - [anon_sym_bool] = ACTIONS(1531), - [anon_sym_char] = ACTIONS(1531), - [anon_sym_ichar] = ACTIONS(1531), - [anon_sym_short] = ACTIONS(1531), - [anon_sym_ushort] = ACTIONS(1531), - [anon_sym_uint] = ACTIONS(1531), - [anon_sym_long] = ACTIONS(1531), - [anon_sym_ulong] = ACTIONS(1531), - [anon_sym_int128] = ACTIONS(1531), - [anon_sym_uint128] = ACTIONS(1531), - [anon_sym_float] = ACTIONS(1531), - [anon_sym_double] = ACTIONS(1531), - [anon_sym_float16] = ACTIONS(1531), - [anon_sym_bfloat16] = ACTIONS(1531), - [anon_sym_float128] = ACTIONS(1531), - [anon_sym_iptr] = ACTIONS(1531), - [anon_sym_uptr] = ACTIONS(1531), - [anon_sym_isz] = ACTIONS(1531), - [anon_sym_usz] = ACTIONS(1531), - [anon_sym_anyfault] = ACTIONS(1531), - [anon_sym_any] = ACTIONS(1531), - [anon_sym_DOLLARtypeof] = ACTIONS(1531), - [anon_sym_DOLLARtypefrom] = ACTIONS(1531), - [anon_sym_DOLLARvatype] = ACTIONS(1531), - [anon_sym_DOLLARevaltype] = ACTIONS(1531), - [sym_real_literal] = ACTIONS(1533), + [739] = { + [sym_line_comment] = STATE(739), + [sym_doc_comment] = STATE(739), + [sym_block_comment] = STATE(739), + [sym_ident] = ACTIONS(1533), + [sym_integer_literal] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(1535), + [anon_sym_BQUOTE] = ACTIONS(1535), + [sym_bytes_literal] = ACTIONS(1535), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1533), + [sym_at_ident] = ACTIONS(1535), + [sym_hash_ident] = ACTIONS(1535), + [sym_type_ident] = ACTIONS(1535), + [sym_ct_type_ident] = ACTIONS(1535), + [sym_const_ident] = ACTIONS(1533), + [sym_builtin] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_tlocal] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_fn] = ACTIONS(1533), + [anon_sym_LBRACE] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_var] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_defer] = ACTIONS(1533), + [anon_sym_assert] = ACTIONS(1533), + [anon_sym_nextcase] = ACTIONS(1533), + [anon_sym_switch] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_foreach] = ACTIONS(1533), + [anon_sym_foreach_r] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_int] = ACTIONS(1533), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1535), + [anon_sym_asm] = ACTIONS(1533), + [anon_sym_DOLLARassert] = ACTIONS(1533), + [anon_sym_DOLLARerror] = ACTIONS(1533), + [anon_sym_DOLLARecho] = ACTIONS(1533), + [anon_sym_DOLLARif] = ACTIONS(1533), + [anon_sym_DOLLARendif] = ACTIONS(1533), + [anon_sym_DOLLARswitch] = ACTIONS(1533), + [anon_sym_DOLLARfor] = ACTIONS(1533), + [anon_sym_DOLLARforeach] = ACTIONS(1533), + [anon_sym_DOLLARalignof] = ACTIONS(1533), + [anon_sym_DOLLARextnameof] = ACTIONS(1533), + [anon_sym_DOLLARnameof] = ACTIONS(1533), + [anon_sym_DOLLARoffsetof] = ACTIONS(1533), + [anon_sym_DOLLARqnameof] = ACTIONS(1533), + [anon_sym_DOLLARvaconst] = ACTIONS(1533), + [anon_sym_DOLLARvaarg] = ACTIONS(1533), + [anon_sym_DOLLARvaref] = ACTIONS(1533), + [anon_sym_DOLLARvaexpr] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_null] = ACTIONS(1533), + [anon_sym_DOLLARvacount] = ACTIONS(1533), + [anon_sym_DOLLAReval] = ACTIONS(1533), + [anon_sym_DOLLARis_const] = ACTIONS(1533), + [anon_sym_DOLLARsizeof] = ACTIONS(1533), + [anon_sym_DOLLARstringify] = ACTIONS(1533), + [anon_sym_DOLLARappend] = ACTIONS(1533), + [anon_sym_DOLLARconcat] = ACTIONS(1533), + [anon_sym_DOLLARdefined] = ACTIONS(1533), + [anon_sym_DOLLARembed] = ACTIONS(1533), + [anon_sym_DOLLARand] = ACTIONS(1533), + [anon_sym_DOLLARor] = ACTIONS(1533), + [anon_sym_DOLLARfeature] = ACTIONS(1533), + [anon_sym_DOLLARassignable] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1535), + [anon_sym_TILDE] = ACTIONS(1535), + [anon_sym_PLUS_PLUS] = ACTIONS(1535), + [anon_sym_DASH_DASH] = ACTIONS(1535), + [anon_sym_typeid] = ACTIONS(1533), + [anon_sym_LBRACE_PIPE] = ACTIONS(1535), + [anon_sym_void] = ACTIONS(1533), + [anon_sym_bool] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_ichar] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [anon_sym_ushort] = ACTIONS(1533), + [anon_sym_uint] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_ulong] = ACTIONS(1533), + [anon_sym_int128] = ACTIONS(1533), + [anon_sym_uint128] = ACTIONS(1533), + [anon_sym_float] = ACTIONS(1533), + [anon_sym_double] = ACTIONS(1533), + [anon_sym_float16] = ACTIONS(1533), + [anon_sym_bfloat16] = ACTIONS(1533), + [anon_sym_float128] = ACTIONS(1533), + [anon_sym_iptr] = ACTIONS(1533), + [anon_sym_uptr] = ACTIONS(1533), + [anon_sym_isz] = ACTIONS(1533), + [anon_sym_usz] = ACTIONS(1533), + [anon_sym_anyfault] = ACTIONS(1533), + [anon_sym_any] = ACTIONS(1533), + [anon_sym_DOLLARtypeof] = ACTIONS(1533), + [anon_sym_DOLLARtypefrom] = ACTIONS(1533), + [anon_sym_DOLLARevaltype] = ACTIONS(1533), + [anon_sym_DOLLARvatype] = ACTIONS(1533), + [sym_real_literal] = ACTIONS(1535), }, - [756] = { - [sym_line_comment] = STATE(756), - [sym_doc_comment] = STATE(756), - [sym_block_comment] = STATE(756), - [sym_ident] = ACTIONS(1507), - [sym_integer_literal] = ACTIONS(1509), - [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(1509), - [anon_sym_BQUOTE] = ACTIONS(1509), - [sym_bytes_literal] = ACTIONS(1509), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1507), - [sym_at_ident] = ACTIONS(1509), - [sym_hash_ident] = ACTIONS(1509), - [sym_type_ident] = ACTIONS(1509), - [sym_ct_type_ident] = ACTIONS(1509), - [sym_const_ident] = ACTIONS(1507), - [sym_builtin] = ACTIONS(1509), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_static] = ACTIONS(1507), - [anon_sym_tlocal] = ACTIONS(1507), - [anon_sym_SEMI] = ACTIONS(1509), - [anon_sym_fn] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_const] = ACTIONS(1507), - [anon_sym_var] = ACTIONS(1507), - [anon_sym_return] = ACTIONS(1507), - [anon_sym_continue] = ACTIONS(1507), - [anon_sym_break] = ACTIONS(1507), - [anon_sym_defer] = ACTIONS(1507), - [anon_sym_assert] = ACTIONS(1507), - [anon_sym_nextcase] = ACTIONS(1507), - [anon_sym_switch] = ACTIONS(1507), - [anon_sym_AMP_AMP] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1507), - [anon_sym_for] = ACTIONS(1507), - [anon_sym_foreach] = ACTIONS(1507), - [anon_sym_foreach_r] = ACTIONS(1507), - [anon_sym_while] = ACTIONS(1507), - [anon_sym_do] = ACTIONS(1507), - [anon_sym_int] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1509), - [anon_sym_asm] = ACTIONS(1507), - [anon_sym_DOLLARassert] = ACTIONS(1507), - [anon_sym_DOLLARerror] = ACTIONS(1507), - [anon_sym_DOLLARecho] = ACTIONS(1507), - [anon_sym_DOLLARif] = ACTIONS(1507), - [anon_sym_DOLLARswitch] = ACTIONS(1507), - [anon_sym_DOLLARfor] = ACTIONS(1507), - [anon_sym_DOLLARforeach] = ACTIONS(1507), - [anon_sym_DOLLARendforeach] = ACTIONS(1507), - [anon_sym_DOLLARalignof] = ACTIONS(1507), - [anon_sym_DOLLARextnameof] = ACTIONS(1507), - [anon_sym_DOLLARnameof] = ACTIONS(1507), - [anon_sym_DOLLARoffsetof] = ACTIONS(1507), - [anon_sym_DOLLARqnameof] = ACTIONS(1507), - [anon_sym_DOLLAReval] = ACTIONS(1507), - [anon_sym_DOLLARdefined] = ACTIONS(1507), - [anon_sym_DOLLARsizeof] = ACTIONS(1507), - [anon_sym_DOLLARstringify] = ACTIONS(1507), - [anon_sym_DOLLARis_const] = ACTIONS(1507), - [anon_sym_DOLLARvaconst] = ACTIONS(1507), - [anon_sym_DOLLARvaarg] = ACTIONS(1507), - [anon_sym_DOLLARvaref] = ACTIONS(1507), - [anon_sym_DOLLARvaexpr] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1507), - [anon_sym_false] = ACTIONS(1507), - [anon_sym_null] = ACTIONS(1507), - [anon_sym_DOLLARvacount] = ACTIONS(1507), - [anon_sym_DOLLARfeature] = ACTIONS(1507), - [anon_sym_DOLLARand] = ACTIONS(1507), - [anon_sym_DOLLARor] = ACTIONS(1507), - [anon_sym_DOLLARassignable] = ACTIONS(1507), - [anon_sym_DOLLARembed] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_TILDE] = ACTIONS(1509), - [anon_sym_PLUS_PLUS] = ACTIONS(1509), - [anon_sym_DASH_DASH] = ACTIONS(1509), - [anon_sym_typeid] = ACTIONS(1507), - [anon_sym_LBRACE_PIPE] = ACTIONS(1509), - [anon_sym_void] = ACTIONS(1507), - [anon_sym_bool] = ACTIONS(1507), - [anon_sym_char] = ACTIONS(1507), - [anon_sym_ichar] = ACTIONS(1507), - [anon_sym_short] = ACTIONS(1507), - [anon_sym_ushort] = ACTIONS(1507), - [anon_sym_uint] = ACTIONS(1507), - [anon_sym_long] = ACTIONS(1507), - [anon_sym_ulong] = ACTIONS(1507), - [anon_sym_int128] = ACTIONS(1507), - [anon_sym_uint128] = ACTIONS(1507), - [anon_sym_float] = ACTIONS(1507), - [anon_sym_double] = ACTIONS(1507), - [anon_sym_float16] = ACTIONS(1507), - [anon_sym_bfloat16] = ACTIONS(1507), - [anon_sym_float128] = ACTIONS(1507), - [anon_sym_iptr] = ACTIONS(1507), - [anon_sym_uptr] = ACTIONS(1507), - [anon_sym_isz] = ACTIONS(1507), - [anon_sym_usz] = ACTIONS(1507), - [anon_sym_anyfault] = ACTIONS(1507), - [anon_sym_any] = ACTIONS(1507), - [anon_sym_DOLLARtypeof] = ACTIONS(1507), - [anon_sym_DOLLARtypefrom] = ACTIONS(1507), - [anon_sym_DOLLARvatype] = ACTIONS(1507), - [anon_sym_DOLLARevaltype] = ACTIONS(1507), - [sym_real_literal] = ACTIONS(1509), + [740] = { + [sym_line_comment] = STATE(740), + [sym_doc_comment] = STATE(740), + [sym_block_comment] = STATE(740), + [sym_ident] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(1539), + [anon_sym_BQUOTE] = ACTIONS(1539), + [sym_bytes_literal] = ACTIONS(1539), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1537), + [sym_at_ident] = ACTIONS(1539), + [sym_hash_ident] = ACTIONS(1539), + [sym_type_ident] = ACTIONS(1539), + [sym_ct_type_ident] = ACTIONS(1539), + [sym_const_ident] = ACTIONS(1537), + [sym_builtin] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_tlocal] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_fn] = ACTIONS(1537), + [anon_sym_LBRACE] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_var] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_defer] = ACTIONS(1537), + [anon_sym_assert] = ACTIONS(1537), + [anon_sym_nextcase] = ACTIONS(1537), + [anon_sym_switch] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_foreach] = ACTIONS(1537), + [anon_sym_foreach_r] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_do] = ACTIONS(1537), + [anon_sym_int] = ACTIONS(1537), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1539), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym_DOLLARassert] = ACTIONS(1537), + [anon_sym_DOLLARerror] = ACTIONS(1537), + [anon_sym_DOLLARecho] = ACTIONS(1537), + [anon_sym_DOLLARif] = ACTIONS(1537), + [anon_sym_DOLLARendif] = ACTIONS(1537), + [anon_sym_DOLLARswitch] = ACTIONS(1537), + [anon_sym_DOLLARfor] = ACTIONS(1537), + [anon_sym_DOLLARforeach] = ACTIONS(1537), + [anon_sym_DOLLARalignof] = ACTIONS(1537), + [anon_sym_DOLLARextnameof] = ACTIONS(1537), + [anon_sym_DOLLARnameof] = ACTIONS(1537), + [anon_sym_DOLLARoffsetof] = ACTIONS(1537), + [anon_sym_DOLLARqnameof] = ACTIONS(1537), + [anon_sym_DOLLARvaconst] = ACTIONS(1537), + [anon_sym_DOLLARvaarg] = ACTIONS(1537), + [anon_sym_DOLLARvaref] = ACTIONS(1537), + [anon_sym_DOLLARvaexpr] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_null] = ACTIONS(1537), + [anon_sym_DOLLARvacount] = ACTIONS(1537), + [anon_sym_DOLLAReval] = ACTIONS(1537), + [anon_sym_DOLLARis_const] = ACTIONS(1537), + [anon_sym_DOLLARsizeof] = ACTIONS(1537), + [anon_sym_DOLLARstringify] = ACTIONS(1537), + [anon_sym_DOLLARappend] = ACTIONS(1537), + [anon_sym_DOLLARconcat] = ACTIONS(1537), + [anon_sym_DOLLARdefined] = ACTIONS(1537), + [anon_sym_DOLLARembed] = ACTIONS(1537), + [anon_sym_DOLLARand] = ACTIONS(1537), + [anon_sym_DOLLARor] = ACTIONS(1537), + [anon_sym_DOLLARfeature] = ACTIONS(1537), + [anon_sym_DOLLARassignable] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1539), + [anon_sym_TILDE] = ACTIONS(1539), + [anon_sym_PLUS_PLUS] = ACTIONS(1539), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_typeid] = ACTIONS(1537), + [anon_sym_LBRACE_PIPE] = ACTIONS(1539), + [anon_sym_void] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_ichar] = ACTIONS(1537), + [anon_sym_short] = ACTIONS(1537), + [anon_sym_ushort] = ACTIONS(1537), + [anon_sym_uint] = ACTIONS(1537), + [anon_sym_long] = ACTIONS(1537), + [anon_sym_ulong] = ACTIONS(1537), + [anon_sym_int128] = ACTIONS(1537), + [anon_sym_uint128] = ACTIONS(1537), + [anon_sym_float] = ACTIONS(1537), + [anon_sym_double] = ACTIONS(1537), + [anon_sym_float16] = ACTIONS(1537), + [anon_sym_bfloat16] = ACTIONS(1537), + [anon_sym_float128] = ACTIONS(1537), + [anon_sym_iptr] = ACTIONS(1537), + [anon_sym_uptr] = ACTIONS(1537), + [anon_sym_isz] = ACTIONS(1537), + [anon_sym_usz] = ACTIONS(1537), + [anon_sym_anyfault] = ACTIONS(1537), + [anon_sym_any] = ACTIONS(1537), + [anon_sym_DOLLARtypeof] = ACTIONS(1537), + [anon_sym_DOLLARtypefrom] = ACTIONS(1537), + [anon_sym_DOLLARevaltype] = ACTIONS(1537), + [anon_sym_DOLLARvatype] = ACTIONS(1537), + [sym_real_literal] = ACTIONS(1539), }, - [757] = { - [sym_line_comment] = STATE(757), - [sym_doc_comment] = STATE(757), - [sym_block_comment] = STATE(757), - [sym_ident] = ACTIONS(1487), - [sym_integer_literal] = ACTIONS(1489), - [anon_sym_SQUOTE] = ACTIONS(1489), - [anon_sym_DQUOTE] = ACTIONS(1489), - [anon_sym_BQUOTE] = ACTIONS(1489), - [sym_bytes_literal] = ACTIONS(1489), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1487), - [sym_at_ident] = ACTIONS(1489), - [sym_hash_ident] = ACTIONS(1489), - [sym_type_ident] = ACTIONS(1489), - [sym_ct_type_ident] = ACTIONS(1489), - [sym_const_ident] = ACTIONS(1487), - [sym_builtin] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_static] = ACTIONS(1487), - [anon_sym_tlocal] = ACTIONS(1487), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_fn] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1487), - [anon_sym_var] = ACTIONS(1487), - [anon_sym_return] = ACTIONS(1487), - [anon_sym_continue] = ACTIONS(1487), - [anon_sym_break] = ACTIONS(1487), - [anon_sym_defer] = ACTIONS(1487), - [anon_sym_assert] = ACTIONS(1487), - [anon_sym_nextcase] = ACTIONS(1487), - [anon_sym_switch] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1487), - [anon_sym_for] = ACTIONS(1487), - [anon_sym_foreach] = ACTIONS(1487), - [anon_sym_foreach_r] = ACTIONS(1487), - [anon_sym_while] = ACTIONS(1487), - [anon_sym_do] = ACTIONS(1487), - [anon_sym_int] = ACTIONS(1487), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_asm] = ACTIONS(1487), - [anon_sym_DOLLARassert] = ACTIONS(1487), - [anon_sym_DOLLARerror] = ACTIONS(1487), - [anon_sym_DOLLARecho] = ACTIONS(1487), - [anon_sym_DOLLARif] = ACTIONS(1487), - [anon_sym_DOLLARswitch] = ACTIONS(1487), - [anon_sym_DOLLARfor] = ACTIONS(1487), - [anon_sym_DOLLARforeach] = ACTIONS(1487), - [anon_sym_DOLLARendforeach] = ACTIONS(1487), - [anon_sym_DOLLARalignof] = ACTIONS(1487), - [anon_sym_DOLLARextnameof] = ACTIONS(1487), - [anon_sym_DOLLARnameof] = ACTIONS(1487), - [anon_sym_DOLLARoffsetof] = ACTIONS(1487), - [anon_sym_DOLLARqnameof] = ACTIONS(1487), - [anon_sym_DOLLAReval] = ACTIONS(1487), - [anon_sym_DOLLARdefined] = ACTIONS(1487), - [anon_sym_DOLLARsizeof] = ACTIONS(1487), - [anon_sym_DOLLARstringify] = ACTIONS(1487), - [anon_sym_DOLLARis_const] = ACTIONS(1487), - [anon_sym_DOLLARvaconst] = ACTIONS(1487), - [anon_sym_DOLLARvaarg] = ACTIONS(1487), - [anon_sym_DOLLARvaref] = ACTIONS(1487), - [anon_sym_DOLLARvaexpr] = ACTIONS(1487), - [anon_sym_true] = ACTIONS(1487), - [anon_sym_false] = ACTIONS(1487), - [anon_sym_null] = ACTIONS(1487), - [anon_sym_DOLLARvacount] = ACTIONS(1487), - [anon_sym_DOLLARfeature] = ACTIONS(1487), - [anon_sym_DOLLARand] = ACTIONS(1487), - [anon_sym_DOLLARor] = ACTIONS(1487), - [anon_sym_DOLLARassignable] = ACTIONS(1487), - [anon_sym_DOLLARembed] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1489), - [anon_sym_typeid] = ACTIONS(1487), - [anon_sym_LBRACE_PIPE] = ACTIONS(1489), - [anon_sym_void] = ACTIONS(1487), - [anon_sym_bool] = ACTIONS(1487), - [anon_sym_char] = ACTIONS(1487), - [anon_sym_ichar] = ACTIONS(1487), - [anon_sym_short] = ACTIONS(1487), - [anon_sym_ushort] = ACTIONS(1487), - [anon_sym_uint] = ACTIONS(1487), - [anon_sym_long] = ACTIONS(1487), - [anon_sym_ulong] = ACTIONS(1487), - [anon_sym_int128] = ACTIONS(1487), - [anon_sym_uint128] = ACTIONS(1487), - [anon_sym_float] = ACTIONS(1487), - [anon_sym_double] = ACTIONS(1487), - [anon_sym_float16] = ACTIONS(1487), - [anon_sym_bfloat16] = ACTIONS(1487), - [anon_sym_float128] = ACTIONS(1487), - [anon_sym_iptr] = ACTIONS(1487), - [anon_sym_uptr] = ACTIONS(1487), - [anon_sym_isz] = ACTIONS(1487), - [anon_sym_usz] = ACTIONS(1487), - [anon_sym_anyfault] = ACTIONS(1487), - [anon_sym_any] = ACTIONS(1487), - [anon_sym_DOLLARtypeof] = ACTIONS(1487), - [anon_sym_DOLLARtypefrom] = ACTIONS(1487), - [anon_sym_DOLLARvatype] = ACTIONS(1487), - [anon_sym_DOLLARevaltype] = ACTIONS(1487), - [sym_real_literal] = ACTIONS(1489), + [741] = { + [sym_line_comment] = STATE(741), + [sym_doc_comment] = STATE(741), + [sym_block_comment] = STATE(741), + [sym_ident] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1555), + [anon_sym_BQUOTE] = ACTIONS(1555), + [sym_bytes_literal] = ACTIONS(1555), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1553), + [sym_at_ident] = ACTIONS(1555), + [sym_hash_ident] = ACTIONS(1555), + [sym_type_ident] = ACTIONS(1555), + [sym_ct_type_ident] = ACTIONS(1555), + [sym_const_ident] = ACTIONS(1553), + [sym_builtin] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_tlocal] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1553), + [anon_sym_LBRACE] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_var] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_defer] = ACTIONS(1553), + [anon_sym_assert] = ACTIONS(1553), + [anon_sym_nextcase] = ACTIONS(1553), + [anon_sym_switch] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_foreach] = ACTIONS(1553), + [anon_sym_foreach_r] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_do] = ACTIONS(1553), + [anon_sym_int] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1555), + [anon_sym_asm] = ACTIONS(1553), + [anon_sym_DOLLARassert] = ACTIONS(1553), + [anon_sym_DOLLARerror] = ACTIONS(1553), + [anon_sym_DOLLARecho] = ACTIONS(1553), + [anon_sym_DOLLARif] = ACTIONS(1553), + [anon_sym_DOLLARendif] = ACTIONS(1553), + [anon_sym_DOLLARswitch] = ACTIONS(1553), + [anon_sym_DOLLARfor] = ACTIONS(1553), + [anon_sym_DOLLARforeach] = ACTIONS(1553), + [anon_sym_DOLLARalignof] = ACTIONS(1553), + [anon_sym_DOLLARextnameof] = ACTIONS(1553), + [anon_sym_DOLLARnameof] = ACTIONS(1553), + [anon_sym_DOLLARoffsetof] = ACTIONS(1553), + [anon_sym_DOLLARqnameof] = ACTIONS(1553), + [anon_sym_DOLLARvaconst] = ACTIONS(1553), + [anon_sym_DOLLARvaarg] = ACTIONS(1553), + [anon_sym_DOLLARvaref] = ACTIONS(1553), + [anon_sym_DOLLARvaexpr] = ACTIONS(1553), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_null] = ACTIONS(1553), + [anon_sym_DOLLARvacount] = ACTIONS(1553), + [anon_sym_DOLLAReval] = ACTIONS(1553), + [anon_sym_DOLLARis_const] = ACTIONS(1553), + [anon_sym_DOLLARsizeof] = ACTIONS(1553), + [anon_sym_DOLLARstringify] = ACTIONS(1553), + [anon_sym_DOLLARappend] = ACTIONS(1553), + [anon_sym_DOLLARconcat] = ACTIONS(1553), + [anon_sym_DOLLARdefined] = ACTIONS(1553), + [anon_sym_DOLLARembed] = ACTIONS(1553), + [anon_sym_DOLLARand] = ACTIONS(1553), + [anon_sym_DOLLARor] = ACTIONS(1553), + [anon_sym_DOLLARfeature] = ACTIONS(1553), + [anon_sym_DOLLARassignable] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1555), + [anon_sym_TILDE] = ACTIONS(1555), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_DASH_DASH] = ACTIONS(1555), + [anon_sym_typeid] = ACTIONS(1553), + [anon_sym_LBRACE_PIPE] = ACTIONS(1555), + [anon_sym_void] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_ichar] = ACTIONS(1553), + [anon_sym_short] = ACTIONS(1553), + [anon_sym_ushort] = ACTIONS(1553), + [anon_sym_uint] = ACTIONS(1553), + [anon_sym_long] = ACTIONS(1553), + [anon_sym_ulong] = ACTIONS(1553), + [anon_sym_int128] = ACTIONS(1553), + [anon_sym_uint128] = ACTIONS(1553), + [anon_sym_float] = ACTIONS(1553), + [anon_sym_double] = ACTIONS(1553), + [anon_sym_float16] = ACTIONS(1553), + [anon_sym_bfloat16] = ACTIONS(1553), + [anon_sym_float128] = ACTIONS(1553), + [anon_sym_iptr] = ACTIONS(1553), + [anon_sym_uptr] = ACTIONS(1553), + [anon_sym_isz] = ACTIONS(1553), + [anon_sym_usz] = ACTIONS(1553), + [anon_sym_anyfault] = ACTIONS(1553), + [anon_sym_any] = ACTIONS(1553), + [anon_sym_DOLLARtypeof] = ACTIONS(1553), + [anon_sym_DOLLARtypefrom] = ACTIONS(1553), + [anon_sym_DOLLARevaltype] = ACTIONS(1553), + [anon_sym_DOLLARvatype] = ACTIONS(1553), + [sym_real_literal] = ACTIONS(1555), }, - [758] = { - [sym_line_comment] = STATE(758), - [sym_doc_comment] = STATE(758), - [sym_block_comment] = STATE(758), - [sym_ident] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1485), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_DQUOTE] = ACTIONS(1485), - [anon_sym_BQUOTE] = ACTIONS(1485), - [sym_bytes_literal] = ACTIONS(1485), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1483), - [sym_at_ident] = ACTIONS(1485), - [sym_hash_ident] = ACTIONS(1485), - [sym_type_ident] = ACTIONS(1485), - [sym_ct_type_ident] = ACTIONS(1485), - [sym_const_ident] = ACTIONS(1483), - [sym_builtin] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_tlocal] = ACTIONS(1483), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_fn] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_var] = ACTIONS(1483), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_defer] = ACTIONS(1483), - [anon_sym_assert] = ACTIONS(1483), - [anon_sym_nextcase] = ACTIONS(1483), - [anon_sym_switch] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(1483), - [anon_sym_foreach] = ACTIONS(1483), - [anon_sym_foreach_r] = ACTIONS(1483), - [anon_sym_while] = ACTIONS(1483), - [anon_sym_do] = ACTIONS(1483), - [anon_sym_int] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_asm] = ACTIONS(1483), - [anon_sym_DOLLARassert] = ACTIONS(1483), - [anon_sym_DOLLARerror] = ACTIONS(1483), - [anon_sym_DOLLARecho] = ACTIONS(1483), - [anon_sym_DOLLARif] = ACTIONS(1483), - [anon_sym_DOLLARswitch] = ACTIONS(1483), - [anon_sym_DOLLARfor] = ACTIONS(1483), - [anon_sym_DOLLARforeach] = ACTIONS(1483), - [anon_sym_DOLLARendforeach] = ACTIONS(1483), - [anon_sym_DOLLARalignof] = ACTIONS(1483), - [anon_sym_DOLLARextnameof] = ACTIONS(1483), - [anon_sym_DOLLARnameof] = ACTIONS(1483), - [anon_sym_DOLLARoffsetof] = ACTIONS(1483), - [anon_sym_DOLLARqnameof] = ACTIONS(1483), - [anon_sym_DOLLAReval] = ACTIONS(1483), - [anon_sym_DOLLARdefined] = ACTIONS(1483), - [anon_sym_DOLLARsizeof] = ACTIONS(1483), - [anon_sym_DOLLARstringify] = ACTIONS(1483), - [anon_sym_DOLLARis_const] = ACTIONS(1483), - [anon_sym_DOLLARvaconst] = ACTIONS(1483), - [anon_sym_DOLLARvaarg] = ACTIONS(1483), - [anon_sym_DOLLARvaref] = ACTIONS(1483), - [anon_sym_DOLLARvaexpr] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_null] = ACTIONS(1483), - [anon_sym_DOLLARvacount] = ACTIONS(1483), - [anon_sym_DOLLARfeature] = ACTIONS(1483), - [anon_sym_DOLLARand] = ACTIONS(1483), - [anon_sym_DOLLARor] = ACTIONS(1483), - [anon_sym_DOLLARassignable] = ACTIONS(1483), - [anon_sym_DOLLARembed] = ACTIONS(1483), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_TILDE] = ACTIONS(1485), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_DASH_DASH] = ACTIONS(1485), - [anon_sym_typeid] = ACTIONS(1483), - [anon_sym_LBRACE_PIPE] = ACTIONS(1485), - [anon_sym_void] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_ichar] = ACTIONS(1483), - [anon_sym_short] = ACTIONS(1483), - [anon_sym_ushort] = ACTIONS(1483), - [anon_sym_uint] = ACTIONS(1483), - [anon_sym_long] = ACTIONS(1483), - [anon_sym_ulong] = ACTIONS(1483), - [anon_sym_int128] = ACTIONS(1483), - [anon_sym_uint128] = ACTIONS(1483), - [anon_sym_float] = ACTIONS(1483), - [anon_sym_double] = ACTIONS(1483), - [anon_sym_float16] = ACTIONS(1483), - [anon_sym_bfloat16] = ACTIONS(1483), - [anon_sym_float128] = ACTIONS(1483), - [anon_sym_iptr] = ACTIONS(1483), - [anon_sym_uptr] = ACTIONS(1483), - [anon_sym_isz] = ACTIONS(1483), - [anon_sym_usz] = ACTIONS(1483), - [anon_sym_anyfault] = ACTIONS(1483), - [anon_sym_any] = ACTIONS(1483), - [anon_sym_DOLLARtypeof] = ACTIONS(1483), - [anon_sym_DOLLARtypefrom] = ACTIONS(1483), - [anon_sym_DOLLARvatype] = ACTIONS(1483), - [anon_sym_DOLLARevaltype] = ACTIONS(1483), - [sym_real_literal] = ACTIONS(1485), + [742] = { + [sym_line_comment] = STATE(742), + [sym_doc_comment] = STATE(742), + [sym_block_comment] = STATE(742), + [sym_ident] = ACTIONS(1573), + [sym_integer_literal] = ACTIONS(1575), + [anon_sym_SQUOTE] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [anon_sym_BQUOTE] = ACTIONS(1575), + [sym_bytes_literal] = ACTIONS(1575), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1573), + [sym_at_ident] = ACTIONS(1575), + [sym_hash_ident] = ACTIONS(1575), + [sym_type_ident] = ACTIONS(1575), + [sym_ct_type_ident] = ACTIONS(1575), + [sym_const_ident] = ACTIONS(1573), + [sym_builtin] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_static] = ACTIONS(1573), + [anon_sym_tlocal] = ACTIONS(1573), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_fn] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [anon_sym_var] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_defer] = ACTIONS(1573), + [anon_sym_assert] = ACTIONS(1573), + [anon_sym_nextcase] = ACTIONS(1573), + [anon_sym_switch] = ACTIONS(1573), + [anon_sym_AMP_AMP] = ACTIONS(1575), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_foreach] = ACTIONS(1573), + [anon_sym_foreach_r] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_int] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1575), + [anon_sym_asm] = ACTIONS(1573), + [anon_sym_DOLLARassert] = ACTIONS(1573), + [anon_sym_DOLLARerror] = ACTIONS(1573), + [anon_sym_DOLLARecho] = ACTIONS(1573), + [anon_sym_DOLLARif] = ACTIONS(1573), + [anon_sym_DOLLARendif] = ACTIONS(1573), + [anon_sym_DOLLARswitch] = ACTIONS(1573), + [anon_sym_DOLLARfor] = ACTIONS(1573), + [anon_sym_DOLLARforeach] = ACTIONS(1573), + [anon_sym_DOLLARalignof] = ACTIONS(1573), + [anon_sym_DOLLARextnameof] = ACTIONS(1573), + [anon_sym_DOLLARnameof] = ACTIONS(1573), + [anon_sym_DOLLARoffsetof] = ACTIONS(1573), + [anon_sym_DOLLARqnameof] = ACTIONS(1573), + [anon_sym_DOLLARvaconst] = ACTIONS(1573), + [anon_sym_DOLLARvaarg] = ACTIONS(1573), + [anon_sym_DOLLARvaref] = ACTIONS(1573), + [anon_sym_DOLLARvaexpr] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [anon_sym_null] = ACTIONS(1573), + [anon_sym_DOLLARvacount] = ACTIONS(1573), + [anon_sym_DOLLAReval] = ACTIONS(1573), + [anon_sym_DOLLARis_const] = ACTIONS(1573), + [anon_sym_DOLLARsizeof] = ACTIONS(1573), + [anon_sym_DOLLARstringify] = ACTIONS(1573), + [anon_sym_DOLLARappend] = ACTIONS(1573), + [anon_sym_DOLLARconcat] = ACTIONS(1573), + [anon_sym_DOLLARdefined] = ACTIONS(1573), + [anon_sym_DOLLARembed] = ACTIONS(1573), + [anon_sym_DOLLARand] = ACTIONS(1573), + [anon_sym_DOLLARor] = ACTIONS(1573), + [anon_sym_DOLLARfeature] = ACTIONS(1573), + [anon_sym_DOLLARassignable] = ACTIONS(1573), + [anon_sym_BANG] = ACTIONS(1575), + [anon_sym_TILDE] = ACTIONS(1575), + [anon_sym_PLUS_PLUS] = ACTIONS(1575), + [anon_sym_DASH_DASH] = ACTIONS(1575), + [anon_sym_typeid] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_bool] = ACTIONS(1573), + [anon_sym_char] = ACTIONS(1573), + [anon_sym_ichar] = ACTIONS(1573), + [anon_sym_short] = ACTIONS(1573), + [anon_sym_ushort] = ACTIONS(1573), + [anon_sym_uint] = ACTIONS(1573), + [anon_sym_long] = ACTIONS(1573), + [anon_sym_ulong] = ACTIONS(1573), + [anon_sym_int128] = ACTIONS(1573), + [anon_sym_uint128] = ACTIONS(1573), + [anon_sym_float] = ACTIONS(1573), + [anon_sym_double] = ACTIONS(1573), + [anon_sym_float16] = ACTIONS(1573), + [anon_sym_bfloat16] = ACTIONS(1573), + [anon_sym_float128] = ACTIONS(1573), + [anon_sym_iptr] = ACTIONS(1573), + [anon_sym_uptr] = ACTIONS(1573), + [anon_sym_isz] = ACTIONS(1573), + [anon_sym_usz] = ACTIONS(1573), + [anon_sym_anyfault] = ACTIONS(1573), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_DOLLARtypeof] = ACTIONS(1573), + [anon_sym_DOLLARtypefrom] = ACTIONS(1573), + [anon_sym_DOLLARevaltype] = ACTIONS(1573), + [anon_sym_DOLLARvatype] = ACTIONS(1573), + [sym_real_literal] = ACTIONS(1575), }, - [759] = { - [sym_line_comment] = STATE(759), - [sym_doc_comment] = STATE(759), - [sym_block_comment] = STATE(759), - [sym_ident] = ACTIONS(1503), - [sym_integer_literal] = ACTIONS(1505), - [anon_sym_SQUOTE] = ACTIONS(1505), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_BQUOTE] = ACTIONS(1505), - [sym_bytes_literal] = ACTIONS(1505), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1503), - [sym_at_ident] = ACTIONS(1505), - [sym_hash_ident] = ACTIONS(1505), - [sym_type_ident] = ACTIONS(1505), - [sym_ct_type_ident] = ACTIONS(1505), - [sym_const_ident] = ACTIONS(1503), - [sym_builtin] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1503), - [anon_sym_tlocal] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym_fn] = ACTIONS(1503), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_const] = ACTIONS(1503), - [anon_sym_var] = ACTIONS(1503), - [anon_sym_return] = ACTIONS(1503), - [anon_sym_continue] = ACTIONS(1503), - [anon_sym_break] = ACTIONS(1503), - [anon_sym_defer] = ACTIONS(1503), - [anon_sym_assert] = ACTIONS(1503), - [anon_sym_nextcase] = ACTIONS(1503), - [anon_sym_switch] = ACTIONS(1503), - [anon_sym_AMP_AMP] = ACTIONS(1505), - [anon_sym_if] = ACTIONS(1503), - [anon_sym_for] = ACTIONS(1503), - [anon_sym_foreach] = ACTIONS(1503), - [anon_sym_foreach_r] = ACTIONS(1503), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_do] = ACTIONS(1503), - [anon_sym_int] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1505), - [anon_sym_asm] = ACTIONS(1503), - [anon_sym_DOLLARassert] = ACTIONS(1503), - [anon_sym_DOLLARerror] = ACTIONS(1503), - [anon_sym_DOLLARecho] = ACTIONS(1503), - [anon_sym_DOLLARif] = ACTIONS(1503), - [anon_sym_DOLLARswitch] = ACTIONS(1503), - [anon_sym_DOLLARfor] = ACTIONS(1503), - [anon_sym_DOLLARforeach] = ACTIONS(1503), - [anon_sym_DOLLARendforeach] = ACTIONS(1503), - [anon_sym_DOLLARalignof] = ACTIONS(1503), - [anon_sym_DOLLARextnameof] = ACTIONS(1503), - [anon_sym_DOLLARnameof] = ACTIONS(1503), - [anon_sym_DOLLARoffsetof] = ACTIONS(1503), - [anon_sym_DOLLARqnameof] = ACTIONS(1503), - [anon_sym_DOLLAReval] = ACTIONS(1503), - [anon_sym_DOLLARdefined] = ACTIONS(1503), - [anon_sym_DOLLARsizeof] = ACTIONS(1503), - [anon_sym_DOLLARstringify] = ACTIONS(1503), - [anon_sym_DOLLARis_const] = ACTIONS(1503), - [anon_sym_DOLLARvaconst] = ACTIONS(1503), - [anon_sym_DOLLARvaarg] = ACTIONS(1503), - [anon_sym_DOLLARvaref] = ACTIONS(1503), - [anon_sym_DOLLARvaexpr] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(1503), - [anon_sym_false] = ACTIONS(1503), - [anon_sym_null] = ACTIONS(1503), - [anon_sym_DOLLARvacount] = ACTIONS(1503), - [anon_sym_DOLLARfeature] = ACTIONS(1503), - [anon_sym_DOLLARand] = ACTIONS(1503), - [anon_sym_DOLLARor] = ACTIONS(1503), - [anon_sym_DOLLARassignable] = ACTIONS(1503), - [anon_sym_DOLLARembed] = ACTIONS(1503), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_TILDE] = ACTIONS(1505), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [anon_sym_typeid] = ACTIONS(1503), - [anon_sym_LBRACE_PIPE] = ACTIONS(1505), - [anon_sym_void] = ACTIONS(1503), - [anon_sym_bool] = ACTIONS(1503), - [anon_sym_char] = ACTIONS(1503), - [anon_sym_ichar] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [anon_sym_ushort] = ACTIONS(1503), - [anon_sym_uint] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_ulong] = ACTIONS(1503), - [anon_sym_int128] = ACTIONS(1503), - [anon_sym_uint128] = ACTIONS(1503), - [anon_sym_float] = ACTIONS(1503), - [anon_sym_double] = ACTIONS(1503), - [anon_sym_float16] = ACTIONS(1503), - [anon_sym_bfloat16] = ACTIONS(1503), - [anon_sym_float128] = ACTIONS(1503), - [anon_sym_iptr] = ACTIONS(1503), - [anon_sym_uptr] = ACTIONS(1503), - [anon_sym_isz] = ACTIONS(1503), - [anon_sym_usz] = ACTIONS(1503), - [anon_sym_anyfault] = ACTIONS(1503), - [anon_sym_any] = ACTIONS(1503), - [anon_sym_DOLLARtypeof] = ACTIONS(1503), - [anon_sym_DOLLARtypefrom] = ACTIONS(1503), - [anon_sym_DOLLARvatype] = ACTIONS(1503), - [anon_sym_DOLLARevaltype] = ACTIONS(1503), - [sym_real_literal] = ACTIONS(1505), + [743] = { + [sym_line_comment] = STATE(743), + [sym_doc_comment] = STATE(743), + [sym_block_comment] = STATE(743), + [sym_ident] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1579), + [anon_sym_SQUOTE] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1579), + [anon_sym_BQUOTE] = ACTIONS(1579), + [sym_bytes_literal] = ACTIONS(1579), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1577), + [sym_at_ident] = ACTIONS(1579), + [sym_hash_ident] = ACTIONS(1579), + [sym_type_ident] = ACTIONS(1579), + [sym_ct_type_ident] = ACTIONS(1579), + [sym_const_ident] = ACTIONS(1577), + [sym_builtin] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1579), + [anon_sym_AMP] = ACTIONS(1577), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_tlocal] = ACTIONS(1577), + [anon_sym_SEMI] = ACTIONS(1579), + [anon_sym_fn] = ACTIONS(1577), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_const] = ACTIONS(1577), + [anon_sym_var] = ACTIONS(1577), + [anon_sym_return] = ACTIONS(1577), + [anon_sym_continue] = ACTIONS(1577), + [anon_sym_break] = ACTIONS(1577), + [anon_sym_defer] = ACTIONS(1577), + [anon_sym_assert] = ACTIONS(1577), + [anon_sym_nextcase] = ACTIONS(1577), + [anon_sym_switch] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1579), + [anon_sym_if] = ACTIONS(1577), + [anon_sym_for] = ACTIONS(1577), + [anon_sym_foreach] = ACTIONS(1577), + [anon_sym_foreach_r] = ACTIONS(1577), + [anon_sym_while] = ACTIONS(1577), + [anon_sym_do] = ACTIONS(1577), + [anon_sym_int] = ACTIONS(1577), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(1579), + [anon_sym_asm] = ACTIONS(1577), + [anon_sym_DOLLARassert] = ACTIONS(1577), + [anon_sym_DOLLARerror] = ACTIONS(1577), + [anon_sym_DOLLARecho] = ACTIONS(1577), + [anon_sym_DOLLARif] = ACTIONS(1577), + [anon_sym_DOLLARendif] = ACTIONS(1577), + [anon_sym_DOLLARswitch] = ACTIONS(1577), + [anon_sym_DOLLARfor] = ACTIONS(1577), + [anon_sym_DOLLARforeach] = ACTIONS(1577), + [anon_sym_DOLLARalignof] = ACTIONS(1577), + [anon_sym_DOLLARextnameof] = ACTIONS(1577), + [anon_sym_DOLLARnameof] = ACTIONS(1577), + [anon_sym_DOLLARoffsetof] = ACTIONS(1577), + [anon_sym_DOLLARqnameof] = ACTIONS(1577), + [anon_sym_DOLLARvaconst] = ACTIONS(1577), + [anon_sym_DOLLARvaarg] = ACTIONS(1577), + [anon_sym_DOLLARvaref] = ACTIONS(1577), + [anon_sym_DOLLARvaexpr] = ACTIONS(1577), + [anon_sym_true] = ACTIONS(1577), + [anon_sym_false] = ACTIONS(1577), + [anon_sym_null] = ACTIONS(1577), + [anon_sym_DOLLARvacount] = ACTIONS(1577), + [anon_sym_DOLLAReval] = ACTIONS(1577), + [anon_sym_DOLLARis_const] = ACTIONS(1577), + [anon_sym_DOLLARsizeof] = ACTIONS(1577), + [anon_sym_DOLLARstringify] = ACTIONS(1577), + [anon_sym_DOLLARappend] = ACTIONS(1577), + [anon_sym_DOLLARconcat] = ACTIONS(1577), + [anon_sym_DOLLARdefined] = ACTIONS(1577), + [anon_sym_DOLLARembed] = ACTIONS(1577), + [anon_sym_DOLLARand] = ACTIONS(1577), + [anon_sym_DOLLARor] = ACTIONS(1577), + [anon_sym_DOLLARfeature] = ACTIONS(1577), + [anon_sym_DOLLARassignable] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1579), + [anon_sym_TILDE] = ACTIONS(1579), + [anon_sym_PLUS_PLUS] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1579), + [anon_sym_typeid] = ACTIONS(1577), + [anon_sym_LBRACE_PIPE] = ACTIONS(1579), + [anon_sym_void] = ACTIONS(1577), + [anon_sym_bool] = ACTIONS(1577), + [anon_sym_char] = ACTIONS(1577), + [anon_sym_ichar] = ACTIONS(1577), + [anon_sym_short] = ACTIONS(1577), + [anon_sym_ushort] = ACTIONS(1577), + [anon_sym_uint] = ACTIONS(1577), + [anon_sym_long] = ACTIONS(1577), + [anon_sym_ulong] = ACTIONS(1577), + [anon_sym_int128] = ACTIONS(1577), + [anon_sym_uint128] = ACTIONS(1577), + [anon_sym_float] = ACTIONS(1577), + [anon_sym_double] = ACTIONS(1577), + [anon_sym_float16] = ACTIONS(1577), + [anon_sym_bfloat16] = ACTIONS(1577), + [anon_sym_float128] = ACTIONS(1577), + [anon_sym_iptr] = ACTIONS(1577), + [anon_sym_uptr] = ACTIONS(1577), + [anon_sym_isz] = ACTIONS(1577), + [anon_sym_usz] = ACTIONS(1577), + [anon_sym_anyfault] = ACTIONS(1577), + [anon_sym_any] = ACTIONS(1577), + [anon_sym_DOLLARtypeof] = ACTIONS(1577), + [anon_sym_DOLLARtypefrom] = ACTIONS(1577), + [anon_sym_DOLLARevaltype] = ACTIONS(1577), + [anon_sym_DOLLARvatype] = ACTIONS(1577), + [sym_real_literal] = ACTIONS(1579), }, - [760] = { - [sym_line_comment] = STATE(760), - [sym_doc_comment] = STATE(760), - [sym_block_comment] = STATE(760), - [sym_ident] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1427), - [anon_sym_SQUOTE] = ACTIONS(1427), - [anon_sym_DQUOTE] = ACTIONS(1427), - [anon_sym_BQUOTE] = ACTIONS(1427), - [sym_bytes_literal] = ACTIONS(1427), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1425), - [sym_at_ident] = ACTIONS(1427), - [sym_hash_ident] = ACTIONS(1427), - [sym_type_ident] = ACTIONS(1427), - [sym_ct_type_ident] = ACTIONS(1427), - [sym_const_ident] = ACTIONS(1425), - [sym_builtin] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_tlocal] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_fn] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_var] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_defer] = ACTIONS(1425), - [anon_sym_assert] = ACTIONS(1425), - [anon_sym_nextcase] = ACTIONS(1425), - [anon_sym_switch] = ACTIONS(1425), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_foreach] = ACTIONS(1425), - [anon_sym_foreach_r] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_do] = ACTIONS(1425), - [anon_sym_int] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1425), - [anon_sym_DASH] = ACTIONS(1425), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_asm] = ACTIONS(1425), - [anon_sym_DOLLARassert] = ACTIONS(1425), - [anon_sym_DOLLARerror] = ACTIONS(1425), - [anon_sym_DOLLARecho] = ACTIONS(1425), - [anon_sym_DOLLARif] = ACTIONS(1425), - [anon_sym_DOLLARswitch] = ACTIONS(1425), - [anon_sym_DOLLARfor] = ACTIONS(1425), - [anon_sym_DOLLARforeach] = ACTIONS(1425), - [anon_sym_DOLLARendforeach] = ACTIONS(1425), - [anon_sym_DOLLARalignof] = ACTIONS(1425), - [anon_sym_DOLLARextnameof] = ACTIONS(1425), - [anon_sym_DOLLARnameof] = ACTIONS(1425), - [anon_sym_DOLLARoffsetof] = ACTIONS(1425), - [anon_sym_DOLLARqnameof] = ACTIONS(1425), - [anon_sym_DOLLAReval] = ACTIONS(1425), - [anon_sym_DOLLARdefined] = ACTIONS(1425), - [anon_sym_DOLLARsizeof] = ACTIONS(1425), - [anon_sym_DOLLARstringify] = ACTIONS(1425), - [anon_sym_DOLLARis_const] = ACTIONS(1425), - [anon_sym_DOLLARvaconst] = ACTIONS(1425), - [anon_sym_DOLLARvaarg] = ACTIONS(1425), - [anon_sym_DOLLARvaref] = ACTIONS(1425), - [anon_sym_DOLLARvaexpr] = ACTIONS(1425), - [anon_sym_true] = ACTIONS(1425), - [anon_sym_false] = ACTIONS(1425), - [anon_sym_null] = ACTIONS(1425), - [anon_sym_DOLLARvacount] = ACTIONS(1425), - [anon_sym_DOLLARfeature] = ACTIONS(1425), - [anon_sym_DOLLARand] = ACTIONS(1425), - [anon_sym_DOLLARor] = ACTIONS(1425), - [anon_sym_DOLLARassignable] = ACTIONS(1425), - [anon_sym_DOLLARembed] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_TILDE] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_typeid] = ACTIONS(1425), - [anon_sym_LBRACE_PIPE] = ACTIONS(1427), - [anon_sym_void] = ACTIONS(1425), - [anon_sym_bool] = ACTIONS(1425), - [anon_sym_char] = ACTIONS(1425), - [anon_sym_ichar] = ACTIONS(1425), - [anon_sym_short] = ACTIONS(1425), - [anon_sym_ushort] = ACTIONS(1425), - [anon_sym_uint] = ACTIONS(1425), - [anon_sym_long] = ACTIONS(1425), - [anon_sym_ulong] = ACTIONS(1425), - [anon_sym_int128] = ACTIONS(1425), - [anon_sym_uint128] = ACTIONS(1425), - [anon_sym_float] = ACTIONS(1425), - [anon_sym_double] = ACTIONS(1425), - [anon_sym_float16] = ACTIONS(1425), - [anon_sym_bfloat16] = ACTIONS(1425), - [anon_sym_float128] = ACTIONS(1425), - [anon_sym_iptr] = ACTIONS(1425), - [anon_sym_uptr] = ACTIONS(1425), - [anon_sym_isz] = ACTIONS(1425), - [anon_sym_usz] = ACTIONS(1425), - [anon_sym_anyfault] = ACTIONS(1425), - [anon_sym_any] = ACTIONS(1425), - [anon_sym_DOLLARtypeof] = ACTIONS(1425), - [anon_sym_DOLLARtypefrom] = ACTIONS(1425), - [anon_sym_DOLLARvatype] = ACTIONS(1425), - [anon_sym_DOLLARevaltype] = ACTIONS(1425), - [sym_real_literal] = ACTIONS(1427), + [744] = { + [sym_line_comment] = STATE(744), + [sym_doc_comment] = STATE(744), + [sym_block_comment] = STATE(744), + [sym_ident] = ACTIONS(1593), + [sym_integer_literal] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1595), + [anon_sym_DQUOTE] = ACTIONS(1595), + [anon_sym_BQUOTE] = ACTIONS(1595), + [sym_bytes_literal] = ACTIONS(1595), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1593), + [sym_at_ident] = ACTIONS(1595), + [sym_hash_ident] = ACTIONS(1595), + [sym_type_ident] = ACTIONS(1595), + [sym_ct_type_ident] = ACTIONS(1595), + [sym_const_ident] = ACTIONS(1593), + [sym_builtin] = ACTIONS(1595), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_tlocal] = ACTIONS(1593), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_fn] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_var] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_defer] = ACTIONS(1593), + [anon_sym_assert] = ACTIONS(1593), + [anon_sym_nextcase] = ACTIONS(1593), + [anon_sym_switch] = ACTIONS(1593), + [anon_sym_AMP_AMP] = ACTIONS(1595), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_foreach] = ACTIONS(1593), + [anon_sym_foreach_r] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_int] = ACTIONS(1593), + [anon_sym_PLUS] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_asm] = ACTIONS(1593), + [anon_sym_DOLLARassert] = ACTIONS(1593), + [anon_sym_DOLLARerror] = ACTIONS(1593), + [anon_sym_DOLLARecho] = ACTIONS(1593), + [anon_sym_DOLLARif] = ACTIONS(1593), + [anon_sym_DOLLARendif] = ACTIONS(1593), + [anon_sym_DOLLARswitch] = ACTIONS(1593), + [anon_sym_DOLLARfor] = ACTIONS(1593), + [anon_sym_DOLLARforeach] = ACTIONS(1593), + [anon_sym_DOLLARalignof] = ACTIONS(1593), + [anon_sym_DOLLARextnameof] = ACTIONS(1593), + [anon_sym_DOLLARnameof] = ACTIONS(1593), + [anon_sym_DOLLARoffsetof] = ACTIONS(1593), + [anon_sym_DOLLARqnameof] = ACTIONS(1593), + [anon_sym_DOLLARvaconst] = ACTIONS(1593), + [anon_sym_DOLLARvaarg] = ACTIONS(1593), + [anon_sym_DOLLARvaref] = ACTIONS(1593), + [anon_sym_DOLLARvaexpr] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_DOLLARvacount] = ACTIONS(1593), + [anon_sym_DOLLAReval] = ACTIONS(1593), + [anon_sym_DOLLARis_const] = ACTIONS(1593), + [anon_sym_DOLLARsizeof] = ACTIONS(1593), + [anon_sym_DOLLARstringify] = ACTIONS(1593), + [anon_sym_DOLLARappend] = ACTIONS(1593), + [anon_sym_DOLLARconcat] = ACTIONS(1593), + [anon_sym_DOLLARdefined] = ACTIONS(1593), + [anon_sym_DOLLARembed] = ACTIONS(1593), + [anon_sym_DOLLARand] = ACTIONS(1593), + [anon_sym_DOLLARor] = ACTIONS(1593), + [anon_sym_DOLLARfeature] = ACTIONS(1593), + [anon_sym_DOLLARassignable] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_TILDE] = ACTIONS(1595), + [anon_sym_PLUS_PLUS] = ACTIONS(1595), + [anon_sym_DASH_DASH] = ACTIONS(1595), + [anon_sym_typeid] = ACTIONS(1593), + [anon_sym_LBRACE_PIPE] = ACTIONS(1595), + [anon_sym_void] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_ichar] = ACTIONS(1593), + [anon_sym_short] = ACTIONS(1593), + [anon_sym_ushort] = ACTIONS(1593), + [anon_sym_uint] = ACTIONS(1593), + [anon_sym_long] = ACTIONS(1593), + [anon_sym_ulong] = ACTIONS(1593), + [anon_sym_int128] = ACTIONS(1593), + [anon_sym_uint128] = ACTIONS(1593), + [anon_sym_float] = ACTIONS(1593), + [anon_sym_double] = ACTIONS(1593), + [anon_sym_float16] = ACTIONS(1593), + [anon_sym_bfloat16] = ACTIONS(1593), + [anon_sym_float128] = ACTIONS(1593), + [anon_sym_iptr] = ACTIONS(1593), + [anon_sym_uptr] = ACTIONS(1593), + [anon_sym_isz] = ACTIONS(1593), + [anon_sym_usz] = ACTIONS(1593), + [anon_sym_anyfault] = ACTIONS(1593), + [anon_sym_any] = ACTIONS(1593), + [anon_sym_DOLLARtypeof] = ACTIONS(1593), + [anon_sym_DOLLARtypefrom] = ACTIONS(1593), + [anon_sym_DOLLARevaltype] = ACTIONS(1593), + [anon_sym_DOLLARvatype] = ACTIONS(1593), + [sym_real_literal] = ACTIONS(1595), }, - [761] = { - [sym_line_comment] = STATE(761), - [sym_doc_comment] = STATE(761), - [sym_block_comment] = STATE(761), - [sym_ident] = ACTIONS(1401), - [sym_integer_literal] = ACTIONS(1403), - [anon_sym_SQUOTE] = ACTIONS(1403), - [anon_sym_DQUOTE] = ACTIONS(1403), - [anon_sym_BQUOTE] = ACTIONS(1403), - [sym_bytes_literal] = ACTIONS(1403), + [745] = { + [sym_line_comment] = STATE(745), + [sym_doc_comment] = STATE(745), + [sym_block_comment] = STATE(745), + [sym_ident] = ACTIONS(1633), + [sym_integer_literal] = ACTIONS(1635), + [anon_sym_SQUOTE] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(1635), + [anon_sym_BQUOTE] = ACTIONS(1635), + [sym_bytes_literal] = ACTIONS(1635), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1633), + [sym_at_ident] = ACTIONS(1635), + [sym_hash_ident] = ACTIONS(1635), + [sym_type_ident] = ACTIONS(1635), + [sym_ct_type_ident] = ACTIONS(1635), + [sym_const_ident] = ACTIONS(1633), + [sym_builtin] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_static] = ACTIONS(1633), + [anon_sym_tlocal] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1635), + [anon_sym_fn] = ACTIONS(1633), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_const] = ACTIONS(1633), + [anon_sym_var] = ACTIONS(1633), + [anon_sym_return] = ACTIONS(1633), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_break] = ACTIONS(1633), + [anon_sym_defer] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(1633), + [anon_sym_nextcase] = ACTIONS(1633), + [anon_sym_switch] = ACTIONS(1633), + [anon_sym_AMP_AMP] = ACTIONS(1635), + [anon_sym_if] = ACTIONS(1633), + [anon_sym_for] = ACTIONS(1633), + [anon_sym_foreach] = ACTIONS(1633), + [anon_sym_foreach_r] = ACTIONS(1633), + [anon_sym_while] = ACTIONS(1633), + [anon_sym_do] = ACTIONS(1633), + [anon_sym_int] = ACTIONS(1633), + [anon_sym_PLUS] = ACTIONS(1633), + [anon_sym_DASH] = ACTIONS(1633), + [anon_sym_STAR] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1633), + [anon_sym_DOLLARassert] = ACTIONS(1633), + [anon_sym_DOLLARerror] = ACTIONS(1633), + [anon_sym_DOLLARecho] = ACTIONS(1633), + [anon_sym_DOLLARif] = ACTIONS(1633), + [anon_sym_DOLLARendif] = ACTIONS(1633), + [anon_sym_DOLLARswitch] = ACTIONS(1633), + [anon_sym_DOLLARfor] = ACTIONS(1633), + [anon_sym_DOLLARforeach] = ACTIONS(1633), + [anon_sym_DOLLARalignof] = ACTIONS(1633), + [anon_sym_DOLLARextnameof] = ACTIONS(1633), + [anon_sym_DOLLARnameof] = ACTIONS(1633), + [anon_sym_DOLLARoffsetof] = ACTIONS(1633), + [anon_sym_DOLLARqnameof] = ACTIONS(1633), + [anon_sym_DOLLARvaconst] = ACTIONS(1633), + [anon_sym_DOLLARvaarg] = ACTIONS(1633), + [anon_sym_DOLLARvaref] = ACTIONS(1633), + [anon_sym_DOLLARvaexpr] = ACTIONS(1633), + [anon_sym_true] = ACTIONS(1633), + [anon_sym_false] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1633), + [anon_sym_DOLLARvacount] = ACTIONS(1633), + [anon_sym_DOLLAReval] = ACTIONS(1633), + [anon_sym_DOLLARis_const] = ACTIONS(1633), + [anon_sym_DOLLARsizeof] = ACTIONS(1633), + [anon_sym_DOLLARstringify] = ACTIONS(1633), + [anon_sym_DOLLARappend] = ACTIONS(1633), + [anon_sym_DOLLARconcat] = ACTIONS(1633), + [anon_sym_DOLLARdefined] = ACTIONS(1633), + [anon_sym_DOLLARembed] = ACTIONS(1633), + [anon_sym_DOLLARand] = ACTIONS(1633), + [anon_sym_DOLLARor] = ACTIONS(1633), + [anon_sym_DOLLARfeature] = ACTIONS(1633), + [anon_sym_DOLLARassignable] = ACTIONS(1633), + [anon_sym_BANG] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1635), + [anon_sym_PLUS_PLUS] = ACTIONS(1635), + [anon_sym_DASH_DASH] = ACTIONS(1635), + [anon_sym_typeid] = ACTIONS(1633), + [anon_sym_LBRACE_PIPE] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(1633), + [anon_sym_bool] = ACTIONS(1633), + [anon_sym_char] = ACTIONS(1633), + [anon_sym_ichar] = ACTIONS(1633), + [anon_sym_short] = ACTIONS(1633), + [anon_sym_ushort] = ACTIONS(1633), + [anon_sym_uint] = ACTIONS(1633), + [anon_sym_long] = ACTIONS(1633), + [anon_sym_ulong] = ACTIONS(1633), + [anon_sym_int128] = ACTIONS(1633), + [anon_sym_uint128] = ACTIONS(1633), + [anon_sym_float] = ACTIONS(1633), + [anon_sym_double] = ACTIONS(1633), + [anon_sym_float16] = ACTIONS(1633), + [anon_sym_bfloat16] = ACTIONS(1633), + [anon_sym_float128] = ACTIONS(1633), + [anon_sym_iptr] = ACTIONS(1633), + [anon_sym_uptr] = ACTIONS(1633), + [anon_sym_isz] = ACTIONS(1633), + [anon_sym_usz] = ACTIONS(1633), + [anon_sym_anyfault] = ACTIONS(1633), + [anon_sym_any] = ACTIONS(1633), + [anon_sym_DOLLARtypeof] = ACTIONS(1633), + [anon_sym_DOLLARtypefrom] = ACTIONS(1633), + [anon_sym_DOLLARevaltype] = ACTIONS(1633), + [anon_sym_DOLLARvatype] = ACTIONS(1633), + [sym_real_literal] = ACTIONS(1635), + }, + [746] = { + [sym_line_comment] = STATE(746), + [sym_doc_comment] = STATE(746), + [sym_block_comment] = STATE(746), + [sym_ident] = ACTIONS(1377), + [sym_integer_literal] = ACTIONS(1379), + [anon_sym_SQUOTE] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1379), + [anon_sym_BQUOTE] = ACTIONS(1379), + [sym_bytes_literal] = ACTIONS(1379), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1401), - [sym_at_ident] = ACTIONS(1403), - [sym_hash_ident] = ACTIONS(1403), - [sym_type_ident] = ACTIONS(1403), - [sym_ct_type_ident] = ACTIONS(1403), - [sym_const_ident] = ACTIONS(1401), - [sym_builtin] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_tlocal] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1403), - [anon_sym_fn] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1401), - [anon_sym_var] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_defer] = ACTIONS(1401), - [anon_sym_assert] = ACTIONS(1401), - [anon_sym_nextcase] = ACTIONS(1401), - [anon_sym_switch] = ACTIONS(1401), - [anon_sym_AMP_AMP] = ACTIONS(1403), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_foreach] = ACTIONS(1401), - [anon_sym_foreach_r] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_do] = ACTIONS(1401), - [anon_sym_int] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_asm] = ACTIONS(1401), - [anon_sym_DOLLARassert] = ACTIONS(1401), - [anon_sym_DOLLARerror] = ACTIONS(1401), - [anon_sym_DOLLARecho] = ACTIONS(1401), - [anon_sym_DOLLARif] = ACTIONS(1401), - [anon_sym_DOLLARswitch] = ACTIONS(1401), - [anon_sym_DOLLARfor] = ACTIONS(1401), - [anon_sym_DOLLARendfor] = ACTIONS(1401), - [anon_sym_DOLLARforeach] = ACTIONS(1401), - [anon_sym_DOLLARalignof] = ACTIONS(1401), - [anon_sym_DOLLARextnameof] = ACTIONS(1401), - [anon_sym_DOLLARnameof] = ACTIONS(1401), - [anon_sym_DOLLARoffsetof] = ACTIONS(1401), - [anon_sym_DOLLARqnameof] = ACTIONS(1401), - [anon_sym_DOLLAReval] = ACTIONS(1401), - [anon_sym_DOLLARdefined] = ACTIONS(1401), - [anon_sym_DOLLARsizeof] = ACTIONS(1401), - [anon_sym_DOLLARstringify] = ACTIONS(1401), - [anon_sym_DOLLARis_const] = ACTIONS(1401), - [anon_sym_DOLLARvaconst] = ACTIONS(1401), - [anon_sym_DOLLARvaarg] = ACTIONS(1401), - [anon_sym_DOLLARvaref] = ACTIONS(1401), - [anon_sym_DOLLARvaexpr] = ACTIONS(1401), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_null] = ACTIONS(1401), - [anon_sym_DOLLARvacount] = ACTIONS(1401), - [anon_sym_DOLLARfeature] = ACTIONS(1401), - [anon_sym_DOLLARand] = ACTIONS(1401), - [anon_sym_DOLLARor] = ACTIONS(1401), - [anon_sym_DOLLARassignable] = ACTIONS(1401), - [anon_sym_DOLLARembed] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_typeid] = ACTIONS(1401), - [anon_sym_LBRACE_PIPE] = ACTIONS(1403), - [anon_sym_void] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_char] = ACTIONS(1401), - [anon_sym_ichar] = ACTIONS(1401), - [anon_sym_short] = ACTIONS(1401), - [anon_sym_ushort] = ACTIONS(1401), - [anon_sym_uint] = ACTIONS(1401), - [anon_sym_long] = ACTIONS(1401), - [anon_sym_ulong] = ACTIONS(1401), - [anon_sym_int128] = ACTIONS(1401), - [anon_sym_uint128] = ACTIONS(1401), - [anon_sym_float] = ACTIONS(1401), - [anon_sym_double] = ACTIONS(1401), - [anon_sym_float16] = ACTIONS(1401), - [anon_sym_bfloat16] = ACTIONS(1401), - [anon_sym_float128] = ACTIONS(1401), - [anon_sym_iptr] = ACTIONS(1401), - [anon_sym_uptr] = ACTIONS(1401), - [anon_sym_isz] = ACTIONS(1401), - [anon_sym_usz] = ACTIONS(1401), - [anon_sym_anyfault] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_DOLLARtypeof] = ACTIONS(1401), - [anon_sym_DOLLARtypefrom] = ACTIONS(1401), - [anon_sym_DOLLARvatype] = ACTIONS(1401), - [anon_sym_DOLLARevaltype] = ACTIONS(1401), - [sym_real_literal] = ACTIONS(1403), + [sym_ct_ident] = ACTIONS(1377), + [sym_at_ident] = ACTIONS(1379), + [sym_hash_ident] = ACTIONS(1379), + [sym_type_ident] = ACTIONS(1379), + [sym_ct_type_ident] = ACTIONS(1379), + [sym_const_ident] = ACTIONS(1377), + [sym_builtin] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_static] = ACTIONS(1377), + [anon_sym_tlocal] = ACTIONS(1377), + [anon_sym_SEMI] = ACTIONS(1379), + [anon_sym_fn] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_const] = ACTIONS(1377), + [anon_sym_var] = ACTIONS(1377), + [anon_sym_return] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1377), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_defer] = ACTIONS(1377), + [anon_sym_assert] = ACTIONS(1377), + [anon_sym_nextcase] = ACTIONS(1377), + [anon_sym_switch] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_if] = ACTIONS(1377), + [anon_sym_for] = ACTIONS(1377), + [anon_sym_foreach] = ACTIONS(1377), + [anon_sym_foreach_r] = ACTIONS(1377), + [anon_sym_while] = ACTIONS(1377), + [anon_sym_do] = ACTIONS(1377), + [anon_sym_int] = ACTIONS(1377), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_asm] = ACTIONS(1377), + [anon_sym_DOLLARassert] = ACTIONS(1377), + [anon_sym_DOLLARerror] = ACTIONS(1377), + [anon_sym_DOLLARecho] = ACTIONS(1377), + [anon_sym_DOLLARif] = ACTIONS(1377), + [anon_sym_DOLLARendif] = ACTIONS(1377), + [anon_sym_DOLLARswitch] = ACTIONS(1377), + [anon_sym_DOLLARfor] = ACTIONS(1377), + [anon_sym_DOLLARforeach] = ACTIONS(1377), + [anon_sym_DOLLARalignof] = ACTIONS(1377), + [anon_sym_DOLLARextnameof] = ACTIONS(1377), + [anon_sym_DOLLARnameof] = ACTIONS(1377), + [anon_sym_DOLLARoffsetof] = ACTIONS(1377), + [anon_sym_DOLLARqnameof] = ACTIONS(1377), + [anon_sym_DOLLARvaconst] = ACTIONS(1377), + [anon_sym_DOLLARvaarg] = ACTIONS(1377), + [anon_sym_DOLLARvaref] = ACTIONS(1377), + [anon_sym_DOLLARvaexpr] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(1377), + [anon_sym_false] = ACTIONS(1377), + [anon_sym_null] = ACTIONS(1377), + [anon_sym_DOLLARvacount] = ACTIONS(1377), + [anon_sym_DOLLAReval] = ACTIONS(1377), + [anon_sym_DOLLARis_const] = ACTIONS(1377), + [anon_sym_DOLLARsizeof] = ACTIONS(1377), + [anon_sym_DOLLARstringify] = ACTIONS(1377), + [anon_sym_DOLLARappend] = ACTIONS(1377), + [anon_sym_DOLLARconcat] = ACTIONS(1377), + [anon_sym_DOLLARdefined] = ACTIONS(1377), + [anon_sym_DOLLARembed] = ACTIONS(1377), + [anon_sym_DOLLARand] = ACTIONS(1377), + [anon_sym_DOLLARor] = ACTIONS(1377), + [anon_sym_DOLLARfeature] = ACTIONS(1377), + [anon_sym_DOLLARassignable] = ACTIONS(1377), + [anon_sym_BANG] = ACTIONS(1379), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_typeid] = ACTIONS(1377), + [anon_sym_LBRACE_PIPE] = ACTIONS(1379), + [anon_sym_void] = ACTIONS(1377), + [anon_sym_bool] = ACTIONS(1377), + [anon_sym_char] = ACTIONS(1377), + [anon_sym_ichar] = ACTIONS(1377), + [anon_sym_short] = ACTIONS(1377), + [anon_sym_ushort] = ACTIONS(1377), + [anon_sym_uint] = ACTIONS(1377), + [anon_sym_long] = ACTIONS(1377), + [anon_sym_ulong] = ACTIONS(1377), + [anon_sym_int128] = ACTIONS(1377), + [anon_sym_uint128] = ACTIONS(1377), + [anon_sym_float] = ACTIONS(1377), + [anon_sym_double] = ACTIONS(1377), + [anon_sym_float16] = ACTIONS(1377), + [anon_sym_bfloat16] = ACTIONS(1377), + [anon_sym_float128] = ACTIONS(1377), + [anon_sym_iptr] = ACTIONS(1377), + [anon_sym_uptr] = ACTIONS(1377), + [anon_sym_isz] = ACTIONS(1377), + [anon_sym_usz] = ACTIONS(1377), + [anon_sym_anyfault] = ACTIONS(1377), + [anon_sym_any] = ACTIONS(1377), + [anon_sym_DOLLARtypeof] = ACTIONS(1377), + [anon_sym_DOLLARtypefrom] = ACTIONS(1377), + [anon_sym_DOLLARevaltype] = ACTIONS(1377), + [anon_sym_DOLLARvatype] = ACTIONS(1377), + [sym_real_literal] = ACTIONS(1379), }, - [762] = { - [sym_line_comment] = STATE(762), - [sym_doc_comment] = STATE(762), - [sym_block_comment] = STATE(762), - [sym_ident] = ACTIONS(1397), - [sym_integer_literal] = ACTIONS(1399), - [anon_sym_SQUOTE] = ACTIONS(1399), - [anon_sym_DQUOTE] = ACTIONS(1399), - [anon_sym_BQUOTE] = ACTIONS(1399), - [sym_bytes_literal] = ACTIONS(1399), + [747] = { + [sym_line_comment] = STATE(747), + [sym_doc_comment] = STATE(747), + [sym_block_comment] = STATE(747), + [sym_ident] = ACTIONS(1381), + [sym_integer_literal] = ACTIONS(1383), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_BQUOTE] = ACTIONS(1383), + [sym_bytes_literal] = ACTIONS(1383), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1397), - [sym_at_ident] = ACTIONS(1399), - [sym_hash_ident] = ACTIONS(1399), - [sym_type_ident] = ACTIONS(1399), - [sym_ct_type_ident] = ACTIONS(1399), - [sym_const_ident] = ACTIONS(1397), - [sym_builtin] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_tlocal] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_fn] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_var] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_defer] = ACTIONS(1397), - [anon_sym_assert] = ACTIONS(1397), - [anon_sym_nextcase] = ACTIONS(1397), - [anon_sym_switch] = ACTIONS(1397), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_foreach] = ACTIONS(1397), - [anon_sym_foreach_r] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_do] = ACTIONS(1397), - [anon_sym_int] = ACTIONS(1397), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_asm] = ACTIONS(1397), - [anon_sym_DOLLARassert] = ACTIONS(1397), - [anon_sym_DOLLARerror] = ACTIONS(1397), - [anon_sym_DOLLARecho] = ACTIONS(1397), - [anon_sym_DOLLARif] = ACTIONS(1397), - [anon_sym_DOLLARswitch] = ACTIONS(1397), - [anon_sym_DOLLARfor] = ACTIONS(1397), - [anon_sym_DOLLARendfor] = ACTIONS(1397), - [anon_sym_DOLLARforeach] = ACTIONS(1397), - [anon_sym_DOLLARalignof] = ACTIONS(1397), - [anon_sym_DOLLARextnameof] = ACTIONS(1397), - [anon_sym_DOLLARnameof] = ACTIONS(1397), - [anon_sym_DOLLARoffsetof] = ACTIONS(1397), - [anon_sym_DOLLARqnameof] = ACTIONS(1397), - [anon_sym_DOLLAReval] = ACTIONS(1397), - [anon_sym_DOLLARdefined] = ACTIONS(1397), - [anon_sym_DOLLARsizeof] = ACTIONS(1397), - [anon_sym_DOLLARstringify] = ACTIONS(1397), - [anon_sym_DOLLARis_const] = ACTIONS(1397), - [anon_sym_DOLLARvaconst] = ACTIONS(1397), - [anon_sym_DOLLARvaarg] = ACTIONS(1397), - [anon_sym_DOLLARvaref] = ACTIONS(1397), - [anon_sym_DOLLARvaexpr] = ACTIONS(1397), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [anon_sym_null] = ACTIONS(1397), - [anon_sym_DOLLARvacount] = ACTIONS(1397), - [anon_sym_DOLLARfeature] = ACTIONS(1397), - [anon_sym_DOLLARand] = ACTIONS(1397), - [anon_sym_DOLLARor] = ACTIONS(1397), - [anon_sym_DOLLARassignable] = ACTIONS(1397), - [anon_sym_DOLLARembed] = ACTIONS(1397), - [anon_sym_BANG] = ACTIONS(1399), - [anon_sym_TILDE] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1399), - [anon_sym_DASH_DASH] = ACTIONS(1399), - [anon_sym_typeid] = ACTIONS(1397), - [anon_sym_LBRACE_PIPE] = ACTIONS(1399), - [anon_sym_void] = ACTIONS(1397), - [anon_sym_bool] = ACTIONS(1397), - [anon_sym_char] = ACTIONS(1397), - [anon_sym_ichar] = ACTIONS(1397), - [anon_sym_short] = ACTIONS(1397), - [anon_sym_ushort] = ACTIONS(1397), - [anon_sym_uint] = ACTIONS(1397), - [anon_sym_long] = ACTIONS(1397), - [anon_sym_ulong] = ACTIONS(1397), - [anon_sym_int128] = ACTIONS(1397), - [anon_sym_uint128] = ACTIONS(1397), - [anon_sym_float] = ACTIONS(1397), - [anon_sym_double] = ACTIONS(1397), - [anon_sym_float16] = ACTIONS(1397), - [anon_sym_bfloat16] = ACTIONS(1397), - [anon_sym_float128] = ACTIONS(1397), - [anon_sym_iptr] = ACTIONS(1397), - [anon_sym_uptr] = ACTIONS(1397), - [anon_sym_isz] = ACTIONS(1397), - [anon_sym_usz] = ACTIONS(1397), - [anon_sym_anyfault] = ACTIONS(1397), - [anon_sym_any] = ACTIONS(1397), - [anon_sym_DOLLARtypeof] = ACTIONS(1397), - [anon_sym_DOLLARtypefrom] = ACTIONS(1397), - [anon_sym_DOLLARvatype] = ACTIONS(1397), - [anon_sym_DOLLARevaltype] = ACTIONS(1397), - [sym_real_literal] = ACTIONS(1399), + [sym_ct_ident] = ACTIONS(1381), + [sym_at_ident] = ACTIONS(1383), + [sym_hash_ident] = ACTIONS(1383), + [sym_type_ident] = ACTIONS(1383), + [sym_ct_type_ident] = ACTIONS(1383), + [sym_const_ident] = ACTIONS(1381), + [sym_builtin] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_tlocal] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(1381), + [anon_sym_var] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_defer] = ACTIONS(1381), + [anon_sym_assert] = ACTIONS(1381), + [anon_sym_nextcase] = ACTIONS(1381), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_AMP_AMP] = ACTIONS(1383), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_foreach] = ACTIONS(1381), + [anon_sym_foreach_r] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_int] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_asm] = ACTIONS(1381), + [anon_sym_DOLLARassert] = ACTIONS(1381), + [anon_sym_DOLLARerror] = ACTIONS(1381), + [anon_sym_DOLLARecho] = ACTIONS(1381), + [anon_sym_DOLLARif] = ACTIONS(1381), + [anon_sym_DOLLARendif] = ACTIONS(1381), + [anon_sym_DOLLARswitch] = ACTIONS(1381), + [anon_sym_DOLLARfor] = ACTIONS(1381), + [anon_sym_DOLLARforeach] = ACTIONS(1381), + [anon_sym_DOLLARalignof] = ACTIONS(1381), + [anon_sym_DOLLARextnameof] = ACTIONS(1381), + [anon_sym_DOLLARnameof] = ACTIONS(1381), + [anon_sym_DOLLARoffsetof] = ACTIONS(1381), + [anon_sym_DOLLARqnameof] = ACTIONS(1381), + [anon_sym_DOLLARvaconst] = ACTIONS(1381), + [anon_sym_DOLLARvaarg] = ACTIONS(1381), + [anon_sym_DOLLARvaref] = ACTIONS(1381), + [anon_sym_DOLLARvaexpr] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [anon_sym_null] = ACTIONS(1381), + [anon_sym_DOLLARvacount] = ACTIONS(1381), + [anon_sym_DOLLAReval] = ACTIONS(1381), + [anon_sym_DOLLARis_const] = ACTIONS(1381), + [anon_sym_DOLLARsizeof] = ACTIONS(1381), + [anon_sym_DOLLARstringify] = ACTIONS(1381), + [anon_sym_DOLLARappend] = ACTIONS(1381), + [anon_sym_DOLLARconcat] = ACTIONS(1381), + [anon_sym_DOLLARdefined] = ACTIONS(1381), + [anon_sym_DOLLARembed] = ACTIONS(1381), + [anon_sym_DOLLARand] = ACTIONS(1381), + [anon_sym_DOLLARor] = ACTIONS(1381), + [anon_sym_DOLLARfeature] = ACTIONS(1381), + [anon_sym_DOLLARassignable] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1383), + [anon_sym_TILDE] = ACTIONS(1383), + [anon_sym_PLUS_PLUS] = ACTIONS(1383), + [anon_sym_DASH_DASH] = ACTIONS(1383), + [anon_sym_typeid] = ACTIONS(1381), + [anon_sym_LBRACE_PIPE] = ACTIONS(1383), + [anon_sym_void] = ACTIONS(1381), + [anon_sym_bool] = ACTIONS(1381), + [anon_sym_char] = ACTIONS(1381), + [anon_sym_ichar] = ACTIONS(1381), + [anon_sym_short] = ACTIONS(1381), + [anon_sym_ushort] = ACTIONS(1381), + [anon_sym_uint] = ACTIONS(1381), + [anon_sym_long] = ACTIONS(1381), + [anon_sym_ulong] = ACTIONS(1381), + [anon_sym_int128] = ACTIONS(1381), + [anon_sym_uint128] = ACTIONS(1381), + [anon_sym_float] = ACTIONS(1381), + [anon_sym_double] = ACTIONS(1381), + [anon_sym_float16] = ACTIONS(1381), + [anon_sym_bfloat16] = ACTIONS(1381), + [anon_sym_float128] = ACTIONS(1381), + [anon_sym_iptr] = ACTIONS(1381), + [anon_sym_uptr] = ACTIONS(1381), + [anon_sym_isz] = ACTIONS(1381), + [anon_sym_usz] = ACTIONS(1381), + [anon_sym_anyfault] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_DOLLARtypeof] = ACTIONS(1381), + [anon_sym_DOLLARtypefrom] = ACTIONS(1381), + [anon_sym_DOLLARevaltype] = ACTIONS(1381), + [anon_sym_DOLLARvatype] = ACTIONS(1381), + [sym_real_literal] = ACTIONS(1383), }, - [763] = { - [sym_line_comment] = STATE(763), - [sym_doc_comment] = STATE(763), - [sym_block_comment] = STATE(763), - [sym_ident] = ACTIONS(1393), - [sym_integer_literal] = ACTIONS(1395), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_DQUOTE] = ACTIONS(1395), - [anon_sym_BQUOTE] = ACTIONS(1395), - [sym_bytes_literal] = ACTIONS(1395), + [748] = { + [sym_line_comment] = STATE(748), + [sym_doc_comment] = STATE(748), + [sym_block_comment] = STATE(748), + [sym_ident] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1387), + [anon_sym_BQUOTE] = ACTIONS(1387), + [sym_bytes_literal] = ACTIONS(1387), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1393), - [sym_at_ident] = ACTIONS(1395), - [sym_hash_ident] = ACTIONS(1395), - [sym_type_ident] = ACTIONS(1395), - [sym_ct_type_ident] = ACTIONS(1395), - [sym_const_ident] = ACTIONS(1393), - [sym_builtin] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1393), - [anon_sym_static] = ACTIONS(1393), - [anon_sym_tlocal] = ACTIONS(1393), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_fn] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_const] = ACTIONS(1393), - [anon_sym_var] = ACTIONS(1393), - [anon_sym_return] = ACTIONS(1393), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_break] = ACTIONS(1393), - [anon_sym_defer] = ACTIONS(1393), - [anon_sym_assert] = ACTIONS(1393), - [anon_sym_nextcase] = ACTIONS(1393), - [anon_sym_switch] = ACTIONS(1393), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_if] = ACTIONS(1393), - [anon_sym_for] = ACTIONS(1393), - [anon_sym_foreach] = ACTIONS(1393), - [anon_sym_foreach_r] = ACTIONS(1393), - [anon_sym_while] = ACTIONS(1393), - [anon_sym_do] = ACTIONS(1393), - [anon_sym_int] = ACTIONS(1393), - [anon_sym_PLUS] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1393), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_asm] = ACTIONS(1393), - [anon_sym_DOLLARassert] = ACTIONS(1393), - [anon_sym_DOLLARerror] = ACTIONS(1393), - [anon_sym_DOLLARecho] = ACTIONS(1393), - [anon_sym_DOLLARif] = ACTIONS(1393), - [anon_sym_DOLLARswitch] = ACTIONS(1393), - [anon_sym_DOLLARfor] = ACTIONS(1393), - [anon_sym_DOLLARendfor] = ACTIONS(1393), - [anon_sym_DOLLARforeach] = ACTIONS(1393), - [anon_sym_DOLLARalignof] = ACTIONS(1393), - [anon_sym_DOLLARextnameof] = ACTIONS(1393), - [anon_sym_DOLLARnameof] = ACTIONS(1393), - [anon_sym_DOLLARoffsetof] = ACTIONS(1393), - [anon_sym_DOLLARqnameof] = ACTIONS(1393), - [anon_sym_DOLLAReval] = ACTIONS(1393), - [anon_sym_DOLLARdefined] = ACTIONS(1393), - [anon_sym_DOLLARsizeof] = ACTIONS(1393), - [anon_sym_DOLLARstringify] = ACTIONS(1393), - [anon_sym_DOLLARis_const] = ACTIONS(1393), - [anon_sym_DOLLARvaconst] = ACTIONS(1393), - [anon_sym_DOLLARvaarg] = ACTIONS(1393), - [anon_sym_DOLLARvaref] = ACTIONS(1393), - [anon_sym_DOLLARvaexpr] = ACTIONS(1393), - [anon_sym_true] = ACTIONS(1393), - [anon_sym_false] = ACTIONS(1393), - [anon_sym_null] = ACTIONS(1393), - [anon_sym_DOLLARvacount] = ACTIONS(1393), - [anon_sym_DOLLARfeature] = ACTIONS(1393), - [anon_sym_DOLLARand] = ACTIONS(1393), - [anon_sym_DOLLARor] = ACTIONS(1393), - [anon_sym_DOLLARassignable] = ACTIONS(1393), - [anon_sym_DOLLARembed] = ACTIONS(1393), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_TILDE] = ACTIONS(1395), - [anon_sym_PLUS_PLUS] = ACTIONS(1395), - [anon_sym_DASH_DASH] = ACTIONS(1395), - [anon_sym_typeid] = ACTIONS(1393), - [anon_sym_LBRACE_PIPE] = ACTIONS(1395), - [anon_sym_void] = ACTIONS(1393), - [anon_sym_bool] = ACTIONS(1393), - [anon_sym_char] = ACTIONS(1393), - [anon_sym_ichar] = ACTIONS(1393), - [anon_sym_short] = ACTIONS(1393), - [anon_sym_ushort] = ACTIONS(1393), - [anon_sym_uint] = ACTIONS(1393), - [anon_sym_long] = ACTIONS(1393), - [anon_sym_ulong] = ACTIONS(1393), - [anon_sym_int128] = ACTIONS(1393), - [anon_sym_uint128] = ACTIONS(1393), - [anon_sym_float] = ACTIONS(1393), - [anon_sym_double] = ACTIONS(1393), - [anon_sym_float16] = ACTIONS(1393), - [anon_sym_bfloat16] = ACTIONS(1393), - [anon_sym_float128] = ACTIONS(1393), - [anon_sym_iptr] = ACTIONS(1393), - [anon_sym_uptr] = ACTIONS(1393), - [anon_sym_isz] = ACTIONS(1393), - [anon_sym_usz] = ACTIONS(1393), - [anon_sym_anyfault] = ACTIONS(1393), - [anon_sym_any] = ACTIONS(1393), - [anon_sym_DOLLARtypeof] = ACTIONS(1393), - [anon_sym_DOLLARtypefrom] = ACTIONS(1393), - [anon_sym_DOLLARvatype] = ACTIONS(1393), - [anon_sym_DOLLARevaltype] = ACTIONS(1393), - [sym_real_literal] = ACTIONS(1395), - }, - [764] = { - [sym_line_comment] = STATE(764), - [sym_doc_comment] = STATE(764), - [sym_block_comment] = STATE(764), - [sym_ident] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1481), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1481), - [anon_sym_BQUOTE] = ACTIONS(1481), - [sym_bytes_literal] = ACTIONS(1481), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1479), - [sym_at_ident] = ACTIONS(1481), - [sym_hash_ident] = ACTIONS(1481), - [sym_type_ident] = ACTIONS(1481), - [sym_ct_type_ident] = ACTIONS(1481), - [sym_const_ident] = ACTIONS(1479), - [sym_builtin] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_static] = ACTIONS(1479), - [anon_sym_tlocal] = ACTIONS(1479), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_fn] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_var] = ACTIONS(1479), - [anon_sym_return] = ACTIONS(1479), - [anon_sym_continue] = ACTIONS(1479), - [anon_sym_break] = ACTIONS(1479), - [anon_sym_defer] = ACTIONS(1479), - [anon_sym_assert] = ACTIONS(1479), - [anon_sym_nextcase] = ACTIONS(1479), - [anon_sym_switch] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1479), - [anon_sym_for] = ACTIONS(1479), - [anon_sym_foreach] = ACTIONS(1479), - [anon_sym_foreach_r] = ACTIONS(1479), - [anon_sym_while] = ACTIONS(1479), - [anon_sym_do] = ACTIONS(1479), - [anon_sym_int] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1481), - [anon_sym_asm] = ACTIONS(1479), - [anon_sym_DOLLARassert] = ACTIONS(1479), - [anon_sym_DOLLARerror] = ACTIONS(1479), - [anon_sym_DOLLARecho] = ACTIONS(1479), - [anon_sym_DOLLARif] = ACTIONS(1479), - [anon_sym_DOLLARswitch] = ACTIONS(1479), - [anon_sym_DOLLARfor] = ACTIONS(1479), - [anon_sym_DOLLARforeach] = ACTIONS(1479), - [anon_sym_DOLLARendforeach] = ACTIONS(1479), - [anon_sym_DOLLARalignof] = ACTIONS(1479), - [anon_sym_DOLLARextnameof] = ACTIONS(1479), - [anon_sym_DOLLARnameof] = ACTIONS(1479), - [anon_sym_DOLLARoffsetof] = ACTIONS(1479), - [anon_sym_DOLLARqnameof] = ACTIONS(1479), - [anon_sym_DOLLAReval] = ACTIONS(1479), - [anon_sym_DOLLARdefined] = ACTIONS(1479), - [anon_sym_DOLLARsizeof] = ACTIONS(1479), - [anon_sym_DOLLARstringify] = ACTIONS(1479), - [anon_sym_DOLLARis_const] = ACTIONS(1479), - [anon_sym_DOLLARvaconst] = ACTIONS(1479), - [anon_sym_DOLLARvaarg] = ACTIONS(1479), - [anon_sym_DOLLARvaref] = ACTIONS(1479), - [anon_sym_DOLLARvaexpr] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1479), - [anon_sym_false] = ACTIONS(1479), - [anon_sym_null] = ACTIONS(1479), - [anon_sym_DOLLARvacount] = ACTIONS(1479), - [anon_sym_DOLLARfeature] = ACTIONS(1479), - [anon_sym_DOLLARand] = ACTIONS(1479), - [anon_sym_DOLLARor] = ACTIONS(1479), - [anon_sym_DOLLARassignable] = ACTIONS(1479), - [anon_sym_DOLLARembed] = ACTIONS(1479), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1481), - [anon_sym_PLUS_PLUS] = ACTIONS(1481), - [anon_sym_DASH_DASH] = ACTIONS(1481), - [anon_sym_typeid] = ACTIONS(1479), - [anon_sym_LBRACE_PIPE] = ACTIONS(1481), - [anon_sym_void] = ACTIONS(1479), - [anon_sym_bool] = ACTIONS(1479), - [anon_sym_char] = ACTIONS(1479), - [anon_sym_ichar] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [anon_sym_ushort] = ACTIONS(1479), - [anon_sym_uint] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_ulong] = ACTIONS(1479), - [anon_sym_int128] = ACTIONS(1479), - [anon_sym_uint128] = ACTIONS(1479), - [anon_sym_float] = ACTIONS(1479), - [anon_sym_double] = ACTIONS(1479), - [anon_sym_float16] = ACTIONS(1479), - [anon_sym_bfloat16] = ACTIONS(1479), - [anon_sym_float128] = ACTIONS(1479), - [anon_sym_iptr] = ACTIONS(1479), - [anon_sym_uptr] = ACTIONS(1479), - [anon_sym_isz] = ACTIONS(1479), - [anon_sym_usz] = ACTIONS(1479), - [anon_sym_anyfault] = ACTIONS(1479), - [anon_sym_any] = ACTIONS(1479), - [anon_sym_DOLLARtypeof] = ACTIONS(1479), - [anon_sym_DOLLARtypefrom] = ACTIONS(1479), - [anon_sym_DOLLARvatype] = ACTIONS(1479), - [anon_sym_DOLLARevaltype] = ACTIONS(1479), - [sym_real_literal] = ACTIONS(1481), - }, - [765] = { - [sym_line_comment] = STATE(765), - [sym_doc_comment] = STATE(765), - [sym_block_comment] = STATE(765), - [sym_ident] = ACTIONS(1475), - [sym_integer_literal] = ACTIONS(1477), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(1477), - [anon_sym_BQUOTE] = ACTIONS(1477), - [sym_bytes_literal] = ACTIONS(1477), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1475), - [sym_at_ident] = ACTIONS(1477), - [sym_hash_ident] = ACTIONS(1477), - [sym_type_ident] = ACTIONS(1477), - [sym_ct_type_ident] = ACTIONS(1477), - [sym_const_ident] = ACTIONS(1475), - [sym_builtin] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_tlocal] = ACTIONS(1475), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_fn] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_const] = ACTIONS(1475), - [anon_sym_var] = ACTIONS(1475), - [anon_sym_return] = ACTIONS(1475), - [anon_sym_continue] = ACTIONS(1475), - [anon_sym_break] = ACTIONS(1475), - [anon_sym_defer] = ACTIONS(1475), - [anon_sym_assert] = ACTIONS(1475), - [anon_sym_nextcase] = ACTIONS(1475), - [anon_sym_switch] = ACTIONS(1475), - [anon_sym_AMP_AMP] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1475), - [anon_sym_for] = ACTIONS(1475), - [anon_sym_foreach] = ACTIONS(1475), - [anon_sym_foreach_r] = ACTIONS(1475), - [anon_sym_while] = ACTIONS(1475), - [anon_sym_do] = ACTIONS(1475), - [anon_sym_int] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_asm] = ACTIONS(1475), - [anon_sym_DOLLARassert] = ACTIONS(1475), - [anon_sym_DOLLARerror] = ACTIONS(1475), - [anon_sym_DOLLARecho] = ACTIONS(1475), - [anon_sym_DOLLARif] = ACTIONS(1475), - [anon_sym_DOLLARswitch] = ACTIONS(1475), - [anon_sym_DOLLARfor] = ACTIONS(1475), - [anon_sym_DOLLARforeach] = ACTIONS(1475), - [anon_sym_DOLLARendforeach] = ACTIONS(1475), - [anon_sym_DOLLARalignof] = ACTIONS(1475), - [anon_sym_DOLLARextnameof] = ACTIONS(1475), - [anon_sym_DOLLARnameof] = ACTIONS(1475), - [anon_sym_DOLLARoffsetof] = ACTIONS(1475), - [anon_sym_DOLLARqnameof] = ACTIONS(1475), - [anon_sym_DOLLAReval] = ACTIONS(1475), - [anon_sym_DOLLARdefined] = ACTIONS(1475), - [anon_sym_DOLLARsizeof] = ACTIONS(1475), - [anon_sym_DOLLARstringify] = ACTIONS(1475), - [anon_sym_DOLLARis_const] = ACTIONS(1475), - [anon_sym_DOLLARvaconst] = ACTIONS(1475), - [anon_sym_DOLLARvaarg] = ACTIONS(1475), - [anon_sym_DOLLARvaref] = ACTIONS(1475), - [anon_sym_DOLLARvaexpr] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1475), - [anon_sym_false] = ACTIONS(1475), - [anon_sym_null] = ACTIONS(1475), - [anon_sym_DOLLARvacount] = ACTIONS(1475), - [anon_sym_DOLLARfeature] = ACTIONS(1475), - [anon_sym_DOLLARand] = ACTIONS(1475), - [anon_sym_DOLLARor] = ACTIONS(1475), - [anon_sym_DOLLARassignable] = ACTIONS(1475), - [anon_sym_DOLLARembed] = ACTIONS(1475), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_TILDE] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1477), - [anon_sym_DASH_DASH] = ACTIONS(1477), - [anon_sym_typeid] = ACTIONS(1475), - [anon_sym_LBRACE_PIPE] = ACTIONS(1477), - [anon_sym_void] = ACTIONS(1475), - [anon_sym_bool] = ACTIONS(1475), - [anon_sym_char] = ACTIONS(1475), - [anon_sym_ichar] = ACTIONS(1475), - [anon_sym_short] = ACTIONS(1475), - [anon_sym_ushort] = ACTIONS(1475), - [anon_sym_uint] = ACTIONS(1475), - [anon_sym_long] = ACTIONS(1475), - [anon_sym_ulong] = ACTIONS(1475), - [anon_sym_int128] = ACTIONS(1475), - [anon_sym_uint128] = ACTIONS(1475), - [anon_sym_float] = ACTIONS(1475), - [anon_sym_double] = ACTIONS(1475), - [anon_sym_float16] = ACTIONS(1475), - [anon_sym_bfloat16] = ACTIONS(1475), - [anon_sym_float128] = ACTIONS(1475), - [anon_sym_iptr] = ACTIONS(1475), - [anon_sym_uptr] = ACTIONS(1475), - [anon_sym_isz] = ACTIONS(1475), - [anon_sym_usz] = ACTIONS(1475), - [anon_sym_anyfault] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_DOLLARtypeof] = ACTIONS(1475), - [anon_sym_DOLLARtypefrom] = ACTIONS(1475), - [anon_sym_DOLLARvatype] = ACTIONS(1475), - [anon_sym_DOLLARevaltype] = ACTIONS(1475), - [sym_real_literal] = ACTIONS(1477), + [sym_ct_ident] = ACTIONS(1385), + [sym_at_ident] = ACTIONS(1387), + [sym_hash_ident] = ACTIONS(1387), + [sym_type_ident] = ACTIONS(1387), + [sym_ct_type_ident] = ACTIONS(1387), + [sym_const_ident] = ACTIONS(1385), + [sym_builtin] = ACTIONS(1387), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_static] = ACTIONS(1385), + [anon_sym_tlocal] = ACTIONS(1385), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_fn] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_const] = ACTIONS(1385), + [anon_sym_var] = ACTIONS(1385), + [anon_sym_return] = ACTIONS(1385), + [anon_sym_continue] = ACTIONS(1385), + [anon_sym_break] = ACTIONS(1385), + [anon_sym_defer] = ACTIONS(1385), + [anon_sym_assert] = ACTIONS(1385), + [anon_sym_nextcase] = ACTIONS(1385), + [anon_sym_switch] = ACTIONS(1385), + [anon_sym_AMP_AMP] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1385), + [anon_sym_for] = ACTIONS(1385), + [anon_sym_foreach] = ACTIONS(1385), + [anon_sym_foreach_r] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1385), + [anon_sym_do] = ACTIONS(1385), + [anon_sym_int] = ACTIONS(1385), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1387), + [anon_sym_asm] = ACTIONS(1385), + [anon_sym_DOLLARassert] = ACTIONS(1385), + [anon_sym_DOLLARerror] = ACTIONS(1385), + [anon_sym_DOLLARecho] = ACTIONS(1385), + [anon_sym_DOLLARif] = ACTIONS(1385), + [anon_sym_DOLLARendif] = ACTIONS(1385), + [anon_sym_DOLLARswitch] = ACTIONS(1385), + [anon_sym_DOLLARfor] = ACTIONS(1385), + [anon_sym_DOLLARforeach] = ACTIONS(1385), + [anon_sym_DOLLARalignof] = ACTIONS(1385), + [anon_sym_DOLLARextnameof] = ACTIONS(1385), + [anon_sym_DOLLARnameof] = ACTIONS(1385), + [anon_sym_DOLLARoffsetof] = ACTIONS(1385), + [anon_sym_DOLLARqnameof] = ACTIONS(1385), + [anon_sym_DOLLARvaconst] = ACTIONS(1385), + [anon_sym_DOLLARvaarg] = ACTIONS(1385), + [anon_sym_DOLLARvaref] = ACTIONS(1385), + [anon_sym_DOLLARvaexpr] = ACTIONS(1385), + [anon_sym_true] = ACTIONS(1385), + [anon_sym_false] = ACTIONS(1385), + [anon_sym_null] = ACTIONS(1385), + [anon_sym_DOLLARvacount] = ACTIONS(1385), + [anon_sym_DOLLAReval] = ACTIONS(1385), + [anon_sym_DOLLARis_const] = ACTIONS(1385), + [anon_sym_DOLLARsizeof] = ACTIONS(1385), + [anon_sym_DOLLARstringify] = ACTIONS(1385), + [anon_sym_DOLLARappend] = ACTIONS(1385), + [anon_sym_DOLLARconcat] = ACTIONS(1385), + [anon_sym_DOLLARdefined] = ACTIONS(1385), + [anon_sym_DOLLARembed] = ACTIONS(1385), + [anon_sym_DOLLARand] = ACTIONS(1385), + [anon_sym_DOLLARor] = ACTIONS(1385), + [anon_sym_DOLLARfeature] = ACTIONS(1385), + [anon_sym_DOLLARassignable] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(1387), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_typeid] = ACTIONS(1385), + [anon_sym_LBRACE_PIPE] = ACTIONS(1387), + [anon_sym_void] = ACTIONS(1385), + [anon_sym_bool] = ACTIONS(1385), + [anon_sym_char] = ACTIONS(1385), + [anon_sym_ichar] = ACTIONS(1385), + [anon_sym_short] = ACTIONS(1385), + [anon_sym_ushort] = ACTIONS(1385), + [anon_sym_uint] = ACTIONS(1385), + [anon_sym_long] = ACTIONS(1385), + [anon_sym_ulong] = ACTIONS(1385), + [anon_sym_int128] = ACTIONS(1385), + [anon_sym_uint128] = ACTIONS(1385), + [anon_sym_float] = ACTIONS(1385), + [anon_sym_double] = ACTIONS(1385), + [anon_sym_float16] = ACTIONS(1385), + [anon_sym_bfloat16] = ACTIONS(1385), + [anon_sym_float128] = ACTIONS(1385), + [anon_sym_iptr] = ACTIONS(1385), + [anon_sym_uptr] = ACTIONS(1385), + [anon_sym_isz] = ACTIONS(1385), + [anon_sym_usz] = ACTIONS(1385), + [anon_sym_anyfault] = ACTIONS(1385), + [anon_sym_any] = ACTIONS(1385), + [anon_sym_DOLLARtypeof] = ACTIONS(1385), + [anon_sym_DOLLARtypefrom] = ACTIONS(1385), + [anon_sym_DOLLARevaltype] = ACTIONS(1385), + [anon_sym_DOLLARvatype] = ACTIONS(1385), + [sym_real_literal] = ACTIONS(1387), }, - [766] = { - [sym_line_comment] = STATE(766), - [sym_doc_comment] = STATE(766), - [sym_block_comment] = STATE(766), - [sym_ident] = ACTIONS(1471), - [sym_integer_literal] = ACTIONS(1473), - [anon_sym_SQUOTE] = ACTIONS(1473), - [anon_sym_DQUOTE] = ACTIONS(1473), - [anon_sym_BQUOTE] = ACTIONS(1473), - [sym_bytes_literal] = ACTIONS(1473), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1471), - [sym_at_ident] = ACTIONS(1473), - [sym_hash_ident] = ACTIONS(1473), - [sym_type_ident] = ACTIONS(1473), - [sym_ct_type_ident] = ACTIONS(1473), - [sym_const_ident] = ACTIONS(1471), - [sym_builtin] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_static] = ACTIONS(1471), - [anon_sym_tlocal] = ACTIONS(1471), - [anon_sym_SEMI] = ACTIONS(1473), - [anon_sym_fn] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_const] = ACTIONS(1471), - [anon_sym_var] = ACTIONS(1471), - [anon_sym_return] = ACTIONS(1471), - [anon_sym_continue] = ACTIONS(1471), - [anon_sym_break] = ACTIONS(1471), - [anon_sym_defer] = ACTIONS(1471), - [anon_sym_assert] = ACTIONS(1471), - [anon_sym_nextcase] = ACTIONS(1471), - [anon_sym_switch] = ACTIONS(1471), - [anon_sym_AMP_AMP] = ACTIONS(1473), - [anon_sym_if] = ACTIONS(1471), - [anon_sym_for] = ACTIONS(1471), - [anon_sym_foreach] = ACTIONS(1471), - [anon_sym_foreach_r] = ACTIONS(1471), - [anon_sym_while] = ACTIONS(1471), - [anon_sym_do] = ACTIONS(1471), - [anon_sym_int] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_asm] = ACTIONS(1471), - [anon_sym_DOLLARassert] = ACTIONS(1471), - [anon_sym_DOLLARerror] = ACTIONS(1471), - [anon_sym_DOLLARecho] = ACTIONS(1471), - [anon_sym_DOLLARif] = ACTIONS(1471), - [anon_sym_DOLLARswitch] = ACTIONS(1471), - [anon_sym_DOLLARfor] = ACTIONS(1471), - [anon_sym_DOLLARforeach] = ACTIONS(1471), - [anon_sym_DOLLARendforeach] = ACTIONS(1471), - [anon_sym_DOLLARalignof] = ACTIONS(1471), - [anon_sym_DOLLARextnameof] = ACTIONS(1471), - [anon_sym_DOLLARnameof] = ACTIONS(1471), - [anon_sym_DOLLARoffsetof] = ACTIONS(1471), - [anon_sym_DOLLARqnameof] = ACTIONS(1471), - [anon_sym_DOLLAReval] = ACTIONS(1471), - [anon_sym_DOLLARdefined] = ACTIONS(1471), - [anon_sym_DOLLARsizeof] = ACTIONS(1471), - [anon_sym_DOLLARstringify] = ACTIONS(1471), - [anon_sym_DOLLARis_const] = ACTIONS(1471), - [anon_sym_DOLLARvaconst] = ACTIONS(1471), - [anon_sym_DOLLARvaarg] = ACTIONS(1471), - [anon_sym_DOLLARvaref] = ACTIONS(1471), - [anon_sym_DOLLARvaexpr] = ACTIONS(1471), - [anon_sym_true] = ACTIONS(1471), - [anon_sym_false] = ACTIONS(1471), - [anon_sym_null] = ACTIONS(1471), - [anon_sym_DOLLARvacount] = ACTIONS(1471), - [anon_sym_DOLLARfeature] = ACTIONS(1471), - [anon_sym_DOLLARand] = ACTIONS(1471), - [anon_sym_DOLLARor] = ACTIONS(1471), - [anon_sym_DOLLARassignable] = ACTIONS(1471), - [anon_sym_DOLLARembed] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1473), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), - [anon_sym_typeid] = ACTIONS(1471), - [anon_sym_LBRACE_PIPE] = ACTIONS(1473), - [anon_sym_void] = ACTIONS(1471), - [anon_sym_bool] = ACTIONS(1471), - [anon_sym_char] = ACTIONS(1471), - [anon_sym_ichar] = ACTIONS(1471), - [anon_sym_short] = ACTIONS(1471), - [anon_sym_ushort] = ACTIONS(1471), - [anon_sym_uint] = ACTIONS(1471), - [anon_sym_long] = ACTIONS(1471), - [anon_sym_ulong] = ACTIONS(1471), - [anon_sym_int128] = ACTIONS(1471), - [anon_sym_uint128] = ACTIONS(1471), - [anon_sym_float] = ACTIONS(1471), - [anon_sym_double] = ACTIONS(1471), - [anon_sym_float16] = ACTIONS(1471), - [anon_sym_bfloat16] = ACTIONS(1471), - [anon_sym_float128] = ACTIONS(1471), - [anon_sym_iptr] = ACTIONS(1471), - [anon_sym_uptr] = ACTIONS(1471), - [anon_sym_isz] = ACTIONS(1471), - [anon_sym_usz] = ACTIONS(1471), - [anon_sym_anyfault] = ACTIONS(1471), - [anon_sym_any] = ACTIONS(1471), - [anon_sym_DOLLARtypeof] = ACTIONS(1471), - [anon_sym_DOLLARtypefrom] = ACTIONS(1471), - [anon_sym_DOLLARvatype] = ACTIONS(1471), - [anon_sym_DOLLARevaltype] = ACTIONS(1471), - [sym_real_literal] = ACTIONS(1473), + [749] = { + [sym_line_comment] = STATE(749), + [sym_doc_comment] = STATE(749), + [sym_block_comment] = STATE(749), + [sym_ident] = ACTIONS(1357), + [sym_integer_literal] = ACTIONS(1359), + [anon_sym_SQUOTE] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [anon_sym_BQUOTE] = ACTIONS(1359), + [sym_bytes_literal] = ACTIONS(1359), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1357), + [sym_at_ident] = ACTIONS(1359), + [sym_hash_ident] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(1359), + [sym_ct_type_ident] = ACTIONS(1359), + [sym_const_ident] = ACTIONS(1357), + [sym_builtin] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1357), + [anon_sym_tlocal] = ACTIONS(1357), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_fn] = ACTIONS(1357), + [anon_sym_LBRACE] = ACTIONS(1357), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_var] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1357), + [anon_sym_continue] = ACTIONS(1357), + [anon_sym_break] = ACTIONS(1357), + [anon_sym_defer] = ACTIONS(1357), + [anon_sym_assert] = ACTIONS(1357), + [anon_sym_nextcase] = ACTIONS(1357), + [anon_sym_switch] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1359), + [anon_sym_if] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1357), + [anon_sym_foreach] = ACTIONS(1357), + [anon_sym_foreach_r] = ACTIONS(1357), + [anon_sym_while] = ACTIONS(1357), + [anon_sym_do] = ACTIONS(1357), + [anon_sym_int] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1357), + [anon_sym_DASH] = ACTIONS(1357), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_asm] = ACTIONS(1357), + [anon_sym_DOLLARassert] = ACTIONS(1357), + [anon_sym_DOLLARerror] = ACTIONS(1357), + [anon_sym_DOLLARecho] = ACTIONS(1357), + [anon_sym_DOLLARif] = ACTIONS(1357), + [anon_sym_DOLLARendif] = ACTIONS(1357), + [anon_sym_DOLLARswitch] = ACTIONS(1357), + [anon_sym_DOLLARfor] = ACTIONS(1357), + [anon_sym_DOLLARforeach] = ACTIONS(1357), + [anon_sym_DOLLARalignof] = ACTIONS(1357), + [anon_sym_DOLLARextnameof] = ACTIONS(1357), + [anon_sym_DOLLARnameof] = ACTIONS(1357), + [anon_sym_DOLLARoffsetof] = ACTIONS(1357), + [anon_sym_DOLLARqnameof] = ACTIONS(1357), + [anon_sym_DOLLARvaconst] = ACTIONS(1357), + [anon_sym_DOLLARvaarg] = ACTIONS(1357), + [anon_sym_DOLLARvaref] = ACTIONS(1357), + [anon_sym_DOLLARvaexpr] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1357), + [anon_sym_false] = ACTIONS(1357), + [anon_sym_null] = ACTIONS(1357), + [anon_sym_DOLLARvacount] = ACTIONS(1357), + [anon_sym_DOLLAReval] = ACTIONS(1357), + [anon_sym_DOLLARis_const] = ACTIONS(1357), + [anon_sym_DOLLARsizeof] = ACTIONS(1357), + [anon_sym_DOLLARstringify] = ACTIONS(1357), + [anon_sym_DOLLARappend] = ACTIONS(1357), + [anon_sym_DOLLARconcat] = ACTIONS(1357), + [anon_sym_DOLLARdefined] = ACTIONS(1357), + [anon_sym_DOLLARembed] = ACTIONS(1357), + [anon_sym_DOLLARand] = ACTIONS(1357), + [anon_sym_DOLLARor] = ACTIONS(1357), + [anon_sym_DOLLARfeature] = ACTIONS(1357), + [anon_sym_DOLLARassignable] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(1359), + [anon_sym_TILDE] = ACTIONS(1359), + [anon_sym_PLUS_PLUS] = ACTIONS(1359), + [anon_sym_DASH_DASH] = ACTIONS(1359), + [anon_sym_typeid] = ACTIONS(1357), + [anon_sym_LBRACE_PIPE] = ACTIONS(1359), + [anon_sym_void] = ACTIONS(1357), + [anon_sym_bool] = ACTIONS(1357), + [anon_sym_char] = ACTIONS(1357), + [anon_sym_ichar] = ACTIONS(1357), + [anon_sym_short] = ACTIONS(1357), + [anon_sym_ushort] = ACTIONS(1357), + [anon_sym_uint] = ACTIONS(1357), + [anon_sym_long] = ACTIONS(1357), + [anon_sym_ulong] = ACTIONS(1357), + [anon_sym_int128] = ACTIONS(1357), + [anon_sym_uint128] = ACTIONS(1357), + [anon_sym_float] = ACTIONS(1357), + [anon_sym_double] = ACTIONS(1357), + [anon_sym_float16] = ACTIONS(1357), + [anon_sym_bfloat16] = ACTIONS(1357), + [anon_sym_float128] = ACTIONS(1357), + [anon_sym_iptr] = ACTIONS(1357), + [anon_sym_uptr] = ACTIONS(1357), + [anon_sym_isz] = ACTIONS(1357), + [anon_sym_usz] = ACTIONS(1357), + [anon_sym_anyfault] = ACTIONS(1357), + [anon_sym_any] = ACTIONS(1357), + [anon_sym_DOLLARtypeof] = ACTIONS(1357), + [anon_sym_DOLLARtypefrom] = ACTIONS(1357), + [anon_sym_DOLLARevaltype] = ACTIONS(1357), + [anon_sym_DOLLARvatype] = ACTIONS(1357), + [sym_real_literal] = ACTIONS(1359), }, - [767] = { - [sym_line_comment] = STATE(767), - [sym_doc_comment] = STATE(767), - [sym_block_comment] = STATE(767), + [750] = { + [sym_line_comment] = STATE(750), + [sym_doc_comment] = STATE(750), + [sym_block_comment] = STATE(750), [sym_ident] = ACTIONS(1389), [sym_integer_literal] = ACTIONS(1391), [anon_sym_SQUOTE] = ACTIONS(1391), @@ -113344,7 +111825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1391), [sym_bytes_literal] = ACTIONS(1391), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), [sym_ct_ident] = ACTIONS(1389), [sym_at_ident] = ACTIONS(1391), @@ -113385,20 +111866,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARerror] = ACTIONS(1389), [anon_sym_DOLLARecho] = ACTIONS(1389), [anon_sym_DOLLARif] = ACTIONS(1389), + [anon_sym_DOLLARendif] = ACTIONS(1389), [anon_sym_DOLLARswitch] = ACTIONS(1389), [anon_sym_DOLLARfor] = ACTIONS(1389), - [anon_sym_DOLLARendfor] = ACTIONS(1389), [anon_sym_DOLLARforeach] = ACTIONS(1389), [anon_sym_DOLLARalignof] = ACTIONS(1389), [anon_sym_DOLLARextnameof] = ACTIONS(1389), [anon_sym_DOLLARnameof] = ACTIONS(1389), [anon_sym_DOLLARoffsetof] = ACTIONS(1389), [anon_sym_DOLLARqnameof] = ACTIONS(1389), - [anon_sym_DOLLAReval] = ACTIONS(1389), - [anon_sym_DOLLARdefined] = ACTIONS(1389), - [anon_sym_DOLLARsizeof] = ACTIONS(1389), - [anon_sym_DOLLARstringify] = ACTIONS(1389), - [anon_sym_DOLLARis_const] = ACTIONS(1389), [anon_sym_DOLLARvaconst] = ACTIONS(1389), [anon_sym_DOLLARvaarg] = ACTIONS(1389), [anon_sym_DOLLARvaref] = ACTIONS(1389), @@ -113407,11 +111883,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1389), [anon_sym_null] = ACTIONS(1389), [anon_sym_DOLLARvacount] = ACTIONS(1389), - [anon_sym_DOLLARfeature] = ACTIONS(1389), + [anon_sym_DOLLAReval] = ACTIONS(1389), + [anon_sym_DOLLARis_const] = ACTIONS(1389), + [anon_sym_DOLLARsizeof] = ACTIONS(1389), + [anon_sym_DOLLARstringify] = ACTIONS(1389), + [anon_sym_DOLLARappend] = ACTIONS(1389), + [anon_sym_DOLLARconcat] = ACTIONS(1389), + [anon_sym_DOLLARdefined] = ACTIONS(1389), + [anon_sym_DOLLARembed] = ACTIONS(1389), [anon_sym_DOLLARand] = ACTIONS(1389), [anon_sym_DOLLARor] = ACTIONS(1389), + [anon_sym_DOLLARfeature] = ACTIONS(1389), [anon_sym_DOLLARassignable] = ACTIONS(1389), - [anon_sym_DOLLARembed] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1391), [anon_sym_TILDE] = ACTIONS(1391), [anon_sym_PLUS_PLUS] = ACTIONS(1391), @@ -113442,3829 +111925,9871 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_any] = ACTIONS(1389), [anon_sym_DOLLARtypeof] = ACTIONS(1389), [anon_sym_DOLLARtypefrom] = ACTIONS(1389), - [anon_sym_DOLLARvatype] = ACTIONS(1389), [anon_sym_DOLLARevaltype] = ACTIONS(1389), + [anon_sym_DOLLARvatype] = ACTIONS(1389), [sym_real_literal] = ACTIONS(1391), }, - [768] = { - [sym_line_comment] = STATE(768), - [sym_doc_comment] = STATE(768), - [sym_block_comment] = STATE(768), - [sym_ident] = ACTIONS(1449), - [sym_integer_literal] = ACTIONS(1451), - [anon_sym_SQUOTE] = ACTIONS(1451), - [anon_sym_DQUOTE] = ACTIONS(1451), - [anon_sym_BQUOTE] = ACTIONS(1451), - [sym_bytes_literal] = ACTIONS(1451), + [751] = { + [sym_line_comment] = STATE(751), + [sym_doc_comment] = STATE(751), + [sym_block_comment] = STATE(751), + [sym_ident] = ACTIONS(1393), + [sym_integer_literal] = ACTIONS(1395), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(1395), + [anon_sym_BQUOTE] = ACTIONS(1395), + [sym_bytes_literal] = ACTIONS(1395), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1449), - [sym_at_ident] = ACTIONS(1451), - [sym_hash_ident] = ACTIONS(1451), - [sym_type_ident] = ACTIONS(1451), - [sym_ct_type_ident] = ACTIONS(1451), - [sym_const_ident] = ACTIONS(1449), - [sym_builtin] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(1451), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_static] = ACTIONS(1449), - [anon_sym_tlocal] = ACTIONS(1449), - [anon_sym_SEMI] = ACTIONS(1451), - [anon_sym_fn] = ACTIONS(1449), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1449), - [anon_sym_var] = ACTIONS(1449), - [anon_sym_return] = ACTIONS(1449), - [anon_sym_continue] = ACTIONS(1449), - [anon_sym_break] = ACTIONS(1449), - [anon_sym_defer] = ACTIONS(1449), - [anon_sym_assert] = ACTIONS(1449), - [anon_sym_nextcase] = ACTIONS(1449), - [anon_sym_switch] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_if] = ACTIONS(1449), - [anon_sym_for] = ACTIONS(1449), - [anon_sym_foreach] = ACTIONS(1449), - [anon_sym_foreach_r] = ACTIONS(1449), - [anon_sym_while] = ACTIONS(1449), - [anon_sym_do] = ACTIONS(1449), - [anon_sym_int] = ACTIONS(1449), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1451), - [anon_sym_asm] = ACTIONS(1449), - [anon_sym_DOLLARassert] = ACTIONS(1449), - [anon_sym_DOLLARerror] = ACTIONS(1449), - [anon_sym_DOLLARecho] = ACTIONS(1449), - [anon_sym_DOLLARif] = ACTIONS(1449), - [anon_sym_DOLLARswitch] = ACTIONS(1449), - [anon_sym_DOLLARfor] = ACTIONS(1449), - [anon_sym_DOLLARendfor] = ACTIONS(1449), - [anon_sym_DOLLARforeach] = ACTIONS(1449), - [anon_sym_DOLLARalignof] = ACTIONS(1449), - [anon_sym_DOLLARextnameof] = ACTIONS(1449), - [anon_sym_DOLLARnameof] = ACTIONS(1449), - [anon_sym_DOLLARoffsetof] = ACTIONS(1449), - [anon_sym_DOLLARqnameof] = ACTIONS(1449), - [anon_sym_DOLLAReval] = ACTIONS(1449), - [anon_sym_DOLLARdefined] = ACTIONS(1449), - [anon_sym_DOLLARsizeof] = ACTIONS(1449), - [anon_sym_DOLLARstringify] = ACTIONS(1449), - [anon_sym_DOLLARis_const] = ACTIONS(1449), - [anon_sym_DOLLARvaconst] = ACTIONS(1449), - [anon_sym_DOLLARvaarg] = ACTIONS(1449), - [anon_sym_DOLLARvaref] = ACTIONS(1449), - [anon_sym_DOLLARvaexpr] = ACTIONS(1449), - [anon_sym_true] = ACTIONS(1449), - [anon_sym_false] = ACTIONS(1449), - [anon_sym_null] = ACTIONS(1449), - [anon_sym_DOLLARvacount] = ACTIONS(1449), - [anon_sym_DOLLARfeature] = ACTIONS(1449), - [anon_sym_DOLLARand] = ACTIONS(1449), - [anon_sym_DOLLARor] = ACTIONS(1449), - [anon_sym_DOLLARassignable] = ACTIONS(1449), - [anon_sym_DOLLARembed] = ACTIONS(1449), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_TILDE] = ACTIONS(1451), - [anon_sym_PLUS_PLUS] = ACTIONS(1451), - [anon_sym_DASH_DASH] = ACTIONS(1451), - [anon_sym_typeid] = ACTIONS(1449), - [anon_sym_LBRACE_PIPE] = ACTIONS(1451), - [anon_sym_void] = ACTIONS(1449), - [anon_sym_bool] = ACTIONS(1449), - [anon_sym_char] = ACTIONS(1449), - [anon_sym_ichar] = ACTIONS(1449), - [anon_sym_short] = ACTIONS(1449), - [anon_sym_ushort] = ACTIONS(1449), - [anon_sym_uint] = ACTIONS(1449), - [anon_sym_long] = ACTIONS(1449), - [anon_sym_ulong] = ACTIONS(1449), - [anon_sym_int128] = ACTIONS(1449), - [anon_sym_uint128] = ACTIONS(1449), - [anon_sym_float] = ACTIONS(1449), - [anon_sym_double] = ACTIONS(1449), - [anon_sym_float16] = ACTIONS(1449), - [anon_sym_bfloat16] = ACTIONS(1449), - [anon_sym_float128] = ACTIONS(1449), - [anon_sym_iptr] = ACTIONS(1449), - [anon_sym_uptr] = ACTIONS(1449), - [anon_sym_isz] = ACTIONS(1449), - [anon_sym_usz] = ACTIONS(1449), - [anon_sym_anyfault] = ACTIONS(1449), - [anon_sym_any] = ACTIONS(1449), - [anon_sym_DOLLARtypeof] = ACTIONS(1449), - [anon_sym_DOLLARtypefrom] = ACTIONS(1449), - [anon_sym_DOLLARvatype] = ACTIONS(1449), - [anon_sym_DOLLARevaltype] = ACTIONS(1449), - [sym_real_literal] = ACTIONS(1451), + [sym_ct_ident] = ACTIONS(1393), + [sym_at_ident] = ACTIONS(1395), + [sym_hash_ident] = ACTIONS(1395), + [sym_type_ident] = ACTIONS(1395), + [sym_ct_type_ident] = ACTIONS(1395), + [sym_const_ident] = ACTIONS(1393), + [sym_builtin] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_static] = ACTIONS(1393), + [anon_sym_tlocal] = ACTIONS(1393), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_fn] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_const] = ACTIONS(1393), + [anon_sym_var] = ACTIONS(1393), + [anon_sym_return] = ACTIONS(1393), + [anon_sym_continue] = ACTIONS(1393), + [anon_sym_break] = ACTIONS(1393), + [anon_sym_defer] = ACTIONS(1393), + [anon_sym_assert] = ACTIONS(1393), + [anon_sym_nextcase] = ACTIONS(1393), + [anon_sym_switch] = ACTIONS(1393), + [anon_sym_AMP_AMP] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1393), + [anon_sym_for] = ACTIONS(1393), + [anon_sym_foreach] = ACTIONS(1393), + [anon_sym_foreach_r] = ACTIONS(1393), + [anon_sym_while] = ACTIONS(1393), + [anon_sym_do] = ACTIONS(1393), + [anon_sym_int] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_asm] = ACTIONS(1393), + [anon_sym_DOLLARassert] = ACTIONS(1393), + [anon_sym_DOLLARerror] = ACTIONS(1393), + [anon_sym_DOLLARecho] = ACTIONS(1393), + [anon_sym_DOLLARif] = ACTIONS(1393), + [anon_sym_DOLLARendif] = ACTIONS(1393), + [anon_sym_DOLLARswitch] = ACTIONS(1393), + [anon_sym_DOLLARfor] = ACTIONS(1393), + [anon_sym_DOLLARforeach] = ACTIONS(1393), + [anon_sym_DOLLARalignof] = ACTIONS(1393), + [anon_sym_DOLLARextnameof] = ACTIONS(1393), + [anon_sym_DOLLARnameof] = ACTIONS(1393), + [anon_sym_DOLLARoffsetof] = ACTIONS(1393), + [anon_sym_DOLLARqnameof] = ACTIONS(1393), + [anon_sym_DOLLARvaconst] = ACTIONS(1393), + [anon_sym_DOLLARvaarg] = ACTIONS(1393), + [anon_sym_DOLLARvaref] = ACTIONS(1393), + [anon_sym_DOLLARvaexpr] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(1393), + [anon_sym_false] = ACTIONS(1393), + [anon_sym_null] = ACTIONS(1393), + [anon_sym_DOLLARvacount] = ACTIONS(1393), + [anon_sym_DOLLAReval] = ACTIONS(1393), + [anon_sym_DOLLARis_const] = ACTIONS(1393), + [anon_sym_DOLLARsizeof] = ACTIONS(1393), + [anon_sym_DOLLARstringify] = ACTIONS(1393), + [anon_sym_DOLLARappend] = ACTIONS(1393), + [anon_sym_DOLLARconcat] = ACTIONS(1393), + [anon_sym_DOLLARdefined] = ACTIONS(1393), + [anon_sym_DOLLARembed] = ACTIONS(1393), + [anon_sym_DOLLARand] = ACTIONS(1393), + [anon_sym_DOLLARor] = ACTIONS(1393), + [anon_sym_DOLLARfeature] = ACTIONS(1393), + [anon_sym_DOLLARassignable] = ACTIONS(1393), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_TILDE] = ACTIONS(1395), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [anon_sym_typeid] = ACTIONS(1393), + [anon_sym_LBRACE_PIPE] = ACTIONS(1395), + [anon_sym_void] = ACTIONS(1393), + [anon_sym_bool] = ACTIONS(1393), + [anon_sym_char] = ACTIONS(1393), + [anon_sym_ichar] = ACTIONS(1393), + [anon_sym_short] = ACTIONS(1393), + [anon_sym_ushort] = ACTIONS(1393), + [anon_sym_uint] = ACTIONS(1393), + [anon_sym_long] = ACTIONS(1393), + [anon_sym_ulong] = ACTIONS(1393), + [anon_sym_int128] = ACTIONS(1393), + [anon_sym_uint128] = ACTIONS(1393), + [anon_sym_float] = ACTIONS(1393), + [anon_sym_double] = ACTIONS(1393), + [anon_sym_float16] = ACTIONS(1393), + [anon_sym_bfloat16] = ACTIONS(1393), + [anon_sym_float128] = ACTIONS(1393), + [anon_sym_iptr] = ACTIONS(1393), + [anon_sym_uptr] = ACTIONS(1393), + [anon_sym_isz] = ACTIONS(1393), + [anon_sym_usz] = ACTIONS(1393), + [anon_sym_anyfault] = ACTIONS(1393), + [anon_sym_any] = ACTIONS(1393), + [anon_sym_DOLLARtypeof] = ACTIONS(1393), + [anon_sym_DOLLARtypefrom] = ACTIONS(1393), + [anon_sym_DOLLARevaltype] = ACTIONS(1393), + [anon_sym_DOLLARvatype] = ACTIONS(1393), + [sym_real_literal] = ACTIONS(1395), }, - [769] = { - [sym_line_comment] = STATE(769), - [sym_doc_comment] = STATE(769), - [sym_block_comment] = STATE(769), - [sym_ident] = ACTIONS(1445), - [sym_integer_literal] = ACTIONS(1447), - [anon_sym_SQUOTE] = ACTIONS(1447), - [anon_sym_DQUOTE] = ACTIONS(1447), - [anon_sym_BQUOTE] = ACTIONS(1447), - [sym_bytes_literal] = ACTIONS(1447), + [752] = { + [sym_line_comment] = STATE(752), + [sym_doc_comment] = STATE(752), + [sym_block_comment] = STATE(752), + [sym_ident] = ACTIONS(1397), + [sym_integer_literal] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1399), + [anon_sym_BQUOTE] = ACTIONS(1399), + [sym_bytes_literal] = ACTIONS(1399), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1445), - [sym_at_ident] = ACTIONS(1447), - [sym_hash_ident] = ACTIONS(1447), - [sym_type_ident] = ACTIONS(1447), - [sym_ct_type_ident] = ACTIONS(1447), - [sym_const_ident] = ACTIONS(1445), - [sym_builtin] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1447), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_tlocal] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1447), - [anon_sym_fn] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_const] = ACTIONS(1445), - [anon_sym_var] = ACTIONS(1445), - [anon_sym_return] = ACTIONS(1445), - [anon_sym_continue] = ACTIONS(1445), - [anon_sym_break] = ACTIONS(1445), - [anon_sym_defer] = ACTIONS(1445), - [anon_sym_assert] = ACTIONS(1445), - [anon_sym_nextcase] = ACTIONS(1445), - [anon_sym_switch] = ACTIONS(1445), - [anon_sym_AMP_AMP] = ACTIONS(1447), - [anon_sym_if] = ACTIONS(1445), - [anon_sym_for] = ACTIONS(1445), - [anon_sym_foreach] = ACTIONS(1445), - [anon_sym_foreach_r] = ACTIONS(1445), - [anon_sym_while] = ACTIONS(1445), - [anon_sym_do] = ACTIONS(1445), - [anon_sym_int] = ACTIONS(1445), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_asm] = ACTIONS(1445), - [anon_sym_DOLLARassert] = ACTIONS(1445), - [anon_sym_DOLLARerror] = ACTIONS(1445), - [anon_sym_DOLLARecho] = ACTIONS(1445), - [anon_sym_DOLLARif] = ACTIONS(1445), - [anon_sym_DOLLARswitch] = ACTIONS(1445), - [anon_sym_DOLLARfor] = ACTIONS(1445), - [anon_sym_DOLLARendfor] = ACTIONS(1445), - [anon_sym_DOLLARforeach] = ACTIONS(1445), - [anon_sym_DOLLARalignof] = ACTIONS(1445), - [anon_sym_DOLLARextnameof] = ACTIONS(1445), - [anon_sym_DOLLARnameof] = ACTIONS(1445), - [anon_sym_DOLLARoffsetof] = ACTIONS(1445), - [anon_sym_DOLLARqnameof] = ACTIONS(1445), - [anon_sym_DOLLAReval] = ACTIONS(1445), - [anon_sym_DOLLARdefined] = ACTIONS(1445), - [anon_sym_DOLLARsizeof] = ACTIONS(1445), - [anon_sym_DOLLARstringify] = ACTIONS(1445), - [anon_sym_DOLLARis_const] = ACTIONS(1445), - [anon_sym_DOLLARvaconst] = ACTIONS(1445), - [anon_sym_DOLLARvaarg] = ACTIONS(1445), - [anon_sym_DOLLARvaref] = ACTIONS(1445), - [anon_sym_DOLLARvaexpr] = ACTIONS(1445), - [anon_sym_true] = ACTIONS(1445), - [anon_sym_false] = ACTIONS(1445), - [anon_sym_null] = ACTIONS(1445), - [anon_sym_DOLLARvacount] = ACTIONS(1445), - [anon_sym_DOLLARfeature] = ACTIONS(1445), - [anon_sym_DOLLARand] = ACTIONS(1445), - [anon_sym_DOLLARor] = ACTIONS(1445), - [anon_sym_DOLLARassignable] = ACTIONS(1445), - [anon_sym_DOLLARembed] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_TILDE] = ACTIONS(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(1447), - [anon_sym_DASH_DASH] = ACTIONS(1447), - [anon_sym_typeid] = ACTIONS(1445), - [anon_sym_LBRACE_PIPE] = ACTIONS(1447), - [anon_sym_void] = ACTIONS(1445), - [anon_sym_bool] = ACTIONS(1445), - [anon_sym_char] = ACTIONS(1445), - [anon_sym_ichar] = ACTIONS(1445), - [anon_sym_short] = ACTIONS(1445), - [anon_sym_ushort] = ACTIONS(1445), - [anon_sym_uint] = ACTIONS(1445), - [anon_sym_long] = ACTIONS(1445), - [anon_sym_ulong] = ACTIONS(1445), - [anon_sym_int128] = ACTIONS(1445), - [anon_sym_uint128] = ACTIONS(1445), - [anon_sym_float] = ACTIONS(1445), - [anon_sym_double] = ACTIONS(1445), - [anon_sym_float16] = ACTIONS(1445), - [anon_sym_bfloat16] = ACTIONS(1445), - [anon_sym_float128] = ACTIONS(1445), - [anon_sym_iptr] = ACTIONS(1445), - [anon_sym_uptr] = ACTIONS(1445), - [anon_sym_isz] = ACTIONS(1445), - [anon_sym_usz] = ACTIONS(1445), - [anon_sym_anyfault] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_DOLLARtypeof] = ACTIONS(1445), - [anon_sym_DOLLARtypefrom] = ACTIONS(1445), - [anon_sym_DOLLARvatype] = ACTIONS(1445), - [anon_sym_DOLLARevaltype] = ACTIONS(1445), - [sym_real_literal] = ACTIONS(1447), + [sym_ct_ident] = ACTIONS(1397), + [sym_at_ident] = ACTIONS(1399), + [sym_hash_ident] = ACTIONS(1399), + [sym_type_ident] = ACTIONS(1399), + [sym_ct_type_ident] = ACTIONS(1399), + [sym_const_ident] = ACTIONS(1397), + [sym_builtin] = ACTIONS(1399), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_static] = ACTIONS(1397), + [anon_sym_tlocal] = ACTIONS(1397), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_fn] = ACTIONS(1397), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_const] = ACTIONS(1397), + [anon_sym_var] = ACTIONS(1397), + [anon_sym_return] = ACTIONS(1397), + [anon_sym_continue] = ACTIONS(1397), + [anon_sym_break] = ACTIONS(1397), + [anon_sym_defer] = ACTIONS(1397), + [anon_sym_assert] = ACTIONS(1397), + [anon_sym_nextcase] = ACTIONS(1397), + [anon_sym_switch] = ACTIONS(1397), + [anon_sym_AMP_AMP] = ACTIONS(1399), + [anon_sym_if] = ACTIONS(1397), + [anon_sym_for] = ACTIONS(1397), + [anon_sym_foreach] = ACTIONS(1397), + [anon_sym_foreach_r] = ACTIONS(1397), + [anon_sym_while] = ACTIONS(1397), + [anon_sym_do] = ACTIONS(1397), + [anon_sym_int] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1399), + [anon_sym_asm] = ACTIONS(1397), + [anon_sym_DOLLARassert] = ACTIONS(1397), + [anon_sym_DOLLARerror] = ACTIONS(1397), + [anon_sym_DOLLARecho] = ACTIONS(1397), + [anon_sym_DOLLARif] = ACTIONS(1397), + [anon_sym_DOLLARendif] = ACTIONS(1397), + [anon_sym_DOLLARswitch] = ACTIONS(1397), + [anon_sym_DOLLARfor] = ACTIONS(1397), + [anon_sym_DOLLARforeach] = ACTIONS(1397), + [anon_sym_DOLLARalignof] = ACTIONS(1397), + [anon_sym_DOLLARextnameof] = ACTIONS(1397), + [anon_sym_DOLLARnameof] = ACTIONS(1397), + [anon_sym_DOLLARoffsetof] = ACTIONS(1397), + [anon_sym_DOLLARqnameof] = ACTIONS(1397), + [anon_sym_DOLLARvaconst] = ACTIONS(1397), + [anon_sym_DOLLARvaarg] = ACTIONS(1397), + [anon_sym_DOLLARvaref] = ACTIONS(1397), + [anon_sym_DOLLARvaexpr] = ACTIONS(1397), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_null] = ACTIONS(1397), + [anon_sym_DOLLARvacount] = ACTIONS(1397), + [anon_sym_DOLLAReval] = ACTIONS(1397), + [anon_sym_DOLLARis_const] = ACTIONS(1397), + [anon_sym_DOLLARsizeof] = ACTIONS(1397), + [anon_sym_DOLLARstringify] = ACTIONS(1397), + [anon_sym_DOLLARappend] = ACTIONS(1397), + [anon_sym_DOLLARconcat] = ACTIONS(1397), + [anon_sym_DOLLARdefined] = ACTIONS(1397), + [anon_sym_DOLLARembed] = ACTIONS(1397), + [anon_sym_DOLLARand] = ACTIONS(1397), + [anon_sym_DOLLARor] = ACTIONS(1397), + [anon_sym_DOLLARfeature] = ACTIONS(1397), + [anon_sym_DOLLARassignable] = ACTIONS(1397), + [anon_sym_BANG] = ACTIONS(1399), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_PLUS_PLUS] = ACTIONS(1399), + [anon_sym_DASH_DASH] = ACTIONS(1399), + [anon_sym_typeid] = ACTIONS(1397), + [anon_sym_LBRACE_PIPE] = ACTIONS(1399), + [anon_sym_void] = ACTIONS(1397), + [anon_sym_bool] = ACTIONS(1397), + [anon_sym_char] = ACTIONS(1397), + [anon_sym_ichar] = ACTIONS(1397), + [anon_sym_short] = ACTIONS(1397), + [anon_sym_ushort] = ACTIONS(1397), + [anon_sym_uint] = ACTIONS(1397), + [anon_sym_long] = ACTIONS(1397), + [anon_sym_ulong] = ACTIONS(1397), + [anon_sym_int128] = ACTIONS(1397), + [anon_sym_uint128] = ACTIONS(1397), + [anon_sym_float] = ACTIONS(1397), + [anon_sym_double] = ACTIONS(1397), + [anon_sym_float16] = ACTIONS(1397), + [anon_sym_bfloat16] = ACTIONS(1397), + [anon_sym_float128] = ACTIONS(1397), + [anon_sym_iptr] = ACTIONS(1397), + [anon_sym_uptr] = ACTIONS(1397), + [anon_sym_isz] = ACTIONS(1397), + [anon_sym_usz] = ACTIONS(1397), + [anon_sym_anyfault] = ACTIONS(1397), + [anon_sym_any] = ACTIONS(1397), + [anon_sym_DOLLARtypeof] = ACTIONS(1397), + [anon_sym_DOLLARtypefrom] = ACTIONS(1397), + [anon_sym_DOLLARevaltype] = ACTIONS(1397), + [anon_sym_DOLLARvatype] = ACTIONS(1397), + [sym_real_literal] = ACTIONS(1399), + }, + [753] = { + [sym_line_comment] = STATE(753), + [sym_doc_comment] = STATE(753), + [sym_block_comment] = STATE(753), + [sym_ident] = ACTIONS(1401), + [sym_integer_literal] = ACTIONS(1403), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_DQUOTE] = ACTIONS(1403), + [anon_sym_BQUOTE] = ACTIONS(1403), + [sym_bytes_literal] = ACTIONS(1403), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1401), + [sym_at_ident] = ACTIONS(1403), + [sym_hash_ident] = ACTIONS(1403), + [sym_type_ident] = ACTIONS(1403), + [sym_ct_type_ident] = ACTIONS(1403), + [sym_const_ident] = ACTIONS(1401), + [sym_builtin] = ACTIONS(1403), + [anon_sym_LPAREN] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_tlocal] = ACTIONS(1401), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_var] = ACTIONS(1401), + [anon_sym_return] = ACTIONS(1401), + [anon_sym_continue] = ACTIONS(1401), + [anon_sym_break] = ACTIONS(1401), + [anon_sym_defer] = ACTIONS(1401), + [anon_sym_assert] = ACTIONS(1401), + [anon_sym_nextcase] = ACTIONS(1401), + [anon_sym_switch] = ACTIONS(1401), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_if] = ACTIONS(1401), + [anon_sym_for] = ACTIONS(1401), + [anon_sym_foreach] = ACTIONS(1401), + [anon_sym_foreach_r] = ACTIONS(1401), + [anon_sym_while] = ACTIONS(1401), + [anon_sym_do] = ACTIONS(1401), + [anon_sym_int] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1403), + [anon_sym_asm] = ACTIONS(1401), + [anon_sym_DOLLARassert] = ACTIONS(1401), + [anon_sym_DOLLARerror] = ACTIONS(1401), + [anon_sym_DOLLARecho] = ACTIONS(1401), + [anon_sym_DOLLARif] = ACTIONS(1401), + [anon_sym_DOLLARendif] = ACTIONS(1401), + [anon_sym_DOLLARswitch] = ACTIONS(1401), + [anon_sym_DOLLARfor] = ACTIONS(1401), + [anon_sym_DOLLARforeach] = ACTIONS(1401), + [anon_sym_DOLLARalignof] = ACTIONS(1401), + [anon_sym_DOLLARextnameof] = ACTIONS(1401), + [anon_sym_DOLLARnameof] = ACTIONS(1401), + [anon_sym_DOLLARoffsetof] = ACTIONS(1401), + [anon_sym_DOLLARqnameof] = ACTIONS(1401), + [anon_sym_DOLLARvaconst] = ACTIONS(1401), + [anon_sym_DOLLARvaarg] = ACTIONS(1401), + [anon_sym_DOLLARvaref] = ACTIONS(1401), + [anon_sym_DOLLARvaexpr] = ACTIONS(1401), + [anon_sym_true] = ACTIONS(1401), + [anon_sym_false] = ACTIONS(1401), + [anon_sym_null] = ACTIONS(1401), + [anon_sym_DOLLARvacount] = ACTIONS(1401), + [anon_sym_DOLLAReval] = ACTIONS(1401), + [anon_sym_DOLLARis_const] = ACTIONS(1401), + [anon_sym_DOLLARsizeof] = ACTIONS(1401), + [anon_sym_DOLLARstringify] = ACTIONS(1401), + [anon_sym_DOLLARappend] = ACTIONS(1401), + [anon_sym_DOLLARconcat] = ACTIONS(1401), + [anon_sym_DOLLARdefined] = ACTIONS(1401), + [anon_sym_DOLLARembed] = ACTIONS(1401), + [anon_sym_DOLLARand] = ACTIONS(1401), + [anon_sym_DOLLARor] = ACTIONS(1401), + [anon_sym_DOLLARfeature] = ACTIONS(1401), + [anon_sym_DOLLARassignable] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1403), + [anon_sym_TILDE] = ACTIONS(1403), + [anon_sym_PLUS_PLUS] = ACTIONS(1403), + [anon_sym_DASH_DASH] = ACTIONS(1403), + [anon_sym_typeid] = ACTIONS(1401), + [anon_sym_LBRACE_PIPE] = ACTIONS(1403), + [anon_sym_void] = ACTIONS(1401), + [anon_sym_bool] = ACTIONS(1401), + [anon_sym_char] = ACTIONS(1401), + [anon_sym_ichar] = ACTIONS(1401), + [anon_sym_short] = ACTIONS(1401), + [anon_sym_ushort] = ACTIONS(1401), + [anon_sym_uint] = ACTIONS(1401), + [anon_sym_long] = ACTIONS(1401), + [anon_sym_ulong] = ACTIONS(1401), + [anon_sym_int128] = ACTIONS(1401), + [anon_sym_uint128] = ACTIONS(1401), + [anon_sym_float] = ACTIONS(1401), + [anon_sym_double] = ACTIONS(1401), + [anon_sym_float16] = ACTIONS(1401), + [anon_sym_bfloat16] = ACTIONS(1401), + [anon_sym_float128] = ACTIONS(1401), + [anon_sym_iptr] = ACTIONS(1401), + [anon_sym_uptr] = ACTIONS(1401), + [anon_sym_isz] = ACTIONS(1401), + [anon_sym_usz] = ACTIONS(1401), + [anon_sym_anyfault] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_DOLLARtypeof] = ACTIONS(1401), + [anon_sym_DOLLARtypefrom] = ACTIONS(1401), + [anon_sym_DOLLARevaltype] = ACTIONS(1401), + [anon_sym_DOLLARvatype] = ACTIONS(1401), + [sym_real_literal] = ACTIONS(1403), }, - [770] = { - [sym_line_comment] = STATE(770), - [sym_doc_comment] = STATE(770), - [sym_block_comment] = STATE(770), - [sym_ident] = ACTIONS(1429), - [sym_integer_literal] = ACTIONS(1431), - [anon_sym_SQUOTE] = ACTIONS(1431), - [anon_sym_DQUOTE] = ACTIONS(1431), - [anon_sym_BQUOTE] = ACTIONS(1431), - [sym_bytes_literal] = ACTIONS(1431), + [754] = { + [sym_line_comment] = STATE(754), + [sym_doc_comment] = STATE(754), + [sym_block_comment] = STATE(754), + [sym_ident] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_BQUOTE] = ACTIONS(1407), + [sym_bytes_literal] = ACTIONS(1407), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1429), - [sym_at_ident] = ACTIONS(1431), - [sym_hash_ident] = ACTIONS(1431), - [sym_type_ident] = ACTIONS(1431), - [sym_ct_type_ident] = ACTIONS(1431), - [sym_const_ident] = ACTIONS(1429), - [sym_builtin] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1429), - [anon_sym_tlocal] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_var] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_defer] = ACTIONS(1429), - [anon_sym_assert] = ACTIONS(1429), - [anon_sym_nextcase] = ACTIONS(1429), - [anon_sym_switch] = ACTIONS(1429), - [anon_sym_AMP_AMP] = ACTIONS(1431), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_foreach] = ACTIONS(1429), - [anon_sym_foreach_r] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_do] = ACTIONS(1429), - [anon_sym_int] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_asm] = ACTIONS(1429), - [anon_sym_DOLLARassert] = ACTIONS(1429), - [anon_sym_DOLLARerror] = ACTIONS(1429), - [anon_sym_DOLLARecho] = ACTIONS(1429), - [anon_sym_DOLLARif] = ACTIONS(1429), - [anon_sym_DOLLARswitch] = ACTIONS(1429), - [anon_sym_DOLLARfor] = ACTIONS(1429), - [anon_sym_DOLLARendfor] = ACTIONS(1429), - [anon_sym_DOLLARforeach] = ACTIONS(1429), - [anon_sym_DOLLARalignof] = ACTIONS(1429), - [anon_sym_DOLLARextnameof] = ACTIONS(1429), - [anon_sym_DOLLARnameof] = ACTIONS(1429), - [anon_sym_DOLLARoffsetof] = ACTIONS(1429), - [anon_sym_DOLLARqnameof] = ACTIONS(1429), - [anon_sym_DOLLAReval] = ACTIONS(1429), - [anon_sym_DOLLARdefined] = ACTIONS(1429), - [anon_sym_DOLLARsizeof] = ACTIONS(1429), - [anon_sym_DOLLARstringify] = ACTIONS(1429), - [anon_sym_DOLLARis_const] = ACTIONS(1429), - [anon_sym_DOLLARvaconst] = ACTIONS(1429), - [anon_sym_DOLLARvaarg] = ACTIONS(1429), - [anon_sym_DOLLARvaref] = ACTIONS(1429), - [anon_sym_DOLLARvaexpr] = ACTIONS(1429), - [anon_sym_true] = ACTIONS(1429), - [anon_sym_false] = ACTIONS(1429), - [anon_sym_null] = ACTIONS(1429), - [anon_sym_DOLLARvacount] = ACTIONS(1429), - [anon_sym_DOLLARfeature] = ACTIONS(1429), - [anon_sym_DOLLARand] = ACTIONS(1429), - [anon_sym_DOLLARor] = ACTIONS(1429), - [anon_sym_DOLLARassignable] = ACTIONS(1429), - [anon_sym_DOLLARembed] = ACTIONS(1429), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_TILDE] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(1431), - [anon_sym_DASH_DASH] = ACTIONS(1431), - [anon_sym_typeid] = ACTIONS(1429), - [anon_sym_LBRACE_PIPE] = ACTIONS(1431), - [anon_sym_void] = ACTIONS(1429), - [anon_sym_bool] = ACTIONS(1429), - [anon_sym_char] = ACTIONS(1429), - [anon_sym_ichar] = ACTIONS(1429), - [anon_sym_short] = ACTIONS(1429), - [anon_sym_ushort] = ACTIONS(1429), - [anon_sym_uint] = ACTIONS(1429), - [anon_sym_long] = ACTIONS(1429), - [anon_sym_ulong] = ACTIONS(1429), - [anon_sym_int128] = ACTIONS(1429), - [anon_sym_uint128] = ACTIONS(1429), - [anon_sym_float] = ACTIONS(1429), - [anon_sym_double] = ACTIONS(1429), - [anon_sym_float16] = ACTIONS(1429), - [anon_sym_bfloat16] = ACTIONS(1429), - [anon_sym_float128] = ACTIONS(1429), - [anon_sym_iptr] = ACTIONS(1429), - [anon_sym_uptr] = ACTIONS(1429), - [anon_sym_isz] = ACTIONS(1429), - [anon_sym_usz] = ACTIONS(1429), - [anon_sym_anyfault] = ACTIONS(1429), - [anon_sym_any] = ACTIONS(1429), - [anon_sym_DOLLARtypeof] = ACTIONS(1429), - [anon_sym_DOLLARtypefrom] = ACTIONS(1429), - [anon_sym_DOLLARvatype] = ACTIONS(1429), - [anon_sym_DOLLARevaltype] = ACTIONS(1429), - [sym_real_literal] = ACTIONS(1431), - }, - [771] = { - [sym_line_comment] = STATE(771), - [sym_doc_comment] = STATE(771), - [sym_block_comment] = STATE(771), - [sym_ident] = ACTIONS(1181), - [sym_integer_literal] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_DQUOTE] = ACTIONS(1183), - [anon_sym_BQUOTE] = ACTIONS(1183), - [sym_bytes_literal] = ACTIONS(1183), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1181), - [sym_at_ident] = ACTIONS(1183), - [sym_hash_ident] = ACTIONS(1183), - [sym_type_ident] = ACTIONS(1183), - [sym_ct_type_ident] = ACTIONS(1183), - [sym_const_ident] = ACTIONS(1181), - [sym_builtin] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_static] = ACTIONS(1181), - [anon_sym_tlocal] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_fn] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_var] = ACTIONS(1181), - [anon_sym_return] = ACTIONS(1181), - [anon_sym_continue] = ACTIONS(1181), - [anon_sym_break] = ACTIONS(1181), - [anon_sym_defer] = ACTIONS(1181), - [anon_sym_assert] = ACTIONS(1181), - [anon_sym_nextcase] = ACTIONS(1181), - [anon_sym_switch] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1181), - [anon_sym_for] = ACTIONS(1181), - [anon_sym_foreach] = ACTIONS(1181), - [anon_sym_foreach_r] = ACTIONS(1181), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1183), - [anon_sym_asm] = ACTIONS(1181), - [anon_sym_DOLLARassert] = ACTIONS(1181), - [anon_sym_DOLLARerror] = ACTIONS(1181), - [anon_sym_DOLLARecho] = ACTIONS(1181), - [anon_sym_DOLLARif] = ACTIONS(1181), - [anon_sym_DOLLARswitch] = ACTIONS(1181), - [anon_sym_DOLLARfor] = ACTIONS(1181), - [anon_sym_DOLLARendfor] = ACTIONS(1181), - [anon_sym_DOLLARforeach] = ACTIONS(1181), - [anon_sym_DOLLARalignof] = ACTIONS(1181), - [anon_sym_DOLLARextnameof] = ACTIONS(1181), - [anon_sym_DOLLARnameof] = ACTIONS(1181), - [anon_sym_DOLLARoffsetof] = ACTIONS(1181), - [anon_sym_DOLLARqnameof] = ACTIONS(1181), - [anon_sym_DOLLAReval] = ACTIONS(1181), - [anon_sym_DOLLARdefined] = ACTIONS(1181), - [anon_sym_DOLLARsizeof] = ACTIONS(1181), - [anon_sym_DOLLARstringify] = ACTIONS(1181), - [anon_sym_DOLLARis_const] = ACTIONS(1181), - [anon_sym_DOLLARvaconst] = ACTIONS(1181), - [anon_sym_DOLLARvaarg] = ACTIONS(1181), - [anon_sym_DOLLARvaref] = ACTIONS(1181), - [anon_sym_DOLLARvaexpr] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1181), - [anon_sym_false] = ACTIONS(1181), - [anon_sym_null] = ACTIONS(1181), - [anon_sym_DOLLARvacount] = ACTIONS(1181), - [anon_sym_DOLLARfeature] = ACTIONS(1181), - [anon_sym_DOLLARand] = ACTIONS(1181), - [anon_sym_DOLLARor] = ACTIONS(1181), - [anon_sym_DOLLARassignable] = ACTIONS(1181), - [anon_sym_DOLLARembed] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1183), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_typeid] = ACTIONS(1181), - [anon_sym_LBRACE_PIPE] = ACTIONS(1183), - [anon_sym_void] = ACTIONS(1181), - [anon_sym_bool] = ACTIONS(1181), - [anon_sym_char] = ACTIONS(1181), - [anon_sym_ichar] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_ushort] = ACTIONS(1181), - [anon_sym_uint] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_ulong] = ACTIONS(1181), - [anon_sym_int128] = ACTIONS(1181), - [anon_sym_uint128] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_double] = ACTIONS(1181), - [anon_sym_float16] = ACTIONS(1181), - [anon_sym_bfloat16] = ACTIONS(1181), - [anon_sym_float128] = ACTIONS(1181), - [anon_sym_iptr] = ACTIONS(1181), - [anon_sym_uptr] = ACTIONS(1181), - [anon_sym_isz] = ACTIONS(1181), - [anon_sym_usz] = ACTIONS(1181), - [anon_sym_anyfault] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_DOLLARtypeof] = ACTIONS(1181), - [anon_sym_DOLLARtypefrom] = ACTIONS(1181), - [anon_sym_DOLLARvatype] = ACTIONS(1181), - [anon_sym_DOLLARevaltype] = ACTIONS(1181), - [sym_real_literal] = ACTIONS(1183), + [sym_ct_ident] = ACTIONS(1405), + [sym_at_ident] = ACTIONS(1407), + [sym_hash_ident] = ACTIONS(1407), + [sym_type_ident] = ACTIONS(1407), + [sym_ct_type_ident] = ACTIONS(1407), + [sym_const_ident] = ACTIONS(1405), + [sym_builtin] = ACTIONS(1407), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_static] = ACTIONS(1405), + [anon_sym_tlocal] = ACTIONS(1405), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_fn] = ACTIONS(1405), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_var] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1405), + [anon_sym_continue] = ACTIONS(1405), + [anon_sym_break] = ACTIONS(1405), + [anon_sym_defer] = ACTIONS(1405), + [anon_sym_assert] = ACTIONS(1405), + [anon_sym_nextcase] = ACTIONS(1405), + [anon_sym_switch] = ACTIONS(1405), + [anon_sym_AMP_AMP] = ACTIONS(1407), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_for] = ACTIONS(1405), + [anon_sym_foreach] = ACTIONS(1405), + [anon_sym_foreach_r] = ACTIONS(1405), + [anon_sym_while] = ACTIONS(1405), + [anon_sym_do] = ACTIONS(1405), + [anon_sym_int] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1407), + [anon_sym_asm] = ACTIONS(1405), + [anon_sym_DOLLARassert] = ACTIONS(1405), + [anon_sym_DOLLARerror] = ACTIONS(1405), + [anon_sym_DOLLARecho] = ACTIONS(1405), + [anon_sym_DOLLARif] = ACTIONS(1405), + [anon_sym_DOLLARendif] = ACTIONS(1405), + [anon_sym_DOLLARswitch] = ACTIONS(1405), + [anon_sym_DOLLARfor] = ACTIONS(1405), + [anon_sym_DOLLARforeach] = ACTIONS(1405), + [anon_sym_DOLLARalignof] = ACTIONS(1405), + [anon_sym_DOLLARextnameof] = ACTIONS(1405), + [anon_sym_DOLLARnameof] = ACTIONS(1405), + [anon_sym_DOLLARoffsetof] = ACTIONS(1405), + [anon_sym_DOLLARqnameof] = ACTIONS(1405), + [anon_sym_DOLLARvaconst] = ACTIONS(1405), + [anon_sym_DOLLARvaarg] = ACTIONS(1405), + [anon_sym_DOLLARvaref] = ACTIONS(1405), + [anon_sym_DOLLARvaexpr] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(1405), + [anon_sym_false] = ACTIONS(1405), + [anon_sym_null] = ACTIONS(1405), + [anon_sym_DOLLARvacount] = ACTIONS(1405), + [anon_sym_DOLLAReval] = ACTIONS(1405), + [anon_sym_DOLLARis_const] = ACTIONS(1405), + [anon_sym_DOLLARsizeof] = ACTIONS(1405), + [anon_sym_DOLLARstringify] = ACTIONS(1405), + [anon_sym_DOLLARappend] = ACTIONS(1405), + [anon_sym_DOLLARconcat] = ACTIONS(1405), + [anon_sym_DOLLARdefined] = ACTIONS(1405), + [anon_sym_DOLLARembed] = ACTIONS(1405), + [anon_sym_DOLLARand] = ACTIONS(1405), + [anon_sym_DOLLARor] = ACTIONS(1405), + [anon_sym_DOLLARfeature] = ACTIONS(1405), + [anon_sym_DOLLARassignable] = ACTIONS(1405), + [anon_sym_BANG] = ACTIONS(1407), + [anon_sym_TILDE] = ACTIONS(1407), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_DASH_DASH] = ACTIONS(1407), + [anon_sym_typeid] = ACTIONS(1405), + [anon_sym_LBRACE_PIPE] = ACTIONS(1407), + [anon_sym_void] = ACTIONS(1405), + [anon_sym_bool] = ACTIONS(1405), + [anon_sym_char] = ACTIONS(1405), + [anon_sym_ichar] = ACTIONS(1405), + [anon_sym_short] = ACTIONS(1405), + [anon_sym_ushort] = ACTIONS(1405), + [anon_sym_uint] = ACTIONS(1405), + [anon_sym_long] = ACTIONS(1405), + [anon_sym_ulong] = ACTIONS(1405), + [anon_sym_int128] = ACTIONS(1405), + [anon_sym_uint128] = ACTIONS(1405), + [anon_sym_float] = ACTIONS(1405), + [anon_sym_double] = ACTIONS(1405), + [anon_sym_float16] = ACTIONS(1405), + [anon_sym_bfloat16] = ACTIONS(1405), + [anon_sym_float128] = ACTIONS(1405), + [anon_sym_iptr] = ACTIONS(1405), + [anon_sym_uptr] = ACTIONS(1405), + [anon_sym_isz] = ACTIONS(1405), + [anon_sym_usz] = ACTIONS(1405), + [anon_sym_anyfault] = ACTIONS(1405), + [anon_sym_any] = ACTIONS(1405), + [anon_sym_DOLLARtypeof] = ACTIONS(1405), + [anon_sym_DOLLARtypefrom] = ACTIONS(1405), + [anon_sym_DOLLARevaltype] = ACTIONS(1405), + [anon_sym_DOLLARvatype] = ACTIONS(1405), + [sym_real_literal] = ACTIONS(1407), }, - [772] = { - [sym_line_comment] = STATE(772), - [sym_doc_comment] = STATE(772), - [sym_block_comment] = STATE(772), - [sym_ident] = ACTIONS(1385), - [sym_integer_literal] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1387), - [anon_sym_DQUOTE] = ACTIONS(1387), - [anon_sym_BQUOTE] = ACTIONS(1387), - [sym_bytes_literal] = ACTIONS(1387), + [755] = { + [sym_line_comment] = STATE(755), + [sym_doc_comment] = STATE(755), + [sym_block_comment] = STATE(755), + [sym_ident] = ACTIONS(1409), + [sym_integer_literal] = ACTIONS(1411), + [anon_sym_SQUOTE] = ACTIONS(1411), + [anon_sym_DQUOTE] = ACTIONS(1411), + [anon_sym_BQUOTE] = ACTIONS(1411), + [sym_bytes_literal] = ACTIONS(1411), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1385), - [sym_at_ident] = ACTIONS(1387), - [sym_hash_ident] = ACTIONS(1387), - [sym_type_ident] = ACTIONS(1387), - [sym_ct_type_ident] = ACTIONS(1387), - [sym_const_ident] = ACTIONS(1385), - [sym_builtin] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1385), - [anon_sym_tlocal] = ACTIONS(1385), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_fn] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_const] = ACTIONS(1385), - [anon_sym_var] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1385), - [anon_sym_continue] = ACTIONS(1385), - [anon_sym_break] = ACTIONS(1385), - [anon_sym_defer] = ACTIONS(1385), - [anon_sym_assert] = ACTIONS(1385), - [anon_sym_nextcase] = ACTIONS(1385), - [anon_sym_switch] = ACTIONS(1385), - [anon_sym_AMP_AMP] = ACTIONS(1387), - [anon_sym_if] = ACTIONS(1385), - [anon_sym_for] = ACTIONS(1385), - [anon_sym_foreach] = ACTIONS(1385), - [anon_sym_foreach_r] = ACTIONS(1385), - [anon_sym_while] = ACTIONS(1385), - [anon_sym_do] = ACTIONS(1385), - [anon_sym_int] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1387), - [anon_sym_asm] = ACTIONS(1385), - [anon_sym_DOLLARassert] = ACTIONS(1385), - [anon_sym_DOLLARerror] = ACTIONS(1385), - [anon_sym_DOLLARecho] = ACTIONS(1385), - [anon_sym_DOLLARif] = ACTIONS(1385), - [anon_sym_DOLLARswitch] = ACTIONS(1385), - [anon_sym_DOLLARfor] = ACTIONS(1385), - [anon_sym_DOLLARendfor] = ACTIONS(1385), - [anon_sym_DOLLARforeach] = ACTIONS(1385), - [anon_sym_DOLLARalignof] = ACTIONS(1385), - [anon_sym_DOLLARextnameof] = ACTIONS(1385), - [anon_sym_DOLLARnameof] = ACTIONS(1385), - [anon_sym_DOLLARoffsetof] = ACTIONS(1385), - [anon_sym_DOLLARqnameof] = ACTIONS(1385), - [anon_sym_DOLLAReval] = ACTIONS(1385), - [anon_sym_DOLLARdefined] = ACTIONS(1385), - [anon_sym_DOLLARsizeof] = ACTIONS(1385), - [anon_sym_DOLLARstringify] = ACTIONS(1385), - [anon_sym_DOLLARis_const] = ACTIONS(1385), - [anon_sym_DOLLARvaconst] = ACTIONS(1385), - [anon_sym_DOLLARvaarg] = ACTIONS(1385), - [anon_sym_DOLLARvaref] = ACTIONS(1385), - [anon_sym_DOLLARvaexpr] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1385), - [anon_sym_false] = ACTIONS(1385), - [anon_sym_null] = ACTIONS(1385), - [anon_sym_DOLLARvacount] = ACTIONS(1385), - [anon_sym_DOLLARfeature] = ACTIONS(1385), - [anon_sym_DOLLARand] = ACTIONS(1385), - [anon_sym_DOLLARor] = ACTIONS(1385), - [anon_sym_DOLLARassignable] = ACTIONS(1385), - [anon_sym_DOLLARembed] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1387), - [anon_sym_PLUS_PLUS] = ACTIONS(1387), - [anon_sym_DASH_DASH] = ACTIONS(1387), - [anon_sym_typeid] = ACTIONS(1385), - [anon_sym_LBRACE_PIPE] = ACTIONS(1387), - [anon_sym_void] = ACTIONS(1385), - [anon_sym_bool] = ACTIONS(1385), - [anon_sym_char] = ACTIONS(1385), - [anon_sym_ichar] = ACTIONS(1385), - [anon_sym_short] = ACTIONS(1385), - [anon_sym_ushort] = ACTIONS(1385), - [anon_sym_uint] = ACTIONS(1385), - [anon_sym_long] = ACTIONS(1385), - [anon_sym_ulong] = ACTIONS(1385), - [anon_sym_int128] = ACTIONS(1385), - [anon_sym_uint128] = ACTIONS(1385), - [anon_sym_float] = ACTIONS(1385), - [anon_sym_double] = ACTIONS(1385), - [anon_sym_float16] = ACTIONS(1385), - [anon_sym_bfloat16] = ACTIONS(1385), - [anon_sym_float128] = ACTIONS(1385), - [anon_sym_iptr] = ACTIONS(1385), - [anon_sym_uptr] = ACTIONS(1385), - [anon_sym_isz] = ACTIONS(1385), - [anon_sym_usz] = ACTIONS(1385), - [anon_sym_anyfault] = ACTIONS(1385), - [anon_sym_any] = ACTIONS(1385), - [anon_sym_DOLLARtypeof] = ACTIONS(1385), - [anon_sym_DOLLARtypefrom] = ACTIONS(1385), - [anon_sym_DOLLARvatype] = ACTIONS(1385), - [anon_sym_DOLLARevaltype] = ACTIONS(1385), - [sym_real_literal] = ACTIONS(1387), - }, - [773] = { - [sym_line_comment] = STATE(773), - [sym_doc_comment] = STATE(773), - [sym_block_comment] = STATE(773), - [sym_ident] = ACTIONS(1631), - [sym_integer_literal] = ACTIONS(1633), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [anon_sym_BQUOTE] = ACTIONS(1633), - [sym_bytes_literal] = ACTIONS(1633), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1631), - [sym_at_ident] = ACTIONS(1633), - [sym_hash_ident] = ACTIONS(1633), - [sym_type_ident] = ACTIONS(1633), - [sym_ct_type_ident] = ACTIONS(1633), - [sym_const_ident] = ACTIONS(1631), - [sym_builtin] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_AMP] = ACTIONS(1631), - [anon_sym_static] = ACTIONS(1631), - [anon_sym_tlocal] = ACTIONS(1631), - [anon_sym_SEMI] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_const] = ACTIONS(1631), - [anon_sym_var] = ACTIONS(1631), - [anon_sym_return] = ACTIONS(1631), - [anon_sym_continue] = ACTIONS(1631), - [anon_sym_break] = ACTIONS(1631), - [anon_sym_defer] = ACTIONS(1631), - [anon_sym_assert] = ACTIONS(1631), - [anon_sym_nextcase] = ACTIONS(1631), - [anon_sym_switch] = ACTIONS(1631), - [anon_sym_AMP_AMP] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1631), - [anon_sym_for] = ACTIONS(1631), - [anon_sym_foreach] = ACTIONS(1631), - [anon_sym_foreach_r] = ACTIONS(1631), - [anon_sym_while] = ACTIONS(1631), - [anon_sym_do] = ACTIONS(1631), - [anon_sym_int] = ACTIONS(1631), - [anon_sym_PLUS] = ACTIONS(1631), - [anon_sym_DASH] = ACTIONS(1631), - [anon_sym_STAR] = ACTIONS(1633), - [anon_sym_asm] = ACTIONS(1631), - [anon_sym_DOLLARassert] = ACTIONS(1631), - [anon_sym_DOLLARerror] = ACTIONS(1631), - [anon_sym_DOLLARecho] = ACTIONS(1631), - [anon_sym_DOLLARif] = ACTIONS(1631), - [anon_sym_DOLLARswitch] = ACTIONS(1631), - [anon_sym_DOLLARfor] = ACTIONS(1631), - [anon_sym_DOLLARforeach] = ACTIONS(1631), - [anon_sym_DOLLARendforeach] = ACTIONS(1631), - [anon_sym_DOLLARalignof] = ACTIONS(1631), - [anon_sym_DOLLARextnameof] = ACTIONS(1631), - [anon_sym_DOLLARnameof] = ACTIONS(1631), - [anon_sym_DOLLARoffsetof] = ACTIONS(1631), - [anon_sym_DOLLARqnameof] = ACTIONS(1631), - [anon_sym_DOLLAReval] = ACTIONS(1631), - [anon_sym_DOLLARdefined] = ACTIONS(1631), - [anon_sym_DOLLARsizeof] = ACTIONS(1631), - [anon_sym_DOLLARstringify] = ACTIONS(1631), - [anon_sym_DOLLARis_const] = ACTIONS(1631), - [anon_sym_DOLLARvaconst] = ACTIONS(1631), - [anon_sym_DOLLARvaarg] = ACTIONS(1631), - [anon_sym_DOLLARvaref] = ACTIONS(1631), - [anon_sym_DOLLARvaexpr] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1631), - [anon_sym_false] = ACTIONS(1631), - [anon_sym_null] = ACTIONS(1631), - [anon_sym_DOLLARvacount] = ACTIONS(1631), - [anon_sym_DOLLARfeature] = ACTIONS(1631), - [anon_sym_DOLLARand] = ACTIONS(1631), - [anon_sym_DOLLARor] = ACTIONS(1631), - [anon_sym_DOLLARassignable] = ACTIONS(1631), - [anon_sym_DOLLARembed] = ACTIONS(1631), - [anon_sym_BANG] = ACTIONS(1633), - [anon_sym_TILDE] = ACTIONS(1633), - [anon_sym_PLUS_PLUS] = ACTIONS(1633), - [anon_sym_DASH_DASH] = ACTIONS(1633), - [anon_sym_typeid] = ACTIONS(1631), - [anon_sym_LBRACE_PIPE] = ACTIONS(1633), - [anon_sym_void] = ACTIONS(1631), - [anon_sym_bool] = ACTIONS(1631), - [anon_sym_char] = ACTIONS(1631), - [anon_sym_ichar] = ACTIONS(1631), - [anon_sym_short] = ACTIONS(1631), - [anon_sym_ushort] = ACTIONS(1631), - [anon_sym_uint] = ACTIONS(1631), - [anon_sym_long] = ACTIONS(1631), - [anon_sym_ulong] = ACTIONS(1631), - [anon_sym_int128] = ACTIONS(1631), - [anon_sym_uint128] = ACTIONS(1631), - [anon_sym_float] = ACTIONS(1631), - [anon_sym_double] = ACTIONS(1631), - [anon_sym_float16] = ACTIONS(1631), - [anon_sym_bfloat16] = ACTIONS(1631), - [anon_sym_float128] = ACTIONS(1631), - [anon_sym_iptr] = ACTIONS(1631), - [anon_sym_uptr] = ACTIONS(1631), - [anon_sym_isz] = ACTIONS(1631), - [anon_sym_usz] = ACTIONS(1631), - [anon_sym_anyfault] = ACTIONS(1631), - [anon_sym_any] = ACTIONS(1631), - [anon_sym_DOLLARtypeof] = ACTIONS(1631), - [anon_sym_DOLLARtypefrom] = ACTIONS(1631), - [anon_sym_DOLLARvatype] = ACTIONS(1631), - [anon_sym_DOLLARevaltype] = ACTIONS(1631), - [sym_real_literal] = ACTIONS(1633), - }, - [774] = { - [sym_line_comment] = STATE(774), - [sym_doc_comment] = STATE(774), - [sym_block_comment] = STATE(774), - [sym_ident] = ACTIONS(1523), - [sym_integer_literal] = ACTIONS(1525), - [anon_sym_SQUOTE] = ACTIONS(1525), - [anon_sym_DQUOTE] = ACTIONS(1525), - [anon_sym_BQUOTE] = ACTIONS(1525), - [sym_bytes_literal] = ACTIONS(1525), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1523), - [sym_at_ident] = ACTIONS(1525), - [sym_hash_ident] = ACTIONS(1525), - [sym_type_ident] = ACTIONS(1525), - [sym_ct_type_ident] = ACTIONS(1525), - [sym_const_ident] = ACTIONS(1523), - [sym_builtin] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_tlocal] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_fn] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_var] = ACTIONS(1523), - [anon_sym_return] = ACTIONS(1523), - [anon_sym_continue] = ACTIONS(1523), - [anon_sym_break] = ACTIONS(1523), - [anon_sym_defer] = ACTIONS(1523), - [anon_sym_assert] = ACTIONS(1523), - [anon_sym_nextcase] = ACTIONS(1523), - [anon_sym_switch] = ACTIONS(1523), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_if] = ACTIONS(1523), - [anon_sym_for] = ACTIONS(1523), - [anon_sym_foreach] = ACTIONS(1523), - [anon_sym_foreach_r] = ACTIONS(1523), - [anon_sym_while] = ACTIONS(1523), - [anon_sym_do] = ACTIONS(1523), - [anon_sym_int] = ACTIONS(1523), - [anon_sym_PLUS] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1523), - [anon_sym_STAR] = ACTIONS(1525), - [anon_sym_asm] = ACTIONS(1523), - [anon_sym_DOLLARassert] = ACTIONS(1523), - [anon_sym_DOLLARerror] = ACTIONS(1523), - [anon_sym_DOLLARecho] = ACTIONS(1523), - [anon_sym_DOLLARif] = ACTIONS(1523), - [anon_sym_DOLLARswitch] = ACTIONS(1523), - [anon_sym_DOLLARfor] = ACTIONS(1523), - [anon_sym_DOLLARforeach] = ACTIONS(1523), - [anon_sym_DOLLARendforeach] = ACTIONS(1523), - [anon_sym_DOLLARalignof] = ACTIONS(1523), - [anon_sym_DOLLARextnameof] = ACTIONS(1523), - [anon_sym_DOLLARnameof] = ACTIONS(1523), - [anon_sym_DOLLARoffsetof] = ACTIONS(1523), - [anon_sym_DOLLARqnameof] = ACTIONS(1523), - [anon_sym_DOLLAReval] = ACTIONS(1523), - [anon_sym_DOLLARdefined] = ACTIONS(1523), - [anon_sym_DOLLARsizeof] = ACTIONS(1523), - [anon_sym_DOLLARstringify] = ACTIONS(1523), - [anon_sym_DOLLARis_const] = ACTIONS(1523), - [anon_sym_DOLLARvaconst] = ACTIONS(1523), - [anon_sym_DOLLARvaarg] = ACTIONS(1523), - [anon_sym_DOLLARvaref] = ACTIONS(1523), - [anon_sym_DOLLARvaexpr] = ACTIONS(1523), - [anon_sym_true] = ACTIONS(1523), - [anon_sym_false] = ACTIONS(1523), - [anon_sym_null] = ACTIONS(1523), - [anon_sym_DOLLARvacount] = ACTIONS(1523), - [anon_sym_DOLLARfeature] = ACTIONS(1523), - [anon_sym_DOLLARand] = ACTIONS(1523), - [anon_sym_DOLLARor] = ACTIONS(1523), - [anon_sym_DOLLARassignable] = ACTIONS(1523), - [anon_sym_DOLLARembed] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1525), - [anon_sym_TILDE] = ACTIONS(1525), - [anon_sym_PLUS_PLUS] = ACTIONS(1525), - [anon_sym_DASH_DASH] = ACTIONS(1525), - [anon_sym_typeid] = ACTIONS(1523), - [anon_sym_LBRACE_PIPE] = ACTIONS(1525), - [anon_sym_void] = ACTIONS(1523), - [anon_sym_bool] = ACTIONS(1523), - [anon_sym_char] = ACTIONS(1523), - [anon_sym_ichar] = ACTIONS(1523), - [anon_sym_short] = ACTIONS(1523), - [anon_sym_ushort] = ACTIONS(1523), - [anon_sym_uint] = ACTIONS(1523), - [anon_sym_long] = ACTIONS(1523), - [anon_sym_ulong] = ACTIONS(1523), - [anon_sym_int128] = ACTIONS(1523), - [anon_sym_uint128] = ACTIONS(1523), - [anon_sym_float] = ACTIONS(1523), - [anon_sym_double] = ACTIONS(1523), - [anon_sym_float16] = ACTIONS(1523), - [anon_sym_bfloat16] = ACTIONS(1523), - [anon_sym_float128] = ACTIONS(1523), - [anon_sym_iptr] = ACTIONS(1523), - [anon_sym_uptr] = ACTIONS(1523), - [anon_sym_isz] = ACTIONS(1523), - [anon_sym_usz] = ACTIONS(1523), - [anon_sym_anyfault] = ACTIONS(1523), - [anon_sym_any] = ACTIONS(1523), - [anon_sym_DOLLARtypeof] = ACTIONS(1523), - [anon_sym_DOLLARtypefrom] = ACTIONS(1523), - [anon_sym_DOLLARvatype] = ACTIONS(1523), - [anon_sym_DOLLARevaltype] = ACTIONS(1523), - [sym_real_literal] = ACTIONS(1525), - }, - [775] = { - [sym_line_comment] = STATE(775), - [sym_doc_comment] = STATE(775), - [sym_block_comment] = STATE(775), - [sym_ident] = ACTIONS(1571), - [sym_integer_literal] = ACTIONS(1573), - [anon_sym_SQUOTE] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(1573), - [anon_sym_BQUOTE] = ACTIONS(1573), - [sym_bytes_literal] = ACTIONS(1573), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1571), - [sym_at_ident] = ACTIONS(1573), - [sym_hash_ident] = ACTIONS(1573), - [sym_type_ident] = ACTIONS(1573), - [sym_ct_type_ident] = ACTIONS(1573), - [sym_const_ident] = ACTIONS(1571), - [sym_builtin] = ACTIONS(1573), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_static] = ACTIONS(1571), - [anon_sym_tlocal] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_fn] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_const] = ACTIONS(1571), - [anon_sym_var] = ACTIONS(1571), - [anon_sym_return] = ACTIONS(1571), - [anon_sym_continue] = ACTIONS(1571), - [anon_sym_break] = ACTIONS(1571), - [anon_sym_defer] = ACTIONS(1571), - [anon_sym_assert] = ACTIONS(1571), - [anon_sym_nextcase] = ACTIONS(1571), - [anon_sym_switch] = ACTIONS(1571), - [anon_sym_AMP_AMP] = ACTIONS(1573), - [anon_sym_if] = ACTIONS(1571), - [anon_sym_for] = ACTIONS(1571), - [anon_sym_foreach] = ACTIONS(1571), - [anon_sym_foreach_r] = ACTIONS(1571), - [anon_sym_while] = ACTIONS(1571), - [anon_sym_do] = ACTIONS(1571), - [anon_sym_int] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_asm] = ACTIONS(1571), - [anon_sym_DOLLARassert] = ACTIONS(1571), - [anon_sym_DOLLARerror] = ACTIONS(1571), - [anon_sym_DOLLARecho] = ACTIONS(1571), - [anon_sym_DOLLARif] = ACTIONS(1571), - [anon_sym_DOLLARswitch] = ACTIONS(1571), - [anon_sym_DOLLARfor] = ACTIONS(1571), - [anon_sym_DOLLARforeach] = ACTIONS(1571), - [anon_sym_DOLLARendforeach] = ACTIONS(1571), - [anon_sym_DOLLARalignof] = ACTIONS(1571), - [anon_sym_DOLLARextnameof] = ACTIONS(1571), - [anon_sym_DOLLARnameof] = ACTIONS(1571), - [anon_sym_DOLLARoffsetof] = ACTIONS(1571), - [anon_sym_DOLLARqnameof] = ACTIONS(1571), - [anon_sym_DOLLAReval] = ACTIONS(1571), - [anon_sym_DOLLARdefined] = ACTIONS(1571), - [anon_sym_DOLLARsizeof] = ACTIONS(1571), - [anon_sym_DOLLARstringify] = ACTIONS(1571), - [anon_sym_DOLLARis_const] = ACTIONS(1571), - [anon_sym_DOLLARvaconst] = ACTIONS(1571), - [anon_sym_DOLLARvaarg] = ACTIONS(1571), - [anon_sym_DOLLARvaref] = ACTIONS(1571), - [anon_sym_DOLLARvaexpr] = ACTIONS(1571), - [anon_sym_true] = ACTIONS(1571), - [anon_sym_false] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1571), - [anon_sym_DOLLARvacount] = ACTIONS(1571), - [anon_sym_DOLLARfeature] = ACTIONS(1571), - [anon_sym_DOLLARand] = ACTIONS(1571), - [anon_sym_DOLLARor] = ACTIONS(1571), - [anon_sym_DOLLARassignable] = ACTIONS(1571), - [anon_sym_DOLLARembed] = ACTIONS(1571), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_PLUS_PLUS] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1573), - [anon_sym_typeid] = ACTIONS(1571), - [anon_sym_LBRACE_PIPE] = ACTIONS(1573), - [anon_sym_void] = ACTIONS(1571), - [anon_sym_bool] = ACTIONS(1571), - [anon_sym_char] = ACTIONS(1571), - [anon_sym_ichar] = ACTIONS(1571), - [anon_sym_short] = ACTIONS(1571), - [anon_sym_ushort] = ACTIONS(1571), - [anon_sym_uint] = ACTIONS(1571), - [anon_sym_long] = ACTIONS(1571), - [anon_sym_ulong] = ACTIONS(1571), - [anon_sym_int128] = ACTIONS(1571), - [anon_sym_uint128] = ACTIONS(1571), - [anon_sym_float] = ACTIONS(1571), - [anon_sym_double] = ACTIONS(1571), - [anon_sym_float16] = ACTIONS(1571), - [anon_sym_bfloat16] = ACTIONS(1571), - [anon_sym_float128] = ACTIONS(1571), - [anon_sym_iptr] = ACTIONS(1571), - [anon_sym_uptr] = ACTIONS(1571), - [anon_sym_isz] = ACTIONS(1571), - [anon_sym_usz] = ACTIONS(1571), - [anon_sym_anyfault] = ACTIONS(1571), - [anon_sym_any] = ACTIONS(1571), - [anon_sym_DOLLARtypeof] = ACTIONS(1571), - [anon_sym_DOLLARtypefrom] = ACTIONS(1571), - [anon_sym_DOLLARvatype] = ACTIONS(1571), - [anon_sym_DOLLARevaltype] = ACTIONS(1571), - [sym_real_literal] = ACTIONS(1573), - }, - [776] = { - [sym_line_comment] = STATE(776), - [sym_doc_comment] = STATE(776), - [sym_block_comment] = STATE(776), - [sym_ident] = ACTIONS(1607), - [sym_integer_literal] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1609), - [anon_sym_DQUOTE] = ACTIONS(1609), - [anon_sym_BQUOTE] = ACTIONS(1609), - [sym_bytes_literal] = ACTIONS(1609), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1607), - [sym_at_ident] = ACTIONS(1609), - [sym_hash_ident] = ACTIONS(1609), - [sym_type_ident] = ACTIONS(1609), - [sym_ct_type_ident] = ACTIONS(1609), - [sym_const_ident] = ACTIONS(1607), - [sym_builtin] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1607), - [anon_sym_static] = ACTIONS(1607), - [anon_sym_tlocal] = ACTIONS(1607), - [anon_sym_SEMI] = ACTIONS(1609), - [anon_sym_fn] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_const] = ACTIONS(1607), - [anon_sym_var] = ACTIONS(1607), - [anon_sym_return] = ACTIONS(1607), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_break] = ACTIONS(1607), - [anon_sym_defer] = ACTIONS(1607), - [anon_sym_assert] = ACTIONS(1607), - [anon_sym_nextcase] = ACTIONS(1607), - [anon_sym_switch] = ACTIONS(1607), - [anon_sym_AMP_AMP] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1607), - [anon_sym_for] = ACTIONS(1607), - [anon_sym_foreach] = ACTIONS(1607), - [anon_sym_foreach_r] = ACTIONS(1607), - [anon_sym_while] = ACTIONS(1607), - [anon_sym_do] = ACTIONS(1607), - [anon_sym_int] = ACTIONS(1607), - [anon_sym_PLUS] = ACTIONS(1607), - [anon_sym_DASH] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1609), - [anon_sym_asm] = ACTIONS(1607), - [anon_sym_DOLLARassert] = ACTIONS(1607), - [anon_sym_DOLLARerror] = ACTIONS(1607), - [anon_sym_DOLLARecho] = ACTIONS(1607), - [anon_sym_DOLLARif] = ACTIONS(1607), - [anon_sym_DOLLARswitch] = ACTIONS(1607), - [anon_sym_DOLLARfor] = ACTIONS(1607), - [anon_sym_DOLLARforeach] = ACTIONS(1607), - [anon_sym_DOLLARendforeach] = ACTIONS(1607), - [anon_sym_DOLLARalignof] = ACTIONS(1607), - [anon_sym_DOLLARextnameof] = ACTIONS(1607), - [anon_sym_DOLLARnameof] = ACTIONS(1607), - [anon_sym_DOLLARoffsetof] = ACTIONS(1607), - [anon_sym_DOLLARqnameof] = ACTIONS(1607), - [anon_sym_DOLLAReval] = ACTIONS(1607), - [anon_sym_DOLLARdefined] = ACTIONS(1607), - [anon_sym_DOLLARsizeof] = ACTIONS(1607), - [anon_sym_DOLLARstringify] = ACTIONS(1607), - [anon_sym_DOLLARis_const] = ACTIONS(1607), - [anon_sym_DOLLARvaconst] = ACTIONS(1607), - [anon_sym_DOLLARvaarg] = ACTIONS(1607), - [anon_sym_DOLLARvaref] = ACTIONS(1607), - [anon_sym_DOLLARvaexpr] = ACTIONS(1607), - [anon_sym_true] = ACTIONS(1607), - [anon_sym_false] = ACTIONS(1607), - [anon_sym_null] = ACTIONS(1607), - [anon_sym_DOLLARvacount] = ACTIONS(1607), - [anon_sym_DOLLARfeature] = ACTIONS(1607), - [anon_sym_DOLLARand] = ACTIONS(1607), - [anon_sym_DOLLARor] = ACTIONS(1607), - [anon_sym_DOLLARassignable] = ACTIONS(1607), - [anon_sym_DOLLARembed] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_TILDE] = ACTIONS(1609), - [anon_sym_PLUS_PLUS] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1609), - [anon_sym_typeid] = ACTIONS(1607), - [anon_sym_LBRACE_PIPE] = ACTIONS(1609), - [anon_sym_void] = ACTIONS(1607), - [anon_sym_bool] = ACTIONS(1607), - [anon_sym_char] = ACTIONS(1607), - [anon_sym_ichar] = ACTIONS(1607), - [anon_sym_short] = ACTIONS(1607), - [anon_sym_ushort] = ACTIONS(1607), - [anon_sym_uint] = ACTIONS(1607), - [anon_sym_long] = ACTIONS(1607), - [anon_sym_ulong] = ACTIONS(1607), - [anon_sym_int128] = ACTIONS(1607), - [anon_sym_uint128] = ACTIONS(1607), - [anon_sym_float] = ACTIONS(1607), - [anon_sym_double] = ACTIONS(1607), - [anon_sym_float16] = ACTIONS(1607), - [anon_sym_bfloat16] = ACTIONS(1607), - [anon_sym_float128] = ACTIONS(1607), - [anon_sym_iptr] = ACTIONS(1607), - [anon_sym_uptr] = ACTIONS(1607), - [anon_sym_isz] = ACTIONS(1607), - [anon_sym_usz] = ACTIONS(1607), - [anon_sym_anyfault] = ACTIONS(1607), - [anon_sym_any] = ACTIONS(1607), - [anon_sym_DOLLARtypeof] = ACTIONS(1607), - [anon_sym_DOLLARtypefrom] = ACTIONS(1607), - [anon_sym_DOLLARvatype] = ACTIONS(1607), - [anon_sym_DOLLARevaltype] = ACTIONS(1607), - [sym_real_literal] = ACTIONS(1609), - }, - [777] = { - [sym_line_comment] = STATE(777), - [sym_doc_comment] = STATE(777), - [sym_block_comment] = STATE(777), - [sym_ident] = ACTIONS(1615), - [sym_integer_literal] = ACTIONS(1617), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_DQUOTE] = ACTIONS(1617), - [anon_sym_BQUOTE] = ACTIONS(1617), - [sym_bytes_literal] = ACTIONS(1617), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1615), - [sym_at_ident] = ACTIONS(1617), - [sym_hash_ident] = ACTIONS(1617), - [sym_type_ident] = ACTIONS(1617), - [sym_ct_type_ident] = ACTIONS(1617), - [sym_const_ident] = ACTIONS(1615), - [sym_builtin] = ACTIONS(1617), - [anon_sym_LPAREN] = ACTIONS(1617), - [anon_sym_AMP] = ACTIONS(1615), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_tlocal] = ACTIONS(1615), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_fn] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1615), - [anon_sym_const] = ACTIONS(1615), - [anon_sym_var] = ACTIONS(1615), - [anon_sym_return] = ACTIONS(1615), - [anon_sym_continue] = ACTIONS(1615), - [anon_sym_break] = ACTIONS(1615), - [anon_sym_defer] = ACTIONS(1615), - [anon_sym_assert] = ACTIONS(1615), - [anon_sym_nextcase] = ACTIONS(1615), - [anon_sym_switch] = ACTIONS(1615), - [anon_sym_AMP_AMP] = ACTIONS(1617), - [anon_sym_if] = ACTIONS(1615), - [anon_sym_for] = ACTIONS(1615), - [anon_sym_foreach] = ACTIONS(1615), - [anon_sym_foreach_r] = ACTIONS(1615), - [anon_sym_while] = ACTIONS(1615), - [anon_sym_do] = ACTIONS(1615), - [anon_sym_int] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1615), - [anon_sym_DASH] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1617), - [anon_sym_asm] = ACTIONS(1615), - [anon_sym_DOLLARassert] = ACTIONS(1615), - [anon_sym_DOLLARerror] = ACTIONS(1615), - [anon_sym_DOLLARecho] = ACTIONS(1615), - [anon_sym_DOLLARif] = ACTIONS(1615), - [anon_sym_DOLLARswitch] = ACTIONS(1615), - [anon_sym_DOLLARfor] = ACTIONS(1615), - [anon_sym_DOLLARforeach] = ACTIONS(1615), - [anon_sym_DOLLARendforeach] = ACTIONS(1615), - [anon_sym_DOLLARalignof] = ACTIONS(1615), - [anon_sym_DOLLARextnameof] = ACTIONS(1615), - [anon_sym_DOLLARnameof] = ACTIONS(1615), - [anon_sym_DOLLARoffsetof] = ACTIONS(1615), - [anon_sym_DOLLARqnameof] = ACTIONS(1615), - [anon_sym_DOLLAReval] = ACTIONS(1615), - [anon_sym_DOLLARdefined] = ACTIONS(1615), - [anon_sym_DOLLARsizeof] = ACTIONS(1615), - [anon_sym_DOLLARstringify] = ACTIONS(1615), - [anon_sym_DOLLARis_const] = ACTIONS(1615), - [anon_sym_DOLLARvaconst] = ACTIONS(1615), - [anon_sym_DOLLARvaarg] = ACTIONS(1615), - [anon_sym_DOLLARvaref] = ACTIONS(1615), - [anon_sym_DOLLARvaexpr] = ACTIONS(1615), - [anon_sym_true] = ACTIONS(1615), - [anon_sym_false] = ACTIONS(1615), - [anon_sym_null] = ACTIONS(1615), - [anon_sym_DOLLARvacount] = ACTIONS(1615), - [anon_sym_DOLLARfeature] = ACTIONS(1615), - [anon_sym_DOLLARand] = ACTIONS(1615), - [anon_sym_DOLLARor] = ACTIONS(1615), - [anon_sym_DOLLARassignable] = ACTIONS(1615), - [anon_sym_DOLLARembed] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(1617), - [anon_sym_TILDE] = ACTIONS(1617), - [anon_sym_PLUS_PLUS] = ACTIONS(1617), - [anon_sym_DASH_DASH] = ACTIONS(1617), - [anon_sym_typeid] = ACTIONS(1615), - [anon_sym_LBRACE_PIPE] = ACTIONS(1617), - [anon_sym_void] = ACTIONS(1615), - [anon_sym_bool] = ACTIONS(1615), - [anon_sym_char] = ACTIONS(1615), - [anon_sym_ichar] = ACTIONS(1615), - [anon_sym_short] = ACTIONS(1615), - [anon_sym_ushort] = ACTIONS(1615), - [anon_sym_uint] = ACTIONS(1615), - [anon_sym_long] = ACTIONS(1615), - [anon_sym_ulong] = ACTIONS(1615), - [anon_sym_int128] = ACTIONS(1615), - [anon_sym_uint128] = ACTIONS(1615), - [anon_sym_float] = ACTIONS(1615), - [anon_sym_double] = ACTIONS(1615), - [anon_sym_float16] = ACTIONS(1615), - [anon_sym_bfloat16] = ACTIONS(1615), - [anon_sym_float128] = ACTIONS(1615), - [anon_sym_iptr] = ACTIONS(1615), - [anon_sym_uptr] = ACTIONS(1615), - [anon_sym_isz] = ACTIONS(1615), - [anon_sym_usz] = ACTIONS(1615), - [anon_sym_anyfault] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_DOLLARtypeof] = ACTIONS(1615), - [anon_sym_DOLLARtypefrom] = ACTIONS(1615), - [anon_sym_DOLLARvatype] = ACTIONS(1615), - [anon_sym_DOLLARevaltype] = ACTIONS(1615), - [sym_real_literal] = ACTIONS(1617), - }, - [778] = { - [sym_line_comment] = STATE(778), - [sym_doc_comment] = STATE(778), - [sym_block_comment] = STATE(778), - [sym_ident] = ACTIONS(1627), - [sym_integer_literal] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [anon_sym_BQUOTE] = ACTIONS(1629), - [sym_bytes_literal] = ACTIONS(1629), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1627), - [sym_at_ident] = ACTIONS(1629), - [sym_hash_ident] = ACTIONS(1629), - [sym_type_ident] = ACTIONS(1629), - [sym_ct_type_ident] = ACTIONS(1629), - [sym_const_ident] = ACTIONS(1627), - [sym_builtin] = ACTIONS(1629), - [anon_sym_LPAREN] = ACTIONS(1629), - [anon_sym_AMP] = ACTIONS(1627), - [anon_sym_static] = ACTIONS(1627), - [anon_sym_tlocal] = ACTIONS(1627), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_fn] = ACTIONS(1627), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_const] = ACTIONS(1627), - [anon_sym_var] = ACTIONS(1627), - [anon_sym_return] = ACTIONS(1627), - [anon_sym_continue] = ACTIONS(1627), - [anon_sym_break] = ACTIONS(1627), - [anon_sym_defer] = ACTIONS(1627), - [anon_sym_assert] = ACTIONS(1627), - [anon_sym_nextcase] = ACTIONS(1627), - [anon_sym_switch] = ACTIONS(1627), - [anon_sym_AMP_AMP] = ACTIONS(1629), - [anon_sym_if] = ACTIONS(1627), - [anon_sym_for] = ACTIONS(1627), - [anon_sym_foreach] = ACTIONS(1627), - [anon_sym_foreach_r] = ACTIONS(1627), - [anon_sym_while] = ACTIONS(1627), - [anon_sym_do] = ACTIONS(1627), - [anon_sym_int] = ACTIONS(1627), - [anon_sym_PLUS] = ACTIONS(1627), - [anon_sym_DASH] = ACTIONS(1627), - [anon_sym_STAR] = ACTIONS(1629), - [anon_sym_asm] = ACTIONS(1627), - [anon_sym_DOLLARassert] = ACTIONS(1627), - [anon_sym_DOLLARerror] = ACTIONS(1627), - [anon_sym_DOLLARecho] = ACTIONS(1627), - [anon_sym_DOLLARif] = ACTIONS(1627), - [anon_sym_DOLLARswitch] = ACTIONS(1627), - [anon_sym_DOLLARfor] = ACTIONS(1627), - [anon_sym_DOLLARforeach] = ACTIONS(1627), - [anon_sym_DOLLARendforeach] = ACTIONS(1627), - [anon_sym_DOLLARalignof] = ACTIONS(1627), - [anon_sym_DOLLARextnameof] = ACTIONS(1627), - [anon_sym_DOLLARnameof] = ACTIONS(1627), - [anon_sym_DOLLARoffsetof] = ACTIONS(1627), - [anon_sym_DOLLARqnameof] = ACTIONS(1627), - [anon_sym_DOLLAReval] = ACTIONS(1627), - [anon_sym_DOLLARdefined] = ACTIONS(1627), - [anon_sym_DOLLARsizeof] = ACTIONS(1627), - [anon_sym_DOLLARstringify] = ACTIONS(1627), - [anon_sym_DOLLARis_const] = ACTIONS(1627), - [anon_sym_DOLLARvaconst] = ACTIONS(1627), - [anon_sym_DOLLARvaarg] = ACTIONS(1627), - [anon_sym_DOLLARvaref] = ACTIONS(1627), - [anon_sym_DOLLARvaexpr] = ACTIONS(1627), - [anon_sym_true] = ACTIONS(1627), - [anon_sym_false] = ACTIONS(1627), - [anon_sym_null] = ACTIONS(1627), - [anon_sym_DOLLARvacount] = ACTIONS(1627), - [anon_sym_DOLLARfeature] = ACTIONS(1627), - [anon_sym_DOLLARand] = ACTIONS(1627), - [anon_sym_DOLLARor] = ACTIONS(1627), - [anon_sym_DOLLARassignable] = ACTIONS(1627), - [anon_sym_DOLLARembed] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1629), - [anon_sym_TILDE] = ACTIONS(1629), - [anon_sym_PLUS_PLUS] = ACTIONS(1629), - [anon_sym_DASH_DASH] = ACTIONS(1629), - [anon_sym_typeid] = ACTIONS(1627), - [anon_sym_LBRACE_PIPE] = ACTIONS(1629), - [anon_sym_void] = ACTIONS(1627), - [anon_sym_bool] = ACTIONS(1627), - [anon_sym_char] = ACTIONS(1627), - [anon_sym_ichar] = ACTIONS(1627), - [anon_sym_short] = ACTIONS(1627), - [anon_sym_ushort] = ACTIONS(1627), - [anon_sym_uint] = ACTIONS(1627), - [anon_sym_long] = ACTIONS(1627), - [anon_sym_ulong] = ACTIONS(1627), - [anon_sym_int128] = ACTIONS(1627), - [anon_sym_uint128] = ACTIONS(1627), - [anon_sym_float] = ACTIONS(1627), - [anon_sym_double] = ACTIONS(1627), - [anon_sym_float16] = ACTIONS(1627), - [anon_sym_bfloat16] = ACTIONS(1627), - [anon_sym_float128] = ACTIONS(1627), - [anon_sym_iptr] = ACTIONS(1627), - [anon_sym_uptr] = ACTIONS(1627), - [anon_sym_isz] = ACTIONS(1627), - [anon_sym_usz] = ACTIONS(1627), - [anon_sym_anyfault] = ACTIONS(1627), - [anon_sym_any] = ACTIONS(1627), - [anon_sym_DOLLARtypeof] = ACTIONS(1627), - [anon_sym_DOLLARtypefrom] = ACTIONS(1627), - [anon_sym_DOLLARvatype] = ACTIONS(1627), - [anon_sym_DOLLARevaltype] = ACTIONS(1627), - [sym_real_literal] = ACTIONS(1629), - }, - [779] = { - [sym_line_comment] = STATE(779), - [sym_doc_comment] = STATE(779), - [sym_block_comment] = STATE(779), - [sym_ident] = ACTIONS(1619), - [sym_integer_literal] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_BQUOTE] = ACTIONS(1621), - [sym_bytes_literal] = ACTIONS(1621), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1619), - [sym_at_ident] = ACTIONS(1621), - [sym_hash_ident] = ACTIONS(1621), - [sym_type_ident] = ACTIONS(1621), - [sym_ct_type_ident] = ACTIONS(1621), - [sym_const_ident] = ACTIONS(1619), - [sym_builtin] = ACTIONS(1621), - [anon_sym_LPAREN] = ACTIONS(1621), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_static] = ACTIONS(1619), - [anon_sym_tlocal] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_fn] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1619), - [anon_sym_const] = ACTIONS(1619), - [anon_sym_var] = ACTIONS(1619), - [anon_sym_return] = ACTIONS(1619), - [anon_sym_continue] = ACTIONS(1619), - [anon_sym_break] = ACTIONS(1619), - [anon_sym_defer] = ACTIONS(1619), - [anon_sym_assert] = ACTIONS(1619), - [anon_sym_nextcase] = ACTIONS(1619), - [anon_sym_switch] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1619), - [anon_sym_for] = ACTIONS(1619), - [anon_sym_foreach] = ACTIONS(1619), - [anon_sym_foreach_r] = ACTIONS(1619), - [anon_sym_while] = ACTIONS(1619), - [anon_sym_do] = ACTIONS(1619), - [anon_sym_int] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1621), - [anon_sym_asm] = ACTIONS(1619), - [anon_sym_DOLLARassert] = ACTIONS(1619), - [anon_sym_DOLLARerror] = ACTIONS(1619), - [anon_sym_DOLLARecho] = ACTIONS(1619), - [anon_sym_DOLLARif] = ACTIONS(1619), - [anon_sym_DOLLARswitch] = ACTIONS(1619), - [anon_sym_DOLLARfor] = ACTIONS(1619), - [anon_sym_DOLLARforeach] = ACTIONS(1619), - [anon_sym_DOLLARendforeach] = ACTIONS(1619), - [anon_sym_DOLLARalignof] = ACTIONS(1619), - [anon_sym_DOLLARextnameof] = ACTIONS(1619), - [anon_sym_DOLLARnameof] = ACTIONS(1619), - [anon_sym_DOLLARoffsetof] = ACTIONS(1619), - [anon_sym_DOLLARqnameof] = ACTIONS(1619), - [anon_sym_DOLLAReval] = ACTIONS(1619), - [anon_sym_DOLLARdefined] = ACTIONS(1619), - [anon_sym_DOLLARsizeof] = ACTIONS(1619), - [anon_sym_DOLLARstringify] = ACTIONS(1619), - [anon_sym_DOLLARis_const] = ACTIONS(1619), - [anon_sym_DOLLARvaconst] = ACTIONS(1619), - [anon_sym_DOLLARvaarg] = ACTIONS(1619), - [anon_sym_DOLLARvaref] = ACTIONS(1619), - [anon_sym_DOLLARvaexpr] = ACTIONS(1619), - [anon_sym_true] = ACTIONS(1619), - [anon_sym_false] = ACTIONS(1619), - [anon_sym_null] = ACTIONS(1619), - [anon_sym_DOLLARvacount] = ACTIONS(1619), - [anon_sym_DOLLARfeature] = ACTIONS(1619), - [anon_sym_DOLLARand] = ACTIONS(1619), - [anon_sym_DOLLARor] = ACTIONS(1619), - [anon_sym_DOLLARassignable] = ACTIONS(1619), - [anon_sym_DOLLARembed] = ACTIONS(1619), - [anon_sym_BANG] = ACTIONS(1621), - [anon_sym_TILDE] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_typeid] = ACTIONS(1619), - [anon_sym_LBRACE_PIPE] = ACTIONS(1621), - [anon_sym_void] = ACTIONS(1619), - [anon_sym_bool] = ACTIONS(1619), - [anon_sym_char] = ACTIONS(1619), - [anon_sym_ichar] = ACTIONS(1619), - [anon_sym_short] = ACTIONS(1619), - [anon_sym_ushort] = ACTIONS(1619), - [anon_sym_uint] = ACTIONS(1619), - [anon_sym_long] = ACTIONS(1619), - [anon_sym_ulong] = ACTIONS(1619), - [anon_sym_int128] = ACTIONS(1619), - [anon_sym_uint128] = ACTIONS(1619), - [anon_sym_float] = ACTIONS(1619), - [anon_sym_double] = ACTIONS(1619), - [anon_sym_float16] = ACTIONS(1619), - [anon_sym_bfloat16] = ACTIONS(1619), - [anon_sym_float128] = ACTIONS(1619), - [anon_sym_iptr] = ACTIONS(1619), - [anon_sym_uptr] = ACTIONS(1619), - [anon_sym_isz] = ACTIONS(1619), - [anon_sym_usz] = ACTIONS(1619), - [anon_sym_anyfault] = ACTIONS(1619), - [anon_sym_any] = ACTIONS(1619), - [anon_sym_DOLLARtypeof] = ACTIONS(1619), - [anon_sym_DOLLARtypefrom] = ACTIONS(1619), - [anon_sym_DOLLARvatype] = ACTIONS(1619), - [anon_sym_DOLLARevaltype] = ACTIONS(1619), - [sym_real_literal] = ACTIONS(1621), + [sym_ct_ident] = ACTIONS(1409), + [sym_at_ident] = ACTIONS(1411), + [sym_hash_ident] = ACTIONS(1411), + [sym_type_ident] = ACTIONS(1411), + [sym_ct_type_ident] = ACTIONS(1411), + [sym_const_ident] = ACTIONS(1409), + [sym_builtin] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_tlocal] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1411), + [anon_sym_fn] = ACTIONS(1409), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_const] = ACTIONS(1409), + [anon_sym_var] = ACTIONS(1409), + [anon_sym_return] = ACTIONS(1409), + [anon_sym_continue] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1409), + [anon_sym_defer] = ACTIONS(1409), + [anon_sym_assert] = ACTIONS(1409), + [anon_sym_nextcase] = ACTIONS(1409), + [anon_sym_switch] = ACTIONS(1409), + [anon_sym_AMP_AMP] = ACTIONS(1411), + [anon_sym_if] = ACTIONS(1409), + [anon_sym_for] = ACTIONS(1409), + [anon_sym_foreach] = ACTIONS(1409), + [anon_sym_foreach_r] = ACTIONS(1409), + [anon_sym_while] = ACTIONS(1409), + [anon_sym_do] = ACTIONS(1409), + [anon_sym_int] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_asm] = ACTIONS(1409), + [anon_sym_DOLLARassert] = ACTIONS(1409), + [anon_sym_DOLLARerror] = ACTIONS(1409), + [anon_sym_DOLLARecho] = ACTIONS(1409), + [anon_sym_DOLLARif] = ACTIONS(1409), + [anon_sym_DOLLARendif] = ACTIONS(1409), + [anon_sym_DOLLARswitch] = ACTIONS(1409), + [anon_sym_DOLLARfor] = ACTIONS(1409), + [anon_sym_DOLLARforeach] = ACTIONS(1409), + [anon_sym_DOLLARalignof] = ACTIONS(1409), + [anon_sym_DOLLARextnameof] = ACTIONS(1409), + [anon_sym_DOLLARnameof] = ACTIONS(1409), + [anon_sym_DOLLARoffsetof] = ACTIONS(1409), + [anon_sym_DOLLARqnameof] = ACTIONS(1409), + [anon_sym_DOLLARvaconst] = ACTIONS(1409), + [anon_sym_DOLLARvaarg] = ACTIONS(1409), + [anon_sym_DOLLARvaref] = ACTIONS(1409), + [anon_sym_DOLLARvaexpr] = ACTIONS(1409), + [anon_sym_true] = ACTIONS(1409), + [anon_sym_false] = ACTIONS(1409), + [anon_sym_null] = ACTIONS(1409), + [anon_sym_DOLLARvacount] = ACTIONS(1409), + [anon_sym_DOLLAReval] = ACTIONS(1409), + [anon_sym_DOLLARis_const] = ACTIONS(1409), + [anon_sym_DOLLARsizeof] = ACTIONS(1409), + [anon_sym_DOLLARstringify] = ACTIONS(1409), + [anon_sym_DOLLARappend] = ACTIONS(1409), + [anon_sym_DOLLARconcat] = ACTIONS(1409), + [anon_sym_DOLLARdefined] = ACTIONS(1409), + [anon_sym_DOLLARembed] = ACTIONS(1409), + [anon_sym_DOLLARand] = ACTIONS(1409), + [anon_sym_DOLLARor] = ACTIONS(1409), + [anon_sym_DOLLARfeature] = ACTIONS(1409), + [anon_sym_DOLLARassignable] = ACTIONS(1409), + [anon_sym_BANG] = ACTIONS(1411), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_DASH_DASH] = ACTIONS(1411), + [anon_sym_typeid] = ACTIONS(1409), + [anon_sym_LBRACE_PIPE] = ACTIONS(1411), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_bool] = ACTIONS(1409), + [anon_sym_char] = ACTIONS(1409), + [anon_sym_ichar] = ACTIONS(1409), + [anon_sym_short] = ACTIONS(1409), + [anon_sym_ushort] = ACTIONS(1409), + [anon_sym_uint] = ACTIONS(1409), + [anon_sym_long] = ACTIONS(1409), + [anon_sym_ulong] = ACTIONS(1409), + [anon_sym_int128] = ACTIONS(1409), + [anon_sym_uint128] = ACTIONS(1409), + [anon_sym_float] = ACTIONS(1409), + [anon_sym_double] = ACTIONS(1409), + [anon_sym_float16] = ACTIONS(1409), + [anon_sym_bfloat16] = ACTIONS(1409), + [anon_sym_float128] = ACTIONS(1409), + [anon_sym_iptr] = ACTIONS(1409), + [anon_sym_uptr] = ACTIONS(1409), + [anon_sym_isz] = ACTIONS(1409), + [anon_sym_usz] = ACTIONS(1409), + [anon_sym_anyfault] = ACTIONS(1409), + [anon_sym_any] = ACTIONS(1409), + [anon_sym_DOLLARtypeof] = ACTIONS(1409), + [anon_sym_DOLLARtypefrom] = ACTIONS(1409), + [anon_sym_DOLLARevaltype] = ACTIONS(1409), + [anon_sym_DOLLARvatype] = ACTIONS(1409), + [sym_real_literal] = ACTIONS(1411), }, - [780] = { - [sym_line_comment] = STATE(780), - [sym_doc_comment] = STATE(780), - [sym_block_comment] = STATE(780), - [sym_ident] = ACTIONS(1673), - [sym_integer_literal] = ACTIONS(1675), - [anon_sym_SQUOTE] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(1675), - [anon_sym_BQUOTE] = ACTIONS(1675), - [sym_bytes_literal] = ACTIONS(1675), + [756] = { + [sym_line_comment] = STATE(756), + [sym_doc_comment] = STATE(756), + [sym_block_comment] = STATE(756), + [sym_ident] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1415), + [anon_sym_SQUOTE] = ACTIONS(1415), + [anon_sym_DQUOTE] = ACTIONS(1415), + [anon_sym_BQUOTE] = ACTIONS(1415), + [sym_bytes_literal] = ACTIONS(1415), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1673), - [sym_at_ident] = ACTIONS(1675), - [sym_hash_ident] = ACTIONS(1675), - [sym_type_ident] = ACTIONS(1675), - [sym_ct_type_ident] = ACTIONS(1675), - [sym_const_ident] = ACTIONS(1673), - [sym_builtin] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1675), - [anon_sym_AMP] = ACTIONS(1673), - [anon_sym_static] = ACTIONS(1673), - [anon_sym_tlocal] = ACTIONS(1673), - [anon_sym_SEMI] = ACTIONS(1675), - [anon_sym_fn] = ACTIONS(1673), - [anon_sym_LBRACE] = ACTIONS(1673), - [anon_sym_const] = ACTIONS(1673), - [anon_sym_var] = ACTIONS(1673), - [anon_sym_return] = ACTIONS(1673), - [anon_sym_continue] = ACTIONS(1673), - [anon_sym_break] = ACTIONS(1673), - [anon_sym_defer] = ACTIONS(1673), - [anon_sym_assert] = ACTIONS(1673), - [anon_sym_nextcase] = ACTIONS(1673), - [anon_sym_switch] = ACTIONS(1673), - [anon_sym_AMP_AMP] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1673), - [anon_sym_for] = ACTIONS(1673), - [anon_sym_foreach] = ACTIONS(1673), - [anon_sym_foreach_r] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1673), - [anon_sym_do] = ACTIONS(1673), - [anon_sym_int] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1673), - [anon_sym_DASH] = ACTIONS(1673), - [anon_sym_STAR] = ACTIONS(1675), - [anon_sym_asm] = ACTIONS(1673), - [anon_sym_DOLLARassert] = ACTIONS(1673), - [anon_sym_DOLLARerror] = ACTIONS(1673), - [anon_sym_DOLLARecho] = ACTIONS(1673), - [anon_sym_DOLLARif] = ACTIONS(1673), - [anon_sym_DOLLARswitch] = ACTIONS(1673), - [anon_sym_DOLLARfor] = ACTIONS(1673), - [anon_sym_DOLLARforeach] = ACTIONS(1673), - [anon_sym_DOLLARalignof] = ACTIONS(1673), - [anon_sym_DOLLARextnameof] = ACTIONS(1673), - [anon_sym_DOLLARnameof] = ACTIONS(1673), - [anon_sym_DOLLARoffsetof] = ACTIONS(1673), - [anon_sym_DOLLARqnameof] = ACTIONS(1673), - [anon_sym_DOLLAReval] = ACTIONS(1673), - [anon_sym_DOLLARdefined] = ACTIONS(1673), - [anon_sym_DOLLARsizeof] = ACTIONS(1673), - [anon_sym_DOLLARstringify] = ACTIONS(1673), - [anon_sym_DOLLARis_const] = ACTIONS(1673), - [anon_sym_DOLLARvaconst] = ACTIONS(1673), - [anon_sym_DOLLARvaarg] = ACTIONS(1673), - [anon_sym_DOLLARvaref] = ACTIONS(1673), - [anon_sym_DOLLARvaexpr] = ACTIONS(1673), - [anon_sym_true] = ACTIONS(1673), - [anon_sym_false] = ACTIONS(1673), - [anon_sym_null] = ACTIONS(1673), - [anon_sym_DOLLARvacount] = ACTIONS(1673), - [anon_sym_DOLLARfeature] = ACTIONS(1673), - [anon_sym_DOLLARand] = ACTIONS(1673), - [anon_sym_DOLLARor] = ACTIONS(1673), - [anon_sym_DOLLARassignable] = ACTIONS(1673), - [anon_sym_DOLLARembed] = ACTIONS(1673), - [anon_sym_BANG] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1675), - [anon_sym_PLUS_PLUS] = ACTIONS(1675), - [anon_sym_DASH_DASH] = ACTIONS(1675), - [anon_sym_typeid] = ACTIONS(1673), - [anon_sym_LBRACE_PIPE] = ACTIONS(1675), - [anon_sym_void] = ACTIONS(1673), - [anon_sym_bool] = ACTIONS(1673), - [anon_sym_char] = ACTIONS(1673), - [anon_sym_ichar] = ACTIONS(1673), - [anon_sym_short] = ACTIONS(1673), - [anon_sym_ushort] = ACTIONS(1673), - [anon_sym_uint] = ACTIONS(1673), - [anon_sym_long] = ACTIONS(1673), - [anon_sym_ulong] = ACTIONS(1673), - [anon_sym_int128] = ACTIONS(1673), - [anon_sym_uint128] = ACTIONS(1673), - [anon_sym_float] = ACTIONS(1673), - [anon_sym_double] = ACTIONS(1673), - [anon_sym_float16] = ACTIONS(1673), - [anon_sym_bfloat16] = ACTIONS(1673), - [anon_sym_float128] = ACTIONS(1673), - [anon_sym_iptr] = ACTIONS(1673), - [anon_sym_uptr] = ACTIONS(1673), - [anon_sym_isz] = ACTIONS(1673), - [anon_sym_usz] = ACTIONS(1673), - [anon_sym_anyfault] = ACTIONS(1673), - [anon_sym_any] = ACTIONS(1673), - [anon_sym_DOLLARtypeof] = ACTIONS(1673), - [anon_sym_DOLLARtypefrom] = ACTIONS(1673), - [anon_sym_DOLLARvatype] = ACTIONS(1673), - [anon_sym_DOLLARevaltype] = ACTIONS(1673), - [sym_real_literal] = ACTIONS(1675), + [sym_ct_ident] = ACTIONS(1413), + [sym_at_ident] = ACTIONS(1415), + [sym_hash_ident] = ACTIONS(1415), + [sym_type_ident] = ACTIONS(1415), + [sym_ct_type_ident] = ACTIONS(1415), + [sym_const_ident] = ACTIONS(1413), + [sym_builtin] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_tlocal] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_fn] = ACTIONS(1413), + [anon_sym_LBRACE] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [anon_sym_var] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_defer] = ACTIONS(1413), + [anon_sym_assert] = ACTIONS(1413), + [anon_sym_nextcase] = ACTIONS(1413), + [anon_sym_switch] = ACTIONS(1413), + [anon_sym_AMP_AMP] = ACTIONS(1415), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_foreach] = ACTIONS(1413), + [anon_sym_foreach_r] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_do] = ACTIONS(1413), + [anon_sym_int] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(1415), + [anon_sym_asm] = ACTIONS(1413), + [anon_sym_DOLLARassert] = ACTIONS(1413), + [anon_sym_DOLLARerror] = ACTIONS(1413), + [anon_sym_DOLLARecho] = ACTIONS(1413), + [anon_sym_DOLLARif] = ACTIONS(1413), + [anon_sym_DOLLARendif] = ACTIONS(1413), + [anon_sym_DOLLARswitch] = ACTIONS(1413), + [anon_sym_DOLLARfor] = ACTIONS(1413), + [anon_sym_DOLLARforeach] = ACTIONS(1413), + [anon_sym_DOLLARalignof] = ACTIONS(1413), + [anon_sym_DOLLARextnameof] = ACTIONS(1413), + [anon_sym_DOLLARnameof] = ACTIONS(1413), + [anon_sym_DOLLARoffsetof] = ACTIONS(1413), + [anon_sym_DOLLARqnameof] = ACTIONS(1413), + [anon_sym_DOLLARvaconst] = ACTIONS(1413), + [anon_sym_DOLLARvaarg] = ACTIONS(1413), + [anon_sym_DOLLARvaref] = ACTIONS(1413), + [anon_sym_DOLLARvaexpr] = ACTIONS(1413), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_null] = ACTIONS(1413), + [anon_sym_DOLLARvacount] = ACTIONS(1413), + [anon_sym_DOLLAReval] = ACTIONS(1413), + [anon_sym_DOLLARis_const] = ACTIONS(1413), + [anon_sym_DOLLARsizeof] = ACTIONS(1413), + [anon_sym_DOLLARstringify] = ACTIONS(1413), + [anon_sym_DOLLARappend] = ACTIONS(1413), + [anon_sym_DOLLARconcat] = ACTIONS(1413), + [anon_sym_DOLLARdefined] = ACTIONS(1413), + [anon_sym_DOLLARembed] = ACTIONS(1413), + [anon_sym_DOLLARand] = ACTIONS(1413), + [anon_sym_DOLLARor] = ACTIONS(1413), + [anon_sym_DOLLARfeature] = ACTIONS(1413), + [anon_sym_DOLLARassignable] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_TILDE] = ACTIONS(1415), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_typeid] = ACTIONS(1413), + [anon_sym_LBRACE_PIPE] = ACTIONS(1415), + [anon_sym_void] = ACTIONS(1413), + [anon_sym_bool] = ACTIONS(1413), + [anon_sym_char] = ACTIONS(1413), + [anon_sym_ichar] = ACTIONS(1413), + [anon_sym_short] = ACTIONS(1413), + [anon_sym_ushort] = ACTIONS(1413), + [anon_sym_uint] = ACTIONS(1413), + [anon_sym_long] = ACTIONS(1413), + [anon_sym_ulong] = ACTIONS(1413), + [anon_sym_int128] = ACTIONS(1413), + [anon_sym_uint128] = ACTIONS(1413), + [anon_sym_float] = ACTIONS(1413), + [anon_sym_double] = ACTIONS(1413), + [anon_sym_float16] = ACTIONS(1413), + [anon_sym_bfloat16] = ACTIONS(1413), + [anon_sym_float128] = ACTIONS(1413), + [anon_sym_iptr] = ACTIONS(1413), + [anon_sym_uptr] = ACTIONS(1413), + [anon_sym_isz] = ACTIONS(1413), + [anon_sym_usz] = ACTIONS(1413), + [anon_sym_anyfault] = ACTIONS(1413), + [anon_sym_any] = ACTIONS(1413), + [anon_sym_DOLLARtypeof] = ACTIONS(1413), + [anon_sym_DOLLARtypefrom] = ACTIONS(1413), + [anon_sym_DOLLARevaltype] = ACTIONS(1413), + [anon_sym_DOLLARvatype] = ACTIONS(1413), + [sym_real_literal] = ACTIONS(1415), }, - [781] = { - [sym_line_comment] = STATE(781), - [sym_doc_comment] = STATE(781), - [sym_block_comment] = STATE(781), - [sym_ident] = ACTIONS(1653), - [sym_integer_literal] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [anon_sym_BQUOTE] = ACTIONS(1655), - [sym_bytes_literal] = ACTIONS(1655), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1653), - [sym_at_ident] = ACTIONS(1655), - [sym_hash_ident] = ACTIONS(1655), - [sym_type_ident] = ACTIONS(1655), - [sym_ct_type_ident] = ACTIONS(1655), - [sym_const_ident] = ACTIONS(1653), - [sym_builtin] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1653), - [anon_sym_tlocal] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [anon_sym_var] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_defer] = ACTIONS(1653), - [anon_sym_assert] = ACTIONS(1653), - [anon_sym_nextcase] = ACTIONS(1653), - [anon_sym_switch] = ACTIONS(1653), - [anon_sym_AMP_AMP] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_foreach] = ACTIONS(1653), - [anon_sym_foreach_r] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_do] = ACTIONS(1653), - [anon_sym_int] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1655), - [anon_sym_asm] = ACTIONS(1653), - [anon_sym_DOLLARassert] = ACTIONS(1653), - [anon_sym_DOLLARerror] = ACTIONS(1653), - [anon_sym_DOLLARecho] = ACTIONS(1653), - [anon_sym_DOLLARif] = ACTIONS(1653), - [anon_sym_DOLLARswitch] = ACTIONS(1653), - [anon_sym_DOLLARfor] = ACTIONS(1653), - [anon_sym_DOLLARforeach] = ACTIONS(1653), - [anon_sym_DOLLARalignof] = ACTIONS(1653), - [anon_sym_DOLLARextnameof] = ACTIONS(1653), - [anon_sym_DOLLARnameof] = ACTIONS(1653), - [anon_sym_DOLLARoffsetof] = ACTIONS(1653), - [anon_sym_DOLLARqnameof] = ACTIONS(1653), - [anon_sym_DOLLAReval] = ACTIONS(1653), - [anon_sym_DOLLARdefined] = ACTIONS(1653), - [anon_sym_DOLLARsizeof] = ACTIONS(1653), - [anon_sym_DOLLARstringify] = ACTIONS(1653), - [anon_sym_DOLLARis_const] = ACTIONS(1653), - [anon_sym_DOLLARvaconst] = ACTIONS(1653), - [anon_sym_DOLLARvaarg] = ACTIONS(1653), - [anon_sym_DOLLARvaref] = ACTIONS(1653), - [anon_sym_DOLLARvaexpr] = ACTIONS(1653), - [anon_sym_true] = ACTIONS(1653), - [anon_sym_false] = ACTIONS(1653), - [anon_sym_null] = ACTIONS(1653), - [anon_sym_DOLLARvacount] = ACTIONS(1653), - [anon_sym_DOLLARfeature] = ACTIONS(1653), - [anon_sym_DOLLARand] = ACTIONS(1653), - [anon_sym_DOLLARor] = ACTIONS(1653), - [anon_sym_DOLLARassignable] = ACTIONS(1653), - [anon_sym_DOLLARembed] = ACTIONS(1653), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_typeid] = ACTIONS(1653), - [anon_sym_LBRACE_PIPE] = ACTIONS(1655), - [anon_sym_void] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_ichar] = ACTIONS(1653), - [anon_sym_short] = ACTIONS(1653), - [anon_sym_ushort] = ACTIONS(1653), - [anon_sym_uint] = ACTIONS(1653), - [anon_sym_long] = ACTIONS(1653), - [anon_sym_ulong] = ACTIONS(1653), - [anon_sym_int128] = ACTIONS(1653), - [anon_sym_uint128] = ACTIONS(1653), - [anon_sym_float] = ACTIONS(1653), - [anon_sym_double] = ACTIONS(1653), - [anon_sym_float16] = ACTIONS(1653), - [anon_sym_bfloat16] = ACTIONS(1653), - [anon_sym_float128] = ACTIONS(1653), - [anon_sym_iptr] = ACTIONS(1653), - [anon_sym_uptr] = ACTIONS(1653), - [anon_sym_isz] = ACTIONS(1653), - [anon_sym_usz] = ACTIONS(1653), - [anon_sym_anyfault] = ACTIONS(1653), - [anon_sym_any] = ACTIONS(1653), - [anon_sym_DOLLARtypeof] = ACTIONS(1653), - [anon_sym_DOLLARtypefrom] = ACTIONS(1653), - [anon_sym_DOLLARvatype] = ACTIONS(1653), - [anon_sym_DOLLARevaltype] = ACTIONS(1653), - [sym_real_literal] = ACTIONS(1655), + [757] = { + [sym_line_comment] = STATE(757), + [sym_doc_comment] = STATE(757), + [sym_block_comment] = STATE(757), + [sym_ident] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1419), + [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1419), + [sym_bytes_literal] = ACTIONS(1419), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1417), + [sym_at_ident] = ACTIONS(1419), + [sym_hash_ident] = ACTIONS(1419), + [sym_type_ident] = ACTIONS(1419), + [sym_ct_type_ident] = ACTIONS(1419), + [sym_const_ident] = ACTIONS(1417), + [sym_builtin] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_static] = ACTIONS(1417), + [anon_sym_tlocal] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_fn] = ACTIONS(1417), + [anon_sym_LBRACE] = ACTIONS(1417), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_var] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1417), + [anon_sym_continue] = ACTIONS(1417), + [anon_sym_break] = ACTIONS(1417), + [anon_sym_defer] = ACTIONS(1417), + [anon_sym_assert] = ACTIONS(1417), + [anon_sym_nextcase] = ACTIONS(1417), + [anon_sym_switch] = ACTIONS(1417), + [anon_sym_AMP_AMP] = ACTIONS(1419), + [anon_sym_if] = ACTIONS(1417), + [anon_sym_for] = ACTIONS(1417), + [anon_sym_foreach] = ACTIONS(1417), + [anon_sym_foreach_r] = ACTIONS(1417), + [anon_sym_while] = ACTIONS(1417), + [anon_sym_do] = ACTIONS(1417), + [anon_sym_int] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_asm] = ACTIONS(1417), + [anon_sym_DOLLARassert] = ACTIONS(1417), + [anon_sym_DOLLARerror] = ACTIONS(1417), + [anon_sym_DOLLARecho] = ACTIONS(1417), + [anon_sym_DOLLARif] = ACTIONS(1417), + [anon_sym_DOLLARendif] = ACTIONS(1417), + [anon_sym_DOLLARswitch] = ACTIONS(1417), + [anon_sym_DOLLARfor] = ACTIONS(1417), + [anon_sym_DOLLARforeach] = ACTIONS(1417), + [anon_sym_DOLLARalignof] = ACTIONS(1417), + [anon_sym_DOLLARextnameof] = ACTIONS(1417), + [anon_sym_DOLLARnameof] = ACTIONS(1417), + [anon_sym_DOLLARoffsetof] = ACTIONS(1417), + [anon_sym_DOLLARqnameof] = ACTIONS(1417), + [anon_sym_DOLLARvaconst] = ACTIONS(1417), + [anon_sym_DOLLARvaarg] = ACTIONS(1417), + [anon_sym_DOLLARvaref] = ACTIONS(1417), + [anon_sym_DOLLARvaexpr] = ACTIONS(1417), + [anon_sym_true] = ACTIONS(1417), + [anon_sym_false] = ACTIONS(1417), + [anon_sym_null] = ACTIONS(1417), + [anon_sym_DOLLARvacount] = ACTIONS(1417), + [anon_sym_DOLLAReval] = ACTIONS(1417), + [anon_sym_DOLLARis_const] = ACTIONS(1417), + [anon_sym_DOLLARsizeof] = ACTIONS(1417), + [anon_sym_DOLLARstringify] = ACTIONS(1417), + [anon_sym_DOLLARappend] = ACTIONS(1417), + [anon_sym_DOLLARconcat] = ACTIONS(1417), + [anon_sym_DOLLARdefined] = ACTIONS(1417), + [anon_sym_DOLLARembed] = ACTIONS(1417), + [anon_sym_DOLLARand] = ACTIONS(1417), + [anon_sym_DOLLARor] = ACTIONS(1417), + [anon_sym_DOLLARfeature] = ACTIONS(1417), + [anon_sym_DOLLARassignable] = ACTIONS(1417), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_TILDE] = ACTIONS(1419), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_DASH_DASH] = ACTIONS(1419), + [anon_sym_typeid] = ACTIONS(1417), + [anon_sym_LBRACE_PIPE] = ACTIONS(1419), + [anon_sym_void] = ACTIONS(1417), + [anon_sym_bool] = ACTIONS(1417), + [anon_sym_char] = ACTIONS(1417), + [anon_sym_ichar] = ACTIONS(1417), + [anon_sym_short] = ACTIONS(1417), + [anon_sym_ushort] = ACTIONS(1417), + [anon_sym_uint] = ACTIONS(1417), + [anon_sym_long] = ACTIONS(1417), + [anon_sym_ulong] = ACTIONS(1417), + [anon_sym_int128] = ACTIONS(1417), + [anon_sym_uint128] = ACTIONS(1417), + [anon_sym_float] = ACTIONS(1417), + [anon_sym_double] = ACTIONS(1417), + [anon_sym_float16] = ACTIONS(1417), + [anon_sym_bfloat16] = ACTIONS(1417), + [anon_sym_float128] = ACTIONS(1417), + [anon_sym_iptr] = ACTIONS(1417), + [anon_sym_uptr] = ACTIONS(1417), + [anon_sym_isz] = ACTIONS(1417), + [anon_sym_usz] = ACTIONS(1417), + [anon_sym_anyfault] = ACTIONS(1417), + [anon_sym_any] = ACTIONS(1417), + [anon_sym_DOLLARtypeof] = ACTIONS(1417), + [anon_sym_DOLLARtypefrom] = ACTIONS(1417), + [anon_sym_DOLLARevaltype] = ACTIONS(1417), + [anon_sym_DOLLARvatype] = ACTIONS(1417), + [sym_real_literal] = ACTIONS(1419), }, - [782] = { - [sym_line_comment] = STATE(782), - [sym_doc_comment] = STATE(782), - [sym_block_comment] = STATE(782), - [sym_ident] = ACTIONS(1685), - [sym_integer_literal] = ACTIONS(1687), - [anon_sym_SQUOTE] = ACTIONS(1687), - [anon_sym_DQUOTE] = ACTIONS(1687), - [anon_sym_BQUOTE] = ACTIONS(1687), - [sym_bytes_literal] = ACTIONS(1687), + [758] = { + [sym_line_comment] = STATE(758), + [sym_doc_comment] = STATE(758), + [sym_block_comment] = STATE(758), + [sym_ident] = ACTIONS(1421), + [sym_integer_literal] = ACTIONS(1423), + [anon_sym_SQUOTE] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(1423), + [anon_sym_BQUOTE] = ACTIONS(1423), + [sym_bytes_literal] = ACTIONS(1423), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1685), - [sym_at_ident] = ACTIONS(1687), - [sym_hash_ident] = ACTIONS(1687), - [sym_type_ident] = ACTIONS(1687), - [sym_ct_type_ident] = ACTIONS(1687), - [sym_const_ident] = ACTIONS(1685), - [sym_builtin] = ACTIONS(1687), - [anon_sym_LPAREN] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1685), - [anon_sym_static] = ACTIONS(1685), - [anon_sym_tlocal] = ACTIONS(1685), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_fn] = ACTIONS(1685), - [anon_sym_LBRACE] = ACTIONS(1685), - [anon_sym_const] = ACTIONS(1685), - [anon_sym_var] = ACTIONS(1685), - [anon_sym_return] = ACTIONS(1685), - [anon_sym_continue] = ACTIONS(1685), - [anon_sym_break] = ACTIONS(1685), - [anon_sym_defer] = ACTIONS(1685), - [anon_sym_assert] = ACTIONS(1685), - [anon_sym_nextcase] = ACTIONS(1685), - [anon_sym_switch] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(1687), - [anon_sym_if] = ACTIONS(1685), - [anon_sym_for] = ACTIONS(1685), - [anon_sym_foreach] = ACTIONS(1685), - [anon_sym_foreach_r] = ACTIONS(1685), - [anon_sym_while] = ACTIONS(1685), - [anon_sym_do] = ACTIONS(1685), - [anon_sym_int] = ACTIONS(1685), - [anon_sym_PLUS] = ACTIONS(1685), - [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_STAR] = ACTIONS(1687), - [anon_sym_asm] = ACTIONS(1685), - [anon_sym_DOLLARassert] = ACTIONS(1685), - [anon_sym_DOLLARerror] = ACTIONS(1685), - [anon_sym_DOLLARecho] = ACTIONS(1685), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_DOLLARswitch] = ACTIONS(1685), - [anon_sym_DOLLARfor] = ACTIONS(1685), - [anon_sym_DOLLARforeach] = ACTIONS(1685), - [anon_sym_DOLLARalignof] = ACTIONS(1685), - [anon_sym_DOLLARextnameof] = ACTIONS(1685), - [anon_sym_DOLLARnameof] = ACTIONS(1685), - [anon_sym_DOLLARoffsetof] = ACTIONS(1685), - [anon_sym_DOLLARqnameof] = ACTIONS(1685), - [anon_sym_DOLLAReval] = ACTIONS(1685), - [anon_sym_DOLLARdefined] = ACTIONS(1685), - [anon_sym_DOLLARsizeof] = ACTIONS(1685), - [anon_sym_DOLLARstringify] = ACTIONS(1685), - [anon_sym_DOLLARis_const] = ACTIONS(1685), - [anon_sym_DOLLARvaconst] = ACTIONS(1685), - [anon_sym_DOLLARvaarg] = ACTIONS(1685), - [anon_sym_DOLLARvaref] = ACTIONS(1685), - [anon_sym_DOLLARvaexpr] = ACTIONS(1685), - [anon_sym_true] = ACTIONS(1685), - [anon_sym_false] = ACTIONS(1685), - [anon_sym_null] = ACTIONS(1685), - [anon_sym_DOLLARvacount] = ACTIONS(1685), - [anon_sym_DOLLARfeature] = ACTIONS(1685), - [anon_sym_DOLLARand] = ACTIONS(1685), - [anon_sym_DOLLARor] = ACTIONS(1685), - [anon_sym_DOLLARassignable] = ACTIONS(1685), - [anon_sym_DOLLARembed] = ACTIONS(1685), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_TILDE] = ACTIONS(1687), - [anon_sym_PLUS_PLUS] = ACTIONS(1687), - [anon_sym_DASH_DASH] = ACTIONS(1687), - [anon_sym_typeid] = ACTIONS(1685), - [anon_sym_LBRACE_PIPE] = ACTIONS(1687), - [anon_sym_void] = ACTIONS(1685), - [anon_sym_bool] = ACTIONS(1685), - [anon_sym_char] = ACTIONS(1685), - [anon_sym_ichar] = ACTIONS(1685), - [anon_sym_short] = ACTIONS(1685), - [anon_sym_ushort] = ACTIONS(1685), - [anon_sym_uint] = ACTIONS(1685), - [anon_sym_long] = ACTIONS(1685), - [anon_sym_ulong] = ACTIONS(1685), - [anon_sym_int128] = ACTIONS(1685), - [anon_sym_uint128] = ACTIONS(1685), - [anon_sym_float] = ACTIONS(1685), - [anon_sym_double] = ACTIONS(1685), - [anon_sym_float16] = ACTIONS(1685), - [anon_sym_bfloat16] = ACTIONS(1685), - [anon_sym_float128] = ACTIONS(1685), - [anon_sym_iptr] = ACTIONS(1685), - [anon_sym_uptr] = ACTIONS(1685), - [anon_sym_isz] = ACTIONS(1685), - [anon_sym_usz] = ACTIONS(1685), - [anon_sym_anyfault] = ACTIONS(1685), - [anon_sym_any] = ACTIONS(1685), - [anon_sym_DOLLARtypeof] = ACTIONS(1685), - [anon_sym_DOLLARtypefrom] = ACTIONS(1685), - [anon_sym_DOLLARvatype] = ACTIONS(1685), - [anon_sym_DOLLARevaltype] = ACTIONS(1685), - [sym_real_literal] = ACTIONS(1687), + [sym_ct_ident] = ACTIONS(1421), + [sym_at_ident] = ACTIONS(1423), + [sym_hash_ident] = ACTIONS(1423), + [sym_type_ident] = ACTIONS(1423), + [sym_ct_type_ident] = ACTIONS(1423), + [sym_const_ident] = ACTIONS(1421), + [sym_builtin] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_tlocal] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1423), + [anon_sym_fn] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_var] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_defer] = ACTIONS(1421), + [anon_sym_assert] = ACTIONS(1421), + [anon_sym_nextcase] = ACTIONS(1421), + [anon_sym_switch] = ACTIONS(1421), + [anon_sym_AMP_AMP] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_foreach] = ACTIONS(1421), + [anon_sym_foreach_r] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_do] = ACTIONS(1421), + [anon_sym_int] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_asm] = ACTIONS(1421), + [anon_sym_DOLLARassert] = ACTIONS(1421), + [anon_sym_DOLLARerror] = ACTIONS(1421), + [anon_sym_DOLLARecho] = ACTIONS(1421), + [anon_sym_DOLLARif] = ACTIONS(1421), + [anon_sym_DOLLARendif] = ACTIONS(1421), + [anon_sym_DOLLARswitch] = ACTIONS(1421), + [anon_sym_DOLLARfor] = ACTIONS(1421), + [anon_sym_DOLLARforeach] = ACTIONS(1421), + [anon_sym_DOLLARalignof] = ACTIONS(1421), + [anon_sym_DOLLARextnameof] = ACTIONS(1421), + [anon_sym_DOLLARnameof] = ACTIONS(1421), + [anon_sym_DOLLARoffsetof] = ACTIONS(1421), + [anon_sym_DOLLARqnameof] = ACTIONS(1421), + [anon_sym_DOLLARvaconst] = ACTIONS(1421), + [anon_sym_DOLLARvaarg] = ACTIONS(1421), + [anon_sym_DOLLARvaref] = ACTIONS(1421), + [anon_sym_DOLLARvaexpr] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [anon_sym_null] = ACTIONS(1421), + [anon_sym_DOLLARvacount] = ACTIONS(1421), + [anon_sym_DOLLAReval] = ACTIONS(1421), + [anon_sym_DOLLARis_const] = ACTIONS(1421), + [anon_sym_DOLLARsizeof] = ACTIONS(1421), + [anon_sym_DOLLARstringify] = ACTIONS(1421), + [anon_sym_DOLLARappend] = ACTIONS(1421), + [anon_sym_DOLLARconcat] = ACTIONS(1421), + [anon_sym_DOLLARdefined] = ACTIONS(1421), + [anon_sym_DOLLARembed] = ACTIONS(1421), + [anon_sym_DOLLARand] = ACTIONS(1421), + [anon_sym_DOLLARor] = ACTIONS(1421), + [anon_sym_DOLLARfeature] = ACTIONS(1421), + [anon_sym_DOLLARassignable] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(1423), + [anon_sym_PLUS_PLUS] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1423), + [anon_sym_typeid] = ACTIONS(1421), + [anon_sym_LBRACE_PIPE] = ACTIONS(1423), + [anon_sym_void] = ACTIONS(1421), + [anon_sym_bool] = ACTIONS(1421), + [anon_sym_char] = ACTIONS(1421), + [anon_sym_ichar] = ACTIONS(1421), + [anon_sym_short] = ACTIONS(1421), + [anon_sym_ushort] = ACTIONS(1421), + [anon_sym_uint] = ACTIONS(1421), + [anon_sym_long] = ACTIONS(1421), + [anon_sym_ulong] = ACTIONS(1421), + [anon_sym_int128] = ACTIONS(1421), + [anon_sym_uint128] = ACTIONS(1421), + [anon_sym_float] = ACTIONS(1421), + [anon_sym_double] = ACTIONS(1421), + [anon_sym_float16] = ACTIONS(1421), + [anon_sym_bfloat16] = ACTIONS(1421), + [anon_sym_float128] = ACTIONS(1421), + [anon_sym_iptr] = ACTIONS(1421), + [anon_sym_uptr] = ACTIONS(1421), + [anon_sym_isz] = ACTIONS(1421), + [anon_sym_usz] = ACTIONS(1421), + [anon_sym_anyfault] = ACTIONS(1421), + [anon_sym_any] = ACTIONS(1421), + [anon_sym_DOLLARtypeof] = ACTIONS(1421), + [anon_sym_DOLLARtypefrom] = ACTIONS(1421), + [anon_sym_DOLLARevaltype] = ACTIONS(1421), + [anon_sym_DOLLARvatype] = ACTIONS(1421), + [sym_real_literal] = ACTIONS(1423), }, - [783] = { - [sym_line_comment] = STATE(783), - [sym_doc_comment] = STATE(783), - [sym_block_comment] = STATE(783), - [sym_ident] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [anon_sym_SQUOTE] = ACTIONS(1691), - [anon_sym_DQUOTE] = ACTIONS(1691), - [anon_sym_BQUOTE] = ACTIONS(1691), - [sym_bytes_literal] = ACTIONS(1691), + [759] = { + [sym_line_comment] = STATE(759), + [sym_doc_comment] = STATE(759), + [sym_block_comment] = STATE(759), + [sym_ident] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1427), + [anon_sym_DQUOTE] = ACTIONS(1427), + [anon_sym_BQUOTE] = ACTIONS(1427), + [sym_bytes_literal] = ACTIONS(1427), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1689), - [sym_at_ident] = ACTIONS(1691), - [sym_hash_ident] = ACTIONS(1691), - [sym_type_ident] = ACTIONS(1691), - [sym_ct_type_ident] = ACTIONS(1691), - [sym_const_ident] = ACTIONS(1689), - [sym_builtin] = ACTIONS(1691), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_static] = ACTIONS(1689), - [anon_sym_tlocal] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1691), - [anon_sym_fn] = ACTIONS(1689), - [anon_sym_LBRACE] = ACTIONS(1689), - [anon_sym_const] = ACTIONS(1689), - [anon_sym_var] = ACTIONS(1689), - [anon_sym_return] = ACTIONS(1689), - [anon_sym_continue] = ACTIONS(1689), - [anon_sym_break] = ACTIONS(1689), - [anon_sym_defer] = ACTIONS(1689), - [anon_sym_assert] = ACTIONS(1689), - [anon_sym_nextcase] = ACTIONS(1689), - [anon_sym_switch] = ACTIONS(1689), - [anon_sym_AMP_AMP] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1689), - [anon_sym_for] = ACTIONS(1689), - [anon_sym_foreach] = ACTIONS(1689), - [anon_sym_foreach_r] = ACTIONS(1689), - [anon_sym_while] = ACTIONS(1689), - [anon_sym_do] = ACTIONS(1689), - [anon_sym_int] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_asm] = ACTIONS(1689), - [anon_sym_DOLLARassert] = ACTIONS(1689), - [anon_sym_DOLLARerror] = ACTIONS(1689), - [anon_sym_DOLLARecho] = ACTIONS(1689), - [anon_sym_DOLLARif] = ACTIONS(1689), - [anon_sym_DOLLARswitch] = ACTIONS(1689), - [anon_sym_DOLLARfor] = ACTIONS(1689), - [anon_sym_DOLLARforeach] = ACTIONS(1689), - [anon_sym_DOLLARalignof] = ACTIONS(1689), - [anon_sym_DOLLARextnameof] = ACTIONS(1689), - [anon_sym_DOLLARnameof] = ACTIONS(1689), - [anon_sym_DOLLARoffsetof] = ACTIONS(1689), - [anon_sym_DOLLARqnameof] = ACTIONS(1689), - [anon_sym_DOLLAReval] = ACTIONS(1689), - [anon_sym_DOLLARdefined] = ACTIONS(1689), - [anon_sym_DOLLARsizeof] = ACTIONS(1689), - [anon_sym_DOLLARstringify] = ACTIONS(1689), - [anon_sym_DOLLARis_const] = ACTIONS(1689), - [anon_sym_DOLLARvaconst] = ACTIONS(1689), - [anon_sym_DOLLARvaarg] = ACTIONS(1689), - [anon_sym_DOLLARvaref] = ACTIONS(1689), - [anon_sym_DOLLARvaexpr] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(1689), - [anon_sym_false] = ACTIONS(1689), - [anon_sym_null] = ACTIONS(1689), - [anon_sym_DOLLARvacount] = ACTIONS(1689), - [anon_sym_DOLLARfeature] = ACTIONS(1689), - [anon_sym_DOLLARand] = ACTIONS(1689), - [anon_sym_DOLLARor] = ACTIONS(1689), - [anon_sym_DOLLARassignable] = ACTIONS(1689), - [anon_sym_DOLLARembed] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1691), - [anon_sym_TILDE] = ACTIONS(1691), - [anon_sym_PLUS_PLUS] = ACTIONS(1691), - [anon_sym_DASH_DASH] = ACTIONS(1691), - [anon_sym_typeid] = ACTIONS(1689), - [anon_sym_LBRACE_PIPE] = ACTIONS(1691), - [anon_sym_void] = ACTIONS(1689), - [anon_sym_bool] = ACTIONS(1689), - [anon_sym_char] = ACTIONS(1689), - [anon_sym_ichar] = ACTIONS(1689), - [anon_sym_short] = ACTIONS(1689), - [anon_sym_ushort] = ACTIONS(1689), - [anon_sym_uint] = ACTIONS(1689), - [anon_sym_long] = ACTIONS(1689), - [anon_sym_ulong] = ACTIONS(1689), - [anon_sym_int128] = ACTIONS(1689), - [anon_sym_uint128] = ACTIONS(1689), - [anon_sym_float] = ACTIONS(1689), - [anon_sym_double] = ACTIONS(1689), - [anon_sym_float16] = ACTIONS(1689), - [anon_sym_bfloat16] = ACTIONS(1689), - [anon_sym_float128] = ACTIONS(1689), - [anon_sym_iptr] = ACTIONS(1689), - [anon_sym_uptr] = ACTIONS(1689), - [anon_sym_isz] = ACTIONS(1689), - [anon_sym_usz] = ACTIONS(1689), - [anon_sym_anyfault] = ACTIONS(1689), - [anon_sym_any] = ACTIONS(1689), - [anon_sym_DOLLARtypeof] = ACTIONS(1689), - [anon_sym_DOLLARtypefrom] = ACTIONS(1689), - [anon_sym_DOLLARvatype] = ACTIONS(1689), - [anon_sym_DOLLARevaltype] = ACTIONS(1689), - [sym_real_literal] = ACTIONS(1691), - }, - [784] = { - [sym_line_comment] = STATE(784), - [sym_doc_comment] = STATE(784), - [sym_block_comment] = STATE(784), - [sym_ident] = ACTIONS(1657), - [sym_integer_literal] = ACTIONS(1659), - [anon_sym_SQUOTE] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [anon_sym_BQUOTE] = ACTIONS(1659), - [sym_bytes_literal] = ACTIONS(1659), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1657), - [sym_at_ident] = ACTIONS(1659), - [sym_hash_ident] = ACTIONS(1659), - [sym_type_ident] = ACTIONS(1659), - [sym_ct_type_ident] = ACTIONS(1659), - [sym_const_ident] = ACTIONS(1657), - [sym_builtin] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_tlocal] = ACTIONS(1657), - [anon_sym_SEMI] = ACTIONS(1659), - [anon_sym_fn] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_var] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_defer] = ACTIONS(1657), - [anon_sym_assert] = ACTIONS(1657), - [anon_sym_nextcase] = ACTIONS(1657), - [anon_sym_switch] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_foreach] = ACTIONS(1657), - [anon_sym_foreach_r] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_do] = ACTIONS(1657), - [anon_sym_int] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1657), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_STAR] = ACTIONS(1659), - [anon_sym_asm] = ACTIONS(1657), - [anon_sym_DOLLARassert] = ACTIONS(1657), - [anon_sym_DOLLARerror] = ACTIONS(1657), - [anon_sym_DOLLARecho] = ACTIONS(1657), - [anon_sym_DOLLARif] = ACTIONS(1657), - [anon_sym_DOLLARswitch] = ACTIONS(1657), - [anon_sym_DOLLARfor] = ACTIONS(1657), - [anon_sym_DOLLARforeach] = ACTIONS(1657), - [anon_sym_DOLLARalignof] = ACTIONS(1657), - [anon_sym_DOLLARextnameof] = ACTIONS(1657), - [anon_sym_DOLLARnameof] = ACTIONS(1657), - [anon_sym_DOLLARoffsetof] = ACTIONS(1657), - [anon_sym_DOLLARqnameof] = ACTIONS(1657), - [anon_sym_DOLLAReval] = ACTIONS(1657), - [anon_sym_DOLLARdefined] = ACTIONS(1657), - [anon_sym_DOLLARsizeof] = ACTIONS(1657), - [anon_sym_DOLLARstringify] = ACTIONS(1657), - [anon_sym_DOLLARis_const] = ACTIONS(1657), - [anon_sym_DOLLARvaconst] = ACTIONS(1657), - [anon_sym_DOLLARvaarg] = ACTIONS(1657), - [anon_sym_DOLLARvaref] = ACTIONS(1657), - [anon_sym_DOLLARvaexpr] = ACTIONS(1657), - [anon_sym_true] = ACTIONS(1657), - [anon_sym_false] = ACTIONS(1657), - [anon_sym_null] = ACTIONS(1657), - [anon_sym_DOLLARvacount] = ACTIONS(1657), - [anon_sym_DOLLARfeature] = ACTIONS(1657), - [anon_sym_DOLLARand] = ACTIONS(1657), - [anon_sym_DOLLARor] = ACTIONS(1657), - [anon_sym_DOLLARassignable] = ACTIONS(1657), - [anon_sym_DOLLARembed] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1659), - [anon_sym_TILDE] = ACTIONS(1659), - [anon_sym_PLUS_PLUS] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1659), - [anon_sym_typeid] = ACTIONS(1657), - [anon_sym_LBRACE_PIPE] = ACTIONS(1659), - [anon_sym_void] = ACTIONS(1657), - [anon_sym_bool] = ACTIONS(1657), - [anon_sym_char] = ACTIONS(1657), - [anon_sym_ichar] = ACTIONS(1657), - [anon_sym_short] = ACTIONS(1657), - [anon_sym_ushort] = ACTIONS(1657), - [anon_sym_uint] = ACTIONS(1657), - [anon_sym_long] = ACTIONS(1657), - [anon_sym_ulong] = ACTIONS(1657), - [anon_sym_int128] = ACTIONS(1657), - [anon_sym_uint128] = ACTIONS(1657), - [anon_sym_float] = ACTIONS(1657), - [anon_sym_double] = ACTIONS(1657), - [anon_sym_float16] = ACTIONS(1657), - [anon_sym_bfloat16] = ACTIONS(1657), - [anon_sym_float128] = ACTIONS(1657), - [anon_sym_iptr] = ACTIONS(1657), - [anon_sym_uptr] = ACTIONS(1657), - [anon_sym_isz] = ACTIONS(1657), - [anon_sym_usz] = ACTIONS(1657), - [anon_sym_anyfault] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_DOLLARtypeof] = ACTIONS(1657), - [anon_sym_DOLLARtypefrom] = ACTIONS(1657), - [anon_sym_DOLLARvatype] = ACTIONS(1657), - [anon_sym_DOLLARevaltype] = ACTIONS(1657), - [sym_real_literal] = ACTIONS(1659), + [sym_ct_ident] = ACTIONS(1425), + [sym_at_ident] = ACTIONS(1427), + [sym_hash_ident] = ACTIONS(1427), + [sym_type_ident] = ACTIONS(1427), + [sym_ct_type_ident] = ACTIONS(1427), + [sym_const_ident] = ACTIONS(1425), + [sym_builtin] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_tlocal] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_fn] = ACTIONS(1425), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_var] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_defer] = ACTIONS(1425), + [anon_sym_assert] = ACTIONS(1425), + [anon_sym_nextcase] = ACTIONS(1425), + [anon_sym_switch] = ACTIONS(1425), + [anon_sym_AMP_AMP] = ACTIONS(1427), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_foreach] = ACTIONS(1425), + [anon_sym_foreach_r] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_do] = ACTIONS(1425), + [anon_sym_int] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_asm] = ACTIONS(1425), + [anon_sym_DOLLARassert] = ACTIONS(1425), + [anon_sym_DOLLARerror] = ACTIONS(1425), + [anon_sym_DOLLARecho] = ACTIONS(1425), + [anon_sym_DOLLARif] = ACTIONS(1425), + [anon_sym_DOLLARendif] = ACTIONS(1425), + [anon_sym_DOLLARswitch] = ACTIONS(1425), + [anon_sym_DOLLARfor] = ACTIONS(1425), + [anon_sym_DOLLARforeach] = ACTIONS(1425), + [anon_sym_DOLLARalignof] = ACTIONS(1425), + [anon_sym_DOLLARextnameof] = ACTIONS(1425), + [anon_sym_DOLLARnameof] = ACTIONS(1425), + [anon_sym_DOLLARoffsetof] = ACTIONS(1425), + [anon_sym_DOLLARqnameof] = ACTIONS(1425), + [anon_sym_DOLLARvaconst] = ACTIONS(1425), + [anon_sym_DOLLARvaarg] = ACTIONS(1425), + [anon_sym_DOLLARvaref] = ACTIONS(1425), + [anon_sym_DOLLARvaexpr] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [anon_sym_null] = ACTIONS(1425), + [anon_sym_DOLLARvacount] = ACTIONS(1425), + [anon_sym_DOLLAReval] = ACTIONS(1425), + [anon_sym_DOLLARis_const] = ACTIONS(1425), + [anon_sym_DOLLARsizeof] = ACTIONS(1425), + [anon_sym_DOLLARstringify] = ACTIONS(1425), + [anon_sym_DOLLARappend] = ACTIONS(1425), + [anon_sym_DOLLARconcat] = ACTIONS(1425), + [anon_sym_DOLLARdefined] = ACTIONS(1425), + [anon_sym_DOLLARembed] = ACTIONS(1425), + [anon_sym_DOLLARand] = ACTIONS(1425), + [anon_sym_DOLLARor] = ACTIONS(1425), + [anon_sym_DOLLARfeature] = ACTIONS(1425), + [anon_sym_DOLLARassignable] = ACTIONS(1425), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1427), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_typeid] = ACTIONS(1425), + [anon_sym_LBRACE_PIPE] = ACTIONS(1427), + [anon_sym_void] = ACTIONS(1425), + [anon_sym_bool] = ACTIONS(1425), + [anon_sym_char] = ACTIONS(1425), + [anon_sym_ichar] = ACTIONS(1425), + [anon_sym_short] = ACTIONS(1425), + [anon_sym_ushort] = ACTIONS(1425), + [anon_sym_uint] = ACTIONS(1425), + [anon_sym_long] = ACTIONS(1425), + [anon_sym_ulong] = ACTIONS(1425), + [anon_sym_int128] = ACTIONS(1425), + [anon_sym_uint128] = ACTIONS(1425), + [anon_sym_float] = ACTIONS(1425), + [anon_sym_double] = ACTIONS(1425), + [anon_sym_float16] = ACTIONS(1425), + [anon_sym_bfloat16] = ACTIONS(1425), + [anon_sym_float128] = ACTIONS(1425), + [anon_sym_iptr] = ACTIONS(1425), + [anon_sym_uptr] = ACTIONS(1425), + [anon_sym_isz] = ACTIONS(1425), + [anon_sym_usz] = ACTIONS(1425), + [anon_sym_anyfault] = ACTIONS(1425), + [anon_sym_any] = ACTIONS(1425), + [anon_sym_DOLLARtypeof] = ACTIONS(1425), + [anon_sym_DOLLARtypefrom] = ACTIONS(1425), + [anon_sym_DOLLARevaltype] = ACTIONS(1425), + [anon_sym_DOLLARvatype] = ACTIONS(1425), + [sym_real_literal] = ACTIONS(1427), }, - [785] = { - [sym_line_comment] = STATE(785), - [sym_doc_comment] = STATE(785), - [sym_block_comment] = STATE(785), - [sym_ident] = ACTIONS(1661), - [sym_integer_literal] = ACTIONS(1663), - [anon_sym_SQUOTE] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [anon_sym_BQUOTE] = ACTIONS(1663), - [sym_bytes_literal] = ACTIONS(1663), + [760] = { + [sym_line_comment] = STATE(760), + [sym_doc_comment] = STATE(760), + [sym_block_comment] = STATE(760), + [sym_ident] = ACTIONS(1429), + [sym_integer_literal] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [anon_sym_BQUOTE] = ACTIONS(1431), + [sym_bytes_literal] = ACTIONS(1431), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1661), - [sym_at_ident] = ACTIONS(1663), - [sym_hash_ident] = ACTIONS(1663), - [sym_type_ident] = ACTIONS(1663), - [sym_ct_type_ident] = ACTIONS(1663), - [sym_const_ident] = ACTIONS(1661), - [sym_builtin] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1661), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_tlocal] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_fn] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_var] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_defer] = ACTIONS(1661), - [anon_sym_assert] = ACTIONS(1661), - [anon_sym_nextcase] = ACTIONS(1661), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_AMP_AMP] = ACTIONS(1663), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_foreach] = ACTIONS(1661), - [anon_sym_foreach_r] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_int] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(1663), - [anon_sym_asm] = ACTIONS(1661), - [anon_sym_DOLLARassert] = ACTIONS(1661), - [anon_sym_DOLLARerror] = ACTIONS(1661), - [anon_sym_DOLLARecho] = ACTIONS(1661), - [anon_sym_DOLLARif] = ACTIONS(1661), - [anon_sym_DOLLARswitch] = ACTIONS(1661), - [anon_sym_DOLLARfor] = ACTIONS(1661), - [anon_sym_DOLLARforeach] = ACTIONS(1661), - [anon_sym_DOLLARalignof] = ACTIONS(1661), - [anon_sym_DOLLARextnameof] = ACTIONS(1661), - [anon_sym_DOLLARnameof] = ACTIONS(1661), - [anon_sym_DOLLARoffsetof] = ACTIONS(1661), - [anon_sym_DOLLARqnameof] = ACTIONS(1661), - [anon_sym_DOLLAReval] = ACTIONS(1661), - [anon_sym_DOLLARdefined] = ACTIONS(1661), - [anon_sym_DOLLARsizeof] = ACTIONS(1661), - [anon_sym_DOLLARstringify] = ACTIONS(1661), - [anon_sym_DOLLARis_const] = ACTIONS(1661), - [anon_sym_DOLLARvaconst] = ACTIONS(1661), - [anon_sym_DOLLARvaarg] = ACTIONS(1661), - [anon_sym_DOLLARvaref] = ACTIONS(1661), - [anon_sym_DOLLARvaexpr] = ACTIONS(1661), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [anon_sym_DOLLARvacount] = ACTIONS(1661), - [anon_sym_DOLLARfeature] = ACTIONS(1661), - [anon_sym_DOLLARand] = ACTIONS(1661), - [anon_sym_DOLLARor] = ACTIONS(1661), - [anon_sym_DOLLARassignable] = ACTIONS(1661), - [anon_sym_DOLLARembed] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [anon_sym_typeid] = ACTIONS(1661), - [anon_sym_LBRACE_PIPE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1661), - [anon_sym_bool] = ACTIONS(1661), - [anon_sym_char] = ACTIONS(1661), - [anon_sym_ichar] = ACTIONS(1661), - [anon_sym_short] = ACTIONS(1661), - [anon_sym_ushort] = ACTIONS(1661), - [anon_sym_uint] = ACTIONS(1661), - [anon_sym_long] = ACTIONS(1661), - [anon_sym_ulong] = ACTIONS(1661), - [anon_sym_int128] = ACTIONS(1661), - [anon_sym_uint128] = ACTIONS(1661), - [anon_sym_float] = ACTIONS(1661), - [anon_sym_double] = ACTIONS(1661), - [anon_sym_float16] = ACTIONS(1661), - [anon_sym_bfloat16] = ACTIONS(1661), - [anon_sym_float128] = ACTIONS(1661), - [anon_sym_iptr] = ACTIONS(1661), - [anon_sym_uptr] = ACTIONS(1661), - [anon_sym_isz] = ACTIONS(1661), - [anon_sym_usz] = ACTIONS(1661), - [anon_sym_anyfault] = ACTIONS(1661), - [anon_sym_any] = ACTIONS(1661), - [anon_sym_DOLLARtypeof] = ACTIONS(1661), - [anon_sym_DOLLARtypefrom] = ACTIONS(1661), - [anon_sym_DOLLARvatype] = ACTIONS(1661), - [anon_sym_DOLLARevaltype] = ACTIONS(1661), - [sym_real_literal] = ACTIONS(1663), + [sym_ct_ident] = ACTIONS(1429), + [sym_at_ident] = ACTIONS(1431), + [sym_hash_ident] = ACTIONS(1431), + [sym_type_ident] = ACTIONS(1431), + [sym_ct_type_ident] = ACTIONS(1431), + [sym_const_ident] = ACTIONS(1429), + [sym_builtin] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1429), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_tlocal] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_fn] = ACTIONS(1429), + [anon_sym_LBRACE] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_var] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_defer] = ACTIONS(1429), + [anon_sym_assert] = ACTIONS(1429), + [anon_sym_nextcase] = ACTIONS(1429), + [anon_sym_switch] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_foreach] = ACTIONS(1429), + [anon_sym_foreach_r] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_do] = ACTIONS(1429), + [anon_sym_int] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_asm] = ACTIONS(1429), + [anon_sym_DOLLARassert] = ACTIONS(1429), + [anon_sym_DOLLARerror] = ACTIONS(1429), + [anon_sym_DOLLARecho] = ACTIONS(1429), + [anon_sym_DOLLARif] = ACTIONS(1429), + [anon_sym_DOLLARendif] = ACTIONS(1429), + [anon_sym_DOLLARswitch] = ACTIONS(1429), + [anon_sym_DOLLARfor] = ACTIONS(1429), + [anon_sym_DOLLARforeach] = ACTIONS(1429), + [anon_sym_DOLLARalignof] = ACTIONS(1429), + [anon_sym_DOLLARextnameof] = ACTIONS(1429), + [anon_sym_DOLLARnameof] = ACTIONS(1429), + [anon_sym_DOLLARoffsetof] = ACTIONS(1429), + [anon_sym_DOLLARqnameof] = ACTIONS(1429), + [anon_sym_DOLLARvaconst] = ACTIONS(1429), + [anon_sym_DOLLARvaarg] = ACTIONS(1429), + [anon_sym_DOLLARvaref] = ACTIONS(1429), + [anon_sym_DOLLARvaexpr] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [anon_sym_null] = ACTIONS(1429), + [anon_sym_DOLLARvacount] = ACTIONS(1429), + [anon_sym_DOLLAReval] = ACTIONS(1429), + [anon_sym_DOLLARis_const] = ACTIONS(1429), + [anon_sym_DOLLARsizeof] = ACTIONS(1429), + [anon_sym_DOLLARstringify] = ACTIONS(1429), + [anon_sym_DOLLARappend] = ACTIONS(1429), + [anon_sym_DOLLARconcat] = ACTIONS(1429), + [anon_sym_DOLLARdefined] = ACTIONS(1429), + [anon_sym_DOLLARembed] = ACTIONS(1429), + [anon_sym_DOLLARand] = ACTIONS(1429), + [anon_sym_DOLLARor] = ACTIONS(1429), + [anon_sym_DOLLARfeature] = ACTIONS(1429), + [anon_sym_DOLLARassignable] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_DASH_DASH] = ACTIONS(1431), + [anon_sym_typeid] = ACTIONS(1429), + [anon_sym_LBRACE_PIPE] = ACTIONS(1431), + [anon_sym_void] = ACTIONS(1429), + [anon_sym_bool] = ACTIONS(1429), + [anon_sym_char] = ACTIONS(1429), + [anon_sym_ichar] = ACTIONS(1429), + [anon_sym_short] = ACTIONS(1429), + [anon_sym_ushort] = ACTIONS(1429), + [anon_sym_uint] = ACTIONS(1429), + [anon_sym_long] = ACTIONS(1429), + [anon_sym_ulong] = ACTIONS(1429), + [anon_sym_int128] = ACTIONS(1429), + [anon_sym_uint128] = ACTIONS(1429), + [anon_sym_float] = ACTIONS(1429), + [anon_sym_double] = ACTIONS(1429), + [anon_sym_float16] = ACTIONS(1429), + [anon_sym_bfloat16] = ACTIONS(1429), + [anon_sym_float128] = ACTIONS(1429), + [anon_sym_iptr] = ACTIONS(1429), + [anon_sym_uptr] = ACTIONS(1429), + [anon_sym_isz] = ACTIONS(1429), + [anon_sym_usz] = ACTIONS(1429), + [anon_sym_anyfault] = ACTIONS(1429), + [anon_sym_any] = ACTIONS(1429), + [anon_sym_DOLLARtypeof] = ACTIONS(1429), + [anon_sym_DOLLARtypefrom] = ACTIONS(1429), + [anon_sym_DOLLARevaltype] = ACTIONS(1429), + [anon_sym_DOLLARvatype] = ACTIONS(1429), + [sym_real_literal] = ACTIONS(1431), }, - [786] = { - [sym_line_comment] = STATE(786), - [sym_doc_comment] = STATE(786), - [sym_block_comment] = STATE(786), - [sym_ident] = ACTIONS(1665), - [sym_integer_literal] = ACTIONS(1667), - [anon_sym_SQUOTE] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1667), - [anon_sym_BQUOTE] = ACTIONS(1667), - [sym_bytes_literal] = ACTIONS(1667), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1665), - [sym_at_ident] = ACTIONS(1667), - [sym_hash_ident] = ACTIONS(1667), - [sym_type_ident] = ACTIONS(1667), - [sym_ct_type_ident] = ACTIONS(1667), - [sym_const_ident] = ACTIONS(1665), - [sym_builtin] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_static] = ACTIONS(1665), - [anon_sym_tlocal] = ACTIONS(1665), - [anon_sym_SEMI] = ACTIONS(1667), - [anon_sym_fn] = ACTIONS(1665), - [anon_sym_LBRACE] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1665), - [anon_sym_var] = ACTIONS(1665), - [anon_sym_return] = ACTIONS(1665), - [anon_sym_continue] = ACTIONS(1665), - [anon_sym_break] = ACTIONS(1665), - [anon_sym_defer] = ACTIONS(1665), - [anon_sym_assert] = ACTIONS(1665), - [anon_sym_nextcase] = ACTIONS(1665), - [anon_sym_switch] = ACTIONS(1665), - [anon_sym_AMP_AMP] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1665), - [anon_sym_for] = ACTIONS(1665), - [anon_sym_foreach] = ACTIONS(1665), - [anon_sym_foreach_r] = ACTIONS(1665), - [anon_sym_while] = ACTIONS(1665), - [anon_sym_do] = ACTIONS(1665), - [anon_sym_int] = ACTIONS(1665), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_asm] = ACTIONS(1665), - [anon_sym_DOLLARassert] = ACTIONS(1665), - [anon_sym_DOLLARerror] = ACTIONS(1665), - [anon_sym_DOLLARecho] = ACTIONS(1665), - [anon_sym_DOLLARif] = ACTIONS(1665), - [anon_sym_DOLLARswitch] = ACTIONS(1665), - [anon_sym_DOLLARfor] = ACTIONS(1665), - [anon_sym_DOLLARforeach] = ACTIONS(1665), - [anon_sym_DOLLARalignof] = ACTIONS(1665), - [anon_sym_DOLLARextnameof] = ACTIONS(1665), - [anon_sym_DOLLARnameof] = ACTIONS(1665), - [anon_sym_DOLLARoffsetof] = ACTIONS(1665), - [anon_sym_DOLLARqnameof] = ACTIONS(1665), - [anon_sym_DOLLAReval] = ACTIONS(1665), - [anon_sym_DOLLARdefined] = ACTIONS(1665), - [anon_sym_DOLLARsizeof] = ACTIONS(1665), - [anon_sym_DOLLARstringify] = ACTIONS(1665), - [anon_sym_DOLLARis_const] = ACTIONS(1665), - [anon_sym_DOLLARvaconst] = ACTIONS(1665), - [anon_sym_DOLLARvaarg] = ACTIONS(1665), - [anon_sym_DOLLARvaref] = ACTIONS(1665), - [anon_sym_DOLLARvaexpr] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1665), - [anon_sym_false] = ACTIONS(1665), - [anon_sym_null] = ACTIONS(1665), - [anon_sym_DOLLARvacount] = ACTIONS(1665), - [anon_sym_DOLLARfeature] = ACTIONS(1665), - [anon_sym_DOLLARand] = ACTIONS(1665), - [anon_sym_DOLLARor] = ACTIONS(1665), - [anon_sym_DOLLARassignable] = ACTIONS(1665), - [anon_sym_DOLLARembed] = ACTIONS(1665), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_typeid] = ACTIONS(1665), - [anon_sym_LBRACE_PIPE] = ACTIONS(1667), - [anon_sym_void] = ACTIONS(1665), - [anon_sym_bool] = ACTIONS(1665), - [anon_sym_char] = ACTIONS(1665), - [anon_sym_ichar] = ACTIONS(1665), - [anon_sym_short] = ACTIONS(1665), - [anon_sym_ushort] = ACTIONS(1665), - [anon_sym_uint] = ACTIONS(1665), - [anon_sym_long] = ACTIONS(1665), - [anon_sym_ulong] = ACTIONS(1665), - [anon_sym_int128] = ACTIONS(1665), - [anon_sym_uint128] = ACTIONS(1665), - [anon_sym_float] = ACTIONS(1665), - [anon_sym_double] = ACTIONS(1665), - [anon_sym_float16] = ACTIONS(1665), - [anon_sym_bfloat16] = ACTIONS(1665), - [anon_sym_float128] = ACTIONS(1665), - [anon_sym_iptr] = ACTIONS(1665), - [anon_sym_uptr] = ACTIONS(1665), - [anon_sym_isz] = ACTIONS(1665), - [anon_sym_usz] = ACTIONS(1665), - [anon_sym_anyfault] = ACTIONS(1665), - [anon_sym_any] = ACTIONS(1665), - [anon_sym_DOLLARtypeof] = ACTIONS(1665), - [anon_sym_DOLLARtypefrom] = ACTIONS(1665), - [anon_sym_DOLLARvatype] = ACTIONS(1665), - [anon_sym_DOLLARevaltype] = ACTIONS(1665), - [sym_real_literal] = ACTIONS(1667), + [761] = { + [sym_line_comment] = STATE(761), + [sym_doc_comment] = STATE(761), + [sym_block_comment] = STATE(761), + [sym_ident] = ACTIONS(1373), + [sym_integer_literal] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [anon_sym_BQUOTE] = ACTIONS(1375), + [sym_bytes_literal] = ACTIONS(1375), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1373), + [sym_at_ident] = ACTIONS(1375), + [sym_hash_ident] = ACTIONS(1375), + [sym_type_ident] = ACTIONS(1375), + [sym_ct_type_ident] = ACTIONS(1375), + [sym_const_ident] = ACTIONS(1373), + [sym_builtin] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_tlocal] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_fn] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_var] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [anon_sym_defer] = ACTIONS(1373), + [anon_sym_assert] = ACTIONS(1373), + [anon_sym_nextcase] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1373), + [anon_sym_AMP_AMP] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_foreach] = ACTIONS(1373), + [anon_sym_foreach_r] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(1373), + [anon_sym_int] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_asm] = ACTIONS(1373), + [anon_sym_DOLLARassert] = ACTIONS(1373), + [anon_sym_DOLLARerror] = ACTIONS(1373), + [anon_sym_DOLLARecho] = ACTIONS(1373), + [anon_sym_DOLLARif] = ACTIONS(1373), + [anon_sym_DOLLARswitch] = ACTIONS(1373), + [anon_sym_DOLLARfor] = ACTIONS(1373), + [anon_sym_DOLLARforeach] = ACTIONS(1373), + [anon_sym_DOLLARendforeach] = ACTIONS(1373), + [anon_sym_DOLLARalignof] = ACTIONS(1373), + [anon_sym_DOLLARextnameof] = ACTIONS(1373), + [anon_sym_DOLLARnameof] = ACTIONS(1373), + [anon_sym_DOLLARoffsetof] = ACTIONS(1373), + [anon_sym_DOLLARqnameof] = ACTIONS(1373), + [anon_sym_DOLLARvaconst] = ACTIONS(1373), + [anon_sym_DOLLARvaarg] = ACTIONS(1373), + [anon_sym_DOLLARvaref] = ACTIONS(1373), + [anon_sym_DOLLARvaexpr] = ACTIONS(1373), + [anon_sym_true] = ACTIONS(1373), + [anon_sym_false] = ACTIONS(1373), + [anon_sym_null] = ACTIONS(1373), + [anon_sym_DOLLARvacount] = ACTIONS(1373), + [anon_sym_DOLLAReval] = ACTIONS(1373), + [anon_sym_DOLLARis_const] = ACTIONS(1373), + [anon_sym_DOLLARsizeof] = ACTIONS(1373), + [anon_sym_DOLLARstringify] = ACTIONS(1373), + [anon_sym_DOLLARappend] = ACTIONS(1373), + [anon_sym_DOLLARconcat] = ACTIONS(1373), + [anon_sym_DOLLARdefined] = ACTIONS(1373), + [anon_sym_DOLLARembed] = ACTIONS(1373), + [anon_sym_DOLLARand] = ACTIONS(1373), + [anon_sym_DOLLARor] = ACTIONS(1373), + [anon_sym_DOLLARfeature] = ACTIONS(1373), + [anon_sym_DOLLARassignable] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_typeid] = ACTIONS(1373), + [anon_sym_LBRACE_PIPE] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1373), + [anon_sym_bool] = ACTIONS(1373), + [anon_sym_char] = ACTIONS(1373), + [anon_sym_ichar] = ACTIONS(1373), + [anon_sym_short] = ACTIONS(1373), + [anon_sym_ushort] = ACTIONS(1373), + [anon_sym_uint] = ACTIONS(1373), + [anon_sym_long] = ACTIONS(1373), + [anon_sym_ulong] = ACTIONS(1373), + [anon_sym_int128] = ACTIONS(1373), + [anon_sym_uint128] = ACTIONS(1373), + [anon_sym_float] = ACTIONS(1373), + [anon_sym_double] = ACTIONS(1373), + [anon_sym_float16] = ACTIONS(1373), + [anon_sym_bfloat16] = ACTIONS(1373), + [anon_sym_float128] = ACTIONS(1373), + [anon_sym_iptr] = ACTIONS(1373), + [anon_sym_uptr] = ACTIONS(1373), + [anon_sym_isz] = ACTIONS(1373), + [anon_sym_usz] = ACTIONS(1373), + [anon_sym_anyfault] = ACTIONS(1373), + [anon_sym_any] = ACTIONS(1373), + [anon_sym_DOLLARtypeof] = ACTIONS(1373), + [anon_sym_DOLLARtypefrom] = ACTIONS(1373), + [anon_sym_DOLLARevaltype] = ACTIONS(1373), + [anon_sym_DOLLARvatype] = ACTIONS(1373), + [sym_real_literal] = ACTIONS(1375), }, - [787] = { - [sym_line_comment] = STATE(787), - [sym_doc_comment] = STATE(787), - [sym_block_comment] = STATE(787), - [sym_ident] = ACTIONS(1669), - [sym_integer_literal] = ACTIONS(1671), - [anon_sym_SQUOTE] = ACTIONS(1671), - [anon_sym_DQUOTE] = ACTIONS(1671), - [anon_sym_BQUOTE] = ACTIONS(1671), - [sym_bytes_literal] = ACTIONS(1671), + [762] = { + [sym_line_comment] = STATE(762), + [sym_doc_comment] = STATE(762), + [sym_block_comment] = STATE(762), + [sym_ident] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1523), + [sym_bytes_literal] = ACTIONS(1523), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1521), + [sym_at_ident] = ACTIONS(1523), + [sym_hash_ident] = ACTIONS(1523), + [sym_type_ident] = ACTIONS(1523), + [sym_ct_type_ident] = ACTIONS(1523), + [sym_const_ident] = ACTIONS(1521), + [sym_builtin] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_tlocal] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_var] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_defer] = ACTIONS(1521), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_nextcase] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_foreach] = ACTIONS(1521), + [anon_sym_foreach_r] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_int] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_asm] = ACTIONS(1521), + [anon_sym_DOLLARassert] = ACTIONS(1521), + [anon_sym_DOLLARerror] = ACTIONS(1521), + [anon_sym_DOLLARecho] = ACTIONS(1521), + [anon_sym_DOLLARif] = ACTIONS(1521), + [anon_sym_DOLLARswitch] = ACTIONS(1521), + [anon_sym_DOLLARfor] = ACTIONS(1521), + [anon_sym_DOLLARforeach] = ACTIONS(1521), + [anon_sym_DOLLARendforeach] = ACTIONS(1521), + [anon_sym_DOLLARalignof] = ACTIONS(1521), + [anon_sym_DOLLARextnameof] = ACTIONS(1521), + [anon_sym_DOLLARnameof] = ACTIONS(1521), + [anon_sym_DOLLARoffsetof] = ACTIONS(1521), + [anon_sym_DOLLARqnameof] = ACTIONS(1521), + [anon_sym_DOLLARvaconst] = ACTIONS(1521), + [anon_sym_DOLLARvaarg] = ACTIONS(1521), + [anon_sym_DOLLARvaref] = ACTIONS(1521), + [anon_sym_DOLLARvaexpr] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [anon_sym_DOLLARvacount] = ACTIONS(1521), + [anon_sym_DOLLAReval] = ACTIONS(1521), + [anon_sym_DOLLARis_const] = ACTIONS(1521), + [anon_sym_DOLLARsizeof] = ACTIONS(1521), + [anon_sym_DOLLARstringify] = ACTIONS(1521), + [anon_sym_DOLLARappend] = ACTIONS(1521), + [anon_sym_DOLLARconcat] = ACTIONS(1521), + [anon_sym_DOLLARdefined] = ACTIONS(1521), + [anon_sym_DOLLARembed] = ACTIONS(1521), + [anon_sym_DOLLARand] = ACTIONS(1521), + [anon_sym_DOLLARor] = ACTIONS(1521), + [anon_sym_DOLLARfeature] = ACTIONS(1521), + [anon_sym_DOLLARassignable] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_typeid] = ACTIONS(1521), + [anon_sym_LBRACE_PIPE] = ACTIONS(1523), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_ichar] = ACTIONS(1521), + [anon_sym_short] = ACTIONS(1521), + [anon_sym_ushort] = ACTIONS(1521), + [anon_sym_uint] = ACTIONS(1521), + [anon_sym_long] = ACTIONS(1521), + [anon_sym_ulong] = ACTIONS(1521), + [anon_sym_int128] = ACTIONS(1521), + [anon_sym_uint128] = ACTIONS(1521), + [anon_sym_float] = ACTIONS(1521), + [anon_sym_double] = ACTIONS(1521), + [anon_sym_float16] = ACTIONS(1521), + [anon_sym_bfloat16] = ACTIONS(1521), + [anon_sym_float128] = ACTIONS(1521), + [anon_sym_iptr] = ACTIONS(1521), + [anon_sym_uptr] = ACTIONS(1521), + [anon_sym_isz] = ACTIONS(1521), + [anon_sym_usz] = ACTIONS(1521), + [anon_sym_anyfault] = ACTIONS(1521), + [anon_sym_any] = ACTIONS(1521), + [anon_sym_DOLLARtypeof] = ACTIONS(1521), + [anon_sym_DOLLARtypefrom] = ACTIONS(1521), + [anon_sym_DOLLARevaltype] = ACTIONS(1521), + [anon_sym_DOLLARvatype] = ACTIONS(1521), + [sym_real_literal] = ACTIONS(1523), + }, + [763] = { + [sym_line_comment] = STATE(763), + [sym_doc_comment] = STATE(763), + [sym_block_comment] = STATE(763), + [sym_ident] = ACTIONS(1441), + [sym_integer_literal] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(1443), + [anon_sym_BQUOTE] = ACTIONS(1443), + [sym_bytes_literal] = ACTIONS(1443), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1669), - [sym_at_ident] = ACTIONS(1671), - [sym_hash_ident] = ACTIONS(1671), - [sym_type_ident] = ACTIONS(1671), - [sym_ct_type_ident] = ACTIONS(1671), - [sym_const_ident] = ACTIONS(1669), - [sym_builtin] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1671), - [anon_sym_AMP] = ACTIONS(1669), - [anon_sym_static] = ACTIONS(1669), - [anon_sym_tlocal] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1671), - [anon_sym_fn] = ACTIONS(1669), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_var] = ACTIONS(1669), - [anon_sym_return] = ACTIONS(1669), - [anon_sym_continue] = ACTIONS(1669), - [anon_sym_break] = ACTIONS(1669), - [anon_sym_defer] = ACTIONS(1669), - [anon_sym_assert] = ACTIONS(1669), - [anon_sym_nextcase] = ACTIONS(1669), - [anon_sym_switch] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1671), - [anon_sym_if] = ACTIONS(1669), - [anon_sym_for] = ACTIONS(1669), - [anon_sym_foreach] = ACTIONS(1669), - [anon_sym_foreach_r] = ACTIONS(1669), - [anon_sym_while] = ACTIONS(1669), - [anon_sym_do] = ACTIONS(1669), - [anon_sym_int] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1671), - [anon_sym_asm] = ACTIONS(1669), - [anon_sym_DOLLARassert] = ACTIONS(1669), - [anon_sym_DOLLARerror] = ACTIONS(1669), - [anon_sym_DOLLARecho] = ACTIONS(1669), - [anon_sym_DOLLARif] = ACTIONS(1669), - [anon_sym_DOLLARswitch] = ACTIONS(1669), - [anon_sym_DOLLARfor] = ACTIONS(1669), - [anon_sym_DOLLARforeach] = ACTIONS(1669), - [anon_sym_DOLLARalignof] = ACTIONS(1669), - [anon_sym_DOLLARextnameof] = ACTIONS(1669), - [anon_sym_DOLLARnameof] = ACTIONS(1669), - [anon_sym_DOLLARoffsetof] = ACTIONS(1669), - [anon_sym_DOLLARqnameof] = ACTIONS(1669), - [anon_sym_DOLLAReval] = ACTIONS(1669), - [anon_sym_DOLLARdefined] = ACTIONS(1669), - [anon_sym_DOLLARsizeof] = ACTIONS(1669), - [anon_sym_DOLLARstringify] = ACTIONS(1669), - [anon_sym_DOLLARis_const] = ACTIONS(1669), - [anon_sym_DOLLARvaconst] = ACTIONS(1669), - [anon_sym_DOLLARvaarg] = ACTIONS(1669), - [anon_sym_DOLLARvaref] = ACTIONS(1669), - [anon_sym_DOLLARvaexpr] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [anon_sym_DOLLARvacount] = ACTIONS(1669), - [anon_sym_DOLLARfeature] = ACTIONS(1669), - [anon_sym_DOLLARand] = ACTIONS(1669), - [anon_sym_DOLLARor] = ACTIONS(1669), - [anon_sym_DOLLARassignable] = ACTIONS(1669), - [anon_sym_DOLLARembed] = ACTIONS(1669), - [anon_sym_BANG] = ACTIONS(1671), - [anon_sym_TILDE] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1671), - [anon_sym_DASH_DASH] = ACTIONS(1671), - [anon_sym_typeid] = ACTIONS(1669), - [anon_sym_LBRACE_PIPE] = ACTIONS(1671), - [anon_sym_void] = ACTIONS(1669), - [anon_sym_bool] = ACTIONS(1669), - [anon_sym_char] = ACTIONS(1669), - [anon_sym_ichar] = ACTIONS(1669), - [anon_sym_short] = ACTIONS(1669), - [anon_sym_ushort] = ACTIONS(1669), - [anon_sym_uint] = ACTIONS(1669), - [anon_sym_long] = ACTIONS(1669), - [anon_sym_ulong] = ACTIONS(1669), - [anon_sym_int128] = ACTIONS(1669), - [anon_sym_uint128] = ACTIONS(1669), - [anon_sym_float] = ACTIONS(1669), - [anon_sym_double] = ACTIONS(1669), - [anon_sym_float16] = ACTIONS(1669), - [anon_sym_bfloat16] = ACTIONS(1669), - [anon_sym_float128] = ACTIONS(1669), - [anon_sym_iptr] = ACTIONS(1669), - [anon_sym_uptr] = ACTIONS(1669), - [anon_sym_isz] = ACTIONS(1669), - [anon_sym_usz] = ACTIONS(1669), - [anon_sym_anyfault] = ACTIONS(1669), - [anon_sym_any] = ACTIONS(1669), - [anon_sym_DOLLARtypeof] = ACTIONS(1669), - [anon_sym_DOLLARtypefrom] = ACTIONS(1669), - [anon_sym_DOLLARvatype] = ACTIONS(1669), - [anon_sym_DOLLARevaltype] = ACTIONS(1669), - [sym_real_literal] = ACTIONS(1671), + [sym_ct_ident] = ACTIONS(1441), + [sym_at_ident] = ACTIONS(1443), + [sym_hash_ident] = ACTIONS(1443), + [sym_type_ident] = ACTIONS(1443), + [sym_ct_type_ident] = ACTIONS(1443), + [sym_const_ident] = ACTIONS(1441), + [sym_builtin] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_tlocal] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_const] = ACTIONS(1441), + [anon_sym_var] = ACTIONS(1441), + [anon_sym_return] = ACTIONS(1441), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_defer] = ACTIONS(1441), + [anon_sym_assert] = ACTIONS(1441), + [anon_sym_nextcase] = ACTIONS(1441), + [anon_sym_switch] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1441), + [anon_sym_for] = ACTIONS(1441), + [anon_sym_foreach] = ACTIONS(1441), + [anon_sym_foreach_r] = ACTIONS(1441), + [anon_sym_while] = ACTIONS(1441), + [anon_sym_do] = ACTIONS(1441), + [anon_sym_int] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_asm] = ACTIONS(1441), + [anon_sym_DOLLARassert] = ACTIONS(1441), + [anon_sym_DOLLARerror] = ACTIONS(1441), + [anon_sym_DOLLARecho] = ACTIONS(1441), + [anon_sym_DOLLARif] = ACTIONS(1441), + [anon_sym_DOLLARendif] = ACTIONS(1441), + [anon_sym_DOLLARswitch] = ACTIONS(1441), + [anon_sym_DOLLARfor] = ACTIONS(1441), + [anon_sym_DOLLARforeach] = ACTIONS(1441), + [anon_sym_DOLLARalignof] = ACTIONS(1441), + [anon_sym_DOLLARextnameof] = ACTIONS(1441), + [anon_sym_DOLLARnameof] = ACTIONS(1441), + [anon_sym_DOLLARoffsetof] = ACTIONS(1441), + [anon_sym_DOLLARqnameof] = ACTIONS(1441), + [anon_sym_DOLLARvaconst] = ACTIONS(1441), + [anon_sym_DOLLARvaarg] = ACTIONS(1441), + [anon_sym_DOLLARvaref] = ACTIONS(1441), + [anon_sym_DOLLARvaexpr] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [anon_sym_null] = ACTIONS(1441), + [anon_sym_DOLLARvacount] = ACTIONS(1441), + [anon_sym_DOLLAReval] = ACTIONS(1441), + [anon_sym_DOLLARis_const] = ACTIONS(1441), + [anon_sym_DOLLARsizeof] = ACTIONS(1441), + [anon_sym_DOLLARstringify] = ACTIONS(1441), + [anon_sym_DOLLARappend] = ACTIONS(1441), + [anon_sym_DOLLARconcat] = ACTIONS(1441), + [anon_sym_DOLLARdefined] = ACTIONS(1441), + [anon_sym_DOLLARembed] = ACTIONS(1441), + [anon_sym_DOLLARand] = ACTIONS(1441), + [anon_sym_DOLLARor] = ACTIONS(1441), + [anon_sym_DOLLARfeature] = ACTIONS(1441), + [anon_sym_DOLLARassignable] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_TILDE] = ACTIONS(1443), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_DASH_DASH] = ACTIONS(1443), + [anon_sym_typeid] = ACTIONS(1441), + [anon_sym_LBRACE_PIPE] = ACTIONS(1443), + [anon_sym_void] = ACTIONS(1441), + [anon_sym_bool] = ACTIONS(1441), + [anon_sym_char] = ACTIONS(1441), + [anon_sym_ichar] = ACTIONS(1441), + [anon_sym_short] = ACTIONS(1441), + [anon_sym_ushort] = ACTIONS(1441), + [anon_sym_uint] = ACTIONS(1441), + [anon_sym_long] = ACTIONS(1441), + [anon_sym_ulong] = ACTIONS(1441), + [anon_sym_int128] = ACTIONS(1441), + [anon_sym_uint128] = ACTIONS(1441), + [anon_sym_float] = ACTIONS(1441), + [anon_sym_double] = ACTIONS(1441), + [anon_sym_float16] = ACTIONS(1441), + [anon_sym_bfloat16] = ACTIONS(1441), + [anon_sym_float128] = ACTIONS(1441), + [anon_sym_iptr] = ACTIONS(1441), + [anon_sym_uptr] = ACTIONS(1441), + [anon_sym_isz] = ACTIONS(1441), + [anon_sym_usz] = ACTIONS(1441), + [anon_sym_anyfault] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_DOLLARtypeof] = ACTIONS(1441), + [anon_sym_DOLLARtypefrom] = ACTIONS(1441), + [anon_sym_DOLLARevaltype] = ACTIONS(1441), + [anon_sym_DOLLARvatype] = ACTIONS(1441), + [sym_real_literal] = ACTIONS(1443), }, - [788] = { - [sym_line_comment] = STATE(788), - [sym_doc_comment] = STATE(788), - [sym_block_comment] = STATE(788), - [sym_ident] = ACTIONS(1681), - [sym_integer_literal] = ACTIONS(1683), - [anon_sym_SQUOTE] = ACTIONS(1683), - [anon_sym_DQUOTE] = ACTIONS(1683), - [anon_sym_BQUOTE] = ACTIONS(1683), - [sym_bytes_literal] = ACTIONS(1683), + [764] = { + [sym_line_comment] = STATE(764), + [sym_doc_comment] = STATE(764), + [sym_block_comment] = STATE(764), + [sym_ident] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [anon_sym_BQUOTE] = ACTIONS(1447), + [sym_bytes_literal] = ACTIONS(1447), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1681), - [sym_at_ident] = ACTIONS(1683), - [sym_hash_ident] = ACTIONS(1683), - [sym_type_ident] = ACTIONS(1683), - [sym_ct_type_ident] = ACTIONS(1683), - [sym_const_ident] = ACTIONS(1681), - [sym_builtin] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_static] = ACTIONS(1681), - [anon_sym_tlocal] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1683), - [anon_sym_fn] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [anon_sym_var] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_defer] = ACTIONS(1681), - [anon_sym_assert] = ACTIONS(1681), - [anon_sym_nextcase] = ACTIONS(1681), - [anon_sym_switch] = ACTIONS(1681), - [anon_sym_AMP_AMP] = ACTIONS(1683), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_foreach] = ACTIONS(1681), - [anon_sym_foreach_r] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1681), - [anon_sym_int] = ACTIONS(1681), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1683), - [anon_sym_asm] = ACTIONS(1681), - [anon_sym_DOLLARassert] = ACTIONS(1681), - [anon_sym_DOLLARerror] = ACTIONS(1681), - [anon_sym_DOLLARecho] = ACTIONS(1681), - [anon_sym_DOLLARif] = ACTIONS(1681), - [anon_sym_DOLLARswitch] = ACTIONS(1681), - [anon_sym_DOLLARfor] = ACTIONS(1681), - [anon_sym_DOLLARforeach] = ACTIONS(1681), - [anon_sym_DOLLARalignof] = ACTIONS(1681), - [anon_sym_DOLLARextnameof] = ACTIONS(1681), - [anon_sym_DOLLARnameof] = ACTIONS(1681), - [anon_sym_DOLLARoffsetof] = ACTIONS(1681), - [anon_sym_DOLLARqnameof] = ACTIONS(1681), - [anon_sym_DOLLAReval] = ACTIONS(1681), - [anon_sym_DOLLARdefined] = ACTIONS(1681), - [anon_sym_DOLLARsizeof] = ACTIONS(1681), - [anon_sym_DOLLARstringify] = ACTIONS(1681), - [anon_sym_DOLLARis_const] = ACTIONS(1681), - [anon_sym_DOLLARvaconst] = ACTIONS(1681), - [anon_sym_DOLLARvaarg] = ACTIONS(1681), - [anon_sym_DOLLARvaref] = ACTIONS(1681), - [anon_sym_DOLLARvaexpr] = ACTIONS(1681), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_null] = ACTIONS(1681), - [anon_sym_DOLLARvacount] = ACTIONS(1681), - [anon_sym_DOLLARfeature] = ACTIONS(1681), - [anon_sym_DOLLARand] = ACTIONS(1681), - [anon_sym_DOLLARor] = ACTIONS(1681), - [anon_sym_DOLLARassignable] = ACTIONS(1681), - [anon_sym_DOLLARembed] = ACTIONS(1681), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_typeid] = ACTIONS(1681), - [anon_sym_LBRACE_PIPE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1681), - [anon_sym_bool] = ACTIONS(1681), - [anon_sym_char] = ACTIONS(1681), - [anon_sym_ichar] = ACTIONS(1681), - [anon_sym_short] = ACTIONS(1681), - [anon_sym_ushort] = ACTIONS(1681), - [anon_sym_uint] = ACTIONS(1681), - [anon_sym_long] = ACTIONS(1681), - [anon_sym_ulong] = ACTIONS(1681), - [anon_sym_int128] = ACTIONS(1681), - [anon_sym_uint128] = ACTIONS(1681), - [anon_sym_float] = ACTIONS(1681), - [anon_sym_double] = ACTIONS(1681), - [anon_sym_float16] = ACTIONS(1681), - [anon_sym_bfloat16] = ACTIONS(1681), - [anon_sym_float128] = ACTIONS(1681), - [anon_sym_iptr] = ACTIONS(1681), - [anon_sym_uptr] = ACTIONS(1681), - [anon_sym_isz] = ACTIONS(1681), - [anon_sym_usz] = ACTIONS(1681), - [anon_sym_anyfault] = ACTIONS(1681), - [anon_sym_any] = ACTIONS(1681), - [anon_sym_DOLLARtypeof] = ACTIONS(1681), - [anon_sym_DOLLARtypefrom] = ACTIONS(1681), - [anon_sym_DOLLARvatype] = ACTIONS(1681), - [anon_sym_DOLLARevaltype] = ACTIONS(1681), - [sym_real_literal] = ACTIONS(1683), + [sym_ct_ident] = ACTIONS(1445), + [sym_at_ident] = ACTIONS(1447), + [sym_hash_ident] = ACTIONS(1447), + [sym_type_ident] = ACTIONS(1447), + [sym_ct_type_ident] = ACTIONS(1447), + [sym_const_ident] = ACTIONS(1445), + [sym_builtin] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_tlocal] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_var] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_defer] = ACTIONS(1445), + [anon_sym_assert] = ACTIONS(1445), + [anon_sym_nextcase] = ACTIONS(1445), + [anon_sym_switch] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_foreach] = ACTIONS(1445), + [anon_sym_foreach_r] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_int] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_asm] = ACTIONS(1445), + [anon_sym_DOLLARassert] = ACTIONS(1445), + [anon_sym_DOLLARerror] = ACTIONS(1445), + [anon_sym_DOLLARecho] = ACTIONS(1445), + [anon_sym_DOLLARif] = ACTIONS(1445), + [anon_sym_DOLLARendif] = ACTIONS(1445), + [anon_sym_DOLLARswitch] = ACTIONS(1445), + [anon_sym_DOLLARfor] = ACTIONS(1445), + [anon_sym_DOLLARforeach] = ACTIONS(1445), + [anon_sym_DOLLARalignof] = ACTIONS(1445), + [anon_sym_DOLLARextnameof] = ACTIONS(1445), + [anon_sym_DOLLARnameof] = ACTIONS(1445), + [anon_sym_DOLLARoffsetof] = ACTIONS(1445), + [anon_sym_DOLLARqnameof] = ACTIONS(1445), + [anon_sym_DOLLARvaconst] = ACTIONS(1445), + [anon_sym_DOLLARvaarg] = ACTIONS(1445), + [anon_sym_DOLLARvaref] = ACTIONS(1445), + [anon_sym_DOLLARvaexpr] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_null] = ACTIONS(1445), + [anon_sym_DOLLARvacount] = ACTIONS(1445), + [anon_sym_DOLLAReval] = ACTIONS(1445), + [anon_sym_DOLLARis_const] = ACTIONS(1445), + [anon_sym_DOLLARsizeof] = ACTIONS(1445), + [anon_sym_DOLLARstringify] = ACTIONS(1445), + [anon_sym_DOLLARappend] = ACTIONS(1445), + [anon_sym_DOLLARconcat] = ACTIONS(1445), + [anon_sym_DOLLARdefined] = ACTIONS(1445), + [anon_sym_DOLLARembed] = ACTIONS(1445), + [anon_sym_DOLLARand] = ACTIONS(1445), + [anon_sym_DOLLARor] = ACTIONS(1445), + [anon_sym_DOLLARfeature] = ACTIONS(1445), + [anon_sym_DOLLARassignable] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_typeid] = ACTIONS(1445), + [anon_sym_LBRACE_PIPE] = ACTIONS(1447), + [anon_sym_void] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_ichar] = ACTIONS(1445), + [anon_sym_short] = ACTIONS(1445), + [anon_sym_ushort] = ACTIONS(1445), + [anon_sym_uint] = ACTIONS(1445), + [anon_sym_long] = ACTIONS(1445), + [anon_sym_ulong] = ACTIONS(1445), + [anon_sym_int128] = ACTIONS(1445), + [anon_sym_uint128] = ACTIONS(1445), + [anon_sym_float] = ACTIONS(1445), + [anon_sym_double] = ACTIONS(1445), + [anon_sym_float16] = ACTIONS(1445), + [anon_sym_bfloat16] = ACTIONS(1445), + [anon_sym_float128] = ACTIONS(1445), + [anon_sym_iptr] = ACTIONS(1445), + [anon_sym_uptr] = ACTIONS(1445), + [anon_sym_isz] = ACTIONS(1445), + [anon_sym_usz] = ACTIONS(1445), + [anon_sym_anyfault] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_DOLLARtypeof] = ACTIONS(1445), + [anon_sym_DOLLARtypefrom] = ACTIONS(1445), + [anon_sym_DOLLARevaltype] = ACTIONS(1445), + [anon_sym_DOLLARvatype] = ACTIONS(1445), + [sym_real_literal] = ACTIONS(1447), }, - [789] = { - [sym_line_comment] = STATE(789), - [sym_doc_comment] = STATE(789), - [sym_block_comment] = STATE(789), - [sym_ident] = ACTIONS(1693), - [sym_integer_literal] = ACTIONS(1695), - [anon_sym_SQUOTE] = ACTIONS(1695), - [anon_sym_DQUOTE] = ACTIONS(1695), - [anon_sym_BQUOTE] = ACTIONS(1695), - [sym_bytes_literal] = ACTIONS(1695), + [765] = { + [sym_line_comment] = STATE(765), + [sym_doc_comment] = STATE(765), + [sym_block_comment] = STATE(765), + [sym_ident] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1451), + [anon_sym_SQUOTE] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1451), + [anon_sym_BQUOTE] = ACTIONS(1451), + [sym_bytes_literal] = ACTIONS(1451), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1693), - [sym_at_ident] = ACTIONS(1695), - [sym_hash_ident] = ACTIONS(1695), - [sym_type_ident] = ACTIONS(1695), - [sym_ct_type_ident] = ACTIONS(1695), - [sym_const_ident] = ACTIONS(1693), - [sym_builtin] = ACTIONS(1695), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(1693), - [anon_sym_tlocal] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_fn] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_const] = ACTIONS(1693), - [anon_sym_var] = ACTIONS(1693), - [anon_sym_return] = ACTIONS(1693), - [anon_sym_continue] = ACTIONS(1693), - [anon_sym_break] = ACTIONS(1693), - [anon_sym_defer] = ACTIONS(1693), - [anon_sym_assert] = ACTIONS(1693), - [anon_sym_nextcase] = ACTIONS(1693), - [anon_sym_switch] = ACTIONS(1693), - [anon_sym_AMP_AMP] = ACTIONS(1695), - [anon_sym_if] = ACTIONS(1693), - [anon_sym_for] = ACTIONS(1693), - [anon_sym_foreach] = ACTIONS(1693), - [anon_sym_foreach_r] = ACTIONS(1693), - [anon_sym_while] = ACTIONS(1693), - [anon_sym_do] = ACTIONS(1693), - [anon_sym_int] = ACTIONS(1693), - [anon_sym_PLUS] = ACTIONS(1693), - [anon_sym_DASH] = ACTIONS(1693), - [anon_sym_STAR] = ACTIONS(1695), - [anon_sym_asm] = ACTIONS(1693), - [anon_sym_DOLLARassert] = ACTIONS(1693), - [anon_sym_DOLLARerror] = ACTIONS(1693), - [anon_sym_DOLLARecho] = ACTIONS(1693), - [anon_sym_DOLLARif] = ACTIONS(1693), - [anon_sym_DOLLARswitch] = ACTIONS(1693), - [anon_sym_DOLLARfor] = ACTIONS(1693), - [anon_sym_DOLLARforeach] = ACTIONS(1693), - [anon_sym_DOLLARalignof] = ACTIONS(1693), - [anon_sym_DOLLARextnameof] = ACTIONS(1693), - [anon_sym_DOLLARnameof] = ACTIONS(1693), - [anon_sym_DOLLARoffsetof] = ACTIONS(1693), - [anon_sym_DOLLARqnameof] = ACTIONS(1693), - [anon_sym_DOLLAReval] = ACTIONS(1693), - [anon_sym_DOLLARdefined] = ACTIONS(1693), - [anon_sym_DOLLARsizeof] = ACTIONS(1693), - [anon_sym_DOLLARstringify] = ACTIONS(1693), - [anon_sym_DOLLARis_const] = ACTIONS(1693), - [anon_sym_DOLLARvaconst] = ACTIONS(1693), - [anon_sym_DOLLARvaarg] = ACTIONS(1693), - [anon_sym_DOLLARvaref] = ACTIONS(1693), - [anon_sym_DOLLARvaexpr] = ACTIONS(1693), - [anon_sym_true] = ACTIONS(1693), - [anon_sym_false] = ACTIONS(1693), - [anon_sym_null] = ACTIONS(1693), - [anon_sym_DOLLARvacount] = ACTIONS(1693), - [anon_sym_DOLLARfeature] = ACTIONS(1693), - [anon_sym_DOLLARand] = ACTIONS(1693), - [anon_sym_DOLLARor] = ACTIONS(1693), - [anon_sym_DOLLARassignable] = ACTIONS(1693), - [anon_sym_DOLLARembed] = ACTIONS(1693), - [anon_sym_BANG] = ACTIONS(1695), - [anon_sym_TILDE] = ACTIONS(1695), - [anon_sym_PLUS_PLUS] = ACTIONS(1695), - [anon_sym_DASH_DASH] = ACTIONS(1695), - [anon_sym_typeid] = ACTIONS(1693), - [anon_sym_LBRACE_PIPE] = ACTIONS(1695), - [anon_sym_void] = ACTIONS(1693), - [anon_sym_bool] = ACTIONS(1693), - [anon_sym_char] = ACTIONS(1693), - [anon_sym_ichar] = ACTIONS(1693), - [anon_sym_short] = ACTIONS(1693), - [anon_sym_ushort] = ACTIONS(1693), - [anon_sym_uint] = ACTIONS(1693), - [anon_sym_long] = ACTIONS(1693), - [anon_sym_ulong] = ACTIONS(1693), - [anon_sym_int128] = ACTIONS(1693), - [anon_sym_uint128] = ACTIONS(1693), - [anon_sym_float] = ACTIONS(1693), - [anon_sym_double] = ACTIONS(1693), - [anon_sym_float16] = ACTIONS(1693), - [anon_sym_bfloat16] = ACTIONS(1693), - [anon_sym_float128] = ACTIONS(1693), - [anon_sym_iptr] = ACTIONS(1693), - [anon_sym_uptr] = ACTIONS(1693), - [anon_sym_isz] = ACTIONS(1693), - [anon_sym_usz] = ACTIONS(1693), - [anon_sym_anyfault] = ACTIONS(1693), - [anon_sym_any] = ACTIONS(1693), - [anon_sym_DOLLARtypeof] = ACTIONS(1693), - [anon_sym_DOLLARtypefrom] = ACTIONS(1693), - [anon_sym_DOLLARvatype] = ACTIONS(1693), - [anon_sym_DOLLARevaltype] = ACTIONS(1693), - [sym_real_literal] = ACTIONS(1695), + [sym_ct_ident] = ACTIONS(1449), + [sym_at_ident] = ACTIONS(1451), + [sym_hash_ident] = ACTIONS(1451), + [sym_type_ident] = ACTIONS(1451), + [sym_ct_type_ident] = ACTIONS(1451), + [sym_const_ident] = ACTIONS(1449), + [sym_builtin] = ACTIONS(1451), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_tlocal] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_fn] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_defer] = ACTIONS(1449), + [anon_sym_assert] = ACTIONS(1449), + [anon_sym_nextcase] = ACTIONS(1449), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_foreach] = ACTIONS(1449), + [anon_sym_foreach_r] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_int] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_asm] = ACTIONS(1449), + [anon_sym_DOLLARassert] = ACTIONS(1449), + [anon_sym_DOLLARerror] = ACTIONS(1449), + [anon_sym_DOLLARecho] = ACTIONS(1449), + [anon_sym_DOLLARif] = ACTIONS(1449), + [anon_sym_DOLLARendif] = ACTIONS(1449), + [anon_sym_DOLLARswitch] = ACTIONS(1449), + [anon_sym_DOLLARfor] = ACTIONS(1449), + [anon_sym_DOLLARforeach] = ACTIONS(1449), + [anon_sym_DOLLARalignof] = ACTIONS(1449), + [anon_sym_DOLLARextnameof] = ACTIONS(1449), + [anon_sym_DOLLARnameof] = ACTIONS(1449), + [anon_sym_DOLLARoffsetof] = ACTIONS(1449), + [anon_sym_DOLLARqnameof] = ACTIONS(1449), + [anon_sym_DOLLARvaconst] = ACTIONS(1449), + [anon_sym_DOLLARvaarg] = ACTIONS(1449), + [anon_sym_DOLLARvaref] = ACTIONS(1449), + [anon_sym_DOLLARvaexpr] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_null] = ACTIONS(1449), + [anon_sym_DOLLARvacount] = ACTIONS(1449), + [anon_sym_DOLLAReval] = ACTIONS(1449), + [anon_sym_DOLLARis_const] = ACTIONS(1449), + [anon_sym_DOLLARsizeof] = ACTIONS(1449), + [anon_sym_DOLLARstringify] = ACTIONS(1449), + [anon_sym_DOLLARappend] = ACTIONS(1449), + [anon_sym_DOLLARconcat] = ACTIONS(1449), + [anon_sym_DOLLARdefined] = ACTIONS(1449), + [anon_sym_DOLLARembed] = ACTIONS(1449), + [anon_sym_DOLLARand] = ACTIONS(1449), + [anon_sym_DOLLARor] = ACTIONS(1449), + [anon_sym_DOLLARfeature] = ACTIONS(1449), + [anon_sym_DOLLARassignable] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1451), + [anon_sym_TILDE] = ACTIONS(1451), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_DASH_DASH] = ACTIONS(1451), + [anon_sym_typeid] = ACTIONS(1449), + [anon_sym_LBRACE_PIPE] = ACTIONS(1451), + [anon_sym_void] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_ichar] = ACTIONS(1449), + [anon_sym_short] = ACTIONS(1449), + [anon_sym_ushort] = ACTIONS(1449), + [anon_sym_uint] = ACTIONS(1449), + [anon_sym_long] = ACTIONS(1449), + [anon_sym_ulong] = ACTIONS(1449), + [anon_sym_int128] = ACTIONS(1449), + [anon_sym_uint128] = ACTIONS(1449), + [anon_sym_float] = ACTIONS(1449), + [anon_sym_double] = ACTIONS(1449), + [anon_sym_float16] = ACTIONS(1449), + [anon_sym_bfloat16] = ACTIONS(1449), + [anon_sym_float128] = ACTIONS(1449), + [anon_sym_iptr] = ACTIONS(1449), + [anon_sym_uptr] = ACTIONS(1449), + [anon_sym_isz] = ACTIONS(1449), + [anon_sym_usz] = ACTIONS(1449), + [anon_sym_anyfault] = ACTIONS(1449), + [anon_sym_any] = ACTIONS(1449), + [anon_sym_DOLLARtypeof] = ACTIONS(1449), + [anon_sym_DOLLARtypefrom] = ACTIONS(1449), + [anon_sym_DOLLARevaltype] = ACTIONS(1449), + [anon_sym_DOLLARvatype] = ACTIONS(1449), + [sym_real_literal] = ACTIONS(1451), }, - [790] = { - [sym_line_comment] = STATE(790), - [sym_doc_comment] = STATE(790), - [sym_block_comment] = STATE(790), - [sym_ident] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [anon_sym_SQUOTE] = ACTIONS(1679), - [anon_sym_DQUOTE] = ACTIONS(1679), - [anon_sym_BQUOTE] = ACTIONS(1679), - [sym_bytes_literal] = ACTIONS(1679), + [766] = { + [sym_line_comment] = STATE(766), + [sym_doc_comment] = STATE(766), + [sym_block_comment] = STATE(766), + [sym_ident] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1459), + [anon_sym_BQUOTE] = ACTIONS(1459), + [sym_bytes_literal] = ACTIONS(1459), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1677), - [sym_at_ident] = ACTIONS(1679), - [sym_hash_ident] = ACTIONS(1679), - [sym_type_ident] = ACTIONS(1679), - [sym_ct_type_ident] = ACTIONS(1679), - [sym_const_ident] = ACTIONS(1677), - [sym_builtin] = ACTIONS(1679), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_AMP] = ACTIONS(1677), - [anon_sym_static] = ACTIONS(1677), - [anon_sym_tlocal] = ACTIONS(1677), - [anon_sym_SEMI] = ACTIONS(1679), - [anon_sym_fn] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_const] = ACTIONS(1677), - [anon_sym_var] = ACTIONS(1677), - [anon_sym_return] = ACTIONS(1677), - [anon_sym_continue] = ACTIONS(1677), - [anon_sym_break] = ACTIONS(1677), - [anon_sym_defer] = ACTIONS(1677), - [anon_sym_assert] = ACTIONS(1677), - [anon_sym_nextcase] = ACTIONS(1677), - [anon_sym_switch] = ACTIONS(1677), - [anon_sym_AMP_AMP] = ACTIONS(1679), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_for] = ACTIONS(1677), - [anon_sym_foreach] = ACTIONS(1677), - [anon_sym_foreach_r] = ACTIONS(1677), - [anon_sym_while] = ACTIONS(1677), - [anon_sym_do] = ACTIONS(1677), - [anon_sym_int] = ACTIONS(1677), - [anon_sym_PLUS] = ACTIONS(1677), - [anon_sym_DASH] = ACTIONS(1677), - [anon_sym_STAR] = ACTIONS(1679), - [anon_sym_asm] = ACTIONS(1677), - [anon_sym_DOLLARassert] = ACTIONS(1677), - [anon_sym_DOLLARerror] = ACTIONS(1677), - [anon_sym_DOLLARecho] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1677), - [anon_sym_DOLLARswitch] = ACTIONS(1677), - [anon_sym_DOLLARfor] = ACTIONS(1677), - [anon_sym_DOLLARforeach] = ACTIONS(1677), - [anon_sym_DOLLARalignof] = ACTIONS(1677), - [anon_sym_DOLLARextnameof] = ACTIONS(1677), - [anon_sym_DOLLARnameof] = ACTIONS(1677), - [anon_sym_DOLLARoffsetof] = ACTIONS(1677), - [anon_sym_DOLLARqnameof] = ACTIONS(1677), - [anon_sym_DOLLAReval] = ACTIONS(1677), - [anon_sym_DOLLARdefined] = ACTIONS(1677), - [anon_sym_DOLLARsizeof] = ACTIONS(1677), - [anon_sym_DOLLARstringify] = ACTIONS(1677), - [anon_sym_DOLLARis_const] = ACTIONS(1677), - [anon_sym_DOLLARvaconst] = ACTIONS(1677), - [anon_sym_DOLLARvaarg] = ACTIONS(1677), - [anon_sym_DOLLARvaref] = ACTIONS(1677), - [anon_sym_DOLLARvaexpr] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1677), - [anon_sym_false] = ACTIONS(1677), - [anon_sym_null] = ACTIONS(1677), - [anon_sym_DOLLARvacount] = ACTIONS(1677), - [anon_sym_DOLLARfeature] = ACTIONS(1677), - [anon_sym_DOLLARand] = ACTIONS(1677), - [anon_sym_DOLLARor] = ACTIONS(1677), - [anon_sym_DOLLARassignable] = ACTIONS(1677), - [anon_sym_DOLLARembed] = ACTIONS(1677), - [anon_sym_BANG] = ACTIONS(1679), - [anon_sym_TILDE] = ACTIONS(1679), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), - [anon_sym_typeid] = ACTIONS(1677), - [anon_sym_LBRACE_PIPE] = ACTIONS(1679), - [anon_sym_void] = ACTIONS(1677), - [anon_sym_bool] = ACTIONS(1677), - [anon_sym_char] = ACTIONS(1677), - [anon_sym_ichar] = ACTIONS(1677), - [anon_sym_short] = ACTIONS(1677), - [anon_sym_ushort] = ACTIONS(1677), - [anon_sym_uint] = ACTIONS(1677), - [anon_sym_long] = ACTIONS(1677), - [anon_sym_ulong] = ACTIONS(1677), - [anon_sym_int128] = ACTIONS(1677), - [anon_sym_uint128] = ACTIONS(1677), - [anon_sym_float] = ACTIONS(1677), - [anon_sym_double] = ACTIONS(1677), - [anon_sym_float16] = ACTIONS(1677), - [anon_sym_bfloat16] = ACTIONS(1677), - [anon_sym_float128] = ACTIONS(1677), - [anon_sym_iptr] = ACTIONS(1677), - [anon_sym_uptr] = ACTIONS(1677), - [anon_sym_isz] = ACTIONS(1677), - [anon_sym_usz] = ACTIONS(1677), - [anon_sym_anyfault] = ACTIONS(1677), - [anon_sym_any] = ACTIONS(1677), - [anon_sym_DOLLARtypeof] = ACTIONS(1677), - [anon_sym_DOLLARtypefrom] = ACTIONS(1677), - [anon_sym_DOLLARvatype] = ACTIONS(1677), - [anon_sym_DOLLARevaltype] = ACTIONS(1677), - [sym_real_literal] = ACTIONS(1679), + [sym_ct_ident] = ACTIONS(1457), + [sym_at_ident] = ACTIONS(1459), + [sym_hash_ident] = ACTIONS(1459), + [sym_type_ident] = ACTIONS(1459), + [sym_ct_type_ident] = ACTIONS(1459), + [sym_const_ident] = ACTIONS(1457), + [sym_builtin] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_tlocal] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_fn] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_defer] = ACTIONS(1457), + [anon_sym_assert] = ACTIONS(1457), + [anon_sym_nextcase] = ACTIONS(1457), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_foreach] = ACTIONS(1457), + [anon_sym_foreach_r] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_int] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_asm] = ACTIONS(1457), + [anon_sym_DOLLARassert] = ACTIONS(1457), + [anon_sym_DOLLARerror] = ACTIONS(1457), + [anon_sym_DOLLARecho] = ACTIONS(1457), + [anon_sym_DOLLARif] = ACTIONS(1457), + [anon_sym_DOLLARendif] = ACTIONS(1457), + [anon_sym_DOLLARswitch] = ACTIONS(1457), + [anon_sym_DOLLARfor] = ACTIONS(1457), + [anon_sym_DOLLARforeach] = ACTIONS(1457), + [anon_sym_DOLLARalignof] = ACTIONS(1457), + [anon_sym_DOLLARextnameof] = ACTIONS(1457), + [anon_sym_DOLLARnameof] = ACTIONS(1457), + [anon_sym_DOLLARoffsetof] = ACTIONS(1457), + [anon_sym_DOLLARqnameof] = ACTIONS(1457), + [anon_sym_DOLLARvaconst] = ACTIONS(1457), + [anon_sym_DOLLARvaarg] = ACTIONS(1457), + [anon_sym_DOLLARvaref] = ACTIONS(1457), + [anon_sym_DOLLARvaexpr] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_null] = ACTIONS(1457), + [anon_sym_DOLLARvacount] = ACTIONS(1457), + [anon_sym_DOLLAReval] = ACTIONS(1457), + [anon_sym_DOLLARis_const] = ACTIONS(1457), + [anon_sym_DOLLARsizeof] = ACTIONS(1457), + [anon_sym_DOLLARstringify] = ACTIONS(1457), + [anon_sym_DOLLARappend] = ACTIONS(1457), + [anon_sym_DOLLARconcat] = ACTIONS(1457), + [anon_sym_DOLLARdefined] = ACTIONS(1457), + [anon_sym_DOLLARembed] = ACTIONS(1457), + [anon_sym_DOLLARand] = ACTIONS(1457), + [anon_sym_DOLLARor] = ACTIONS(1457), + [anon_sym_DOLLARfeature] = ACTIONS(1457), + [anon_sym_DOLLARassignable] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_DASH_DASH] = ACTIONS(1459), + [anon_sym_typeid] = ACTIONS(1457), + [anon_sym_LBRACE_PIPE] = ACTIONS(1459), + [anon_sym_void] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_ichar] = ACTIONS(1457), + [anon_sym_short] = ACTIONS(1457), + [anon_sym_ushort] = ACTIONS(1457), + [anon_sym_uint] = ACTIONS(1457), + [anon_sym_long] = ACTIONS(1457), + [anon_sym_ulong] = ACTIONS(1457), + [anon_sym_int128] = ACTIONS(1457), + [anon_sym_uint128] = ACTIONS(1457), + [anon_sym_float] = ACTIONS(1457), + [anon_sym_double] = ACTIONS(1457), + [anon_sym_float16] = ACTIONS(1457), + [anon_sym_bfloat16] = ACTIONS(1457), + [anon_sym_float128] = ACTIONS(1457), + [anon_sym_iptr] = ACTIONS(1457), + [anon_sym_uptr] = ACTIONS(1457), + [anon_sym_isz] = ACTIONS(1457), + [anon_sym_usz] = ACTIONS(1457), + [anon_sym_anyfault] = ACTIONS(1457), + [anon_sym_any] = ACTIONS(1457), + [anon_sym_DOLLARtypeof] = ACTIONS(1457), + [anon_sym_DOLLARtypefrom] = ACTIONS(1457), + [anon_sym_DOLLARevaltype] = ACTIONS(1457), + [anon_sym_DOLLARvatype] = ACTIONS(1457), + [sym_real_literal] = ACTIONS(1459), + }, + [767] = { + [sym_line_comment] = STATE(767), + [sym_doc_comment] = STATE(767), + [sym_block_comment] = STATE(767), + [sym_ident] = ACTIONS(1461), + [sym_integer_literal] = ACTIONS(1463), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(1463), + [anon_sym_BQUOTE] = ACTIONS(1463), + [sym_bytes_literal] = ACTIONS(1463), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1461), + [sym_at_ident] = ACTIONS(1463), + [sym_hash_ident] = ACTIONS(1463), + [sym_type_ident] = ACTIONS(1463), + [sym_ct_type_ident] = ACTIONS(1463), + [sym_const_ident] = ACTIONS(1461), + [sym_builtin] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_static] = ACTIONS(1461), + [anon_sym_tlocal] = ACTIONS(1461), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_const] = ACTIONS(1461), + [anon_sym_var] = ACTIONS(1461), + [anon_sym_return] = ACTIONS(1461), + [anon_sym_continue] = ACTIONS(1461), + [anon_sym_break] = ACTIONS(1461), + [anon_sym_defer] = ACTIONS(1461), + [anon_sym_assert] = ACTIONS(1461), + [anon_sym_nextcase] = ACTIONS(1461), + [anon_sym_switch] = ACTIONS(1461), + [anon_sym_AMP_AMP] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1461), + [anon_sym_for] = ACTIONS(1461), + [anon_sym_foreach] = ACTIONS(1461), + [anon_sym_foreach_r] = ACTIONS(1461), + [anon_sym_while] = ACTIONS(1461), + [anon_sym_do] = ACTIONS(1461), + [anon_sym_int] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_asm] = ACTIONS(1461), + [anon_sym_DOLLARassert] = ACTIONS(1461), + [anon_sym_DOLLARerror] = ACTIONS(1461), + [anon_sym_DOLLARecho] = ACTIONS(1461), + [anon_sym_DOLLARif] = ACTIONS(1461), + [anon_sym_DOLLARendif] = ACTIONS(1461), + [anon_sym_DOLLARswitch] = ACTIONS(1461), + [anon_sym_DOLLARfor] = ACTIONS(1461), + [anon_sym_DOLLARforeach] = ACTIONS(1461), + [anon_sym_DOLLARalignof] = ACTIONS(1461), + [anon_sym_DOLLARextnameof] = ACTIONS(1461), + [anon_sym_DOLLARnameof] = ACTIONS(1461), + [anon_sym_DOLLARoffsetof] = ACTIONS(1461), + [anon_sym_DOLLARqnameof] = ACTIONS(1461), + [anon_sym_DOLLARvaconst] = ACTIONS(1461), + [anon_sym_DOLLARvaarg] = ACTIONS(1461), + [anon_sym_DOLLARvaref] = ACTIONS(1461), + [anon_sym_DOLLARvaexpr] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1461), + [anon_sym_false] = ACTIONS(1461), + [anon_sym_null] = ACTIONS(1461), + [anon_sym_DOLLARvacount] = ACTIONS(1461), + [anon_sym_DOLLAReval] = ACTIONS(1461), + [anon_sym_DOLLARis_const] = ACTIONS(1461), + [anon_sym_DOLLARsizeof] = ACTIONS(1461), + [anon_sym_DOLLARstringify] = ACTIONS(1461), + [anon_sym_DOLLARappend] = ACTIONS(1461), + [anon_sym_DOLLARconcat] = ACTIONS(1461), + [anon_sym_DOLLARdefined] = ACTIONS(1461), + [anon_sym_DOLLARembed] = ACTIONS(1461), + [anon_sym_DOLLARand] = ACTIONS(1461), + [anon_sym_DOLLARor] = ACTIONS(1461), + [anon_sym_DOLLARfeature] = ACTIONS(1461), + [anon_sym_DOLLARassignable] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_TILDE] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_DASH_DASH] = ACTIONS(1463), + [anon_sym_typeid] = ACTIONS(1461), + [anon_sym_LBRACE_PIPE] = ACTIONS(1463), + [anon_sym_void] = ACTIONS(1461), + [anon_sym_bool] = ACTIONS(1461), + [anon_sym_char] = ACTIONS(1461), + [anon_sym_ichar] = ACTIONS(1461), + [anon_sym_short] = ACTIONS(1461), + [anon_sym_ushort] = ACTIONS(1461), + [anon_sym_uint] = ACTIONS(1461), + [anon_sym_long] = ACTIONS(1461), + [anon_sym_ulong] = ACTIONS(1461), + [anon_sym_int128] = ACTIONS(1461), + [anon_sym_uint128] = ACTIONS(1461), + [anon_sym_float] = ACTIONS(1461), + [anon_sym_double] = ACTIONS(1461), + [anon_sym_float16] = ACTIONS(1461), + [anon_sym_bfloat16] = ACTIONS(1461), + [anon_sym_float128] = ACTIONS(1461), + [anon_sym_iptr] = ACTIONS(1461), + [anon_sym_uptr] = ACTIONS(1461), + [anon_sym_isz] = ACTIONS(1461), + [anon_sym_usz] = ACTIONS(1461), + [anon_sym_anyfault] = ACTIONS(1461), + [anon_sym_any] = ACTIONS(1461), + [anon_sym_DOLLARtypeof] = ACTIONS(1461), + [anon_sym_DOLLARtypefrom] = ACTIONS(1461), + [anon_sym_DOLLARevaltype] = ACTIONS(1461), + [anon_sym_DOLLARvatype] = ACTIONS(1461), + [sym_real_literal] = ACTIONS(1463), + }, + [768] = { + [sym_line_comment] = STATE(768), + [sym_doc_comment] = STATE(768), + [sym_block_comment] = STATE(768), + [sym_ident] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_DQUOTE] = ACTIONS(1475), + [anon_sym_BQUOTE] = ACTIONS(1475), + [sym_bytes_literal] = ACTIONS(1475), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1473), + [sym_at_ident] = ACTIONS(1475), + [sym_hash_ident] = ACTIONS(1475), + [sym_type_ident] = ACTIONS(1475), + [sym_ct_type_ident] = ACTIONS(1475), + [sym_const_ident] = ACTIONS(1473), + [sym_builtin] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_tlocal] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_var] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_defer] = ACTIONS(1473), + [anon_sym_assert] = ACTIONS(1473), + [anon_sym_nextcase] = ACTIONS(1473), + [anon_sym_switch] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_foreach] = ACTIONS(1473), + [anon_sym_foreach_r] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_do] = ACTIONS(1473), + [anon_sym_int] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_asm] = ACTIONS(1473), + [anon_sym_DOLLARassert] = ACTIONS(1473), + [anon_sym_DOLLARerror] = ACTIONS(1473), + [anon_sym_DOLLARecho] = ACTIONS(1473), + [anon_sym_DOLLARif] = ACTIONS(1473), + [anon_sym_DOLLARendif] = ACTIONS(1473), + [anon_sym_DOLLARswitch] = ACTIONS(1473), + [anon_sym_DOLLARfor] = ACTIONS(1473), + [anon_sym_DOLLARforeach] = ACTIONS(1473), + [anon_sym_DOLLARalignof] = ACTIONS(1473), + [anon_sym_DOLLARextnameof] = ACTIONS(1473), + [anon_sym_DOLLARnameof] = ACTIONS(1473), + [anon_sym_DOLLARoffsetof] = ACTIONS(1473), + [anon_sym_DOLLARqnameof] = ACTIONS(1473), + [anon_sym_DOLLARvaconst] = ACTIONS(1473), + [anon_sym_DOLLARvaarg] = ACTIONS(1473), + [anon_sym_DOLLARvaref] = ACTIONS(1473), + [anon_sym_DOLLARvaexpr] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_null] = ACTIONS(1473), + [anon_sym_DOLLARvacount] = ACTIONS(1473), + [anon_sym_DOLLAReval] = ACTIONS(1473), + [anon_sym_DOLLARis_const] = ACTIONS(1473), + [anon_sym_DOLLARsizeof] = ACTIONS(1473), + [anon_sym_DOLLARstringify] = ACTIONS(1473), + [anon_sym_DOLLARappend] = ACTIONS(1473), + [anon_sym_DOLLARconcat] = ACTIONS(1473), + [anon_sym_DOLLARdefined] = ACTIONS(1473), + [anon_sym_DOLLARembed] = ACTIONS(1473), + [anon_sym_DOLLARand] = ACTIONS(1473), + [anon_sym_DOLLARor] = ACTIONS(1473), + [anon_sym_DOLLARfeature] = ACTIONS(1473), + [anon_sym_DOLLARassignable] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_DASH_DASH] = ACTIONS(1475), + [anon_sym_typeid] = ACTIONS(1473), + [anon_sym_LBRACE_PIPE] = ACTIONS(1475), + [anon_sym_void] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_ichar] = ACTIONS(1473), + [anon_sym_short] = ACTIONS(1473), + [anon_sym_ushort] = ACTIONS(1473), + [anon_sym_uint] = ACTIONS(1473), + [anon_sym_long] = ACTIONS(1473), + [anon_sym_ulong] = ACTIONS(1473), + [anon_sym_int128] = ACTIONS(1473), + [anon_sym_uint128] = ACTIONS(1473), + [anon_sym_float] = ACTIONS(1473), + [anon_sym_double] = ACTIONS(1473), + [anon_sym_float16] = ACTIONS(1473), + [anon_sym_bfloat16] = ACTIONS(1473), + [anon_sym_float128] = ACTIONS(1473), + [anon_sym_iptr] = ACTIONS(1473), + [anon_sym_uptr] = ACTIONS(1473), + [anon_sym_isz] = ACTIONS(1473), + [anon_sym_usz] = ACTIONS(1473), + [anon_sym_anyfault] = ACTIONS(1473), + [anon_sym_any] = ACTIONS(1473), + [anon_sym_DOLLARtypeof] = ACTIONS(1473), + [anon_sym_DOLLARtypefrom] = ACTIONS(1473), + [anon_sym_DOLLARevaltype] = ACTIONS(1473), + [anon_sym_DOLLARvatype] = ACTIONS(1473), + [sym_real_literal] = ACTIONS(1475), + }, + [769] = { + [sym_line_comment] = STATE(769), + [sym_doc_comment] = STATE(769), + [sym_block_comment] = STATE(769), + [sym_ident] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(1479), + [anon_sym_BQUOTE] = ACTIONS(1479), + [sym_bytes_literal] = ACTIONS(1479), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1477), + [sym_at_ident] = ACTIONS(1479), + [sym_hash_ident] = ACTIONS(1479), + [sym_type_ident] = ACTIONS(1479), + [sym_ct_type_ident] = ACTIONS(1479), + [sym_const_ident] = ACTIONS(1477), + [sym_builtin] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_tlocal] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_var] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_defer] = ACTIONS(1477), + [anon_sym_assert] = ACTIONS(1477), + [anon_sym_nextcase] = ACTIONS(1477), + [anon_sym_switch] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_foreach] = ACTIONS(1477), + [anon_sym_foreach_r] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_do] = ACTIONS(1477), + [anon_sym_int] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_asm] = ACTIONS(1477), + [anon_sym_DOLLARassert] = ACTIONS(1477), + [anon_sym_DOLLARerror] = ACTIONS(1477), + [anon_sym_DOLLARecho] = ACTIONS(1477), + [anon_sym_DOLLARif] = ACTIONS(1477), + [anon_sym_DOLLARendif] = ACTIONS(1477), + [anon_sym_DOLLARswitch] = ACTIONS(1477), + [anon_sym_DOLLARfor] = ACTIONS(1477), + [anon_sym_DOLLARforeach] = ACTIONS(1477), + [anon_sym_DOLLARalignof] = ACTIONS(1477), + [anon_sym_DOLLARextnameof] = ACTIONS(1477), + [anon_sym_DOLLARnameof] = ACTIONS(1477), + [anon_sym_DOLLARoffsetof] = ACTIONS(1477), + [anon_sym_DOLLARqnameof] = ACTIONS(1477), + [anon_sym_DOLLARvaconst] = ACTIONS(1477), + [anon_sym_DOLLARvaarg] = ACTIONS(1477), + [anon_sym_DOLLARvaref] = ACTIONS(1477), + [anon_sym_DOLLARvaexpr] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_null] = ACTIONS(1477), + [anon_sym_DOLLARvacount] = ACTIONS(1477), + [anon_sym_DOLLAReval] = ACTIONS(1477), + [anon_sym_DOLLARis_const] = ACTIONS(1477), + [anon_sym_DOLLARsizeof] = ACTIONS(1477), + [anon_sym_DOLLARstringify] = ACTIONS(1477), + [anon_sym_DOLLARappend] = ACTIONS(1477), + [anon_sym_DOLLARconcat] = ACTIONS(1477), + [anon_sym_DOLLARdefined] = ACTIONS(1477), + [anon_sym_DOLLARembed] = ACTIONS(1477), + [anon_sym_DOLLARand] = ACTIONS(1477), + [anon_sym_DOLLARor] = ACTIONS(1477), + [anon_sym_DOLLARfeature] = ACTIONS(1477), + [anon_sym_DOLLARassignable] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_TILDE] = ACTIONS(1479), + [anon_sym_PLUS_PLUS] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1479), + [anon_sym_typeid] = ACTIONS(1477), + [anon_sym_LBRACE_PIPE] = ACTIONS(1479), + [anon_sym_void] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_ichar] = ACTIONS(1477), + [anon_sym_short] = ACTIONS(1477), + [anon_sym_ushort] = ACTIONS(1477), + [anon_sym_uint] = ACTIONS(1477), + [anon_sym_long] = ACTIONS(1477), + [anon_sym_ulong] = ACTIONS(1477), + [anon_sym_int128] = ACTIONS(1477), + [anon_sym_uint128] = ACTIONS(1477), + [anon_sym_float] = ACTIONS(1477), + [anon_sym_double] = ACTIONS(1477), + [anon_sym_float16] = ACTIONS(1477), + [anon_sym_bfloat16] = ACTIONS(1477), + [anon_sym_float128] = ACTIONS(1477), + [anon_sym_iptr] = ACTIONS(1477), + [anon_sym_uptr] = ACTIONS(1477), + [anon_sym_isz] = ACTIONS(1477), + [anon_sym_usz] = ACTIONS(1477), + [anon_sym_anyfault] = ACTIONS(1477), + [anon_sym_any] = ACTIONS(1477), + [anon_sym_DOLLARtypeof] = ACTIONS(1477), + [anon_sym_DOLLARtypefrom] = ACTIONS(1477), + [anon_sym_DOLLARevaltype] = ACTIONS(1477), + [anon_sym_DOLLARvatype] = ACTIONS(1477), + [sym_real_literal] = ACTIONS(1479), + }, + [770] = { + [sym_line_comment] = STATE(770), + [sym_doc_comment] = STATE(770), + [sym_block_comment] = STATE(770), + [sym_ident] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1483), + [anon_sym_BQUOTE] = ACTIONS(1483), + [sym_bytes_literal] = ACTIONS(1483), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1481), + [sym_at_ident] = ACTIONS(1483), + [sym_hash_ident] = ACTIONS(1483), + [sym_type_ident] = ACTIONS(1483), + [sym_ct_type_ident] = ACTIONS(1483), + [sym_const_ident] = ACTIONS(1481), + [sym_builtin] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_tlocal] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_var] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_defer] = ACTIONS(1481), + [anon_sym_assert] = ACTIONS(1481), + [anon_sym_nextcase] = ACTIONS(1481), + [anon_sym_switch] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_foreach] = ACTIONS(1481), + [anon_sym_foreach_r] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_do] = ACTIONS(1481), + [anon_sym_int] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_asm] = ACTIONS(1481), + [anon_sym_DOLLARassert] = ACTIONS(1481), + [anon_sym_DOLLARerror] = ACTIONS(1481), + [anon_sym_DOLLARecho] = ACTIONS(1481), + [anon_sym_DOLLARif] = ACTIONS(1481), + [anon_sym_DOLLARendif] = ACTIONS(1481), + [anon_sym_DOLLARswitch] = ACTIONS(1481), + [anon_sym_DOLLARfor] = ACTIONS(1481), + [anon_sym_DOLLARforeach] = ACTIONS(1481), + [anon_sym_DOLLARalignof] = ACTIONS(1481), + [anon_sym_DOLLARextnameof] = ACTIONS(1481), + [anon_sym_DOLLARnameof] = ACTIONS(1481), + [anon_sym_DOLLARoffsetof] = ACTIONS(1481), + [anon_sym_DOLLARqnameof] = ACTIONS(1481), + [anon_sym_DOLLARvaconst] = ACTIONS(1481), + [anon_sym_DOLLARvaarg] = ACTIONS(1481), + [anon_sym_DOLLARvaref] = ACTIONS(1481), + [anon_sym_DOLLARvaexpr] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_null] = ACTIONS(1481), + [anon_sym_DOLLARvacount] = ACTIONS(1481), + [anon_sym_DOLLAReval] = ACTIONS(1481), + [anon_sym_DOLLARis_const] = ACTIONS(1481), + [anon_sym_DOLLARsizeof] = ACTIONS(1481), + [anon_sym_DOLLARstringify] = ACTIONS(1481), + [anon_sym_DOLLARappend] = ACTIONS(1481), + [anon_sym_DOLLARconcat] = ACTIONS(1481), + [anon_sym_DOLLARdefined] = ACTIONS(1481), + [anon_sym_DOLLARembed] = ACTIONS(1481), + [anon_sym_DOLLARand] = ACTIONS(1481), + [anon_sym_DOLLARor] = ACTIONS(1481), + [anon_sym_DOLLARfeature] = ACTIONS(1481), + [anon_sym_DOLLARassignable] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(1483), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_typeid] = ACTIONS(1481), + [anon_sym_LBRACE_PIPE] = ACTIONS(1483), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_ichar] = ACTIONS(1481), + [anon_sym_short] = ACTIONS(1481), + [anon_sym_ushort] = ACTIONS(1481), + [anon_sym_uint] = ACTIONS(1481), + [anon_sym_long] = ACTIONS(1481), + [anon_sym_ulong] = ACTIONS(1481), + [anon_sym_int128] = ACTIONS(1481), + [anon_sym_uint128] = ACTIONS(1481), + [anon_sym_float] = ACTIONS(1481), + [anon_sym_double] = ACTIONS(1481), + [anon_sym_float16] = ACTIONS(1481), + [anon_sym_bfloat16] = ACTIONS(1481), + [anon_sym_float128] = ACTIONS(1481), + [anon_sym_iptr] = ACTIONS(1481), + [anon_sym_uptr] = ACTIONS(1481), + [anon_sym_isz] = ACTIONS(1481), + [anon_sym_usz] = ACTIONS(1481), + [anon_sym_anyfault] = ACTIONS(1481), + [anon_sym_any] = ACTIONS(1481), + [anon_sym_DOLLARtypeof] = ACTIONS(1481), + [anon_sym_DOLLARtypefrom] = ACTIONS(1481), + [anon_sym_DOLLARevaltype] = ACTIONS(1481), + [anon_sym_DOLLARvatype] = ACTIONS(1481), + [sym_real_literal] = ACTIONS(1483), + }, + [771] = { + [sym_line_comment] = STATE(771), + [sym_doc_comment] = STATE(771), + [sym_block_comment] = STATE(771), + [sym_ident] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [anon_sym_BQUOTE] = ACTIONS(1487), + [sym_bytes_literal] = ACTIONS(1487), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1485), + [sym_at_ident] = ACTIONS(1487), + [sym_hash_ident] = ACTIONS(1487), + [sym_type_ident] = ACTIONS(1487), + [sym_ct_type_ident] = ACTIONS(1487), + [sym_const_ident] = ACTIONS(1485), + [sym_builtin] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_tlocal] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_fn] = ACTIONS(1485), + [anon_sym_LBRACE] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_var] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_defer] = ACTIONS(1485), + [anon_sym_assert] = ACTIONS(1485), + [anon_sym_nextcase] = ACTIONS(1485), + [anon_sym_switch] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_foreach] = ACTIONS(1485), + [anon_sym_foreach_r] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_do] = ACTIONS(1485), + [anon_sym_int] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1487), + [anon_sym_asm] = ACTIONS(1485), + [anon_sym_DOLLARassert] = ACTIONS(1485), + [anon_sym_DOLLARerror] = ACTIONS(1485), + [anon_sym_DOLLARecho] = ACTIONS(1485), + [anon_sym_DOLLARif] = ACTIONS(1485), + [anon_sym_DOLLARendif] = ACTIONS(1485), + [anon_sym_DOLLARswitch] = ACTIONS(1485), + [anon_sym_DOLLARfor] = ACTIONS(1485), + [anon_sym_DOLLARforeach] = ACTIONS(1485), + [anon_sym_DOLLARalignof] = ACTIONS(1485), + [anon_sym_DOLLARextnameof] = ACTIONS(1485), + [anon_sym_DOLLARnameof] = ACTIONS(1485), + [anon_sym_DOLLARoffsetof] = ACTIONS(1485), + [anon_sym_DOLLARqnameof] = ACTIONS(1485), + [anon_sym_DOLLARvaconst] = ACTIONS(1485), + [anon_sym_DOLLARvaarg] = ACTIONS(1485), + [anon_sym_DOLLARvaref] = ACTIONS(1485), + [anon_sym_DOLLARvaexpr] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [anon_sym_null] = ACTIONS(1485), + [anon_sym_DOLLARvacount] = ACTIONS(1485), + [anon_sym_DOLLAReval] = ACTIONS(1485), + [anon_sym_DOLLARis_const] = ACTIONS(1485), + [anon_sym_DOLLARsizeof] = ACTIONS(1485), + [anon_sym_DOLLARstringify] = ACTIONS(1485), + [anon_sym_DOLLARappend] = ACTIONS(1485), + [anon_sym_DOLLARconcat] = ACTIONS(1485), + [anon_sym_DOLLARdefined] = ACTIONS(1485), + [anon_sym_DOLLARembed] = ACTIONS(1485), + [anon_sym_DOLLARand] = ACTIONS(1485), + [anon_sym_DOLLARor] = ACTIONS(1485), + [anon_sym_DOLLARfeature] = ACTIONS(1485), + [anon_sym_DOLLARassignable] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1487), + [anon_sym_TILDE] = ACTIONS(1487), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_DASH_DASH] = ACTIONS(1487), + [anon_sym_typeid] = ACTIONS(1485), + [anon_sym_LBRACE_PIPE] = ACTIONS(1487), + [anon_sym_void] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_ichar] = ACTIONS(1485), + [anon_sym_short] = ACTIONS(1485), + [anon_sym_ushort] = ACTIONS(1485), + [anon_sym_uint] = ACTIONS(1485), + [anon_sym_long] = ACTIONS(1485), + [anon_sym_ulong] = ACTIONS(1485), + [anon_sym_int128] = ACTIONS(1485), + [anon_sym_uint128] = ACTIONS(1485), + [anon_sym_float] = ACTIONS(1485), + [anon_sym_double] = ACTIONS(1485), + [anon_sym_float16] = ACTIONS(1485), + [anon_sym_bfloat16] = ACTIONS(1485), + [anon_sym_float128] = ACTIONS(1485), + [anon_sym_iptr] = ACTIONS(1485), + [anon_sym_uptr] = ACTIONS(1485), + [anon_sym_isz] = ACTIONS(1485), + [anon_sym_usz] = ACTIONS(1485), + [anon_sym_anyfault] = ACTIONS(1485), + [anon_sym_any] = ACTIONS(1485), + [anon_sym_DOLLARtypeof] = ACTIONS(1485), + [anon_sym_DOLLARtypefrom] = ACTIONS(1485), + [anon_sym_DOLLARevaltype] = ACTIONS(1485), + [anon_sym_DOLLARvatype] = ACTIONS(1485), + [sym_real_literal] = ACTIONS(1487), + }, + [772] = { + [sym_line_comment] = STATE(772), + [sym_doc_comment] = STATE(772), + [sym_block_comment] = STATE(772), + [sym_ident] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(1491), + [anon_sym_BQUOTE] = ACTIONS(1491), + [sym_bytes_literal] = ACTIONS(1491), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1489), + [sym_at_ident] = ACTIONS(1491), + [sym_hash_ident] = ACTIONS(1491), + [sym_type_ident] = ACTIONS(1491), + [sym_ct_type_ident] = ACTIONS(1491), + [sym_const_ident] = ACTIONS(1489), + [sym_builtin] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_tlocal] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_var] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_defer] = ACTIONS(1489), + [anon_sym_assert] = ACTIONS(1489), + [anon_sym_nextcase] = ACTIONS(1489), + [anon_sym_switch] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_foreach] = ACTIONS(1489), + [anon_sym_foreach_r] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_do] = ACTIONS(1489), + [anon_sym_int] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1491), + [anon_sym_asm] = ACTIONS(1489), + [anon_sym_DOLLARassert] = ACTIONS(1489), + [anon_sym_DOLLARerror] = ACTIONS(1489), + [anon_sym_DOLLARecho] = ACTIONS(1489), + [anon_sym_DOLLARif] = ACTIONS(1489), + [anon_sym_DOLLARendif] = ACTIONS(1489), + [anon_sym_DOLLARswitch] = ACTIONS(1489), + [anon_sym_DOLLARfor] = ACTIONS(1489), + [anon_sym_DOLLARforeach] = ACTIONS(1489), + [anon_sym_DOLLARalignof] = ACTIONS(1489), + [anon_sym_DOLLARextnameof] = ACTIONS(1489), + [anon_sym_DOLLARnameof] = ACTIONS(1489), + [anon_sym_DOLLARoffsetof] = ACTIONS(1489), + [anon_sym_DOLLARqnameof] = ACTIONS(1489), + [anon_sym_DOLLARvaconst] = ACTIONS(1489), + [anon_sym_DOLLARvaarg] = ACTIONS(1489), + [anon_sym_DOLLARvaref] = ACTIONS(1489), + [anon_sym_DOLLARvaexpr] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_null] = ACTIONS(1489), + [anon_sym_DOLLARvacount] = ACTIONS(1489), + [anon_sym_DOLLAReval] = ACTIONS(1489), + [anon_sym_DOLLARis_const] = ACTIONS(1489), + [anon_sym_DOLLARsizeof] = ACTIONS(1489), + [anon_sym_DOLLARstringify] = ACTIONS(1489), + [anon_sym_DOLLARappend] = ACTIONS(1489), + [anon_sym_DOLLARconcat] = ACTIONS(1489), + [anon_sym_DOLLARdefined] = ACTIONS(1489), + [anon_sym_DOLLARembed] = ACTIONS(1489), + [anon_sym_DOLLARand] = ACTIONS(1489), + [anon_sym_DOLLARor] = ACTIONS(1489), + [anon_sym_DOLLARfeature] = ACTIONS(1489), + [anon_sym_DOLLARassignable] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1491), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_DASH_DASH] = ACTIONS(1491), + [anon_sym_typeid] = ACTIONS(1489), + [anon_sym_LBRACE_PIPE] = ACTIONS(1491), + [anon_sym_void] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_ichar] = ACTIONS(1489), + [anon_sym_short] = ACTIONS(1489), + [anon_sym_ushort] = ACTIONS(1489), + [anon_sym_uint] = ACTIONS(1489), + [anon_sym_long] = ACTIONS(1489), + [anon_sym_ulong] = ACTIONS(1489), + [anon_sym_int128] = ACTIONS(1489), + [anon_sym_uint128] = ACTIONS(1489), + [anon_sym_float] = ACTIONS(1489), + [anon_sym_double] = ACTIONS(1489), + [anon_sym_float16] = ACTIONS(1489), + [anon_sym_bfloat16] = ACTIONS(1489), + [anon_sym_float128] = ACTIONS(1489), + [anon_sym_iptr] = ACTIONS(1489), + [anon_sym_uptr] = ACTIONS(1489), + [anon_sym_isz] = ACTIONS(1489), + [anon_sym_usz] = ACTIONS(1489), + [anon_sym_anyfault] = ACTIONS(1489), + [anon_sym_any] = ACTIONS(1489), + [anon_sym_DOLLARtypeof] = ACTIONS(1489), + [anon_sym_DOLLARtypefrom] = ACTIONS(1489), + [anon_sym_DOLLARevaltype] = ACTIONS(1489), + [anon_sym_DOLLARvatype] = ACTIONS(1489), + [sym_real_literal] = ACTIONS(1491), + }, + [773] = { + [sym_line_comment] = STATE(773), + [sym_doc_comment] = STATE(773), + [sym_block_comment] = STATE(773), + [sym_ident] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1495), + [anon_sym_BQUOTE] = ACTIONS(1495), + [sym_bytes_literal] = ACTIONS(1495), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1493), + [sym_at_ident] = ACTIONS(1495), + [sym_hash_ident] = ACTIONS(1495), + [sym_type_ident] = ACTIONS(1495), + [sym_ct_type_ident] = ACTIONS(1495), + [sym_const_ident] = ACTIONS(1493), + [sym_builtin] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_tlocal] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_LBRACE] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_var] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_defer] = ACTIONS(1493), + [anon_sym_assert] = ACTIONS(1493), + [anon_sym_nextcase] = ACTIONS(1493), + [anon_sym_switch] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_foreach] = ACTIONS(1493), + [anon_sym_foreach_r] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_do] = ACTIONS(1493), + [anon_sym_int] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_asm] = ACTIONS(1493), + [anon_sym_DOLLARassert] = ACTIONS(1493), + [anon_sym_DOLLARerror] = ACTIONS(1493), + [anon_sym_DOLLARecho] = ACTIONS(1493), + [anon_sym_DOLLARif] = ACTIONS(1493), + [anon_sym_DOLLARendif] = ACTIONS(1493), + [anon_sym_DOLLARswitch] = ACTIONS(1493), + [anon_sym_DOLLARfor] = ACTIONS(1493), + [anon_sym_DOLLARforeach] = ACTIONS(1493), + [anon_sym_DOLLARalignof] = ACTIONS(1493), + [anon_sym_DOLLARextnameof] = ACTIONS(1493), + [anon_sym_DOLLARnameof] = ACTIONS(1493), + [anon_sym_DOLLARoffsetof] = ACTIONS(1493), + [anon_sym_DOLLARqnameof] = ACTIONS(1493), + [anon_sym_DOLLARvaconst] = ACTIONS(1493), + [anon_sym_DOLLARvaarg] = ACTIONS(1493), + [anon_sym_DOLLARvaref] = ACTIONS(1493), + [anon_sym_DOLLARvaexpr] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_null] = ACTIONS(1493), + [anon_sym_DOLLARvacount] = ACTIONS(1493), + [anon_sym_DOLLAReval] = ACTIONS(1493), + [anon_sym_DOLLARis_const] = ACTIONS(1493), + [anon_sym_DOLLARsizeof] = ACTIONS(1493), + [anon_sym_DOLLARstringify] = ACTIONS(1493), + [anon_sym_DOLLARappend] = ACTIONS(1493), + [anon_sym_DOLLARconcat] = ACTIONS(1493), + [anon_sym_DOLLARdefined] = ACTIONS(1493), + [anon_sym_DOLLARembed] = ACTIONS(1493), + [anon_sym_DOLLARand] = ACTIONS(1493), + [anon_sym_DOLLARor] = ACTIONS(1493), + [anon_sym_DOLLARfeature] = ACTIONS(1493), + [anon_sym_DOLLARassignable] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1495), + [anon_sym_TILDE] = ACTIONS(1495), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_DASH_DASH] = ACTIONS(1495), + [anon_sym_typeid] = ACTIONS(1493), + [anon_sym_LBRACE_PIPE] = ACTIONS(1495), + [anon_sym_void] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_ichar] = ACTIONS(1493), + [anon_sym_short] = ACTIONS(1493), + [anon_sym_ushort] = ACTIONS(1493), + [anon_sym_uint] = ACTIONS(1493), + [anon_sym_long] = ACTIONS(1493), + [anon_sym_ulong] = ACTIONS(1493), + [anon_sym_int128] = ACTIONS(1493), + [anon_sym_uint128] = ACTIONS(1493), + [anon_sym_float] = ACTIONS(1493), + [anon_sym_double] = ACTIONS(1493), + [anon_sym_float16] = ACTIONS(1493), + [anon_sym_bfloat16] = ACTIONS(1493), + [anon_sym_float128] = ACTIONS(1493), + [anon_sym_iptr] = ACTIONS(1493), + [anon_sym_uptr] = ACTIONS(1493), + [anon_sym_isz] = ACTIONS(1493), + [anon_sym_usz] = ACTIONS(1493), + [anon_sym_anyfault] = ACTIONS(1493), + [anon_sym_any] = ACTIONS(1493), + [anon_sym_DOLLARtypeof] = ACTIONS(1493), + [anon_sym_DOLLARtypefrom] = ACTIONS(1493), + [anon_sym_DOLLARevaltype] = ACTIONS(1493), + [anon_sym_DOLLARvatype] = ACTIONS(1493), + [sym_real_literal] = ACTIONS(1495), + }, + [774] = { + [sym_line_comment] = STATE(774), + [sym_doc_comment] = STATE(774), + [sym_block_comment] = STATE(774), + [sym_ident] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [anon_sym_BQUOTE] = ACTIONS(1499), + [sym_bytes_literal] = ACTIONS(1499), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1497), + [sym_at_ident] = ACTIONS(1499), + [sym_hash_ident] = ACTIONS(1499), + [sym_type_ident] = ACTIONS(1499), + [sym_ct_type_ident] = ACTIONS(1499), + [sym_const_ident] = ACTIONS(1497), + [sym_builtin] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_tlocal] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_var] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_defer] = ACTIONS(1497), + [anon_sym_assert] = ACTIONS(1497), + [anon_sym_nextcase] = ACTIONS(1497), + [anon_sym_switch] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_foreach] = ACTIONS(1497), + [anon_sym_foreach_r] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_int] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1499), + [anon_sym_asm] = ACTIONS(1497), + [anon_sym_DOLLARassert] = ACTIONS(1497), + [anon_sym_DOLLARerror] = ACTIONS(1497), + [anon_sym_DOLLARecho] = ACTIONS(1497), + [anon_sym_DOLLARif] = ACTIONS(1497), + [anon_sym_DOLLARendif] = ACTIONS(1497), + [anon_sym_DOLLARswitch] = ACTIONS(1497), + [anon_sym_DOLLARfor] = ACTIONS(1497), + [anon_sym_DOLLARforeach] = ACTIONS(1497), + [anon_sym_DOLLARalignof] = ACTIONS(1497), + [anon_sym_DOLLARextnameof] = ACTIONS(1497), + [anon_sym_DOLLARnameof] = ACTIONS(1497), + [anon_sym_DOLLARoffsetof] = ACTIONS(1497), + [anon_sym_DOLLARqnameof] = ACTIONS(1497), + [anon_sym_DOLLARvaconst] = ACTIONS(1497), + [anon_sym_DOLLARvaarg] = ACTIONS(1497), + [anon_sym_DOLLARvaref] = ACTIONS(1497), + [anon_sym_DOLLARvaexpr] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_DOLLARvacount] = ACTIONS(1497), + [anon_sym_DOLLAReval] = ACTIONS(1497), + [anon_sym_DOLLARis_const] = ACTIONS(1497), + [anon_sym_DOLLARsizeof] = ACTIONS(1497), + [anon_sym_DOLLARstringify] = ACTIONS(1497), + [anon_sym_DOLLARappend] = ACTIONS(1497), + [anon_sym_DOLLARconcat] = ACTIONS(1497), + [anon_sym_DOLLARdefined] = ACTIONS(1497), + [anon_sym_DOLLARembed] = ACTIONS(1497), + [anon_sym_DOLLARand] = ACTIONS(1497), + [anon_sym_DOLLARor] = ACTIONS(1497), + [anon_sym_DOLLARfeature] = ACTIONS(1497), + [anon_sym_DOLLARassignable] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_TILDE] = ACTIONS(1499), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_DASH_DASH] = ACTIONS(1499), + [anon_sym_typeid] = ACTIONS(1497), + [anon_sym_LBRACE_PIPE] = ACTIONS(1499), + [anon_sym_void] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_ichar] = ACTIONS(1497), + [anon_sym_short] = ACTIONS(1497), + [anon_sym_ushort] = ACTIONS(1497), + [anon_sym_uint] = ACTIONS(1497), + [anon_sym_long] = ACTIONS(1497), + [anon_sym_ulong] = ACTIONS(1497), + [anon_sym_int128] = ACTIONS(1497), + [anon_sym_uint128] = ACTIONS(1497), + [anon_sym_float] = ACTIONS(1497), + [anon_sym_double] = ACTIONS(1497), + [anon_sym_float16] = ACTIONS(1497), + [anon_sym_bfloat16] = ACTIONS(1497), + [anon_sym_float128] = ACTIONS(1497), + [anon_sym_iptr] = ACTIONS(1497), + [anon_sym_uptr] = ACTIONS(1497), + [anon_sym_isz] = ACTIONS(1497), + [anon_sym_usz] = ACTIONS(1497), + [anon_sym_anyfault] = ACTIONS(1497), + [anon_sym_any] = ACTIONS(1497), + [anon_sym_DOLLARtypeof] = ACTIONS(1497), + [anon_sym_DOLLARtypefrom] = ACTIONS(1497), + [anon_sym_DOLLARevaltype] = ACTIONS(1497), + [anon_sym_DOLLARvatype] = ACTIONS(1497), + [sym_real_literal] = ACTIONS(1499), + }, + [775] = { + [sym_line_comment] = STATE(775), + [sym_doc_comment] = STATE(775), + [sym_block_comment] = STATE(775), + [sym_ident] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(1503), + [anon_sym_BQUOTE] = ACTIONS(1503), + [sym_bytes_literal] = ACTIONS(1503), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1501), + [sym_at_ident] = ACTIONS(1503), + [sym_hash_ident] = ACTIONS(1503), + [sym_type_ident] = ACTIONS(1503), + [sym_ct_type_ident] = ACTIONS(1503), + [sym_const_ident] = ACTIONS(1501), + [sym_builtin] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_tlocal] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_LBRACE] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_var] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_defer] = ACTIONS(1501), + [anon_sym_assert] = ACTIONS(1501), + [anon_sym_nextcase] = ACTIONS(1501), + [anon_sym_switch] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_foreach] = ACTIONS(1501), + [anon_sym_foreach_r] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_do] = ACTIONS(1501), + [anon_sym_int] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1503), + [anon_sym_asm] = ACTIONS(1501), + [anon_sym_DOLLARassert] = ACTIONS(1501), + [anon_sym_DOLLARerror] = ACTIONS(1501), + [anon_sym_DOLLARecho] = ACTIONS(1501), + [anon_sym_DOLLARif] = ACTIONS(1501), + [anon_sym_DOLLARendif] = ACTIONS(1501), + [anon_sym_DOLLARswitch] = ACTIONS(1501), + [anon_sym_DOLLARfor] = ACTIONS(1501), + [anon_sym_DOLLARforeach] = ACTIONS(1501), + [anon_sym_DOLLARalignof] = ACTIONS(1501), + [anon_sym_DOLLARextnameof] = ACTIONS(1501), + [anon_sym_DOLLARnameof] = ACTIONS(1501), + [anon_sym_DOLLARoffsetof] = ACTIONS(1501), + [anon_sym_DOLLARqnameof] = ACTIONS(1501), + [anon_sym_DOLLARvaconst] = ACTIONS(1501), + [anon_sym_DOLLARvaarg] = ACTIONS(1501), + [anon_sym_DOLLARvaref] = ACTIONS(1501), + [anon_sym_DOLLARvaexpr] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_null] = ACTIONS(1501), + [anon_sym_DOLLARvacount] = ACTIONS(1501), + [anon_sym_DOLLAReval] = ACTIONS(1501), + [anon_sym_DOLLARis_const] = ACTIONS(1501), + [anon_sym_DOLLARsizeof] = ACTIONS(1501), + [anon_sym_DOLLARstringify] = ACTIONS(1501), + [anon_sym_DOLLARappend] = ACTIONS(1501), + [anon_sym_DOLLARconcat] = ACTIONS(1501), + [anon_sym_DOLLARdefined] = ACTIONS(1501), + [anon_sym_DOLLARembed] = ACTIONS(1501), + [anon_sym_DOLLARand] = ACTIONS(1501), + [anon_sym_DOLLARor] = ACTIONS(1501), + [anon_sym_DOLLARfeature] = ACTIONS(1501), + [anon_sym_DOLLARassignable] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1503), + [anon_sym_TILDE] = ACTIONS(1503), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_typeid] = ACTIONS(1501), + [anon_sym_LBRACE_PIPE] = ACTIONS(1503), + [anon_sym_void] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_ichar] = ACTIONS(1501), + [anon_sym_short] = ACTIONS(1501), + [anon_sym_ushort] = ACTIONS(1501), + [anon_sym_uint] = ACTIONS(1501), + [anon_sym_long] = ACTIONS(1501), + [anon_sym_ulong] = ACTIONS(1501), + [anon_sym_int128] = ACTIONS(1501), + [anon_sym_uint128] = ACTIONS(1501), + [anon_sym_float] = ACTIONS(1501), + [anon_sym_double] = ACTIONS(1501), + [anon_sym_float16] = ACTIONS(1501), + [anon_sym_bfloat16] = ACTIONS(1501), + [anon_sym_float128] = ACTIONS(1501), + [anon_sym_iptr] = ACTIONS(1501), + [anon_sym_uptr] = ACTIONS(1501), + [anon_sym_isz] = ACTIONS(1501), + [anon_sym_usz] = ACTIONS(1501), + [anon_sym_anyfault] = ACTIONS(1501), + [anon_sym_any] = ACTIONS(1501), + [anon_sym_DOLLARtypeof] = ACTIONS(1501), + [anon_sym_DOLLARtypefrom] = ACTIONS(1501), + [anon_sym_DOLLARevaltype] = ACTIONS(1501), + [anon_sym_DOLLARvatype] = ACTIONS(1501), + [sym_real_literal] = ACTIONS(1503), + }, + [776] = { + [sym_line_comment] = STATE(776), + [sym_doc_comment] = STATE(776), + [sym_block_comment] = STATE(776), + [sym_ident] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1507), + [anon_sym_BQUOTE] = ACTIONS(1507), + [sym_bytes_literal] = ACTIONS(1507), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1505), + [sym_at_ident] = ACTIONS(1507), + [sym_hash_ident] = ACTIONS(1507), + [sym_type_ident] = ACTIONS(1507), + [sym_ct_type_ident] = ACTIONS(1507), + [sym_const_ident] = ACTIONS(1505), + [sym_builtin] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_tlocal] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_LBRACE] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_var] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_defer] = ACTIONS(1505), + [anon_sym_assert] = ACTIONS(1505), + [anon_sym_nextcase] = ACTIONS(1505), + [anon_sym_switch] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(1505), + [anon_sym_foreach_r] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_do] = ACTIONS(1505), + [anon_sym_int] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1507), + [anon_sym_asm] = ACTIONS(1505), + [anon_sym_DOLLARassert] = ACTIONS(1505), + [anon_sym_DOLLARerror] = ACTIONS(1505), + [anon_sym_DOLLARecho] = ACTIONS(1505), + [anon_sym_DOLLARif] = ACTIONS(1505), + [anon_sym_DOLLARendif] = ACTIONS(1505), + [anon_sym_DOLLARswitch] = ACTIONS(1505), + [anon_sym_DOLLARfor] = ACTIONS(1505), + [anon_sym_DOLLARforeach] = ACTIONS(1505), + [anon_sym_DOLLARalignof] = ACTIONS(1505), + [anon_sym_DOLLARextnameof] = ACTIONS(1505), + [anon_sym_DOLLARnameof] = ACTIONS(1505), + [anon_sym_DOLLARoffsetof] = ACTIONS(1505), + [anon_sym_DOLLARqnameof] = ACTIONS(1505), + [anon_sym_DOLLARvaconst] = ACTIONS(1505), + [anon_sym_DOLLARvaarg] = ACTIONS(1505), + [anon_sym_DOLLARvaref] = ACTIONS(1505), + [anon_sym_DOLLARvaexpr] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_null] = ACTIONS(1505), + [anon_sym_DOLLARvacount] = ACTIONS(1505), + [anon_sym_DOLLAReval] = ACTIONS(1505), + [anon_sym_DOLLARis_const] = ACTIONS(1505), + [anon_sym_DOLLARsizeof] = ACTIONS(1505), + [anon_sym_DOLLARstringify] = ACTIONS(1505), + [anon_sym_DOLLARappend] = ACTIONS(1505), + [anon_sym_DOLLARconcat] = ACTIONS(1505), + [anon_sym_DOLLARdefined] = ACTIONS(1505), + [anon_sym_DOLLARembed] = ACTIONS(1505), + [anon_sym_DOLLARand] = ACTIONS(1505), + [anon_sym_DOLLARor] = ACTIONS(1505), + [anon_sym_DOLLARfeature] = ACTIONS(1505), + [anon_sym_DOLLARassignable] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1507), + [anon_sym_TILDE] = ACTIONS(1507), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_DASH_DASH] = ACTIONS(1507), + [anon_sym_typeid] = ACTIONS(1505), + [anon_sym_LBRACE_PIPE] = ACTIONS(1507), + [anon_sym_void] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_ichar] = ACTIONS(1505), + [anon_sym_short] = ACTIONS(1505), + [anon_sym_ushort] = ACTIONS(1505), + [anon_sym_uint] = ACTIONS(1505), + [anon_sym_long] = ACTIONS(1505), + [anon_sym_ulong] = ACTIONS(1505), + [anon_sym_int128] = ACTIONS(1505), + [anon_sym_uint128] = ACTIONS(1505), + [anon_sym_float] = ACTIONS(1505), + [anon_sym_double] = ACTIONS(1505), + [anon_sym_float16] = ACTIONS(1505), + [anon_sym_bfloat16] = ACTIONS(1505), + [anon_sym_float128] = ACTIONS(1505), + [anon_sym_iptr] = ACTIONS(1505), + [anon_sym_uptr] = ACTIONS(1505), + [anon_sym_isz] = ACTIONS(1505), + [anon_sym_usz] = ACTIONS(1505), + [anon_sym_anyfault] = ACTIONS(1505), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_DOLLARtypeof] = ACTIONS(1505), + [anon_sym_DOLLARtypefrom] = ACTIONS(1505), + [anon_sym_DOLLARevaltype] = ACTIONS(1505), + [anon_sym_DOLLARvatype] = ACTIONS(1505), + [sym_real_literal] = ACTIONS(1507), + }, + [777] = { + [sym_line_comment] = STATE(777), + [sym_doc_comment] = STATE(777), + [sym_block_comment] = STATE(777), + [sym_ident] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1519), + [anon_sym_BQUOTE] = ACTIONS(1519), + [sym_bytes_literal] = ACTIONS(1519), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1517), + [sym_at_ident] = ACTIONS(1519), + [sym_hash_ident] = ACTIONS(1519), + [sym_type_ident] = ACTIONS(1519), + [sym_ct_type_ident] = ACTIONS(1519), + [sym_const_ident] = ACTIONS(1517), + [sym_builtin] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_tlocal] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_fn] = ACTIONS(1517), + [anon_sym_LBRACE] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_var] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_defer] = ACTIONS(1517), + [anon_sym_assert] = ACTIONS(1517), + [anon_sym_nextcase] = ACTIONS(1517), + [anon_sym_switch] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_foreach] = ACTIONS(1517), + [anon_sym_foreach_r] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_do] = ACTIONS(1517), + [anon_sym_int] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_asm] = ACTIONS(1517), + [anon_sym_DOLLARassert] = ACTIONS(1517), + [anon_sym_DOLLARerror] = ACTIONS(1517), + [anon_sym_DOLLARecho] = ACTIONS(1517), + [anon_sym_DOLLARif] = ACTIONS(1517), + [anon_sym_DOLLARendif] = ACTIONS(1517), + [anon_sym_DOLLARswitch] = ACTIONS(1517), + [anon_sym_DOLLARfor] = ACTIONS(1517), + [anon_sym_DOLLARforeach] = ACTIONS(1517), + [anon_sym_DOLLARalignof] = ACTIONS(1517), + [anon_sym_DOLLARextnameof] = ACTIONS(1517), + [anon_sym_DOLLARnameof] = ACTIONS(1517), + [anon_sym_DOLLARoffsetof] = ACTIONS(1517), + [anon_sym_DOLLARqnameof] = ACTIONS(1517), + [anon_sym_DOLLARvaconst] = ACTIONS(1517), + [anon_sym_DOLLARvaarg] = ACTIONS(1517), + [anon_sym_DOLLARvaref] = ACTIONS(1517), + [anon_sym_DOLLARvaexpr] = ACTIONS(1517), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_null] = ACTIONS(1517), + [anon_sym_DOLLARvacount] = ACTIONS(1517), + [anon_sym_DOLLAReval] = ACTIONS(1517), + [anon_sym_DOLLARis_const] = ACTIONS(1517), + [anon_sym_DOLLARsizeof] = ACTIONS(1517), + [anon_sym_DOLLARstringify] = ACTIONS(1517), + [anon_sym_DOLLARappend] = ACTIONS(1517), + [anon_sym_DOLLARconcat] = ACTIONS(1517), + [anon_sym_DOLLARdefined] = ACTIONS(1517), + [anon_sym_DOLLARembed] = ACTIONS(1517), + [anon_sym_DOLLARand] = ACTIONS(1517), + [anon_sym_DOLLARor] = ACTIONS(1517), + [anon_sym_DOLLARfeature] = ACTIONS(1517), + [anon_sym_DOLLARassignable] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1519), + [anon_sym_PLUS_PLUS] = ACTIONS(1519), + [anon_sym_DASH_DASH] = ACTIONS(1519), + [anon_sym_typeid] = ACTIONS(1517), + [anon_sym_LBRACE_PIPE] = ACTIONS(1519), + [anon_sym_void] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_ichar] = ACTIONS(1517), + [anon_sym_short] = ACTIONS(1517), + [anon_sym_ushort] = ACTIONS(1517), + [anon_sym_uint] = ACTIONS(1517), + [anon_sym_long] = ACTIONS(1517), + [anon_sym_ulong] = ACTIONS(1517), + [anon_sym_int128] = ACTIONS(1517), + [anon_sym_uint128] = ACTIONS(1517), + [anon_sym_float] = ACTIONS(1517), + [anon_sym_double] = ACTIONS(1517), + [anon_sym_float16] = ACTIONS(1517), + [anon_sym_bfloat16] = ACTIONS(1517), + [anon_sym_float128] = ACTIONS(1517), + [anon_sym_iptr] = ACTIONS(1517), + [anon_sym_uptr] = ACTIONS(1517), + [anon_sym_isz] = ACTIONS(1517), + [anon_sym_usz] = ACTIONS(1517), + [anon_sym_anyfault] = ACTIONS(1517), + [anon_sym_any] = ACTIONS(1517), + [anon_sym_DOLLARtypeof] = ACTIONS(1517), + [anon_sym_DOLLARtypefrom] = ACTIONS(1517), + [anon_sym_DOLLARevaltype] = ACTIONS(1517), + [anon_sym_DOLLARvatype] = ACTIONS(1517), + [sym_real_literal] = ACTIONS(1519), + }, + [778] = { + [sym_line_comment] = STATE(778), + [sym_doc_comment] = STATE(778), + [sym_block_comment] = STATE(778), + [sym_ident] = ACTIONS(1651), + [sym_integer_literal] = ACTIONS(1653), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(1653), + [anon_sym_BQUOTE] = ACTIONS(1653), + [sym_bytes_literal] = ACTIONS(1653), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1651), + [sym_at_ident] = ACTIONS(1653), + [sym_hash_ident] = ACTIONS(1653), + [sym_type_ident] = ACTIONS(1653), + [sym_ct_type_ident] = ACTIONS(1653), + [sym_const_ident] = ACTIONS(1651), + [sym_builtin] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(1651), + [anon_sym_static] = ACTIONS(1651), + [anon_sym_tlocal] = ACTIONS(1651), + [anon_sym_SEMI] = ACTIONS(1653), + [anon_sym_fn] = ACTIONS(1651), + [anon_sym_LBRACE] = ACTIONS(1651), + [anon_sym_const] = ACTIONS(1651), + [anon_sym_var] = ACTIONS(1651), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_continue] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1651), + [anon_sym_defer] = ACTIONS(1651), + [anon_sym_assert] = ACTIONS(1651), + [anon_sym_nextcase] = ACTIONS(1651), + [anon_sym_switch] = ACTIONS(1651), + [anon_sym_AMP_AMP] = ACTIONS(1653), + [anon_sym_if] = ACTIONS(1651), + [anon_sym_for] = ACTIONS(1651), + [anon_sym_foreach] = ACTIONS(1651), + [anon_sym_foreach_r] = ACTIONS(1651), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1651), + [anon_sym_int] = ACTIONS(1651), + [anon_sym_PLUS] = ACTIONS(1651), + [anon_sym_DASH] = ACTIONS(1651), + [anon_sym_STAR] = ACTIONS(1653), + [anon_sym_asm] = ACTIONS(1651), + [anon_sym_DOLLARassert] = ACTIONS(1651), + [anon_sym_DOLLARerror] = ACTIONS(1651), + [anon_sym_DOLLARecho] = ACTIONS(1651), + [anon_sym_DOLLARif] = ACTIONS(1651), + [anon_sym_DOLLARendif] = ACTIONS(1651), + [anon_sym_DOLLARswitch] = ACTIONS(1651), + [anon_sym_DOLLARfor] = ACTIONS(1651), + [anon_sym_DOLLARforeach] = ACTIONS(1651), + [anon_sym_DOLLARalignof] = ACTIONS(1651), + [anon_sym_DOLLARextnameof] = ACTIONS(1651), + [anon_sym_DOLLARnameof] = ACTIONS(1651), + [anon_sym_DOLLARoffsetof] = ACTIONS(1651), + [anon_sym_DOLLARqnameof] = ACTIONS(1651), + [anon_sym_DOLLARvaconst] = ACTIONS(1651), + [anon_sym_DOLLARvaarg] = ACTIONS(1651), + [anon_sym_DOLLARvaref] = ACTIONS(1651), + [anon_sym_DOLLARvaexpr] = ACTIONS(1651), + [anon_sym_true] = ACTIONS(1651), + [anon_sym_false] = ACTIONS(1651), + [anon_sym_null] = ACTIONS(1651), + [anon_sym_DOLLARvacount] = ACTIONS(1651), + [anon_sym_DOLLAReval] = ACTIONS(1651), + [anon_sym_DOLLARis_const] = ACTIONS(1651), + [anon_sym_DOLLARsizeof] = ACTIONS(1651), + [anon_sym_DOLLARstringify] = ACTIONS(1651), + [anon_sym_DOLLARappend] = ACTIONS(1651), + [anon_sym_DOLLARconcat] = ACTIONS(1651), + [anon_sym_DOLLARdefined] = ACTIONS(1651), + [anon_sym_DOLLARembed] = ACTIONS(1651), + [anon_sym_DOLLARand] = ACTIONS(1651), + [anon_sym_DOLLARor] = ACTIONS(1651), + [anon_sym_DOLLARfeature] = ACTIONS(1651), + [anon_sym_DOLLARassignable] = ACTIONS(1651), + [anon_sym_BANG] = ACTIONS(1653), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_typeid] = ACTIONS(1651), + [anon_sym_LBRACE_PIPE] = ACTIONS(1653), + [anon_sym_void] = ACTIONS(1651), + [anon_sym_bool] = ACTIONS(1651), + [anon_sym_char] = ACTIONS(1651), + [anon_sym_ichar] = ACTIONS(1651), + [anon_sym_short] = ACTIONS(1651), + [anon_sym_ushort] = ACTIONS(1651), + [anon_sym_uint] = ACTIONS(1651), + [anon_sym_long] = ACTIONS(1651), + [anon_sym_ulong] = ACTIONS(1651), + [anon_sym_int128] = ACTIONS(1651), + [anon_sym_uint128] = ACTIONS(1651), + [anon_sym_float] = ACTIONS(1651), + [anon_sym_double] = ACTIONS(1651), + [anon_sym_float16] = ACTIONS(1651), + [anon_sym_bfloat16] = ACTIONS(1651), + [anon_sym_float128] = ACTIONS(1651), + [anon_sym_iptr] = ACTIONS(1651), + [anon_sym_uptr] = ACTIONS(1651), + [anon_sym_isz] = ACTIONS(1651), + [anon_sym_usz] = ACTIONS(1651), + [anon_sym_anyfault] = ACTIONS(1651), + [anon_sym_any] = ACTIONS(1651), + [anon_sym_DOLLARtypeof] = ACTIONS(1651), + [anon_sym_DOLLARtypefrom] = ACTIONS(1651), + [anon_sym_DOLLARevaltype] = ACTIONS(1651), + [anon_sym_DOLLARvatype] = ACTIONS(1651), + [sym_real_literal] = ACTIONS(1653), + }, + [779] = { + [sym_line_comment] = STATE(779), + [sym_doc_comment] = STATE(779), + [sym_block_comment] = STATE(779), + [sym_ident] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), + [anon_sym_BQUOTE] = ACTIONS(1527), + [sym_bytes_literal] = ACTIONS(1527), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1525), + [sym_at_ident] = ACTIONS(1527), + [sym_hash_ident] = ACTIONS(1527), + [sym_type_ident] = ACTIONS(1527), + [sym_ct_type_ident] = ACTIONS(1527), + [sym_const_ident] = ACTIONS(1525), + [sym_builtin] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_tlocal] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_fn] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_var] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_defer] = ACTIONS(1525), + [anon_sym_assert] = ACTIONS(1525), + [anon_sym_nextcase] = ACTIONS(1525), + [anon_sym_switch] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_foreach] = ACTIONS(1525), + [anon_sym_foreach_r] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_int] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_asm] = ACTIONS(1525), + [anon_sym_DOLLARassert] = ACTIONS(1525), + [anon_sym_DOLLARerror] = ACTIONS(1525), + [anon_sym_DOLLARecho] = ACTIONS(1525), + [anon_sym_DOLLARif] = ACTIONS(1525), + [anon_sym_DOLLARendif] = ACTIONS(1525), + [anon_sym_DOLLARswitch] = ACTIONS(1525), + [anon_sym_DOLLARfor] = ACTIONS(1525), + [anon_sym_DOLLARforeach] = ACTIONS(1525), + [anon_sym_DOLLARalignof] = ACTIONS(1525), + [anon_sym_DOLLARextnameof] = ACTIONS(1525), + [anon_sym_DOLLARnameof] = ACTIONS(1525), + [anon_sym_DOLLARoffsetof] = ACTIONS(1525), + [anon_sym_DOLLARqnameof] = ACTIONS(1525), + [anon_sym_DOLLARvaconst] = ACTIONS(1525), + [anon_sym_DOLLARvaarg] = ACTIONS(1525), + [anon_sym_DOLLARvaref] = ACTIONS(1525), + [anon_sym_DOLLARvaexpr] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1525), + [anon_sym_DOLLARvacount] = ACTIONS(1525), + [anon_sym_DOLLAReval] = ACTIONS(1525), + [anon_sym_DOLLARis_const] = ACTIONS(1525), + [anon_sym_DOLLARsizeof] = ACTIONS(1525), + [anon_sym_DOLLARstringify] = ACTIONS(1525), + [anon_sym_DOLLARappend] = ACTIONS(1525), + [anon_sym_DOLLARconcat] = ACTIONS(1525), + [anon_sym_DOLLARdefined] = ACTIONS(1525), + [anon_sym_DOLLARembed] = ACTIONS(1525), + [anon_sym_DOLLARand] = ACTIONS(1525), + [anon_sym_DOLLARor] = ACTIONS(1525), + [anon_sym_DOLLARfeature] = ACTIONS(1525), + [anon_sym_DOLLARassignable] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1527), + [anon_sym_PLUS_PLUS] = ACTIONS(1527), + [anon_sym_DASH_DASH] = ACTIONS(1527), + [anon_sym_typeid] = ACTIONS(1525), + [anon_sym_LBRACE_PIPE] = ACTIONS(1527), + [anon_sym_void] = ACTIONS(1525), + [anon_sym_bool] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_ichar] = ACTIONS(1525), + [anon_sym_short] = ACTIONS(1525), + [anon_sym_ushort] = ACTIONS(1525), + [anon_sym_uint] = ACTIONS(1525), + [anon_sym_long] = ACTIONS(1525), + [anon_sym_ulong] = ACTIONS(1525), + [anon_sym_int128] = ACTIONS(1525), + [anon_sym_uint128] = ACTIONS(1525), + [anon_sym_float] = ACTIONS(1525), + [anon_sym_double] = ACTIONS(1525), + [anon_sym_float16] = ACTIONS(1525), + [anon_sym_bfloat16] = ACTIONS(1525), + [anon_sym_float128] = ACTIONS(1525), + [anon_sym_iptr] = ACTIONS(1525), + [anon_sym_uptr] = ACTIONS(1525), + [anon_sym_isz] = ACTIONS(1525), + [anon_sym_usz] = ACTIONS(1525), + [anon_sym_anyfault] = ACTIONS(1525), + [anon_sym_any] = ACTIONS(1525), + [anon_sym_DOLLARtypeof] = ACTIONS(1525), + [anon_sym_DOLLARtypefrom] = ACTIONS(1525), + [anon_sym_DOLLARevaltype] = ACTIONS(1525), + [anon_sym_DOLLARvatype] = ACTIONS(1525), + [sym_real_literal] = ACTIONS(1527), + }, + [780] = { + [sym_line_comment] = STATE(780), + [sym_doc_comment] = STATE(780), + [sym_block_comment] = STATE(780), + [sym_ident] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_BQUOTE] = ACTIONS(1543), + [sym_bytes_literal] = ACTIONS(1543), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1541), + [sym_at_ident] = ACTIONS(1543), + [sym_hash_ident] = ACTIONS(1543), + [sym_type_ident] = ACTIONS(1543), + [sym_ct_type_ident] = ACTIONS(1543), + [sym_const_ident] = ACTIONS(1541), + [sym_builtin] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_tlocal] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_var] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_defer] = ACTIONS(1541), + [anon_sym_assert] = ACTIONS(1541), + [anon_sym_nextcase] = ACTIONS(1541), + [anon_sym_switch] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_foreach] = ACTIONS(1541), + [anon_sym_foreach_r] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_do] = ACTIONS(1541), + [anon_sym_int] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_asm] = ACTIONS(1541), + [anon_sym_DOLLARassert] = ACTIONS(1541), + [anon_sym_DOLLARerror] = ACTIONS(1541), + [anon_sym_DOLLARecho] = ACTIONS(1541), + [anon_sym_DOLLARif] = ACTIONS(1541), + [anon_sym_DOLLARendif] = ACTIONS(1541), + [anon_sym_DOLLARswitch] = ACTIONS(1541), + [anon_sym_DOLLARfor] = ACTIONS(1541), + [anon_sym_DOLLARforeach] = ACTIONS(1541), + [anon_sym_DOLLARalignof] = ACTIONS(1541), + [anon_sym_DOLLARextnameof] = ACTIONS(1541), + [anon_sym_DOLLARnameof] = ACTIONS(1541), + [anon_sym_DOLLARoffsetof] = ACTIONS(1541), + [anon_sym_DOLLARqnameof] = ACTIONS(1541), + [anon_sym_DOLLARvaconst] = ACTIONS(1541), + [anon_sym_DOLLARvaarg] = ACTIONS(1541), + [anon_sym_DOLLARvaref] = ACTIONS(1541), + [anon_sym_DOLLARvaexpr] = ACTIONS(1541), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_null] = ACTIONS(1541), + [anon_sym_DOLLARvacount] = ACTIONS(1541), + [anon_sym_DOLLAReval] = ACTIONS(1541), + [anon_sym_DOLLARis_const] = ACTIONS(1541), + [anon_sym_DOLLARsizeof] = ACTIONS(1541), + [anon_sym_DOLLARstringify] = ACTIONS(1541), + [anon_sym_DOLLARappend] = ACTIONS(1541), + [anon_sym_DOLLARconcat] = ACTIONS(1541), + [anon_sym_DOLLARdefined] = ACTIONS(1541), + [anon_sym_DOLLARembed] = ACTIONS(1541), + [anon_sym_DOLLARand] = ACTIONS(1541), + [anon_sym_DOLLARor] = ACTIONS(1541), + [anon_sym_DOLLARfeature] = ACTIONS(1541), + [anon_sym_DOLLARassignable] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_TILDE] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1543), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_typeid] = ACTIONS(1541), + [anon_sym_LBRACE_PIPE] = ACTIONS(1543), + [anon_sym_void] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_ichar] = ACTIONS(1541), + [anon_sym_short] = ACTIONS(1541), + [anon_sym_ushort] = ACTIONS(1541), + [anon_sym_uint] = ACTIONS(1541), + [anon_sym_long] = ACTIONS(1541), + [anon_sym_ulong] = ACTIONS(1541), + [anon_sym_int128] = ACTIONS(1541), + [anon_sym_uint128] = ACTIONS(1541), + [anon_sym_float] = ACTIONS(1541), + [anon_sym_double] = ACTIONS(1541), + [anon_sym_float16] = ACTIONS(1541), + [anon_sym_bfloat16] = ACTIONS(1541), + [anon_sym_float128] = ACTIONS(1541), + [anon_sym_iptr] = ACTIONS(1541), + [anon_sym_uptr] = ACTIONS(1541), + [anon_sym_isz] = ACTIONS(1541), + [anon_sym_usz] = ACTIONS(1541), + [anon_sym_anyfault] = ACTIONS(1541), + [anon_sym_any] = ACTIONS(1541), + [anon_sym_DOLLARtypeof] = ACTIONS(1541), + [anon_sym_DOLLARtypefrom] = ACTIONS(1541), + [anon_sym_DOLLARevaltype] = ACTIONS(1541), + [anon_sym_DOLLARvatype] = ACTIONS(1541), + [sym_real_literal] = ACTIONS(1543), + }, + [781] = { + [sym_line_comment] = STATE(781), + [sym_doc_comment] = STATE(781), + [sym_block_comment] = STATE(781), + [sym_ident] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1547), + [anon_sym_BQUOTE] = ACTIONS(1547), + [sym_bytes_literal] = ACTIONS(1547), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1545), + [sym_at_ident] = ACTIONS(1547), + [sym_hash_ident] = ACTIONS(1547), + [sym_type_ident] = ACTIONS(1547), + [sym_ct_type_ident] = ACTIONS(1547), + [sym_const_ident] = ACTIONS(1545), + [sym_builtin] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_tlocal] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_fn] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_var] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_defer] = ACTIONS(1545), + [anon_sym_assert] = ACTIONS(1545), + [anon_sym_nextcase] = ACTIONS(1545), + [anon_sym_switch] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_foreach] = ACTIONS(1545), + [anon_sym_foreach_r] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_do] = ACTIONS(1545), + [anon_sym_int] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1547), + [anon_sym_asm] = ACTIONS(1545), + [anon_sym_DOLLARassert] = ACTIONS(1545), + [anon_sym_DOLLARerror] = ACTIONS(1545), + [anon_sym_DOLLARecho] = ACTIONS(1545), + [anon_sym_DOLLARif] = ACTIONS(1545), + [anon_sym_DOLLARendif] = ACTIONS(1545), + [anon_sym_DOLLARswitch] = ACTIONS(1545), + [anon_sym_DOLLARfor] = ACTIONS(1545), + [anon_sym_DOLLARforeach] = ACTIONS(1545), + [anon_sym_DOLLARalignof] = ACTIONS(1545), + [anon_sym_DOLLARextnameof] = ACTIONS(1545), + [anon_sym_DOLLARnameof] = ACTIONS(1545), + [anon_sym_DOLLARoffsetof] = ACTIONS(1545), + [anon_sym_DOLLARqnameof] = ACTIONS(1545), + [anon_sym_DOLLARvaconst] = ACTIONS(1545), + [anon_sym_DOLLARvaarg] = ACTIONS(1545), + [anon_sym_DOLLARvaref] = ACTIONS(1545), + [anon_sym_DOLLARvaexpr] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_null] = ACTIONS(1545), + [anon_sym_DOLLARvacount] = ACTIONS(1545), + [anon_sym_DOLLAReval] = ACTIONS(1545), + [anon_sym_DOLLARis_const] = ACTIONS(1545), + [anon_sym_DOLLARsizeof] = ACTIONS(1545), + [anon_sym_DOLLARstringify] = ACTIONS(1545), + [anon_sym_DOLLARappend] = ACTIONS(1545), + [anon_sym_DOLLARconcat] = ACTIONS(1545), + [anon_sym_DOLLARdefined] = ACTIONS(1545), + [anon_sym_DOLLARembed] = ACTIONS(1545), + [anon_sym_DOLLARand] = ACTIONS(1545), + [anon_sym_DOLLARor] = ACTIONS(1545), + [anon_sym_DOLLARfeature] = ACTIONS(1545), + [anon_sym_DOLLARassignable] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_TILDE] = ACTIONS(1547), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_DASH_DASH] = ACTIONS(1547), + [anon_sym_typeid] = ACTIONS(1545), + [anon_sym_LBRACE_PIPE] = ACTIONS(1547), + [anon_sym_void] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_ichar] = ACTIONS(1545), + [anon_sym_short] = ACTIONS(1545), + [anon_sym_ushort] = ACTIONS(1545), + [anon_sym_uint] = ACTIONS(1545), + [anon_sym_long] = ACTIONS(1545), + [anon_sym_ulong] = ACTIONS(1545), + [anon_sym_int128] = ACTIONS(1545), + [anon_sym_uint128] = ACTIONS(1545), + [anon_sym_float] = ACTIONS(1545), + [anon_sym_double] = ACTIONS(1545), + [anon_sym_float16] = ACTIONS(1545), + [anon_sym_bfloat16] = ACTIONS(1545), + [anon_sym_float128] = ACTIONS(1545), + [anon_sym_iptr] = ACTIONS(1545), + [anon_sym_uptr] = ACTIONS(1545), + [anon_sym_isz] = ACTIONS(1545), + [anon_sym_usz] = ACTIONS(1545), + [anon_sym_anyfault] = ACTIONS(1545), + [anon_sym_any] = ACTIONS(1545), + [anon_sym_DOLLARtypeof] = ACTIONS(1545), + [anon_sym_DOLLARtypefrom] = ACTIONS(1545), + [anon_sym_DOLLARevaltype] = ACTIONS(1545), + [anon_sym_DOLLARvatype] = ACTIONS(1545), + [sym_real_literal] = ACTIONS(1547), + }, + [782] = { + [sym_line_comment] = STATE(782), + [sym_doc_comment] = STATE(782), + [sym_block_comment] = STATE(782), + [sym_ident] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(1551), + [anon_sym_BQUOTE] = ACTIONS(1551), + [sym_bytes_literal] = ACTIONS(1551), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1549), + [sym_at_ident] = ACTIONS(1551), + [sym_hash_ident] = ACTIONS(1551), + [sym_type_ident] = ACTIONS(1551), + [sym_ct_type_ident] = ACTIONS(1551), + [sym_const_ident] = ACTIONS(1549), + [sym_builtin] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_tlocal] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1549), + [anon_sym_LBRACE] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_var] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_defer] = ACTIONS(1549), + [anon_sym_assert] = ACTIONS(1549), + [anon_sym_nextcase] = ACTIONS(1549), + [anon_sym_switch] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_foreach] = ACTIONS(1549), + [anon_sym_foreach_r] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_do] = ACTIONS(1549), + [anon_sym_int] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1551), + [anon_sym_asm] = ACTIONS(1549), + [anon_sym_DOLLARassert] = ACTIONS(1549), + [anon_sym_DOLLARerror] = ACTIONS(1549), + [anon_sym_DOLLARecho] = ACTIONS(1549), + [anon_sym_DOLLARif] = ACTIONS(1549), + [anon_sym_DOLLARendif] = ACTIONS(1549), + [anon_sym_DOLLARswitch] = ACTIONS(1549), + [anon_sym_DOLLARfor] = ACTIONS(1549), + [anon_sym_DOLLARforeach] = ACTIONS(1549), + [anon_sym_DOLLARalignof] = ACTIONS(1549), + [anon_sym_DOLLARextnameof] = ACTIONS(1549), + [anon_sym_DOLLARnameof] = ACTIONS(1549), + [anon_sym_DOLLARoffsetof] = ACTIONS(1549), + [anon_sym_DOLLARqnameof] = ACTIONS(1549), + [anon_sym_DOLLARvaconst] = ACTIONS(1549), + [anon_sym_DOLLARvaarg] = ACTIONS(1549), + [anon_sym_DOLLARvaref] = ACTIONS(1549), + [anon_sym_DOLLARvaexpr] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_null] = ACTIONS(1549), + [anon_sym_DOLLARvacount] = ACTIONS(1549), + [anon_sym_DOLLAReval] = ACTIONS(1549), + [anon_sym_DOLLARis_const] = ACTIONS(1549), + [anon_sym_DOLLARsizeof] = ACTIONS(1549), + [anon_sym_DOLLARstringify] = ACTIONS(1549), + [anon_sym_DOLLARappend] = ACTIONS(1549), + [anon_sym_DOLLARconcat] = ACTIONS(1549), + [anon_sym_DOLLARdefined] = ACTIONS(1549), + [anon_sym_DOLLARembed] = ACTIONS(1549), + [anon_sym_DOLLARand] = ACTIONS(1549), + [anon_sym_DOLLARor] = ACTIONS(1549), + [anon_sym_DOLLARfeature] = ACTIONS(1549), + [anon_sym_DOLLARassignable] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1551), + [anon_sym_TILDE] = ACTIONS(1551), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_DASH_DASH] = ACTIONS(1551), + [anon_sym_typeid] = ACTIONS(1549), + [anon_sym_LBRACE_PIPE] = ACTIONS(1551), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_ichar] = ACTIONS(1549), + [anon_sym_short] = ACTIONS(1549), + [anon_sym_ushort] = ACTIONS(1549), + [anon_sym_uint] = ACTIONS(1549), + [anon_sym_long] = ACTIONS(1549), + [anon_sym_ulong] = ACTIONS(1549), + [anon_sym_int128] = ACTIONS(1549), + [anon_sym_uint128] = ACTIONS(1549), + [anon_sym_float] = ACTIONS(1549), + [anon_sym_double] = ACTIONS(1549), + [anon_sym_float16] = ACTIONS(1549), + [anon_sym_bfloat16] = ACTIONS(1549), + [anon_sym_float128] = ACTIONS(1549), + [anon_sym_iptr] = ACTIONS(1549), + [anon_sym_uptr] = ACTIONS(1549), + [anon_sym_isz] = ACTIONS(1549), + [anon_sym_usz] = ACTIONS(1549), + [anon_sym_anyfault] = ACTIONS(1549), + [anon_sym_any] = ACTIONS(1549), + [anon_sym_DOLLARtypeof] = ACTIONS(1549), + [anon_sym_DOLLARtypefrom] = ACTIONS(1549), + [anon_sym_DOLLARevaltype] = ACTIONS(1549), + [anon_sym_DOLLARvatype] = ACTIONS(1549), + [sym_real_literal] = ACTIONS(1551), + }, + [783] = { + [sym_line_comment] = STATE(783), + [sym_doc_comment] = STATE(783), + [sym_block_comment] = STATE(783), + [sym_ident] = ACTIONS(1557), + [sym_integer_literal] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [sym_bytes_literal] = ACTIONS(1559), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1557), + [sym_at_ident] = ACTIONS(1559), + [sym_hash_ident] = ACTIONS(1559), + [sym_type_ident] = ACTIONS(1559), + [sym_ct_type_ident] = ACTIONS(1559), + [sym_const_ident] = ACTIONS(1557), + [sym_builtin] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_static] = ACTIONS(1557), + [anon_sym_tlocal] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_fn] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_var] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_defer] = ACTIONS(1557), + [anon_sym_assert] = ACTIONS(1557), + [anon_sym_nextcase] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1557), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_foreach] = ACTIONS(1557), + [anon_sym_foreach_r] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_do] = ACTIONS(1557), + [anon_sym_int] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_asm] = ACTIONS(1557), + [anon_sym_DOLLARassert] = ACTIONS(1557), + [anon_sym_DOLLARerror] = ACTIONS(1557), + [anon_sym_DOLLARecho] = ACTIONS(1557), + [anon_sym_DOLLARif] = ACTIONS(1557), + [anon_sym_DOLLARendif] = ACTIONS(1557), + [anon_sym_DOLLARswitch] = ACTIONS(1557), + [anon_sym_DOLLARfor] = ACTIONS(1557), + [anon_sym_DOLLARforeach] = ACTIONS(1557), + [anon_sym_DOLLARalignof] = ACTIONS(1557), + [anon_sym_DOLLARextnameof] = ACTIONS(1557), + [anon_sym_DOLLARnameof] = ACTIONS(1557), + [anon_sym_DOLLARoffsetof] = ACTIONS(1557), + [anon_sym_DOLLARqnameof] = ACTIONS(1557), + [anon_sym_DOLLARvaconst] = ACTIONS(1557), + [anon_sym_DOLLARvaarg] = ACTIONS(1557), + [anon_sym_DOLLARvaref] = ACTIONS(1557), + [anon_sym_DOLLARvaexpr] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_DOLLARvacount] = ACTIONS(1557), + [anon_sym_DOLLAReval] = ACTIONS(1557), + [anon_sym_DOLLARis_const] = ACTIONS(1557), + [anon_sym_DOLLARsizeof] = ACTIONS(1557), + [anon_sym_DOLLARstringify] = ACTIONS(1557), + [anon_sym_DOLLARappend] = ACTIONS(1557), + [anon_sym_DOLLARconcat] = ACTIONS(1557), + [anon_sym_DOLLARdefined] = ACTIONS(1557), + [anon_sym_DOLLARembed] = ACTIONS(1557), + [anon_sym_DOLLARand] = ACTIONS(1557), + [anon_sym_DOLLARor] = ACTIONS(1557), + [anon_sym_DOLLARfeature] = ACTIONS(1557), + [anon_sym_DOLLARassignable] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1559), + [anon_sym_TILDE] = ACTIONS(1559), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_DASH_DASH] = ACTIONS(1559), + [anon_sym_typeid] = ACTIONS(1557), + [anon_sym_LBRACE_PIPE] = ACTIONS(1559), + [anon_sym_void] = ACTIONS(1557), + [anon_sym_bool] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_ichar] = ACTIONS(1557), + [anon_sym_short] = ACTIONS(1557), + [anon_sym_ushort] = ACTIONS(1557), + [anon_sym_uint] = ACTIONS(1557), + [anon_sym_long] = ACTIONS(1557), + [anon_sym_ulong] = ACTIONS(1557), + [anon_sym_int128] = ACTIONS(1557), + [anon_sym_uint128] = ACTIONS(1557), + [anon_sym_float] = ACTIONS(1557), + [anon_sym_double] = ACTIONS(1557), + [anon_sym_float16] = ACTIONS(1557), + [anon_sym_bfloat16] = ACTIONS(1557), + [anon_sym_float128] = ACTIONS(1557), + [anon_sym_iptr] = ACTIONS(1557), + [anon_sym_uptr] = ACTIONS(1557), + [anon_sym_isz] = ACTIONS(1557), + [anon_sym_usz] = ACTIONS(1557), + [anon_sym_anyfault] = ACTIONS(1557), + [anon_sym_any] = ACTIONS(1557), + [anon_sym_DOLLARtypeof] = ACTIONS(1557), + [anon_sym_DOLLARtypefrom] = ACTIONS(1557), + [anon_sym_DOLLARevaltype] = ACTIONS(1557), + [anon_sym_DOLLARvatype] = ACTIONS(1557), + [sym_real_literal] = ACTIONS(1559), + }, + [784] = { + [sym_line_comment] = STATE(784), + [sym_doc_comment] = STATE(784), + [sym_block_comment] = STATE(784), + [sym_ident] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [sym_bytes_literal] = ACTIONS(1563), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1561), + [sym_at_ident] = ACTIONS(1563), + [sym_hash_ident] = ACTIONS(1563), + [sym_type_ident] = ACTIONS(1563), + [sym_ct_type_ident] = ACTIONS(1563), + [sym_const_ident] = ACTIONS(1561), + [sym_builtin] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_tlocal] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_var] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_defer] = ACTIONS(1561), + [anon_sym_assert] = ACTIONS(1561), + [anon_sym_nextcase] = ACTIONS(1561), + [anon_sym_switch] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_foreach] = ACTIONS(1561), + [anon_sym_foreach_r] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_do] = ACTIONS(1561), + [anon_sym_int] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1563), + [anon_sym_asm] = ACTIONS(1561), + [anon_sym_DOLLARassert] = ACTIONS(1561), + [anon_sym_DOLLARerror] = ACTIONS(1561), + [anon_sym_DOLLARecho] = ACTIONS(1561), + [anon_sym_DOLLARif] = ACTIONS(1561), + [anon_sym_DOLLARendif] = ACTIONS(1561), + [anon_sym_DOLLARswitch] = ACTIONS(1561), + [anon_sym_DOLLARfor] = ACTIONS(1561), + [anon_sym_DOLLARforeach] = ACTIONS(1561), + [anon_sym_DOLLARalignof] = ACTIONS(1561), + [anon_sym_DOLLARextnameof] = ACTIONS(1561), + [anon_sym_DOLLARnameof] = ACTIONS(1561), + [anon_sym_DOLLARoffsetof] = ACTIONS(1561), + [anon_sym_DOLLARqnameof] = ACTIONS(1561), + [anon_sym_DOLLARvaconst] = ACTIONS(1561), + [anon_sym_DOLLARvaarg] = ACTIONS(1561), + [anon_sym_DOLLARvaref] = ACTIONS(1561), + [anon_sym_DOLLARvaexpr] = ACTIONS(1561), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_null] = ACTIONS(1561), + [anon_sym_DOLLARvacount] = ACTIONS(1561), + [anon_sym_DOLLAReval] = ACTIONS(1561), + [anon_sym_DOLLARis_const] = ACTIONS(1561), + [anon_sym_DOLLARsizeof] = ACTIONS(1561), + [anon_sym_DOLLARstringify] = ACTIONS(1561), + [anon_sym_DOLLARappend] = ACTIONS(1561), + [anon_sym_DOLLARconcat] = ACTIONS(1561), + [anon_sym_DOLLARdefined] = ACTIONS(1561), + [anon_sym_DOLLARembed] = ACTIONS(1561), + [anon_sym_DOLLARand] = ACTIONS(1561), + [anon_sym_DOLLARor] = ACTIONS(1561), + [anon_sym_DOLLARfeature] = ACTIONS(1561), + [anon_sym_DOLLARassignable] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1563), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_DASH_DASH] = ACTIONS(1563), + [anon_sym_typeid] = ACTIONS(1561), + [anon_sym_LBRACE_PIPE] = ACTIONS(1563), + [anon_sym_void] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_ichar] = ACTIONS(1561), + [anon_sym_short] = ACTIONS(1561), + [anon_sym_ushort] = ACTIONS(1561), + [anon_sym_uint] = ACTIONS(1561), + [anon_sym_long] = ACTIONS(1561), + [anon_sym_ulong] = ACTIONS(1561), + [anon_sym_int128] = ACTIONS(1561), + [anon_sym_uint128] = ACTIONS(1561), + [anon_sym_float] = ACTIONS(1561), + [anon_sym_double] = ACTIONS(1561), + [anon_sym_float16] = ACTIONS(1561), + [anon_sym_bfloat16] = ACTIONS(1561), + [anon_sym_float128] = ACTIONS(1561), + [anon_sym_iptr] = ACTIONS(1561), + [anon_sym_uptr] = ACTIONS(1561), + [anon_sym_isz] = ACTIONS(1561), + [anon_sym_usz] = ACTIONS(1561), + [anon_sym_anyfault] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1561), + [anon_sym_DOLLARtypeof] = ACTIONS(1561), + [anon_sym_DOLLARtypefrom] = ACTIONS(1561), + [anon_sym_DOLLARevaltype] = ACTIONS(1561), + [anon_sym_DOLLARvatype] = ACTIONS(1561), + [sym_real_literal] = ACTIONS(1563), + }, + [785] = { + [sym_line_comment] = STATE(785), + [sym_doc_comment] = STATE(785), + [sym_block_comment] = STATE(785), + [sym_ident] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1567), + [anon_sym_BQUOTE] = ACTIONS(1567), + [sym_bytes_literal] = ACTIONS(1567), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1565), + [sym_at_ident] = ACTIONS(1567), + [sym_hash_ident] = ACTIONS(1567), + [sym_type_ident] = ACTIONS(1567), + [sym_ct_type_ident] = ACTIONS(1567), + [sym_const_ident] = ACTIONS(1565), + [sym_builtin] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_tlocal] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_fn] = ACTIONS(1565), + [anon_sym_LBRACE] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_var] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_defer] = ACTIONS(1565), + [anon_sym_assert] = ACTIONS(1565), + [anon_sym_nextcase] = ACTIONS(1565), + [anon_sym_switch] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_foreach] = ACTIONS(1565), + [anon_sym_foreach_r] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_do] = ACTIONS(1565), + [anon_sym_int] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_asm] = ACTIONS(1565), + [anon_sym_DOLLARassert] = ACTIONS(1565), + [anon_sym_DOLLARerror] = ACTIONS(1565), + [anon_sym_DOLLARecho] = ACTIONS(1565), + [anon_sym_DOLLARif] = ACTIONS(1565), + [anon_sym_DOLLARendif] = ACTIONS(1565), + [anon_sym_DOLLARswitch] = ACTIONS(1565), + [anon_sym_DOLLARfor] = ACTIONS(1565), + [anon_sym_DOLLARforeach] = ACTIONS(1565), + [anon_sym_DOLLARalignof] = ACTIONS(1565), + [anon_sym_DOLLARextnameof] = ACTIONS(1565), + [anon_sym_DOLLARnameof] = ACTIONS(1565), + [anon_sym_DOLLARoffsetof] = ACTIONS(1565), + [anon_sym_DOLLARqnameof] = ACTIONS(1565), + [anon_sym_DOLLARvaconst] = ACTIONS(1565), + [anon_sym_DOLLARvaarg] = ACTIONS(1565), + [anon_sym_DOLLARvaref] = ACTIONS(1565), + [anon_sym_DOLLARvaexpr] = ACTIONS(1565), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_null] = ACTIONS(1565), + [anon_sym_DOLLARvacount] = ACTIONS(1565), + [anon_sym_DOLLAReval] = ACTIONS(1565), + [anon_sym_DOLLARis_const] = ACTIONS(1565), + [anon_sym_DOLLARsizeof] = ACTIONS(1565), + [anon_sym_DOLLARstringify] = ACTIONS(1565), + [anon_sym_DOLLARappend] = ACTIONS(1565), + [anon_sym_DOLLARconcat] = ACTIONS(1565), + [anon_sym_DOLLARdefined] = ACTIONS(1565), + [anon_sym_DOLLARembed] = ACTIONS(1565), + [anon_sym_DOLLARand] = ACTIONS(1565), + [anon_sym_DOLLARor] = ACTIONS(1565), + [anon_sym_DOLLARfeature] = ACTIONS(1565), + [anon_sym_DOLLARassignable] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_TILDE] = ACTIONS(1567), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_DASH_DASH] = ACTIONS(1567), + [anon_sym_typeid] = ACTIONS(1565), + [anon_sym_LBRACE_PIPE] = ACTIONS(1567), + [anon_sym_void] = ACTIONS(1565), + [anon_sym_bool] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_ichar] = ACTIONS(1565), + [anon_sym_short] = ACTIONS(1565), + [anon_sym_ushort] = ACTIONS(1565), + [anon_sym_uint] = ACTIONS(1565), + [anon_sym_long] = ACTIONS(1565), + [anon_sym_ulong] = ACTIONS(1565), + [anon_sym_int128] = ACTIONS(1565), + [anon_sym_uint128] = ACTIONS(1565), + [anon_sym_float] = ACTIONS(1565), + [anon_sym_double] = ACTIONS(1565), + [anon_sym_float16] = ACTIONS(1565), + [anon_sym_bfloat16] = ACTIONS(1565), + [anon_sym_float128] = ACTIONS(1565), + [anon_sym_iptr] = ACTIONS(1565), + [anon_sym_uptr] = ACTIONS(1565), + [anon_sym_isz] = ACTIONS(1565), + [anon_sym_usz] = ACTIONS(1565), + [anon_sym_anyfault] = ACTIONS(1565), + [anon_sym_any] = ACTIONS(1565), + [anon_sym_DOLLARtypeof] = ACTIONS(1565), + [anon_sym_DOLLARtypefrom] = ACTIONS(1565), + [anon_sym_DOLLARevaltype] = ACTIONS(1565), + [anon_sym_DOLLARvatype] = ACTIONS(1565), + [sym_real_literal] = ACTIONS(1567), + }, + [786] = { + [sym_line_comment] = STATE(786), + [sym_doc_comment] = STATE(786), + [sym_block_comment] = STATE(786), + [sym_ident] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1571), + [anon_sym_SQUOTE] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(1571), + [anon_sym_BQUOTE] = ACTIONS(1571), + [sym_bytes_literal] = ACTIONS(1571), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1569), + [sym_at_ident] = ACTIONS(1571), + [sym_hash_ident] = ACTIONS(1571), + [sym_type_ident] = ACTIONS(1571), + [sym_ct_type_ident] = ACTIONS(1571), + [sym_const_ident] = ACTIONS(1569), + [sym_builtin] = ACTIONS(1571), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_tlocal] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_fn] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_var] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_defer] = ACTIONS(1569), + [anon_sym_assert] = ACTIONS(1569), + [anon_sym_nextcase] = ACTIONS(1569), + [anon_sym_switch] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1571), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_foreach] = ACTIONS(1569), + [anon_sym_foreach_r] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_do] = ACTIONS(1569), + [anon_sym_int] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1571), + [anon_sym_asm] = ACTIONS(1569), + [anon_sym_DOLLARassert] = ACTIONS(1569), + [anon_sym_DOLLARerror] = ACTIONS(1569), + [anon_sym_DOLLARecho] = ACTIONS(1569), + [anon_sym_DOLLARif] = ACTIONS(1569), + [anon_sym_DOLLARendif] = ACTIONS(1569), + [anon_sym_DOLLARswitch] = ACTIONS(1569), + [anon_sym_DOLLARfor] = ACTIONS(1569), + [anon_sym_DOLLARforeach] = ACTIONS(1569), + [anon_sym_DOLLARalignof] = ACTIONS(1569), + [anon_sym_DOLLARextnameof] = ACTIONS(1569), + [anon_sym_DOLLARnameof] = ACTIONS(1569), + [anon_sym_DOLLARoffsetof] = ACTIONS(1569), + [anon_sym_DOLLARqnameof] = ACTIONS(1569), + [anon_sym_DOLLARvaconst] = ACTIONS(1569), + [anon_sym_DOLLARvaarg] = ACTIONS(1569), + [anon_sym_DOLLARvaref] = ACTIONS(1569), + [anon_sym_DOLLARvaexpr] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_null] = ACTIONS(1569), + [anon_sym_DOLLARvacount] = ACTIONS(1569), + [anon_sym_DOLLAReval] = ACTIONS(1569), + [anon_sym_DOLLARis_const] = ACTIONS(1569), + [anon_sym_DOLLARsizeof] = ACTIONS(1569), + [anon_sym_DOLLARstringify] = ACTIONS(1569), + [anon_sym_DOLLARappend] = ACTIONS(1569), + [anon_sym_DOLLARconcat] = ACTIONS(1569), + [anon_sym_DOLLARdefined] = ACTIONS(1569), + [anon_sym_DOLLARembed] = ACTIONS(1569), + [anon_sym_DOLLARand] = ACTIONS(1569), + [anon_sym_DOLLARor] = ACTIONS(1569), + [anon_sym_DOLLARfeature] = ACTIONS(1569), + [anon_sym_DOLLARassignable] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1571), + [anon_sym_TILDE] = ACTIONS(1571), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_DASH_DASH] = ACTIONS(1571), + [anon_sym_typeid] = ACTIONS(1569), + [anon_sym_LBRACE_PIPE] = ACTIONS(1571), + [anon_sym_void] = ACTIONS(1569), + [anon_sym_bool] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_ichar] = ACTIONS(1569), + [anon_sym_short] = ACTIONS(1569), + [anon_sym_ushort] = ACTIONS(1569), + [anon_sym_uint] = ACTIONS(1569), + [anon_sym_long] = ACTIONS(1569), + [anon_sym_ulong] = ACTIONS(1569), + [anon_sym_int128] = ACTIONS(1569), + [anon_sym_uint128] = ACTIONS(1569), + [anon_sym_float] = ACTIONS(1569), + [anon_sym_double] = ACTIONS(1569), + [anon_sym_float16] = ACTIONS(1569), + [anon_sym_bfloat16] = ACTIONS(1569), + [anon_sym_float128] = ACTIONS(1569), + [anon_sym_iptr] = ACTIONS(1569), + [anon_sym_uptr] = ACTIONS(1569), + [anon_sym_isz] = ACTIONS(1569), + [anon_sym_usz] = ACTIONS(1569), + [anon_sym_anyfault] = ACTIONS(1569), + [anon_sym_any] = ACTIONS(1569), + [anon_sym_DOLLARtypeof] = ACTIONS(1569), + [anon_sym_DOLLARtypefrom] = ACTIONS(1569), + [anon_sym_DOLLARevaltype] = ACTIONS(1569), + [anon_sym_DOLLARvatype] = ACTIONS(1569), + [sym_real_literal] = ACTIONS(1571), + }, + [787] = { + [sym_line_comment] = STATE(787), + [sym_doc_comment] = STATE(787), + [sym_block_comment] = STATE(787), + [sym_ident] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1583), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(1583), + [anon_sym_BQUOTE] = ACTIONS(1583), + [sym_bytes_literal] = ACTIONS(1583), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1581), + [sym_at_ident] = ACTIONS(1583), + [sym_hash_ident] = ACTIONS(1583), + [sym_type_ident] = ACTIONS(1583), + [sym_ct_type_ident] = ACTIONS(1583), + [sym_const_ident] = ACTIONS(1581), + [sym_builtin] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1583), + [anon_sym_AMP] = ACTIONS(1581), + [anon_sym_static] = ACTIONS(1581), + [anon_sym_tlocal] = ACTIONS(1581), + [anon_sym_SEMI] = ACTIONS(1583), + [anon_sym_fn] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1581), + [anon_sym_const] = ACTIONS(1581), + [anon_sym_var] = ACTIONS(1581), + [anon_sym_return] = ACTIONS(1581), + [anon_sym_continue] = ACTIONS(1581), + [anon_sym_break] = ACTIONS(1581), + [anon_sym_defer] = ACTIONS(1581), + [anon_sym_assert] = ACTIONS(1581), + [anon_sym_nextcase] = ACTIONS(1581), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_AMP_AMP] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_for] = ACTIONS(1581), + [anon_sym_foreach] = ACTIONS(1581), + [anon_sym_foreach_r] = ACTIONS(1581), + [anon_sym_while] = ACTIONS(1581), + [anon_sym_do] = ACTIONS(1581), + [anon_sym_int] = ACTIONS(1581), + [anon_sym_PLUS] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_STAR] = ACTIONS(1583), + [anon_sym_asm] = ACTIONS(1581), + [anon_sym_DOLLARassert] = ACTIONS(1581), + [anon_sym_DOLLARerror] = ACTIONS(1581), + [anon_sym_DOLLARecho] = ACTIONS(1581), + [anon_sym_DOLLARif] = ACTIONS(1581), + [anon_sym_DOLLARendif] = ACTIONS(1581), + [anon_sym_DOLLARswitch] = ACTIONS(1581), + [anon_sym_DOLLARfor] = ACTIONS(1581), + [anon_sym_DOLLARforeach] = ACTIONS(1581), + [anon_sym_DOLLARalignof] = ACTIONS(1581), + [anon_sym_DOLLARextnameof] = ACTIONS(1581), + [anon_sym_DOLLARnameof] = ACTIONS(1581), + [anon_sym_DOLLARoffsetof] = ACTIONS(1581), + [anon_sym_DOLLARqnameof] = ACTIONS(1581), + [anon_sym_DOLLARvaconst] = ACTIONS(1581), + [anon_sym_DOLLARvaarg] = ACTIONS(1581), + [anon_sym_DOLLARvaref] = ACTIONS(1581), + [anon_sym_DOLLARvaexpr] = ACTIONS(1581), + [anon_sym_true] = ACTIONS(1581), + [anon_sym_false] = ACTIONS(1581), + [anon_sym_null] = ACTIONS(1581), + [anon_sym_DOLLARvacount] = ACTIONS(1581), + [anon_sym_DOLLAReval] = ACTIONS(1581), + [anon_sym_DOLLARis_const] = ACTIONS(1581), + [anon_sym_DOLLARsizeof] = ACTIONS(1581), + [anon_sym_DOLLARstringify] = ACTIONS(1581), + [anon_sym_DOLLARappend] = ACTIONS(1581), + [anon_sym_DOLLARconcat] = ACTIONS(1581), + [anon_sym_DOLLARdefined] = ACTIONS(1581), + [anon_sym_DOLLARembed] = ACTIONS(1581), + [anon_sym_DOLLARand] = ACTIONS(1581), + [anon_sym_DOLLARor] = ACTIONS(1581), + [anon_sym_DOLLARfeature] = ACTIONS(1581), + [anon_sym_DOLLARassignable] = ACTIONS(1581), + [anon_sym_BANG] = ACTIONS(1583), + [anon_sym_TILDE] = ACTIONS(1583), + [anon_sym_PLUS_PLUS] = ACTIONS(1583), + [anon_sym_DASH_DASH] = ACTIONS(1583), + [anon_sym_typeid] = ACTIONS(1581), + [anon_sym_LBRACE_PIPE] = ACTIONS(1583), + [anon_sym_void] = ACTIONS(1581), + [anon_sym_bool] = ACTIONS(1581), + [anon_sym_char] = ACTIONS(1581), + [anon_sym_ichar] = ACTIONS(1581), + [anon_sym_short] = ACTIONS(1581), + [anon_sym_ushort] = ACTIONS(1581), + [anon_sym_uint] = ACTIONS(1581), + [anon_sym_long] = ACTIONS(1581), + [anon_sym_ulong] = ACTIONS(1581), + [anon_sym_int128] = ACTIONS(1581), + [anon_sym_uint128] = ACTIONS(1581), + [anon_sym_float] = ACTIONS(1581), + [anon_sym_double] = ACTIONS(1581), + [anon_sym_float16] = ACTIONS(1581), + [anon_sym_bfloat16] = ACTIONS(1581), + [anon_sym_float128] = ACTIONS(1581), + [anon_sym_iptr] = ACTIONS(1581), + [anon_sym_uptr] = ACTIONS(1581), + [anon_sym_isz] = ACTIONS(1581), + [anon_sym_usz] = ACTIONS(1581), + [anon_sym_anyfault] = ACTIONS(1581), + [anon_sym_any] = ACTIONS(1581), + [anon_sym_DOLLARtypeof] = ACTIONS(1581), + [anon_sym_DOLLARtypefrom] = ACTIONS(1581), + [anon_sym_DOLLARevaltype] = ACTIONS(1581), + [anon_sym_DOLLARvatype] = ACTIONS(1581), + [sym_real_literal] = ACTIONS(1583), + }, + [788] = { + [sym_line_comment] = STATE(788), + [sym_doc_comment] = STATE(788), + [sym_block_comment] = STATE(788), + [sym_ident] = ACTIONS(1597), + [sym_integer_literal] = ACTIONS(1599), + [anon_sym_SQUOTE] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [anon_sym_BQUOTE] = ACTIONS(1599), + [sym_bytes_literal] = ACTIONS(1599), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1597), + [sym_at_ident] = ACTIONS(1599), + [sym_hash_ident] = ACTIONS(1599), + [sym_type_ident] = ACTIONS(1599), + [sym_ct_type_ident] = ACTIONS(1599), + [sym_const_ident] = ACTIONS(1597), + [sym_builtin] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1597), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_tlocal] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_fn] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [anon_sym_var] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_defer] = ACTIONS(1597), + [anon_sym_assert] = ACTIONS(1597), + [anon_sym_nextcase] = ACTIONS(1597), + [anon_sym_switch] = ACTIONS(1597), + [anon_sym_AMP_AMP] = ACTIONS(1599), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_foreach] = ACTIONS(1597), + [anon_sym_foreach_r] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_int] = ACTIONS(1597), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1599), + [anon_sym_asm] = ACTIONS(1597), + [anon_sym_DOLLARassert] = ACTIONS(1597), + [anon_sym_DOLLARerror] = ACTIONS(1597), + [anon_sym_DOLLARecho] = ACTIONS(1597), + [anon_sym_DOLLARif] = ACTIONS(1597), + [anon_sym_DOLLARendif] = ACTIONS(1597), + [anon_sym_DOLLARswitch] = ACTIONS(1597), + [anon_sym_DOLLARfor] = ACTIONS(1597), + [anon_sym_DOLLARforeach] = ACTIONS(1597), + [anon_sym_DOLLARalignof] = ACTIONS(1597), + [anon_sym_DOLLARextnameof] = ACTIONS(1597), + [anon_sym_DOLLARnameof] = ACTIONS(1597), + [anon_sym_DOLLARoffsetof] = ACTIONS(1597), + [anon_sym_DOLLARqnameof] = ACTIONS(1597), + [anon_sym_DOLLARvaconst] = ACTIONS(1597), + [anon_sym_DOLLARvaarg] = ACTIONS(1597), + [anon_sym_DOLLARvaref] = ACTIONS(1597), + [anon_sym_DOLLARvaexpr] = ACTIONS(1597), + [anon_sym_true] = ACTIONS(1597), + [anon_sym_false] = ACTIONS(1597), + [anon_sym_null] = ACTIONS(1597), + [anon_sym_DOLLARvacount] = ACTIONS(1597), + [anon_sym_DOLLAReval] = ACTIONS(1597), + [anon_sym_DOLLARis_const] = ACTIONS(1597), + [anon_sym_DOLLARsizeof] = ACTIONS(1597), + [anon_sym_DOLLARstringify] = ACTIONS(1597), + [anon_sym_DOLLARappend] = ACTIONS(1597), + [anon_sym_DOLLARconcat] = ACTIONS(1597), + [anon_sym_DOLLARdefined] = ACTIONS(1597), + [anon_sym_DOLLARembed] = ACTIONS(1597), + [anon_sym_DOLLARand] = ACTIONS(1597), + [anon_sym_DOLLARor] = ACTIONS(1597), + [anon_sym_DOLLARfeature] = ACTIONS(1597), + [anon_sym_DOLLARassignable] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1599), + [anon_sym_TILDE] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_typeid] = ACTIONS(1597), + [anon_sym_LBRACE_PIPE] = ACTIONS(1599), + [anon_sym_void] = ACTIONS(1597), + [anon_sym_bool] = ACTIONS(1597), + [anon_sym_char] = ACTIONS(1597), + [anon_sym_ichar] = ACTIONS(1597), + [anon_sym_short] = ACTIONS(1597), + [anon_sym_ushort] = ACTIONS(1597), + [anon_sym_uint] = ACTIONS(1597), + [anon_sym_long] = ACTIONS(1597), + [anon_sym_ulong] = ACTIONS(1597), + [anon_sym_int128] = ACTIONS(1597), + [anon_sym_uint128] = ACTIONS(1597), + [anon_sym_float] = ACTIONS(1597), + [anon_sym_double] = ACTIONS(1597), + [anon_sym_float16] = ACTIONS(1597), + [anon_sym_bfloat16] = ACTIONS(1597), + [anon_sym_float128] = ACTIONS(1597), + [anon_sym_iptr] = ACTIONS(1597), + [anon_sym_uptr] = ACTIONS(1597), + [anon_sym_isz] = ACTIONS(1597), + [anon_sym_usz] = ACTIONS(1597), + [anon_sym_anyfault] = ACTIONS(1597), + [anon_sym_any] = ACTIONS(1597), + [anon_sym_DOLLARtypeof] = ACTIONS(1597), + [anon_sym_DOLLARtypefrom] = ACTIONS(1597), + [anon_sym_DOLLARevaltype] = ACTIONS(1597), + [anon_sym_DOLLARvatype] = ACTIONS(1597), + [sym_real_literal] = ACTIONS(1599), + }, + [789] = { + [sym_line_comment] = STATE(789), + [sym_doc_comment] = STATE(789), + [sym_block_comment] = STATE(789), + [sym_ident] = ACTIONS(1601), + [sym_integer_literal] = ACTIONS(1603), + [anon_sym_SQUOTE] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [anon_sym_BQUOTE] = ACTIONS(1603), + [sym_bytes_literal] = ACTIONS(1603), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1601), + [sym_at_ident] = ACTIONS(1603), + [sym_hash_ident] = ACTIONS(1603), + [sym_type_ident] = ACTIONS(1603), + [sym_ct_type_ident] = ACTIONS(1603), + [sym_const_ident] = ACTIONS(1601), + [sym_builtin] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_static] = ACTIONS(1601), + [anon_sym_tlocal] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_fn] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1601), + [anon_sym_var] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_continue] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1601), + [anon_sym_defer] = ACTIONS(1601), + [anon_sym_assert] = ACTIONS(1601), + [anon_sym_nextcase] = ACTIONS(1601), + [anon_sym_switch] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_for] = ACTIONS(1601), + [anon_sym_foreach] = ACTIONS(1601), + [anon_sym_foreach_r] = ACTIONS(1601), + [anon_sym_while] = ACTIONS(1601), + [anon_sym_do] = ACTIONS(1601), + [anon_sym_int] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_asm] = ACTIONS(1601), + [anon_sym_DOLLARassert] = ACTIONS(1601), + [anon_sym_DOLLARerror] = ACTIONS(1601), + [anon_sym_DOLLARecho] = ACTIONS(1601), + [anon_sym_DOLLARif] = ACTIONS(1601), + [anon_sym_DOLLARendif] = ACTIONS(1601), + [anon_sym_DOLLARswitch] = ACTIONS(1601), + [anon_sym_DOLLARfor] = ACTIONS(1601), + [anon_sym_DOLLARforeach] = ACTIONS(1601), + [anon_sym_DOLLARalignof] = ACTIONS(1601), + [anon_sym_DOLLARextnameof] = ACTIONS(1601), + [anon_sym_DOLLARnameof] = ACTIONS(1601), + [anon_sym_DOLLARoffsetof] = ACTIONS(1601), + [anon_sym_DOLLARqnameof] = ACTIONS(1601), + [anon_sym_DOLLARvaconst] = ACTIONS(1601), + [anon_sym_DOLLARvaarg] = ACTIONS(1601), + [anon_sym_DOLLARvaref] = ACTIONS(1601), + [anon_sym_DOLLARvaexpr] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_DOLLARvacount] = ACTIONS(1601), + [anon_sym_DOLLAReval] = ACTIONS(1601), + [anon_sym_DOLLARis_const] = ACTIONS(1601), + [anon_sym_DOLLARsizeof] = ACTIONS(1601), + [anon_sym_DOLLARstringify] = ACTIONS(1601), + [anon_sym_DOLLARappend] = ACTIONS(1601), + [anon_sym_DOLLARconcat] = ACTIONS(1601), + [anon_sym_DOLLARdefined] = ACTIONS(1601), + [anon_sym_DOLLARembed] = ACTIONS(1601), + [anon_sym_DOLLARand] = ACTIONS(1601), + [anon_sym_DOLLARor] = ACTIONS(1601), + [anon_sym_DOLLARfeature] = ACTIONS(1601), + [anon_sym_DOLLARassignable] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_typeid] = ACTIONS(1601), + [anon_sym_LBRACE_PIPE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_bool] = ACTIONS(1601), + [anon_sym_char] = ACTIONS(1601), + [anon_sym_ichar] = ACTIONS(1601), + [anon_sym_short] = ACTIONS(1601), + [anon_sym_ushort] = ACTIONS(1601), + [anon_sym_uint] = ACTIONS(1601), + [anon_sym_long] = ACTIONS(1601), + [anon_sym_ulong] = ACTIONS(1601), + [anon_sym_int128] = ACTIONS(1601), + [anon_sym_uint128] = ACTIONS(1601), + [anon_sym_float] = ACTIONS(1601), + [anon_sym_double] = ACTIONS(1601), + [anon_sym_float16] = ACTIONS(1601), + [anon_sym_bfloat16] = ACTIONS(1601), + [anon_sym_float128] = ACTIONS(1601), + [anon_sym_iptr] = ACTIONS(1601), + [anon_sym_uptr] = ACTIONS(1601), + [anon_sym_isz] = ACTIONS(1601), + [anon_sym_usz] = ACTIONS(1601), + [anon_sym_anyfault] = ACTIONS(1601), + [anon_sym_any] = ACTIONS(1601), + [anon_sym_DOLLARtypeof] = ACTIONS(1601), + [anon_sym_DOLLARtypefrom] = ACTIONS(1601), + [anon_sym_DOLLARevaltype] = ACTIONS(1601), + [anon_sym_DOLLARvatype] = ACTIONS(1601), + [sym_real_literal] = ACTIONS(1603), + }, + [790] = { + [sym_line_comment] = STATE(790), + [sym_doc_comment] = STATE(790), + [sym_block_comment] = STATE(790), + [sym_ident] = ACTIONS(1605), + [sym_integer_literal] = ACTIONS(1607), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [anon_sym_BQUOTE] = ACTIONS(1607), + [sym_bytes_literal] = ACTIONS(1607), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1605), + [sym_at_ident] = ACTIONS(1607), + [sym_hash_ident] = ACTIONS(1607), + [sym_type_ident] = ACTIONS(1607), + [sym_ct_type_ident] = ACTIONS(1607), + [sym_const_ident] = ACTIONS(1605), + [sym_builtin] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_static] = ACTIONS(1605), + [anon_sym_tlocal] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_fn] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [anon_sym_var] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_defer] = ACTIONS(1605), + [anon_sym_assert] = ACTIONS(1605), + [anon_sym_nextcase] = ACTIONS(1605), + [anon_sym_switch] = ACTIONS(1605), + [anon_sym_AMP_AMP] = ACTIONS(1607), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_foreach] = ACTIONS(1605), + [anon_sym_foreach_r] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_int] = ACTIONS(1605), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_asm] = ACTIONS(1605), + [anon_sym_DOLLARassert] = ACTIONS(1605), + [anon_sym_DOLLARerror] = ACTIONS(1605), + [anon_sym_DOLLARecho] = ACTIONS(1605), + [anon_sym_DOLLARif] = ACTIONS(1605), + [anon_sym_DOLLARendif] = ACTIONS(1605), + [anon_sym_DOLLARswitch] = ACTIONS(1605), + [anon_sym_DOLLARfor] = ACTIONS(1605), + [anon_sym_DOLLARforeach] = ACTIONS(1605), + [anon_sym_DOLLARalignof] = ACTIONS(1605), + [anon_sym_DOLLARextnameof] = ACTIONS(1605), + [anon_sym_DOLLARnameof] = ACTIONS(1605), + [anon_sym_DOLLARoffsetof] = ACTIONS(1605), + [anon_sym_DOLLARqnameof] = ACTIONS(1605), + [anon_sym_DOLLARvaconst] = ACTIONS(1605), + [anon_sym_DOLLARvaarg] = ACTIONS(1605), + [anon_sym_DOLLARvaref] = ACTIONS(1605), + [anon_sym_DOLLARvaexpr] = ACTIONS(1605), + [anon_sym_true] = ACTIONS(1605), + [anon_sym_false] = ACTIONS(1605), + [anon_sym_null] = ACTIONS(1605), + [anon_sym_DOLLARvacount] = ACTIONS(1605), + [anon_sym_DOLLAReval] = ACTIONS(1605), + [anon_sym_DOLLARis_const] = ACTIONS(1605), + [anon_sym_DOLLARsizeof] = ACTIONS(1605), + [anon_sym_DOLLARstringify] = ACTIONS(1605), + [anon_sym_DOLLARappend] = ACTIONS(1605), + [anon_sym_DOLLARconcat] = ACTIONS(1605), + [anon_sym_DOLLARdefined] = ACTIONS(1605), + [anon_sym_DOLLARembed] = ACTIONS(1605), + [anon_sym_DOLLARand] = ACTIONS(1605), + [anon_sym_DOLLARor] = ACTIONS(1605), + [anon_sym_DOLLARfeature] = ACTIONS(1605), + [anon_sym_DOLLARassignable] = ACTIONS(1605), + [anon_sym_BANG] = ACTIONS(1607), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_typeid] = ACTIONS(1605), + [anon_sym_LBRACE_PIPE] = ACTIONS(1607), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_bool] = ACTIONS(1605), + [anon_sym_char] = ACTIONS(1605), + [anon_sym_ichar] = ACTIONS(1605), + [anon_sym_short] = ACTIONS(1605), + [anon_sym_ushort] = ACTIONS(1605), + [anon_sym_uint] = ACTIONS(1605), + [anon_sym_long] = ACTIONS(1605), + [anon_sym_ulong] = ACTIONS(1605), + [anon_sym_int128] = ACTIONS(1605), + [anon_sym_uint128] = ACTIONS(1605), + [anon_sym_float] = ACTIONS(1605), + [anon_sym_double] = ACTIONS(1605), + [anon_sym_float16] = ACTIONS(1605), + [anon_sym_bfloat16] = ACTIONS(1605), + [anon_sym_float128] = ACTIONS(1605), + [anon_sym_iptr] = ACTIONS(1605), + [anon_sym_uptr] = ACTIONS(1605), + [anon_sym_isz] = ACTIONS(1605), + [anon_sym_usz] = ACTIONS(1605), + [anon_sym_anyfault] = ACTIONS(1605), + [anon_sym_any] = ACTIONS(1605), + [anon_sym_DOLLARtypeof] = ACTIONS(1605), + [anon_sym_DOLLARtypefrom] = ACTIONS(1605), + [anon_sym_DOLLARevaltype] = ACTIONS(1605), + [anon_sym_DOLLARvatype] = ACTIONS(1605), + [sym_real_literal] = ACTIONS(1607), }, [791] = { [sym_line_comment] = STATE(791), [sym_doc_comment] = STATE(791), [sym_block_comment] = STATE(791), - [ts_builtin_sym_end] = ACTIONS(1183), - [sym_ident] = ACTIONS(1181), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_type_ident] = ACTIONS(1183), - [sym_ct_type_ident] = ACTIONS(1183), - [anon_sym_COMMA] = ACTIONS(1183), - [anon_sym_LPAREN_LT] = ACTIONS(1183), - [anon_sym_GT_RPAREN] = ACTIONS(1183), - [anon_sym_EQ] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_RPAREN] = ACTIONS(1183), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1183), - [anon_sym_RBRACK] = ACTIONS(1183), - [anon_sym_tlocal] = ACTIONS(1181), - [anon_sym_extern] = ACTIONS(1181), - [anon_sym_module] = ACTIONS(1181), - [anon_sym_SEMI] = ACTIONS(1183), - [anon_sym_import] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_def] = ACTIONS(1181), - [anon_sym_distinct] = ACTIONS(1181), - [anon_sym_const] = ACTIONS(1181), - [anon_sym_struct] = ACTIONS(1181), - [anon_sym_union] = ACTIONS(1181), - [anon_sym_bitstruct] = ACTIONS(1181), - [anon_sym_COLON] = ACTIONS(1183), - [anon_sym_DOT_DOT] = ACTIONS(1183), - [anon_sym_fault] = ACTIONS(1181), - [anon_sym_enum] = ACTIONS(1181), - [anon_sym_interface] = ACTIONS(1181), - [anon_sym_DOT] = ACTIONS(1181), - [anon_sym_macro] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1181), - [anon_sym_int] = ACTIONS(1181), - [anon_sym_PLUS] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_LT_LT] = ACTIONS(1181), - [anon_sym_GT_GT] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_DOLLARassert] = ACTIONS(1183), - [anon_sym_DOLLARerror] = ACTIONS(1183), - [anon_sym_DOLLARinclude] = ACTIONS(1183), - [anon_sym_DOLLARexec] = ACTIONS(1183), - [anon_sym_DOLLARecho] = ACTIONS(1183), - [anon_sym_PLUS_EQ] = ACTIONS(1183), - [anon_sym_DASH_EQ] = ACTIONS(1183), - [anon_sym_STAR_EQ] = ACTIONS(1183), - [anon_sym_SLASH_EQ] = ACTIONS(1183), - [anon_sym_PERCENT_EQ] = ACTIONS(1183), - [anon_sym_LT_LT_EQ] = ACTIONS(1183), - [anon_sym_GT_GT_EQ] = ACTIONS(1183), - [anon_sym_AMP_EQ] = ACTIONS(1183), - [anon_sym_CARET_EQ] = ACTIONS(1183), - [anon_sym_PIPE_EQ] = ACTIONS(1183), - [anon_sym_QMARK] = ACTIONS(1181), - [anon_sym_QMARK_COLON] = ACTIONS(1183), - [anon_sym_QMARK_QMARK] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_PLUS_PLUS] = ACTIONS(1183), - [anon_sym_DASH_DASH] = ACTIONS(1183), - [anon_sym_SLASH] = ACTIONS(1181), - [anon_sym_PERCENT] = ACTIONS(1181), - [anon_sym_PIPE] = ACTIONS(1181), - [anon_sym_CARET] = ACTIONS(1181), - [anon_sym_EQ_EQ] = ACTIONS(1183), - [anon_sym_BANG_EQ] = ACTIONS(1183), - [anon_sym_GT] = ACTIONS(1181), - [anon_sym_GT_EQ] = ACTIONS(1183), - [anon_sym_LT_EQ] = ACTIONS(1183), - [anon_sym_LT] = ACTIONS(1181), - [anon_sym_PIPE_PIPE] = ACTIONS(1183), - [anon_sym_BANG_BANG] = ACTIONS(1183), - [anon_sym_typeid] = ACTIONS(1181), - [anon_sym_void] = ACTIONS(1181), - [anon_sym_bool] = ACTIONS(1181), - [anon_sym_char] = ACTIONS(1181), - [anon_sym_ichar] = ACTIONS(1181), - [anon_sym_short] = ACTIONS(1181), - [anon_sym_ushort] = ACTIONS(1181), - [anon_sym_uint] = ACTIONS(1181), - [anon_sym_long] = ACTIONS(1181), - [anon_sym_ulong] = ACTIONS(1181), - [anon_sym_int128] = ACTIONS(1181), - [anon_sym_uint128] = ACTIONS(1181), - [anon_sym_float] = ACTIONS(1181), - [anon_sym_double] = ACTIONS(1181), - [anon_sym_float16] = ACTIONS(1181), - [anon_sym_bfloat16] = ACTIONS(1181), - [anon_sym_float128] = ACTIONS(1181), - [anon_sym_iptr] = ACTIONS(1181), - [anon_sym_uptr] = ACTIONS(1181), - [anon_sym_isz] = ACTIONS(1181), - [anon_sym_usz] = ACTIONS(1181), - [anon_sym_anyfault] = ACTIONS(1181), - [anon_sym_any] = ACTIONS(1181), - [anon_sym_DOLLARtypeof] = ACTIONS(1183), - [anon_sym_DOLLARtypefrom] = ACTIONS(1183), - [anon_sym_DOLLARvatype] = ACTIONS(1183), - [anon_sym_DOLLARevaltype] = ACTIONS(1183), - [anon_sym_GT_RBRACK] = ACTIONS(1183), + [sym_ident] = ACTIONS(1609), + [sym_integer_literal] = ACTIONS(1611), + [anon_sym_SQUOTE] = ACTIONS(1611), + [anon_sym_DQUOTE] = ACTIONS(1611), + [anon_sym_BQUOTE] = ACTIONS(1611), + [sym_bytes_literal] = ACTIONS(1611), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1609), + [sym_at_ident] = ACTIONS(1611), + [sym_hash_ident] = ACTIONS(1611), + [sym_type_ident] = ACTIONS(1611), + [sym_ct_type_ident] = ACTIONS(1611), + [sym_const_ident] = ACTIONS(1609), + [sym_builtin] = ACTIONS(1611), + [anon_sym_LPAREN] = ACTIONS(1611), + [anon_sym_AMP] = ACTIONS(1609), + [anon_sym_static] = ACTIONS(1609), + [anon_sym_tlocal] = ACTIONS(1609), + [anon_sym_SEMI] = ACTIONS(1611), + [anon_sym_fn] = ACTIONS(1609), + [anon_sym_LBRACE] = ACTIONS(1609), + [anon_sym_const] = ACTIONS(1609), + [anon_sym_var] = ACTIONS(1609), + [anon_sym_return] = ACTIONS(1609), + [anon_sym_continue] = ACTIONS(1609), + [anon_sym_break] = ACTIONS(1609), + [anon_sym_defer] = ACTIONS(1609), + [anon_sym_assert] = ACTIONS(1609), + [anon_sym_nextcase] = ACTIONS(1609), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1611), + [anon_sym_if] = ACTIONS(1609), + [anon_sym_for] = ACTIONS(1609), + [anon_sym_foreach] = ACTIONS(1609), + [anon_sym_foreach_r] = ACTIONS(1609), + [anon_sym_while] = ACTIONS(1609), + [anon_sym_do] = ACTIONS(1609), + [anon_sym_int] = ACTIONS(1609), + [anon_sym_PLUS] = ACTIONS(1609), + [anon_sym_DASH] = ACTIONS(1609), + [anon_sym_STAR] = ACTIONS(1611), + [anon_sym_asm] = ACTIONS(1609), + [anon_sym_DOLLARassert] = ACTIONS(1609), + [anon_sym_DOLLARerror] = ACTIONS(1609), + [anon_sym_DOLLARecho] = ACTIONS(1609), + [anon_sym_DOLLARif] = ACTIONS(1609), + [anon_sym_DOLLARendif] = ACTIONS(1609), + [anon_sym_DOLLARswitch] = ACTIONS(1609), + [anon_sym_DOLLARfor] = ACTIONS(1609), + [anon_sym_DOLLARforeach] = ACTIONS(1609), + [anon_sym_DOLLARalignof] = ACTIONS(1609), + [anon_sym_DOLLARextnameof] = ACTIONS(1609), + [anon_sym_DOLLARnameof] = ACTIONS(1609), + [anon_sym_DOLLARoffsetof] = ACTIONS(1609), + [anon_sym_DOLLARqnameof] = ACTIONS(1609), + [anon_sym_DOLLARvaconst] = ACTIONS(1609), + [anon_sym_DOLLARvaarg] = ACTIONS(1609), + [anon_sym_DOLLARvaref] = ACTIONS(1609), + [anon_sym_DOLLARvaexpr] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(1609), + [anon_sym_false] = ACTIONS(1609), + [anon_sym_null] = ACTIONS(1609), + [anon_sym_DOLLARvacount] = ACTIONS(1609), + [anon_sym_DOLLAReval] = ACTIONS(1609), + [anon_sym_DOLLARis_const] = ACTIONS(1609), + [anon_sym_DOLLARsizeof] = ACTIONS(1609), + [anon_sym_DOLLARstringify] = ACTIONS(1609), + [anon_sym_DOLLARappend] = ACTIONS(1609), + [anon_sym_DOLLARconcat] = ACTIONS(1609), + [anon_sym_DOLLARdefined] = ACTIONS(1609), + [anon_sym_DOLLARembed] = ACTIONS(1609), + [anon_sym_DOLLARand] = ACTIONS(1609), + [anon_sym_DOLLARor] = ACTIONS(1609), + [anon_sym_DOLLARfeature] = ACTIONS(1609), + [anon_sym_DOLLARassignable] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_TILDE] = ACTIONS(1611), + [anon_sym_PLUS_PLUS] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1611), + [anon_sym_typeid] = ACTIONS(1609), + [anon_sym_LBRACE_PIPE] = ACTIONS(1611), + [anon_sym_void] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_ichar] = ACTIONS(1609), + [anon_sym_short] = ACTIONS(1609), + [anon_sym_ushort] = ACTIONS(1609), + [anon_sym_uint] = ACTIONS(1609), + [anon_sym_long] = ACTIONS(1609), + [anon_sym_ulong] = ACTIONS(1609), + [anon_sym_int128] = ACTIONS(1609), + [anon_sym_uint128] = ACTIONS(1609), + [anon_sym_float] = ACTIONS(1609), + [anon_sym_double] = ACTIONS(1609), + [anon_sym_float16] = ACTIONS(1609), + [anon_sym_bfloat16] = ACTIONS(1609), + [anon_sym_float128] = ACTIONS(1609), + [anon_sym_iptr] = ACTIONS(1609), + [anon_sym_uptr] = ACTIONS(1609), + [anon_sym_isz] = ACTIONS(1609), + [anon_sym_usz] = ACTIONS(1609), + [anon_sym_anyfault] = ACTIONS(1609), + [anon_sym_any] = ACTIONS(1609), + [anon_sym_DOLLARtypeof] = ACTIONS(1609), + [anon_sym_DOLLARtypefrom] = ACTIONS(1609), + [anon_sym_DOLLARevaltype] = ACTIONS(1609), + [anon_sym_DOLLARvatype] = ACTIONS(1609), + [sym_real_literal] = ACTIONS(1611), }, [792] = { [sym_line_comment] = STATE(792), [sym_doc_comment] = STATE(792), [sym_block_comment] = STATE(792), - [ts_builtin_sym_end] = ACTIONS(1379), - [sym_ident] = ACTIONS(1377), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_type_ident] = ACTIONS(1379), - [sym_ct_type_ident] = ACTIONS(1379), - [anon_sym_COMMA] = ACTIONS(1379), - [anon_sym_LPAREN_LT] = ACTIONS(1379), - [anon_sym_GT_RPAREN] = ACTIONS(1379), - [anon_sym_EQ] = ACTIONS(1377), - [anon_sym_LPAREN] = ACTIONS(1377), - [anon_sym_RPAREN] = ACTIONS(1379), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_LBRACK] = ACTIONS(1379), - [anon_sym_RBRACK] = ACTIONS(1379), - [anon_sym_tlocal] = ACTIONS(1377), - [anon_sym_extern] = ACTIONS(1377), - [anon_sym_module] = ACTIONS(1377), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_import] = ACTIONS(1377), - [anon_sym_fn] = ACTIONS(1377), - [anon_sym_RBRACE] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(1377), - [anon_sym_distinct] = ACTIONS(1377), - [anon_sym_const] = ACTIONS(1377), - [anon_sym_struct] = ACTIONS(1377), - [anon_sym_union] = ACTIONS(1377), - [anon_sym_bitstruct] = ACTIONS(1377), - [anon_sym_COLON] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1379), - [anon_sym_fault] = ACTIONS(1377), - [anon_sym_enum] = ACTIONS(1377), - [anon_sym_interface] = ACTIONS(1377), - [anon_sym_DOT] = ACTIONS(1377), - [anon_sym_macro] = ACTIONS(1377), - [anon_sym_AMP_AMP] = ACTIONS(1379), - [anon_sym_while] = ACTIONS(1377), - [anon_sym_int] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_LT_LT] = ACTIONS(1377), - [anon_sym_GT_GT] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_DOLLARassert] = ACTIONS(1379), - [anon_sym_DOLLARerror] = ACTIONS(1379), - [anon_sym_DOLLARinclude] = ACTIONS(1379), - [anon_sym_DOLLARexec] = ACTIONS(1379), - [anon_sym_DOLLARecho] = ACTIONS(1379), - [anon_sym_PLUS_EQ] = ACTIONS(1379), - [anon_sym_DASH_EQ] = ACTIONS(1379), - [anon_sym_STAR_EQ] = ACTIONS(1379), - [anon_sym_SLASH_EQ] = ACTIONS(1379), - [anon_sym_PERCENT_EQ] = ACTIONS(1379), - [anon_sym_LT_LT_EQ] = ACTIONS(1379), - [anon_sym_GT_GT_EQ] = ACTIONS(1379), - [anon_sym_AMP_EQ] = ACTIONS(1379), - [anon_sym_CARET_EQ] = ACTIONS(1379), - [anon_sym_PIPE_EQ] = ACTIONS(1379), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_QMARK_COLON] = ACTIONS(1379), - [anon_sym_QMARK_QMARK] = ACTIONS(1379), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_PLUS_PLUS] = ACTIONS(1379), - [anon_sym_DASH_DASH] = ACTIONS(1379), - [anon_sym_SLASH] = ACTIONS(1377), - [anon_sym_PERCENT] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1377), - [anon_sym_CARET] = ACTIONS(1377), - [anon_sym_EQ_EQ] = ACTIONS(1379), - [anon_sym_BANG_EQ] = ACTIONS(1379), - [anon_sym_GT] = ACTIONS(1377), - [anon_sym_GT_EQ] = ACTIONS(1379), - [anon_sym_LT_EQ] = ACTIONS(1379), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_PIPE_PIPE] = ACTIONS(1379), - [anon_sym_BANG_BANG] = ACTIONS(1379), - [anon_sym_typeid] = ACTIONS(1377), - [anon_sym_void] = ACTIONS(1377), - [anon_sym_bool] = ACTIONS(1377), - [anon_sym_char] = ACTIONS(1377), - [anon_sym_ichar] = ACTIONS(1377), - [anon_sym_short] = ACTIONS(1377), - [anon_sym_ushort] = ACTIONS(1377), - [anon_sym_uint] = ACTIONS(1377), - [anon_sym_long] = ACTIONS(1377), - [anon_sym_ulong] = ACTIONS(1377), - [anon_sym_int128] = ACTIONS(1377), - [anon_sym_uint128] = ACTIONS(1377), - [anon_sym_float] = ACTIONS(1377), - [anon_sym_double] = ACTIONS(1377), - [anon_sym_float16] = ACTIONS(1377), - [anon_sym_bfloat16] = ACTIONS(1377), - [anon_sym_float128] = ACTIONS(1377), - [anon_sym_iptr] = ACTIONS(1377), - [anon_sym_uptr] = ACTIONS(1377), - [anon_sym_isz] = ACTIONS(1377), - [anon_sym_usz] = ACTIONS(1377), - [anon_sym_anyfault] = ACTIONS(1377), - [anon_sym_any] = ACTIONS(1377), - [anon_sym_DOLLARtypeof] = ACTIONS(1379), - [anon_sym_DOLLARtypefrom] = ACTIONS(1379), - [anon_sym_DOLLARvatype] = ACTIONS(1379), - [anon_sym_DOLLARevaltype] = ACTIONS(1379), - [anon_sym_GT_RBRACK] = ACTIONS(1379), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARendif] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, [793] = { [sym_line_comment] = STATE(793), [sym_doc_comment] = STATE(793), [sym_block_comment] = STATE(793), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1440), - [sym_global_storage] = STATE(1030), - [sym_module] = STATE(811), - [sym_import_declaration] = STATE(811), - [sym_define_declaration] = STATE(811), - [sym_distinct_declaration] = STATE(811), - [sym_const_declaration] = STATE(811), - [sym_global_declaration] = STATE(811), - [sym__struct_or_union] = STATE(2136), - [sym_struct_declaration] = STATE(811), - [sym_bitstruct_declaration] = STATE(811), - [sym_fault_declaration] = STATE(811), - [sym_enum_declaration] = STATE(811), - [sym_interface_declaration] = STATE(811), - [sym_func_declaration] = STATE(811), - [sym_func_definition] = STATE(811), - [sym_macro_declaration] = STATE(811), - [sym_ct_assert_stmt] = STATE(811), - [sym_ct_include_stmt] = STATE(811), - [sym_ct_exec_stmt] = STATE(811), - [sym_ct_echo_stmt] = STATE(811), - [sym_module_type_ident] = STATE(912), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1100), - [sym__type_or_optional_type] = STATE(2115), - [sym_optional_type] = STATE(1106), - [aux_sym_source_file_repeat1] = STATE(793), - [ts_builtin_sym_end] = ACTIONS(1697), - [sym_ident] = ACTIONS(1699), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_type_ident] = ACTIONS(1702), - [sym_ct_type_ident] = ACTIONS(1705), - [anon_sym_tlocal] = ACTIONS(1708), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1714), - [anon_sym_import] = ACTIONS(1717), - [anon_sym_fn] = ACTIONS(1720), - [anon_sym_def] = ACTIONS(1723), - [anon_sym_distinct] = ACTIONS(1726), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1732), - [anon_sym_union] = ACTIONS(1732), - [anon_sym_bitstruct] = ACTIONS(1735), - [anon_sym_fault] = ACTIONS(1738), - [anon_sym_enum] = ACTIONS(1741), - [anon_sym_interface] = ACTIONS(1744), - [anon_sym_macro] = ACTIONS(1747), - [anon_sym_int] = ACTIONS(1750), - [anon_sym_DOLLARassert] = ACTIONS(1753), - [anon_sym_DOLLARerror] = ACTIONS(1756), - [anon_sym_DOLLARinclude] = ACTIONS(1759), - [anon_sym_DOLLARexec] = ACTIONS(1762), - [anon_sym_DOLLARecho] = ACTIONS(1765), - [anon_sym_typeid] = ACTIONS(1750), - [anon_sym_void] = ACTIONS(1750), - [anon_sym_bool] = ACTIONS(1750), - [anon_sym_char] = ACTIONS(1750), - [anon_sym_ichar] = ACTIONS(1750), - [anon_sym_short] = ACTIONS(1750), - [anon_sym_ushort] = ACTIONS(1750), - [anon_sym_uint] = ACTIONS(1750), - [anon_sym_long] = ACTIONS(1750), - [anon_sym_ulong] = ACTIONS(1750), - [anon_sym_int128] = ACTIONS(1750), - [anon_sym_uint128] = ACTIONS(1750), - [anon_sym_float] = ACTIONS(1750), - [anon_sym_double] = ACTIONS(1750), - [anon_sym_float16] = ACTIONS(1750), - [anon_sym_bfloat16] = ACTIONS(1750), - [anon_sym_float128] = ACTIONS(1750), - [anon_sym_iptr] = ACTIONS(1750), - [anon_sym_uptr] = ACTIONS(1750), - [anon_sym_isz] = ACTIONS(1750), - [anon_sym_usz] = ACTIONS(1750), - [anon_sym_anyfault] = ACTIONS(1750), - [anon_sym_any] = ACTIONS(1750), - [anon_sym_DOLLARtypeof] = ACTIONS(1768), - [anon_sym_DOLLARtypefrom] = ACTIONS(1771), - [anon_sym_DOLLARvatype] = ACTIONS(1771), - [anon_sym_DOLLARevaltype] = ACTIONS(1771), + [sym_ident] = ACTIONS(1613), + [sym_integer_literal] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1615), + [anon_sym_BQUOTE] = ACTIONS(1615), + [sym_bytes_literal] = ACTIONS(1615), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1613), + [sym_at_ident] = ACTIONS(1615), + [sym_hash_ident] = ACTIONS(1615), + [sym_type_ident] = ACTIONS(1615), + [sym_ct_type_ident] = ACTIONS(1615), + [sym_const_ident] = ACTIONS(1613), + [sym_builtin] = ACTIONS(1615), + [anon_sym_LPAREN] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(1613), + [anon_sym_static] = ACTIONS(1613), + [anon_sym_tlocal] = ACTIONS(1613), + [anon_sym_SEMI] = ACTIONS(1615), + [anon_sym_fn] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_const] = ACTIONS(1613), + [anon_sym_var] = ACTIONS(1613), + [anon_sym_return] = ACTIONS(1613), + [anon_sym_continue] = ACTIONS(1613), + [anon_sym_break] = ACTIONS(1613), + [anon_sym_defer] = ACTIONS(1613), + [anon_sym_assert] = ACTIONS(1613), + [anon_sym_nextcase] = ACTIONS(1613), + [anon_sym_switch] = ACTIONS(1613), + [anon_sym_AMP_AMP] = ACTIONS(1615), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_for] = ACTIONS(1613), + [anon_sym_foreach] = ACTIONS(1613), + [anon_sym_foreach_r] = ACTIONS(1613), + [anon_sym_while] = ACTIONS(1613), + [anon_sym_do] = ACTIONS(1613), + [anon_sym_int] = ACTIONS(1613), + [anon_sym_PLUS] = ACTIONS(1613), + [anon_sym_DASH] = ACTIONS(1613), + [anon_sym_STAR] = ACTIONS(1615), + [anon_sym_asm] = ACTIONS(1613), + [anon_sym_DOLLARassert] = ACTIONS(1613), + [anon_sym_DOLLARerror] = ACTIONS(1613), + [anon_sym_DOLLARecho] = ACTIONS(1613), + [anon_sym_DOLLARif] = ACTIONS(1613), + [anon_sym_DOLLARendif] = ACTIONS(1613), + [anon_sym_DOLLARswitch] = ACTIONS(1613), + [anon_sym_DOLLARfor] = ACTIONS(1613), + [anon_sym_DOLLARforeach] = ACTIONS(1613), + [anon_sym_DOLLARalignof] = ACTIONS(1613), + [anon_sym_DOLLARextnameof] = ACTIONS(1613), + [anon_sym_DOLLARnameof] = ACTIONS(1613), + [anon_sym_DOLLARoffsetof] = ACTIONS(1613), + [anon_sym_DOLLARqnameof] = ACTIONS(1613), + [anon_sym_DOLLARvaconst] = ACTIONS(1613), + [anon_sym_DOLLARvaarg] = ACTIONS(1613), + [anon_sym_DOLLARvaref] = ACTIONS(1613), + [anon_sym_DOLLARvaexpr] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1613), + [anon_sym_false] = ACTIONS(1613), + [anon_sym_null] = ACTIONS(1613), + [anon_sym_DOLLARvacount] = ACTIONS(1613), + [anon_sym_DOLLAReval] = ACTIONS(1613), + [anon_sym_DOLLARis_const] = ACTIONS(1613), + [anon_sym_DOLLARsizeof] = ACTIONS(1613), + [anon_sym_DOLLARstringify] = ACTIONS(1613), + [anon_sym_DOLLARappend] = ACTIONS(1613), + [anon_sym_DOLLARconcat] = ACTIONS(1613), + [anon_sym_DOLLARdefined] = ACTIONS(1613), + [anon_sym_DOLLARembed] = ACTIONS(1613), + [anon_sym_DOLLARand] = ACTIONS(1613), + [anon_sym_DOLLARor] = ACTIONS(1613), + [anon_sym_DOLLARfeature] = ACTIONS(1613), + [anon_sym_DOLLARassignable] = ACTIONS(1613), + [anon_sym_BANG] = ACTIONS(1615), + [anon_sym_TILDE] = ACTIONS(1615), + [anon_sym_PLUS_PLUS] = ACTIONS(1615), + [anon_sym_DASH_DASH] = ACTIONS(1615), + [anon_sym_typeid] = ACTIONS(1613), + [anon_sym_LBRACE_PIPE] = ACTIONS(1615), + [anon_sym_void] = ACTIONS(1613), + [anon_sym_bool] = ACTIONS(1613), + [anon_sym_char] = ACTIONS(1613), + [anon_sym_ichar] = ACTIONS(1613), + [anon_sym_short] = ACTIONS(1613), + [anon_sym_ushort] = ACTIONS(1613), + [anon_sym_uint] = ACTIONS(1613), + [anon_sym_long] = ACTIONS(1613), + [anon_sym_ulong] = ACTIONS(1613), + [anon_sym_int128] = ACTIONS(1613), + [anon_sym_uint128] = ACTIONS(1613), + [anon_sym_float] = ACTIONS(1613), + [anon_sym_double] = ACTIONS(1613), + [anon_sym_float16] = ACTIONS(1613), + [anon_sym_bfloat16] = ACTIONS(1613), + [anon_sym_float128] = ACTIONS(1613), + [anon_sym_iptr] = ACTIONS(1613), + [anon_sym_uptr] = ACTIONS(1613), + [anon_sym_isz] = ACTIONS(1613), + [anon_sym_usz] = ACTIONS(1613), + [anon_sym_anyfault] = ACTIONS(1613), + [anon_sym_any] = ACTIONS(1613), + [anon_sym_DOLLARtypeof] = ACTIONS(1613), + [anon_sym_DOLLARtypefrom] = ACTIONS(1613), + [anon_sym_DOLLARevaltype] = ACTIONS(1613), + [anon_sym_DOLLARvatype] = ACTIONS(1613), + [sym_real_literal] = ACTIONS(1615), }, [794] = { [sym_line_comment] = STATE(794), [sym_doc_comment] = STATE(794), [sym_block_comment] = STATE(794), - [sym_module_resolution] = STATE(1399), - [aux_sym__module_path] = STATE(1440), - [sym_global_storage] = STATE(1030), - [sym_module] = STATE(811), - [sym_import_declaration] = STATE(811), - [sym_define_declaration] = STATE(811), - [sym_distinct_declaration] = STATE(811), - [sym_const_declaration] = STATE(811), - [sym_global_declaration] = STATE(811), - [sym__struct_or_union] = STATE(2136), - [sym_struct_declaration] = STATE(811), - [sym_bitstruct_declaration] = STATE(811), - [sym_fault_declaration] = STATE(811), - [sym_enum_declaration] = STATE(811), - [sym_interface_declaration] = STATE(811), - [sym_func_declaration] = STATE(811), - [sym_func_definition] = STATE(811), - [sym_macro_declaration] = STATE(811), - [sym_ct_assert_stmt] = STATE(811), - [sym_ct_include_stmt] = STATE(811), - [sym_ct_exec_stmt] = STATE(811), - [sym_ct_echo_stmt] = STATE(811), - [sym_module_type_ident] = STATE(912), - [sym_base_type_name] = STATE(953), - [sym_base_type] = STATE(932), - [sym_type] = STATE(1100), - [sym__type_or_optional_type] = STATE(2115), - [sym_optional_type] = STATE(1106), - [aux_sym_source_file_repeat1] = STATE(793), - [ts_builtin_sym_end] = ACTIONS(1774), - [sym_ident] = ACTIONS(11), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_type_ident] = ACTIONS(13), - [sym_ct_type_ident] = ACTIONS(15), - [anon_sym_tlocal] = ACTIONS(17), - [anon_sym_extern] = ACTIONS(19), - [anon_sym_module] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(25), - [anon_sym_def] = ACTIONS(27), - [anon_sym_distinct] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(33), - [anon_sym_bitstruct] = ACTIONS(35), - [anon_sym_fault] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_interface] = ACTIONS(41), - [anon_sym_macro] = ACTIONS(43), - [anon_sym_int] = ACTIONS(45), - [anon_sym_DOLLARassert] = ACTIONS(47), - [anon_sym_DOLLARerror] = ACTIONS(49), - [anon_sym_DOLLARinclude] = ACTIONS(51), - [anon_sym_DOLLARexec] = ACTIONS(53), - [anon_sym_DOLLARecho] = ACTIONS(55), - [anon_sym_typeid] = ACTIONS(45), - [anon_sym_void] = ACTIONS(45), - [anon_sym_bool] = ACTIONS(45), - [anon_sym_char] = ACTIONS(45), - [anon_sym_ichar] = ACTIONS(45), - [anon_sym_short] = ACTIONS(45), - [anon_sym_ushort] = ACTIONS(45), - [anon_sym_uint] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_ulong] = ACTIONS(45), - [anon_sym_int128] = ACTIONS(45), - [anon_sym_uint128] = ACTIONS(45), - [anon_sym_float] = ACTIONS(45), - [anon_sym_double] = ACTIONS(45), - [anon_sym_float16] = ACTIONS(45), - [anon_sym_bfloat16] = ACTIONS(45), - [anon_sym_float128] = ACTIONS(45), - [anon_sym_iptr] = ACTIONS(45), - [anon_sym_uptr] = ACTIONS(45), - [anon_sym_isz] = ACTIONS(45), - [anon_sym_usz] = ACTIONS(45), - [anon_sym_anyfault] = ACTIONS(45), - [anon_sym_any] = ACTIONS(45), - [anon_sym_DOLLARtypeof] = ACTIONS(57), - [anon_sym_DOLLARtypefrom] = ACTIONS(59), - [anon_sym_DOLLARvatype] = ACTIONS(59), - [anon_sym_DOLLARevaltype] = ACTIONS(59), + [sym_ident] = ACTIONS(1617), + [sym_integer_literal] = ACTIONS(1619), + [anon_sym_SQUOTE] = ACTIONS(1619), + [anon_sym_DQUOTE] = ACTIONS(1619), + [anon_sym_BQUOTE] = ACTIONS(1619), + [sym_bytes_literal] = ACTIONS(1619), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1617), + [sym_at_ident] = ACTIONS(1619), + [sym_hash_ident] = ACTIONS(1619), + [sym_type_ident] = ACTIONS(1619), + [sym_ct_type_ident] = ACTIONS(1619), + [sym_const_ident] = ACTIONS(1617), + [sym_builtin] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_AMP] = ACTIONS(1617), + [anon_sym_static] = ACTIONS(1617), + [anon_sym_tlocal] = ACTIONS(1617), + [anon_sym_SEMI] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1617), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_const] = ACTIONS(1617), + [anon_sym_var] = ACTIONS(1617), + [anon_sym_return] = ACTIONS(1617), + [anon_sym_continue] = ACTIONS(1617), + [anon_sym_break] = ACTIONS(1617), + [anon_sym_defer] = ACTIONS(1617), + [anon_sym_assert] = ACTIONS(1617), + [anon_sym_nextcase] = ACTIONS(1617), + [anon_sym_switch] = ACTIONS(1617), + [anon_sym_AMP_AMP] = ACTIONS(1619), + [anon_sym_if] = ACTIONS(1617), + [anon_sym_for] = ACTIONS(1617), + [anon_sym_foreach] = ACTIONS(1617), + [anon_sym_foreach_r] = ACTIONS(1617), + [anon_sym_while] = ACTIONS(1617), + [anon_sym_do] = ACTIONS(1617), + [anon_sym_int] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_asm] = ACTIONS(1617), + [anon_sym_DOLLARassert] = ACTIONS(1617), + [anon_sym_DOLLARerror] = ACTIONS(1617), + [anon_sym_DOLLARecho] = ACTIONS(1617), + [anon_sym_DOLLARif] = ACTIONS(1617), + [anon_sym_DOLLARendif] = ACTIONS(1617), + [anon_sym_DOLLARswitch] = ACTIONS(1617), + [anon_sym_DOLLARfor] = ACTIONS(1617), + [anon_sym_DOLLARforeach] = ACTIONS(1617), + [anon_sym_DOLLARalignof] = ACTIONS(1617), + [anon_sym_DOLLARextnameof] = ACTIONS(1617), + [anon_sym_DOLLARnameof] = ACTIONS(1617), + [anon_sym_DOLLARoffsetof] = ACTIONS(1617), + [anon_sym_DOLLARqnameof] = ACTIONS(1617), + [anon_sym_DOLLARvaconst] = ACTIONS(1617), + [anon_sym_DOLLARvaarg] = ACTIONS(1617), + [anon_sym_DOLLARvaref] = ACTIONS(1617), + [anon_sym_DOLLARvaexpr] = ACTIONS(1617), + [anon_sym_true] = ACTIONS(1617), + [anon_sym_false] = ACTIONS(1617), + [anon_sym_null] = ACTIONS(1617), + [anon_sym_DOLLARvacount] = ACTIONS(1617), + [anon_sym_DOLLAReval] = ACTIONS(1617), + [anon_sym_DOLLARis_const] = ACTIONS(1617), + [anon_sym_DOLLARsizeof] = ACTIONS(1617), + [anon_sym_DOLLARstringify] = ACTIONS(1617), + [anon_sym_DOLLARappend] = ACTIONS(1617), + [anon_sym_DOLLARconcat] = ACTIONS(1617), + [anon_sym_DOLLARdefined] = ACTIONS(1617), + [anon_sym_DOLLARembed] = ACTIONS(1617), + [anon_sym_DOLLARand] = ACTIONS(1617), + [anon_sym_DOLLARor] = ACTIONS(1617), + [anon_sym_DOLLARfeature] = ACTIONS(1617), + [anon_sym_DOLLARassignable] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_TILDE] = ACTIONS(1619), + [anon_sym_PLUS_PLUS] = ACTIONS(1619), + [anon_sym_DASH_DASH] = ACTIONS(1619), + [anon_sym_typeid] = ACTIONS(1617), + [anon_sym_LBRACE_PIPE] = ACTIONS(1619), + [anon_sym_void] = ACTIONS(1617), + [anon_sym_bool] = ACTIONS(1617), + [anon_sym_char] = ACTIONS(1617), + [anon_sym_ichar] = ACTIONS(1617), + [anon_sym_short] = ACTIONS(1617), + [anon_sym_ushort] = ACTIONS(1617), + [anon_sym_uint] = ACTIONS(1617), + [anon_sym_long] = ACTIONS(1617), + [anon_sym_ulong] = ACTIONS(1617), + [anon_sym_int128] = ACTIONS(1617), + [anon_sym_uint128] = ACTIONS(1617), + [anon_sym_float] = ACTIONS(1617), + [anon_sym_double] = ACTIONS(1617), + [anon_sym_float16] = ACTIONS(1617), + [anon_sym_bfloat16] = ACTIONS(1617), + [anon_sym_float128] = ACTIONS(1617), + [anon_sym_iptr] = ACTIONS(1617), + [anon_sym_uptr] = ACTIONS(1617), + [anon_sym_isz] = ACTIONS(1617), + [anon_sym_usz] = ACTIONS(1617), + [anon_sym_anyfault] = ACTIONS(1617), + [anon_sym_any] = ACTIONS(1617), + [anon_sym_DOLLARtypeof] = ACTIONS(1617), + [anon_sym_DOLLARtypefrom] = ACTIONS(1617), + [anon_sym_DOLLARevaltype] = ACTIONS(1617), + [anon_sym_DOLLARvatype] = ACTIONS(1617), + [sym_real_literal] = ACTIONS(1619), }, [795] = { [sym_line_comment] = STATE(795), [sym_doc_comment] = STATE(795), [sym_block_comment] = STATE(795), - [sym_ident] = ACTIONS(1357), - [sym_integer_literal] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [anon_sym_BQUOTE] = ACTIONS(1359), - [sym_bytes_literal] = ACTIONS(1359), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1357), - [sym_at_ident] = ACTIONS(1359), - [sym_hash_ident] = ACTIONS(1359), - [sym_type_ident] = ACTIONS(1359), - [sym_ct_type_ident] = ACTIONS(1359), - [sym_const_ident] = ACTIONS(1357), - [sym_builtin] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_fn] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_AMP_AMP] = ACTIONS(1359), - [anon_sym_int] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_DOLLARalignof] = ACTIONS(1357), - [anon_sym_DOLLARextnameof] = ACTIONS(1357), - [anon_sym_DOLLARnameof] = ACTIONS(1357), - [anon_sym_DOLLARoffsetof] = ACTIONS(1357), - [anon_sym_DOLLARqnameof] = ACTIONS(1357), - [anon_sym_DOLLAReval] = ACTIONS(1357), - [anon_sym_DOLLARdefined] = ACTIONS(1357), - [anon_sym_DOLLARsizeof] = ACTIONS(1357), - [anon_sym_DOLLARstringify] = ACTIONS(1357), - [anon_sym_DOLLARis_const] = ACTIONS(1357), - [anon_sym_DOLLARvaconst] = ACTIONS(1357), - [anon_sym_DOLLARvaarg] = ACTIONS(1357), - [anon_sym_DOLLARvaref] = ACTIONS(1357), - [anon_sym_DOLLARvaexpr] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1357), - [anon_sym_false] = ACTIONS(1357), - [anon_sym_null] = ACTIONS(1357), - [anon_sym_DOLLARvacount] = ACTIONS(1357), - [anon_sym_DOLLARfeature] = ACTIONS(1357), - [anon_sym_DOLLARand] = ACTIONS(1357), - [anon_sym_DOLLARor] = ACTIONS(1357), - [anon_sym_DOLLARassignable] = ACTIONS(1357), - [anon_sym_DOLLARembed] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_typeid] = ACTIONS(1357), - [anon_sym_LBRACE_PIPE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1357), - [anon_sym_bool] = ACTIONS(1357), - [anon_sym_char] = ACTIONS(1357), - [anon_sym_ichar] = ACTIONS(1357), - [anon_sym_short] = ACTIONS(1357), - [anon_sym_ushort] = ACTIONS(1357), - [anon_sym_uint] = ACTIONS(1357), - [anon_sym_long] = ACTIONS(1357), - [anon_sym_ulong] = ACTIONS(1357), - [anon_sym_int128] = ACTIONS(1357), - [anon_sym_uint128] = ACTIONS(1357), - [anon_sym_float] = ACTIONS(1357), - [anon_sym_double] = ACTIONS(1357), - [anon_sym_float16] = ACTIONS(1357), - [anon_sym_bfloat16] = ACTIONS(1357), - [anon_sym_float128] = ACTIONS(1357), - [anon_sym_iptr] = ACTIONS(1357), - [anon_sym_uptr] = ACTIONS(1357), - [anon_sym_isz] = ACTIONS(1357), - [anon_sym_usz] = ACTIONS(1357), - [anon_sym_anyfault] = ACTIONS(1357), - [anon_sym_any] = ACTIONS(1357), - [anon_sym_DOLLARtypeof] = ACTIONS(1357), - [anon_sym_DOLLARtypefrom] = ACTIONS(1357), - [anon_sym_DOLLARvatype] = ACTIONS(1357), - [anon_sym_DOLLARevaltype] = ACTIONS(1357), - [sym_real_literal] = ACTIONS(1359), + [sym_ident] = ACTIONS(1621), + [sym_integer_literal] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1623), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_bytes_literal] = ACTIONS(1623), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1621), + [sym_at_ident] = ACTIONS(1623), + [sym_hash_ident] = ACTIONS(1623), + [sym_type_ident] = ACTIONS(1623), + [sym_ct_type_ident] = ACTIONS(1623), + [sym_const_ident] = ACTIONS(1621), + [sym_builtin] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_tlocal] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_var] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_defer] = ACTIONS(1621), + [anon_sym_assert] = ACTIONS(1621), + [anon_sym_nextcase] = ACTIONS(1621), + [anon_sym_switch] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_foreach] = ACTIONS(1621), + [anon_sym_foreach_r] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_int] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_asm] = ACTIONS(1621), + [anon_sym_DOLLARassert] = ACTIONS(1621), + [anon_sym_DOLLARerror] = ACTIONS(1621), + [anon_sym_DOLLARecho] = ACTIONS(1621), + [anon_sym_DOLLARif] = ACTIONS(1621), + [anon_sym_DOLLARendif] = ACTIONS(1621), + [anon_sym_DOLLARswitch] = ACTIONS(1621), + [anon_sym_DOLLARfor] = ACTIONS(1621), + [anon_sym_DOLLARforeach] = ACTIONS(1621), + [anon_sym_DOLLARalignof] = ACTIONS(1621), + [anon_sym_DOLLARextnameof] = ACTIONS(1621), + [anon_sym_DOLLARnameof] = ACTIONS(1621), + [anon_sym_DOLLARoffsetof] = ACTIONS(1621), + [anon_sym_DOLLARqnameof] = ACTIONS(1621), + [anon_sym_DOLLARvaconst] = ACTIONS(1621), + [anon_sym_DOLLARvaarg] = ACTIONS(1621), + [anon_sym_DOLLARvaref] = ACTIONS(1621), + [anon_sym_DOLLARvaexpr] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_null] = ACTIONS(1621), + [anon_sym_DOLLARvacount] = ACTIONS(1621), + [anon_sym_DOLLAReval] = ACTIONS(1621), + [anon_sym_DOLLARis_const] = ACTIONS(1621), + [anon_sym_DOLLARsizeof] = ACTIONS(1621), + [anon_sym_DOLLARstringify] = ACTIONS(1621), + [anon_sym_DOLLARappend] = ACTIONS(1621), + [anon_sym_DOLLARconcat] = ACTIONS(1621), + [anon_sym_DOLLARdefined] = ACTIONS(1621), + [anon_sym_DOLLARembed] = ACTIONS(1621), + [anon_sym_DOLLARand] = ACTIONS(1621), + [anon_sym_DOLLARor] = ACTIONS(1621), + [anon_sym_DOLLARfeature] = ACTIONS(1621), + [anon_sym_DOLLARassignable] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1623), + [anon_sym_TILDE] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_typeid] = ACTIONS(1621), + [anon_sym_LBRACE_PIPE] = ACTIONS(1623), + [anon_sym_void] = ACTIONS(1621), + [anon_sym_bool] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_ichar] = ACTIONS(1621), + [anon_sym_short] = ACTIONS(1621), + [anon_sym_ushort] = ACTIONS(1621), + [anon_sym_uint] = ACTIONS(1621), + [anon_sym_long] = ACTIONS(1621), + [anon_sym_ulong] = ACTIONS(1621), + [anon_sym_int128] = ACTIONS(1621), + [anon_sym_uint128] = ACTIONS(1621), + [anon_sym_float] = ACTIONS(1621), + [anon_sym_double] = ACTIONS(1621), + [anon_sym_float16] = ACTIONS(1621), + [anon_sym_bfloat16] = ACTIONS(1621), + [anon_sym_float128] = ACTIONS(1621), + [anon_sym_iptr] = ACTIONS(1621), + [anon_sym_uptr] = ACTIONS(1621), + [anon_sym_isz] = ACTIONS(1621), + [anon_sym_usz] = ACTIONS(1621), + [anon_sym_anyfault] = ACTIONS(1621), + [anon_sym_any] = ACTIONS(1621), + [anon_sym_DOLLARtypeof] = ACTIONS(1621), + [anon_sym_DOLLARtypefrom] = ACTIONS(1621), + [anon_sym_DOLLARevaltype] = ACTIONS(1621), + [anon_sym_DOLLARvatype] = ACTIONS(1621), + [sym_real_literal] = ACTIONS(1623), }, [796] = { [sym_line_comment] = STATE(796), [sym_doc_comment] = STATE(796), [sym_block_comment] = STATE(796), - [sym_ident] = ACTIONS(1357), - [sym_integer_literal] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [anon_sym_BQUOTE] = ACTIONS(1359), - [sym_bytes_literal] = ACTIONS(1359), + [sym_ident] = ACTIONS(1625), + [sym_integer_literal] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1627), + [anon_sym_BQUOTE] = ACTIONS(1627), + [sym_bytes_literal] = ACTIONS(1627), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1625), + [sym_at_ident] = ACTIONS(1627), + [sym_hash_ident] = ACTIONS(1627), + [sym_type_ident] = ACTIONS(1627), + [sym_ct_type_ident] = ACTIONS(1627), + [sym_const_ident] = ACTIONS(1625), + [sym_builtin] = ACTIONS(1627), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_tlocal] = ACTIONS(1625), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_fn] = ACTIONS(1625), + [anon_sym_LBRACE] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_var] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_defer] = ACTIONS(1625), + [anon_sym_assert] = ACTIONS(1625), + [anon_sym_nextcase] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1625), + [anon_sym_AMP_AMP] = ACTIONS(1627), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_foreach] = ACTIONS(1625), + [anon_sym_foreach_r] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_do] = ACTIONS(1625), + [anon_sym_int] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_asm] = ACTIONS(1625), + [anon_sym_DOLLARassert] = ACTIONS(1625), + [anon_sym_DOLLARerror] = ACTIONS(1625), + [anon_sym_DOLLARecho] = ACTIONS(1625), + [anon_sym_DOLLARif] = ACTIONS(1625), + [anon_sym_DOLLARendif] = ACTIONS(1625), + [anon_sym_DOLLARswitch] = ACTIONS(1625), + [anon_sym_DOLLARfor] = ACTIONS(1625), + [anon_sym_DOLLARforeach] = ACTIONS(1625), + [anon_sym_DOLLARalignof] = ACTIONS(1625), + [anon_sym_DOLLARextnameof] = ACTIONS(1625), + [anon_sym_DOLLARnameof] = ACTIONS(1625), + [anon_sym_DOLLARoffsetof] = ACTIONS(1625), + [anon_sym_DOLLARqnameof] = ACTIONS(1625), + [anon_sym_DOLLARvaconst] = ACTIONS(1625), + [anon_sym_DOLLARvaarg] = ACTIONS(1625), + [anon_sym_DOLLARvaref] = ACTIONS(1625), + [anon_sym_DOLLARvaexpr] = ACTIONS(1625), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [anon_sym_null] = ACTIONS(1625), + [anon_sym_DOLLARvacount] = ACTIONS(1625), + [anon_sym_DOLLAReval] = ACTIONS(1625), + [anon_sym_DOLLARis_const] = ACTIONS(1625), + [anon_sym_DOLLARsizeof] = ACTIONS(1625), + [anon_sym_DOLLARstringify] = ACTIONS(1625), + [anon_sym_DOLLARappend] = ACTIONS(1625), + [anon_sym_DOLLARconcat] = ACTIONS(1625), + [anon_sym_DOLLARdefined] = ACTIONS(1625), + [anon_sym_DOLLARembed] = ACTIONS(1625), + [anon_sym_DOLLARand] = ACTIONS(1625), + [anon_sym_DOLLARor] = ACTIONS(1625), + [anon_sym_DOLLARfeature] = ACTIONS(1625), + [anon_sym_DOLLARassignable] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_TILDE] = ACTIONS(1627), + [anon_sym_PLUS_PLUS] = ACTIONS(1627), + [anon_sym_DASH_DASH] = ACTIONS(1627), + [anon_sym_typeid] = ACTIONS(1625), + [anon_sym_LBRACE_PIPE] = ACTIONS(1627), + [anon_sym_void] = ACTIONS(1625), + [anon_sym_bool] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_ichar] = ACTIONS(1625), + [anon_sym_short] = ACTIONS(1625), + [anon_sym_ushort] = ACTIONS(1625), + [anon_sym_uint] = ACTIONS(1625), + [anon_sym_long] = ACTIONS(1625), + [anon_sym_ulong] = ACTIONS(1625), + [anon_sym_int128] = ACTIONS(1625), + [anon_sym_uint128] = ACTIONS(1625), + [anon_sym_float] = ACTIONS(1625), + [anon_sym_double] = ACTIONS(1625), + [anon_sym_float16] = ACTIONS(1625), + [anon_sym_bfloat16] = ACTIONS(1625), + [anon_sym_float128] = ACTIONS(1625), + [anon_sym_iptr] = ACTIONS(1625), + [anon_sym_uptr] = ACTIONS(1625), + [anon_sym_isz] = ACTIONS(1625), + [anon_sym_usz] = ACTIONS(1625), + [anon_sym_anyfault] = ACTIONS(1625), + [anon_sym_any] = ACTIONS(1625), + [anon_sym_DOLLARtypeof] = ACTIONS(1625), + [anon_sym_DOLLARtypefrom] = ACTIONS(1625), + [anon_sym_DOLLARevaltype] = ACTIONS(1625), + [anon_sym_DOLLARvatype] = ACTIONS(1625), + [sym_real_literal] = ACTIONS(1627), + }, + [797] = { + [sym_line_comment] = STATE(797), + [sym_doc_comment] = STATE(797), + [sym_block_comment] = STATE(797), + [sym_ident] = ACTIONS(1629), + [sym_integer_literal] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1631), + [anon_sym_BQUOTE] = ACTIONS(1631), + [sym_bytes_literal] = ACTIONS(1631), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1629), + [sym_at_ident] = ACTIONS(1631), + [sym_hash_ident] = ACTIONS(1631), + [sym_type_ident] = ACTIONS(1631), + [sym_ct_type_ident] = ACTIONS(1631), + [sym_const_ident] = ACTIONS(1629), + [sym_builtin] = ACTIONS(1631), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_tlocal] = ACTIONS(1629), + [anon_sym_SEMI] = ACTIONS(1631), + [anon_sym_fn] = ACTIONS(1629), + [anon_sym_LBRACE] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_var] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_defer] = ACTIONS(1629), + [anon_sym_assert] = ACTIONS(1629), + [anon_sym_nextcase] = ACTIONS(1629), + [anon_sym_switch] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_foreach] = ACTIONS(1629), + [anon_sym_foreach_r] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_do] = ACTIONS(1629), + [anon_sym_int] = ACTIONS(1629), + [anon_sym_PLUS] = ACTIONS(1629), + [anon_sym_DASH] = ACTIONS(1629), + [anon_sym_STAR] = ACTIONS(1631), + [anon_sym_asm] = ACTIONS(1629), + [anon_sym_DOLLARassert] = ACTIONS(1629), + [anon_sym_DOLLARerror] = ACTIONS(1629), + [anon_sym_DOLLARecho] = ACTIONS(1629), + [anon_sym_DOLLARif] = ACTIONS(1629), + [anon_sym_DOLLARendif] = ACTIONS(1629), + [anon_sym_DOLLARswitch] = ACTIONS(1629), + [anon_sym_DOLLARfor] = ACTIONS(1629), + [anon_sym_DOLLARforeach] = ACTIONS(1629), + [anon_sym_DOLLARalignof] = ACTIONS(1629), + [anon_sym_DOLLARextnameof] = ACTIONS(1629), + [anon_sym_DOLLARnameof] = ACTIONS(1629), + [anon_sym_DOLLARoffsetof] = ACTIONS(1629), + [anon_sym_DOLLARqnameof] = ACTIONS(1629), + [anon_sym_DOLLARvaconst] = ACTIONS(1629), + [anon_sym_DOLLARvaarg] = ACTIONS(1629), + [anon_sym_DOLLARvaref] = ACTIONS(1629), + [anon_sym_DOLLARvaexpr] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1629), + [anon_sym_false] = ACTIONS(1629), + [anon_sym_null] = ACTIONS(1629), + [anon_sym_DOLLARvacount] = ACTIONS(1629), + [anon_sym_DOLLAReval] = ACTIONS(1629), + [anon_sym_DOLLARis_const] = ACTIONS(1629), + [anon_sym_DOLLARsizeof] = ACTIONS(1629), + [anon_sym_DOLLARstringify] = ACTIONS(1629), + [anon_sym_DOLLARappend] = ACTIONS(1629), + [anon_sym_DOLLARconcat] = ACTIONS(1629), + [anon_sym_DOLLARdefined] = ACTIONS(1629), + [anon_sym_DOLLARembed] = ACTIONS(1629), + [anon_sym_DOLLARand] = ACTIONS(1629), + [anon_sym_DOLLARor] = ACTIONS(1629), + [anon_sym_DOLLARfeature] = ACTIONS(1629), + [anon_sym_DOLLARassignable] = ACTIONS(1629), + [anon_sym_BANG] = ACTIONS(1631), + [anon_sym_TILDE] = ACTIONS(1631), + [anon_sym_PLUS_PLUS] = ACTIONS(1631), + [anon_sym_DASH_DASH] = ACTIONS(1631), + [anon_sym_typeid] = ACTIONS(1629), + [anon_sym_LBRACE_PIPE] = ACTIONS(1631), + [anon_sym_void] = ACTIONS(1629), + [anon_sym_bool] = ACTIONS(1629), + [anon_sym_char] = ACTIONS(1629), + [anon_sym_ichar] = ACTIONS(1629), + [anon_sym_short] = ACTIONS(1629), + [anon_sym_ushort] = ACTIONS(1629), + [anon_sym_uint] = ACTIONS(1629), + [anon_sym_long] = ACTIONS(1629), + [anon_sym_ulong] = ACTIONS(1629), + [anon_sym_int128] = ACTIONS(1629), + [anon_sym_uint128] = ACTIONS(1629), + [anon_sym_float] = ACTIONS(1629), + [anon_sym_double] = ACTIONS(1629), + [anon_sym_float16] = ACTIONS(1629), + [anon_sym_bfloat16] = ACTIONS(1629), + [anon_sym_float128] = ACTIONS(1629), + [anon_sym_iptr] = ACTIONS(1629), + [anon_sym_uptr] = ACTIONS(1629), + [anon_sym_isz] = ACTIONS(1629), + [anon_sym_usz] = ACTIONS(1629), + [anon_sym_anyfault] = ACTIONS(1629), + [anon_sym_any] = ACTIONS(1629), + [anon_sym_DOLLARtypeof] = ACTIONS(1629), + [anon_sym_DOLLARtypefrom] = ACTIONS(1629), + [anon_sym_DOLLARevaltype] = ACTIONS(1629), + [anon_sym_DOLLARvatype] = ACTIONS(1629), + [sym_real_literal] = ACTIONS(1631), + }, + [798] = { + [sym_line_comment] = STATE(798), + [sym_doc_comment] = STATE(798), + [sym_block_comment] = STATE(798), + [sym_ident] = ACTIONS(1189), + [sym_integer_literal] = ACTIONS(1191), + [anon_sym_SQUOTE] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(1191), + [anon_sym_BQUOTE] = ACTIONS(1191), + [sym_bytes_literal] = ACTIONS(1191), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1189), + [sym_at_ident] = ACTIONS(1191), + [sym_hash_ident] = ACTIONS(1191), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [sym_const_ident] = ACTIONS(1189), + [sym_builtin] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_static] = ACTIONS(1189), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_var] = ACTIONS(1189), + [anon_sym_return] = ACTIONS(1189), + [anon_sym_continue] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1189), + [anon_sym_defer] = ACTIONS(1189), + [anon_sym_assert] = ACTIONS(1189), + [anon_sym_nextcase] = ACTIONS(1189), + [anon_sym_switch] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_for] = ACTIONS(1189), + [anon_sym_foreach] = ACTIONS(1189), + [anon_sym_foreach_r] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_do] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_asm] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1189), + [anon_sym_DOLLARerror] = ACTIONS(1189), + [anon_sym_DOLLARecho] = ACTIONS(1189), + [anon_sym_DOLLARif] = ACTIONS(1189), + [anon_sym_DOLLARendif] = ACTIONS(1189), + [anon_sym_DOLLARswitch] = ACTIONS(1189), + [anon_sym_DOLLARfor] = ACTIONS(1189), + [anon_sym_DOLLARforeach] = ACTIONS(1189), + [anon_sym_DOLLARalignof] = ACTIONS(1189), + [anon_sym_DOLLARextnameof] = ACTIONS(1189), + [anon_sym_DOLLARnameof] = ACTIONS(1189), + [anon_sym_DOLLARoffsetof] = ACTIONS(1189), + [anon_sym_DOLLARqnameof] = ACTIONS(1189), + [anon_sym_DOLLARvaconst] = ACTIONS(1189), + [anon_sym_DOLLARvaarg] = ACTIONS(1189), + [anon_sym_DOLLARvaref] = ACTIONS(1189), + [anon_sym_DOLLARvaexpr] = ACTIONS(1189), + [anon_sym_true] = ACTIONS(1189), + [anon_sym_false] = ACTIONS(1189), + [anon_sym_null] = ACTIONS(1189), + [anon_sym_DOLLARvacount] = ACTIONS(1189), + [anon_sym_DOLLAReval] = ACTIONS(1189), + [anon_sym_DOLLARis_const] = ACTIONS(1189), + [anon_sym_DOLLARsizeof] = ACTIONS(1189), + [anon_sym_DOLLARstringify] = ACTIONS(1189), + [anon_sym_DOLLARappend] = ACTIONS(1189), + [anon_sym_DOLLARconcat] = ACTIONS(1189), + [anon_sym_DOLLARdefined] = ACTIONS(1189), + [anon_sym_DOLLARembed] = ACTIONS(1189), + [anon_sym_DOLLARand] = ACTIONS(1189), + [anon_sym_DOLLARor] = ACTIONS(1189), + [anon_sym_DOLLARfeature] = ACTIONS(1189), + [anon_sym_DOLLARassignable] = ACTIONS(1189), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_TILDE] = ACTIONS(1191), + [anon_sym_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_LBRACE_PIPE] = ACTIONS(1191), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1189), + [anon_sym_DOLLARtypefrom] = ACTIONS(1189), + [anon_sym_DOLLARevaltype] = ACTIONS(1189), + [anon_sym_DOLLARvatype] = ACTIONS(1189), + [sym_real_literal] = ACTIONS(1191), + }, + [799] = { + [sym_line_comment] = STATE(799), + [sym_doc_comment] = STATE(799), + [sym_block_comment] = STATE(799), + [sym_ident] = ACTIONS(1637), + [sym_integer_literal] = ACTIONS(1639), + [anon_sym_SQUOTE] = ACTIONS(1639), + [anon_sym_DQUOTE] = ACTIONS(1639), + [anon_sym_BQUOTE] = ACTIONS(1639), + [sym_bytes_literal] = ACTIONS(1639), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1637), + [sym_at_ident] = ACTIONS(1639), + [sym_hash_ident] = ACTIONS(1639), + [sym_type_ident] = ACTIONS(1639), + [sym_ct_type_ident] = ACTIONS(1639), + [sym_const_ident] = ACTIONS(1637), + [sym_builtin] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1637), + [anon_sym_tlocal] = ACTIONS(1637), + [anon_sym_SEMI] = ACTIONS(1639), + [anon_sym_fn] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1637), + [anon_sym_const] = ACTIONS(1637), + [anon_sym_var] = ACTIONS(1637), + [anon_sym_return] = ACTIONS(1637), + [anon_sym_continue] = ACTIONS(1637), + [anon_sym_break] = ACTIONS(1637), + [anon_sym_defer] = ACTIONS(1637), + [anon_sym_assert] = ACTIONS(1637), + [anon_sym_nextcase] = ACTIONS(1637), + [anon_sym_switch] = ACTIONS(1637), + [anon_sym_AMP_AMP] = ACTIONS(1639), + [anon_sym_if] = ACTIONS(1637), + [anon_sym_for] = ACTIONS(1637), + [anon_sym_foreach] = ACTIONS(1637), + [anon_sym_foreach_r] = ACTIONS(1637), + [anon_sym_while] = ACTIONS(1637), + [anon_sym_do] = ACTIONS(1637), + [anon_sym_int] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(1637), + [anon_sym_DASH] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1639), + [anon_sym_asm] = ACTIONS(1637), + [anon_sym_DOLLARassert] = ACTIONS(1637), + [anon_sym_DOLLARerror] = ACTIONS(1637), + [anon_sym_DOLLARecho] = ACTIONS(1637), + [anon_sym_DOLLARif] = ACTIONS(1637), + [anon_sym_DOLLARendif] = ACTIONS(1637), + [anon_sym_DOLLARswitch] = ACTIONS(1637), + [anon_sym_DOLLARfor] = ACTIONS(1637), + [anon_sym_DOLLARforeach] = ACTIONS(1637), + [anon_sym_DOLLARalignof] = ACTIONS(1637), + [anon_sym_DOLLARextnameof] = ACTIONS(1637), + [anon_sym_DOLLARnameof] = ACTIONS(1637), + [anon_sym_DOLLARoffsetof] = ACTIONS(1637), + [anon_sym_DOLLARqnameof] = ACTIONS(1637), + [anon_sym_DOLLARvaconst] = ACTIONS(1637), + [anon_sym_DOLLARvaarg] = ACTIONS(1637), + [anon_sym_DOLLARvaref] = ACTIONS(1637), + [anon_sym_DOLLARvaexpr] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(1637), + [anon_sym_false] = ACTIONS(1637), + [anon_sym_null] = ACTIONS(1637), + [anon_sym_DOLLARvacount] = ACTIONS(1637), + [anon_sym_DOLLAReval] = ACTIONS(1637), + [anon_sym_DOLLARis_const] = ACTIONS(1637), + [anon_sym_DOLLARsizeof] = ACTIONS(1637), + [anon_sym_DOLLARstringify] = ACTIONS(1637), + [anon_sym_DOLLARappend] = ACTIONS(1637), + [anon_sym_DOLLARconcat] = ACTIONS(1637), + [anon_sym_DOLLARdefined] = ACTIONS(1637), + [anon_sym_DOLLARembed] = ACTIONS(1637), + [anon_sym_DOLLARand] = ACTIONS(1637), + [anon_sym_DOLLARor] = ACTIONS(1637), + [anon_sym_DOLLARfeature] = ACTIONS(1637), + [anon_sym_DOLLARassignable] = ACTIONS(1637), + [anon_sym_BANG] = ACTIONS(1639), + [anon_sym_TILDE] = ACTIONS(1639), + [anon_sym_PLUS_PLUS] = ACTIONS(1639), + [anon_sym_DASH_DASH] = ACTIONS(1639), + [anon_sym_typeid] = ACTIONS(1637), + [anon_sym_LBRACE_PIPE] = ACTIONS(1639), + [anon_sym_void] = ACTIONS(1637), + [anon_sym_bool] = ACTIONS(1637), + [anon_sym_char] = ACTIONS(1637), + [anon_sym_ichar] = ACTIONS(1637), + [anon_sym_short] = ACTIONS(1637), + [anon_sym_ushort] = ACTIONS(1637), + [anon_sym_uint] = ACTIONS(1637), + [anon_sym_long] = ACTIONS(1637), + [anon_sym_ulong] = ACTIONS(1637), + [anon_sym_int128] = ACTIONS(1637), + [anon_sym_uint128] = ACTIONS(1637), + [anon_sym_float] = ACTIONS(1637), + [anon_sym_double] = ACTIONS(1637), + [anon_sym_float16] = ACTIONS(1637), + [anon_sym_bfloat16] = ACTIONS(1637), + [anon_sym_float128] = ACTIONS(1637), + [anon_sym_iptr] = ACTIONS(1637), + [anon_sym_uptr] = ACTIONS(1637), + [anon_sym_isz] = ACTIONS(1637), + [anon_sym_usz] = ACTIONS(1637), + [anon_sym_anyfault] = ACTIONS(1637), + [anon_sym_any] = ACTIONS(1637), + [anon_sym_DOLLARtypeof] = ACTIONS(1637), + [anon_sym_DOLLARtypefrom] = ACTIONS(1637), + [anon_sym_DOLLARevaltype] = ACTIONS(1637), + [anon_sym_DOLLARvatype] = ACTIONS(1637), + [sym_real_literal] = ACTIONS(1639), + }, + [800] = { + [sym_line_comment] = STATE(800), + [sym_doc_comment] = STATE(800), + [sym_block_comment] = STATE(800), + [sym_ident] = ACTIONS(1641), + [sym_integer_literal] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1643), + [anon_sym_BQUOTE] = ACTIONS(1643), + [sym_bytes_literal] = ACTIONS(1643), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1641), + [sym_at_ident] = ACTIONS(1643), + [sym_hash_ident] = ACTIONS(1643), + [sym_type_ident] = ACTIONS(1643), + [sym_ct_type_ident] = ACTIONS(1643), + [sym_const_ident] = ACTIONS(1641), + [sym_builtin] = ACTIONS(1643), + [anon_sym_LPAREN] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1641), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_tlocal] = ACTIONS(1641), + [anon_sym_SEMI] = ACTIONS(1643), + [anon_sym_fn] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1641), + [anon_sym_const] = ACTIONS(1641), + [anon_sym_var] = ACTIONS(1641), + [anon_sym_return] = ACTIONS(1641), + [anon_sym_continue] = ACTIONS(1641), + [anon_sym_break] = ACTIONS(1641), + [anon_sym_defer] = ACTIONS(1641), + [anon_sym_assert] = ACTIONS(1641), + [anon_sym_nextcase] = ACTIONS(1641), + [anon_sym_switch] = ACTIONS(1641), + [anon_sym_AMP_AMP] = ACTIONS(1643), + [anon_sym_if] = ACTIONS(1641), + [anon_sym_for] = ACTIONS(1641), + [anon_sym_foreach] = ACTIONS(1641), + [anon_sym_foreach_r] = ACTIONS(1641), + [anon_sym_while] = ACTIONS(1641), + [anon_sym_do] = ACTIONS(1641), + [anon_sym_int] = ACTIONS(1641), + [anon_sym_PLUS] = ACTIONS(1641), + [anon_sym_DASH] = ACTIONS(1641), + [anon_sym_STAR] = ACTIONS(1643), + [anon_sym_asm] = ACTIONS(1641), + [anon_sym_DOLLARassert] = ACTIONS(1641), + [anon_sym_DOLLARerror] = ACTIONS(1641), + [anon_sym_DOLLARecho] = ACTIONS(1641), + [anon_sym_DOLLARif] = ACTIONS(1641), + [anon_sym_DOLLARendif] = ACTIONS(1641), + [anon_sym_DOLLARswitch] = ACTIONS(1641), + [anon_sym_DOLLARfor] = ACTIONS(1641), + [anon_sym_DOLLARforeach] = ACTIONS(1641), + [anon_sym_DOLLARalignof] = ACTIONS(1641), + [anon_sym_DOLLARextnameof] = ACTIONS(1641), + [anon_sym_DOLLARnameof] = ACTIONS(1641), + [anon_sym_DOLLARoffsetof] = ACTIONS(1641), + [anon_sym_DOLLARqnameof] = ACTIONS(1641), + [anon_sym_DOLLARvaconst] = ACTIONS(1641), + [anon_sym_DOLLARvaarg] = ACTIONS(1641), + [anon_sym_DOLLARvaref] = ACTIONS(1641), + [anon_sym_DOLLARvaexpr] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(1641), + [anon_sym_false] = ACTIONS(1641), + [anon_sym_null] = ACTIONS(1641), + [anon_sym_DOLLARvacount] = ACTIONS(1641), + [anon_sym_DOLLAReval] = ACTIONS(1641), + [anon_sym_DOLLARis_const] = ACTIONS(1641), + [anon_sym_DOLLARsizeof] = ACTIONS(1641), + [anon_sym_DOLLARstringify] = ACTIONS(1641), + [anon_sym_DOLLARappend] = ACTIONS(1641), + [anon_sym_DOLLARconcat] = ACTIONS(1641), + [anon_sym_DOLLARdefined] = ACTIONS(1641), + [anon_sym_DOLLARembed] = ACTIONS(1641), + [anon_sym_DOLLARand] = ACTIONS(1641), + [anon_sym_DOLLARor] = ACTIONS(1641), + [anon_sym_DOLLARfeature] = ACTIONS(1641), + [anon_sym_DOLLARassignable] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1643), + [anon_sym_TILDE] = ACTIONS(1643), + [anon_sym_PLUS_PLUS] = ACTIONS(1643), + [anon_sym_DASH_DASH] = ACTIONS(1643), + [anon_sym_typeid] = ACTIONS(1641), + [anon_sym_LBRACE_PIPE] = ACTIONS(1643), + [anon_sym_void] = ACTIONS(1641), + [anon_sym_bool] = ACTIONS(1641), + [anon_sym_char] = ACTIONS(1641), + [anon_sym_ichar] = ACTIONS(1641), + [anon_sym_short] = ACTIONS(1641), + [anon_sym_ushort] = ACTIONS(1641), + [anon_sym_uint] = ACTIONS(1641), + [anon_sym_long] = ACTIONS(1641), + [anon_sym_ulong] = ACTIONS(1641), + [anon_sym_int128] = ACTIONS(1641), + [anon_sym_uint128] = ACTIONS(1641), + [anon_sym_float] = ACTIONS(1641), + [anon_sym_double] = ACTIONS(1641), + [anon_sym_float16] = ACTIONS(1641), + [anon_sym_bfloat16] = ACTIONS(1641), + [anon_sym_float128] = ACTIONS(1641), + [anon_sym_iptr] = ACTIONS(1641), + [anon_sym_uptr] = ACTIONS(1641), + [anon_sym_isz] = ACTIONS(1641), + [anon_sym_usz] = ACTIONS(1641), + [anon_sym_anyfault] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_DOLLARtypeof] = ACTIONS(1641), + [anon_sym_DOLLARtypefrom] = ACTIONS(1641), + [anon_sym_DOLLARevaltype] = ACTIONS(1641), + [anon_sym_DOLLARvatype] = ACTIONS(1641), + [sym_real_literal] = ACTIONS(1643), + }, + [801] = { + [sym_line_comment] = STATE(801), + [sym_doc_comment] = STATE(801), + [sym_block_comment] = STATE(801), + [sym_ident] = ACTIONS(1645), + [sym_integer_literal] = ACTIONS(1647), + [anon_sym_SQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [anon_sym_BQUOTE] = ACTIONS(1647), + [sym_bytes_literal] = ACTIONS(1647), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1645), + [sym_at_ident] = ACTIONS(1647), + [sym_hash_ident] = ACTIONS(1647), + [sym_type_ident] = ACTIONS(1647), + [sym_ct_type_ident] = ACTIONS(1647), + [sym_const_ident] = ACTIONS(1645), + [sym_builtin] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_static] = ACTIONS(1645), + [anon_sym_tlocal] = ACTIONS(1645), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_fn] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_var] = ACTIONS(1645), + [anon_sym_return] = ACTIONS(1645), + [anon_sym_continue] = ACTIONS(1645), + [anon_sym_break] = ACTIONS(1645), + [anon_sym_defer] = ACTIONS(1645), + [anon_sym_assert] = ACTIONS(1645), + [anon_sym_nextcase] = ACTIONS(1645), + [anon_sym_switch] = ACTIONS(1645), + [anon_sym_AMP_AMP] = ACTIONS(1647), + [anon_sym_if] = ACTIONS(1645), + [anon_sym_for] = ACTIONS(1645), + [anon_sym_foreach] = ACTIONS(1645), + [anon_sym_foreach_r] = ACTIONS(1645), + [anon_sym_while] = ACTIONS(1645), + [anon_sym_do] = ACTIONS(1645), + [anon_sym_int] = ACTIONS(1645), + [anon_sym_PLUS] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_asm] = ACTIONS(1645), + [anon_sym_DOLLARassert] = ACTIONS(1645), + [anon_sym_DOLLARerror] = ACTIONS(1645), + [anon_sym_DOLLARecho] = ACTIONS(1645), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_DOLLARendif] = ACTIONS(1645), + [anon_sym_DOLLARswitch] = ACTIONS(1645), + [anon_sym_DOLLARfor] = ACTIONS(1645), + [anon_sym_DOLLARforeach] = ACTIONS(1645), + [anon_sym_DOLLARalignof] = ACTIONS(1645), + [anon_sym_DOLLARextnameof] = ACTIONS(1645), + [anon_sym_DOLLARnameof] = ACTIONS(1645), + [anon_sym_DOLLARoffsetof] = ACTIONS(1645), + [anon_sym_DOLLARqnameof] = ACTIONS(1645), + [anon_sym_DOLLARvaconst] = ACTIONS(1645), + [anon_sym_DOLLARvaarg] = ACTIONS(1645), + [anon_sym_DOLLARvaref] = ACTIONS(1645), + [anon_sym_DOLLARvaexpr] = ACTIONS(1645), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_null] = ACTIONS(1645), + [anon_sym_DOLLARvacount] = ACTIONS(1645), + [anon_sym_DOLLAReval] = ACTIONS(1645), + [anon_sym_DOLLARis_const] = ACTIONS(1645), + [anon_sym_DOLLARsizeof] = ACTIONS(1645), + [anon_sym_DOLLARstringify] = ACTIONS(1645), + [anon_sym_DOLLARappend] = ACTIONS(1645), + [anon_sym_DOLLARconcat] = ACTIONS(1645), + [anon_sym_DOLLARdefined] = ACTIONS(1645), + [anon_sym_DOLLARembed] = ACTIONS(1645), + [anon_sym_DOLLARand] = ACTIONS(1645), + [anon_sym_DOLLARor] = ACTIONS(1645), + [anon_sym_DOLLARfeature] = ACTIONS(1645), + [anon_sym_DOLLARassignable] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1647), + [anon_sym_DASH_DASH] = ACTIONS(1647), + [anon_sym_typeid] = ACTIONS(1645), + [anon_sym_LBRACE_PIPE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_ichar] = ACTIONS(1645), + [anon_sym_short] = ACTIONS(1645), + [anon_sym_ushort] = ACTIONS(1645), + [anon_sym_uint] = ACTIONS(1645), + [anon_sym_long] = ACTIONS(1645), + [anon_sym_ulong] = ACTIONS(1645), + [anon_sym_int128] = ACTIONS(1645), + [anon_sym_uint128] = ACTIONS(1645), + [anon_sym_float] = ACTIONS(1645), + [anon_sym_double] = ACTIONS(1645), + [anon_sym_float16] = ACTIONS(1645), + [anon_sym_bfloat16] = ACTIONS(1645), + [anon_sym_float128] = ACTIONS(1645), + [anon_sym_iptr] = ACTIONS(1645), + [anon_sym_uptr] = ACTIONS(1645), + [anon_sym_isz] = ACTIONS(1645), + [anon_sym_usz] = ACTIONS(1645), + [anon_sym_anyfault] = ACTIONS(1645), + [anon_sym_any] = ACTIONS(1645), + [anon_sym_DOLLARtypeof] = ACTIONS(1645), + [anon_sym_DOLLARtypefrom] = ACTIONS(1645), + [anon_sym_DOLLARevaltype] = ACTIONS(1645), + [anon_sym_DOLLARvatype] = ACTIONS(1645), + [sym_real_literal] = ACTIONS(1647), + }, + [802] = { + [sym_line_comment] = STATE(802), + [sym_doc_comment] = STATE(802), + [sym_block_comment] = STATE(802), + [sym_ident] = ACTIONS(1373), + [sym_integer_literal] = ACTIONS(1375), + [anon_sym_SQUOTE] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1375), + [anon_sym_BQUOTE] = ACTIONS(1375), + [sym_bytes_literal] = ACTIONS(1375), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1373), + [sym_at_ident] = ACTIONS(1375), + [sym_hash_ident] = ACTIONS(1375), + [sym_type_ident] = ACTIONS(1375), + [sym_ct_type_ident] = ACTIONS(1375), + [sym_const_ident] = ACTIONS(1373), + [sym_builtin] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1373), + [anon_sym_tlocal] = ACTIONS(1373), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_fn] = ACTIONS(1373), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_var] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(1373), + [anon_sym_break] = ACTIONS(1373), + [anon_sym_defer] = ACTIONS(1373), + [anon_sym_assert] = ACTIONS(1373), + [anon_sym_nextcase] = ACTIONS(1373), + [anon_sym_switch] = ACTIONS(1373), + [anon_sym_AMP_AMP] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1373), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_foreach] = ACTIONS(1373), + [anon_sym_foreach_r] = ACTIONS(1373), + [anon_sym_while] = ACTIONS(1373), + [anon_sym_do] = ACTIONS(1373), + [anon_sym_int] = ACTIONS(1373), + [anon_sym_PLUS] = ACTIONS(1373), + [anon_sym_DASH] = ACTIONS(1373), + [anon_sym_STAR] = ACTIONS(1375), + [anon_sym_asm] = ACTIONS(1373), + [anon_sym_DOLLARassert] = ACTIONS(1373), + [anon_sym_DOLLARerror] = ACTIONS(1373), + [anon_sym_DOLLARecho] = ACTIONS(1373), + [anon_sym_DOLLARif] = ACTIONS(1373), + [anon_sym_DOLLARendif] = ACTIONS(1373), + [anon_sym_DOLLARswitch] = ACTIONS(1373), + [anon_sym_DOLLARfor] = ACTIONS(1373), + [anon_sym_DOLLARforeach] = ACTIONS(1373), + [anon_sym_DOLLARalignof] = ACTIONS(1373), + [anon_sym_DOLLARextnameof] = ACTIONS(1373), + [anon_sym_DOLLARnameof] = ACTIONS(1373), + [anon_sym_DOLLARoffsetof] = ACTIONS(1373), + [anon_sym_DOLLARqnameof] = ACTIONS(1373), + [anon_sym_DOLLARvaconst] = ACTIONS(1373), + [anon_sym_DOLLARvaarg] = ACTIONS(1373), + [anon_sym_DOLLARvaref] = ACTIONS(1373), + [anon_sym_DOLLARvaexpr] = ACTIONS(1373), + [anon_sym_true] = ACTIONS(1373), + [anon_sym_false] = ACTIONS(1373), + [anon_sym_null] = ACTIONS(1373), + [anon_sym_DOLLARvacount] = ACTIONS(1373), + [anon_sym_DOLLAReval] = ACTIONS(1373), + [anon_sym_DOLLARis_const] = ACTIONS(1373), + [anon_sym_DOLLARsizeof] = ACTIONS(1373), + [anon_sym_DOLLARstringify] = ACTIONS(1373), + [anon_sym_DOLLARappend] = ACTIONS(1373), + [anon_sym_DOLLARconcat] = ACTIONS(1373), + [anon_sym_DOLLARdefined] = ACTIONS(1373), + [anon_sym_DOLLARembed] = ACTIONS(1373), + [anon_sym_DOLLARand] = ACTIONS(1373), + [anon_sym_DOLLARor] = ACTIONS(1373), + [anon_sym_DOLLARfeature] = ACTIONS(1373), + [anon_sym_DOLLARassignable] = ACTIONS(1373), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1375), + [anon_sym_DASH_DASH] = ACTIONS(1375), + [anon_sym_typeid] = ACTIONS(1373), + [anon_sym_LBRACE_PIPE] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1373), + [anon_sym_bool] = ACTIONS(1373), + [anon_sym_char] = ACTIONS(1373), + [anon_sym_ichar] = ACTIONS(1373), + [anon_sym_short] = ACTIONS(1373), + [anon_sym_ushort] = ACTIONS(1373), + [anon_sym_uint] = ACTIONS(1373), + [anon_sym_long] = ACTIONS(1373), + [anon_sym_ulong] = ACTIONS(1373), + [anon_sym_int128] = ACTIONS(1373), + [anon_sym_uint128] = ACTIONS(1373), + [anon_sym_float] = ACTIONS(1373), + [anon_sym_double] = ACTIONS(1373), + [anon_sym_float16] = ACTIONS(1373), + [anon_sym_bfloat16] = ACTIONS(1373), + [anon_sym_float128] = ACTIONS(1373), + [anon_sym_iptr] = ACTIONS(1373), + [anon_sym_uptr] = ACTIONS(1373), + [anon_sym_isz] = ACTIONS(1373), + [anon_sym_usz] = ACTIONS(1373), + [anon_sym_anyfault] = ACTIONS(1373), + [anon_sym_any] = ACTIONS(1373), + [anon_sym_DOLLARtypeof] = ACTIONS(1373), + [anon_sym_DOLLARtypefrom] = ACTIONS(1373), + [anon_sym_DOLLARevaltype] = ACTIONS(1373), + [anon_sym_DOLLARvatype] = ACTIONS(1373), + [sym_real_literal] = ACTIONS(1375), + }, + [803] = { + [sym_line_comment] = STATE(803), + [sym_doc_comment] = STATE(803), + [sym_block_comment] = STATE(803), + [sym_ident] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1523), + [anon_sym_BQUOTE] = ACTIONS(1523), + [sym_bytes_literal] = ACTIONS(1523), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1521), + [sym_at_ident] = ACTIONS(1523), + [sym_hash_ident] = ACTIONS(1523), + [sym_type_ident] = ACTIONS(1523), + [sym_ct_type_ident] = ACTIONS(1523), + [sym_const_ident] = ACTIONS(1521), + [sym_builtin] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_tlocal] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_fn] = ACTIONS(1521), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_var] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_defer] = ACTIONS(1521), + [anon_sym_assert] = ACTIONS(1521), + [anon_sym_nextcase] = ACTIONS(1521), + [anon_sym_switch] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_foreach] = ACTIONS(1521), + [anon_sym_foreach_r] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_do] = ACTIONS(1521), + [anon_sym_int] = ACTIONS(1521), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_asm] = ACTIONS(1521), + [anon_sym_DOLLARassert] = ACTIONS(1521), + [anon_sym_DOLLARerror] = ACTIONS(1521), + [anon_sym_DOLLARecho] = ACTIONS(1521), + [anon_sym_DOLLARif] = ACTIONS(1521), + [anon_sym_DOLLARendif] = ACTIONS(1521), + [anon_sym_DOLLARswitch] = ACTIONS(1521), + [anon_sym_DOLLARfor] = ACTIONS(1521), + [anon_sym_DOLLARforeach] = ACTIONS(1521), + [anon_sym_DOLLARalignof] = ACTIONS(1521), + [anon_sym_DOLLARextnameof] = ACTIONS(1521), + [anon_sym_DOLLARnameof] = ACTIONS(1521), + [anon_sym_DOLLARoffsetof] = ACTIONS(1521), + [anon_sym_DOLLARqnameof] = ACTIONS(1521), + [anon_sym_DOLLARvaconst] = ACTIONS(1521), + [anon_sym_DOLLARvaarg] = ACTIONS(1521), + [anon_sym_DOLLARvaref] = ACTIONS(1521), + [anon_sym_DOLLARvaexpr] = ACTIONS(1521), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_null] = ACTIONS(1521), + [anon_sym_DOLLARvacount] = ACTIONS(1521), + [anon_sym_DOLLAReval] = ACTIONS(1521), + [anon_sym_DOLLARis_const] = ACTIONS(1521), + [anon_sym_DOLLARsizeof] = ACTIONS(1521), + [anon_sym_DOLLARstringify] = ACTIONS(1521), + [anon_sym_DOLLARappend] = ACTIONS(1521), + [anon_sym_DOLLARconcat] = ACTIONS(1521), + [anon_sym_DOLLARdefined] = ACTIONS(1521), + [anon_sym_DOLLARembed] = ACTIONS(1521), + [anon_sym_DOLLARand] = ACTIONS(1521), + [anon_sym_DOLLARor] = ACTIONS(1521), + [anon_sym_DOLLARfeature] = ACTIONS(1521), + [anon_sym_DOLLARassignable] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1523), + [anon_sym_TILDE] = ACTIONS(1523), + [anon_sym_PLUS_PLUS] = ACTIONS(1523), + [anon_sym_DASH_DASH] = ACTIONS(1523), + [anon_sym_typeid] = ACTIONS(1521), + [anon_sym_LBRACE_PIPE] = ACTIONS(1523), + [anon_sym_void] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_ichar] = ACTIONS(1521), + [anon_sym_short] = ACTIONS(1521), + [anon_sym_ushort] = ACTIONS(1521), + [anon_sym_uint] = ACTIONS(1521), + [anon_sym_long] = ACTIONS(1521), + [anon_sym_ulong] = ACTIONS(1521), + [anon_sym_int128] = ACTIONS(1521), + [anon_sym_uint128] = ACTIONS(1521), + [anon_sym_float] = ACTIONS(1521), + [anon_sym_double] = ACTIONS(1521), + [anon_sym_float16] = ACTIONS(1521), + [anon_sym_bfloat16] = ACTIONS(1521), + [anon_sym_float128] = ACTIONS(1521), + [anon_sym_iptr] = ACTIONS(1521), + [anon_sym_uptr] = ACTIONS(1521), + [anon_sym_isz] = ACTIONS(1521), + [anon_sym_usz] = ACTIONS(1521), + [anon_sym_anyfault] = ACTIONS(1521), + [anon_sym_any] = ACTIONS(1521), + [anon_sym_DOLLARtypeof] = ACTIONS(1521), + [anon_sym_DOLLARtypefrom] = ACTIONS(1521), + [anon_sym_DOLLARevaltype] = ACTIONS(1521), + [anon_sym_DOLLARvatype] = ACTIONS(1521), + [sym_real_literal] = ACTIONS(1523), + }, + [804] = { + [sym_line_comment] = STATE(804), + [sym_doc_comment] = STATE(804), + [sym_block_comment] = STATE(804), + [sym_ident] = ACTIONS(1601), + [sym_integer_literal] = ACTIONS(1603), + [anon_sym_SQUOTE] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1603), + [anon_sym_BQUOTE] = ACTIONS(1603), + [sym_bytes_literal] = ACTIONS(1603), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1601), + [sym_at_ident] = ACTIONS(1603), + [sym_hash_ident] = ACTIONS(1603), + [sym_type_ident] = ACTIONS(1603), + [sym_ct_type_ident] = ACTIONS(1603), + [sym_const_ident] = ACTIONS(1601), + [sym_builtin] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1603), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_static] = ACTIONS(1601), + [anon_sym_tlocal] = ACTIONS(1601), + [anon_sym_SEMI] = ACTIONS(1603), + [anon_sym_fn] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_const] = ACTIONS(1601), + [anon_sym_var] = ACTIONS(1601), + [anon_sym_return] = ACTIONS(1601), + [anon_sym_continue] = ACTIONS(1601), + [anon_sym_break] = ACTIONS(1601), + [anon_sym_defer] = ACTIONS(1601), + [anon_sym_assert] = ACTIONS(1601), + [anon_sym_nextcase] = ACTIONS(1601), + [anon_sym_switch] = ACTIONS(1601), + [anon_sym_AMP_AMP] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1601), + [anon_sym_for] = ACTIONS(1601), + [anon_sym_foreach] = ACTIONS(1601), + [anon_sym_foreach_r] = ACTIONS(1601), + [anon_sym_while] = ACTIONS(1601), + [anon_sym_do] = ACTIONS(1601), + [anon_sym_int] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(1601), + [anon_sym_DASH] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1603), + [anon_sym_asm] = ACTIONS(1601), + [anon_sym_DOLLARassert] = ACTIONS(1601), + [anon_sym_DOLLARerror] = ACTIONS(1601), + [anon_sym_DOLLARecho] = ACTIONS(1601), + [anon_sym_DOLLARif] = ACTIONS(1601), + [anon_sym_DOLLARswitch] = ACTIONS(1601), + [anon_sym_DOLLARfor] = ACTIONS(1601), + [anon_sym_DOLLARforeach] = ACTIONS(1601), + [anon_sym_DOLLARendforeach] = ACTIONS(1601), + [anon_sym_DOLLARalignof] = ACTIONS(1601), + [anon_sym_DOLLARextnameof] = ACTIONS(1601), + [anon_sym_DOLLARnameof] = ACTIONS(1601), + [anon_sym_DOLLARoffsetof] = ACTIONS(1601), + [anon_sym_DOLLARqnameof] = ACTIONS(1601), + [anon_sym_DOLLARvaconst] = ACTIONS(1601), + [anon_sym_DOLLARvaarg] = ACTIONS(1601), + [anon_sym_DOLLARvaref] = ACTIONS(1601), + [anon_sym_DOLLARvaexpr] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(1601), + [anon_sym_false] = ACTIONS(1601), + [anon_sym_null] = ACTIONS(1601), + [anon_sym_DOLLARvacount] = ACTIONS(1601), + [anon_sym_DOLLAReval] = ACTIONS(1601), + [anon_sym_DOLLARis_const] = ACTIONS(1601), + [anon_sym_DOLLARsizeof] = ACTIONS(1601), + [anon_sym_DOLLARstringify] = ACTIONS(1601), + [anon_sym_DOLLARappend] = ACTIONS(1601), + [anon_sym_DOLLARconcat] = ACTIONS(1601), + [anon_sym_DOLLARdefined] = ACTIONS(1601), + [anon_sym_DOLLARembed] = ACTIONS(1601), + [anon_sym_DOLLARand] = ACTIONS(1601), + [anon_sym_DOLLARor] = ACTIONS(1601), + [anon_sym_DOLLARfeature] = ACTIONS(1601), + [anon_sym_DOLLARassignable] = ACTIONS(1601), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1603), + [anon_sym_DASH_DASH] = ACTIONS(1603), + [anon_sym_typeid] = ACTIONS(1601), + [anon_sym_LBRACE_PIPE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1601), + [anon_sym_bool] = ACTIONS(1601), + [anon_sym_char] = ACTIONS(1601), + [anon_sym_ichar] = ACTIONS(1601), + [anon_sym_short] = ACTIONS(1601), + [anon_sym_ushort] = ACTIONS(1601), + [anon_sym_uint] = ACTIONS(1601), + [anon_sym_long] = ACTIONS(1601), + [anon_sym_ulong] = ACTIONS(1601), + [anon_sym_int128] = ACTIONS(1601), + [anon_sym_uint128] = ACTIONS(1601), + [anon_sym_float] = ACTIONS(1601), + [anon_sym_double] = ACTIONS(1601), + [anon_sym_float16] = ACTIONS(1601), + [anon_sym_bfloat16] = ACTIONS(1601), + [anon_sym_float128] = ACTIONS(1601), + [anon_sym_iptr] = ACTIONS(1601), + [anon_sym_uptr] = ACTIONS(1601), + [anon_sym_isz] = ACTIONS(1601), + [anon_sym_usz] = ACTIONS(1601), + [anon_sym_anyfault] = ACTIONS(1601), + [anon_sym_any] = ACTIONS(1601), + [anon_sym_DOLLARtypeof] = ACTIONS(1601), + [anon_sym_DOLLARtypefrom] = ACTIONS(1601), + [anon_sym_DOLLARevaltype] = ACTIONS(1601), + [anon_sym_DOLLARvatype] = ACTIONS(1601), + [sym_real_literal] = ACTIONS(1603), + }, + [805] = { + [sym_line_comment] = STATE(805), + [sym_doc_comment] = STATE(805), + [sym_block_comment] = STATE(805), + [sym_ident] = ACTIONS(1705), + [sym_integer_literal] = ACTIONS(1707), + [anon_sym_SQUOTE] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [anon_sym_BQUOTE] = ACTIONS(1707), + [sym_bytes_literal] = ACTIONS(1707), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1705), + [sym_at_ident] = ACTIONS(1707), + [sym_hash_ident] = ACTIONS(1707), + [sym_type_ident] = ACTIONS(1707), + [sym_ct_type_ident] = ACTIONS(1707), + [sym_const_ident] = ACTIONS(1705), + [sym_builtin] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_static] = ACTIONS(1705), + [anon_sym_tlocal] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_fn] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [anon_sym_var] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_defer] = ACTIONS(1705), + [anon_sym_assert] = ACTIONS(1705), + [anon_sym_nextcase] = ACTIONS(1705), + [anon_sym_switch] = ACTIONS(1705), + [anon_sym_AMP_AMP] = ACTIONS(1707), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_foreach] = ACTIONS(1705), + [anon_sym_foreach_r] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_int] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), + [anon_sym_STAR] = ACTIONS(1707), + [anon_sym_asm] = ACTIONS(1705), + [anon_sym_DOLLARassert] = ACTIONS(1705), + [anon_sym_DOLLARerror] = ACTIONS(1705), + [anon_sym_DOLLARecho] = ACTIONS(1705), + [anon_sym_DOLLARif] = ACTIONS(1705), + [anon_sym_DOLLARswitch] = ACTIONS(1705), + [anon_sym_DOLLARfor] = ACTIONS(1705), + [anon_sym_DOLLARforeach] = ACTIONS(1705), + [anon_sym_DOLLARalignof] = ACTIONS(1705), + [anon_sym_DOLLARextnameof] = ACTIONS(1705), + [anon_sym_DOLLARnameof] = ACTIONS(1705), + [anon_sym_DOLLARoffsetof] = ACTIONS(1705), + [anon_sym_DOLLARqnameof] = ACTIONS(1705), + [anon_sym_DOLLARvaconst] = ACTIONS(1705), + [anon_sym_DOLLARvaarg] = ACTIONS(1705), + [anon_sym_DOLLARvaref] = ACTIONS(1705), + [anon_sym_DOLLARvaexpr] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [anon_sym_DOLLARvacount] = ACTIONS(1705), + [anon_sym_DOLLAReval] = ACTIONS(1705), + [anon_sym_DOLLARis_const] = ACTIONS(1705), + [anon_sym_DOLLARsizeof] = ACTIONS(1705), + [anon_sym_DOLLARstringify] = ACTIONS(1705), + [anon_sym_DOLLARappend] = ACTIONS(1705), + [anon_sym_DOLLARconcat] = ACTIONS(1705), + [anon_sym_DOLLARdefined] = ACTIONS(1705), + [anon_sym_DOLLARembed] = ACTIONS(1705), + [anon_sym_DOLLARand] = ACTIONS(1705), + [anon_sym_DOLLARor] = ACTIONS(1705), + [anon_sym_DOLLARfeature] = ACTIONS(1705), + [anon_sym_DOLLARassignable] = ACTIONS(1705), + [anon_sym_BANG] = ACTIONS(1707), + [anon_sym_TILDE] = ACTIONS(1707), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_typeid] = ACTIONS(1705), + [anon_sym_LBRACE_PIPE] = ACTIONS(1707), + [anon_sym_void] = ACTIONS(1705), + [anon_sym_bool] = ACTIONS(1705), + [anon_sym_char] = ACTIONS(1705), + [anon_sym_ichar] = ACTIONS(1705), + [anon_sym_short] = ACTIONS(1705), + [anon_sym_ushort] = ACTIONS(1705), + [anon_sym_uint] = ACTIONS(1705), + [anon_sym_long] = ACTIONS(1705), + [anon_sym_ulong] = ACTIONS(1705), + [anon_sym_int128] = ACTIONS(1705), + [anon_sym_uint128] = ACTIONS(1705), + [anon_sym_float] = ACTIONS(1705), + [anon_sym_double] = ACTIONS(1705), + [anon_sym_float16] = ACTIONS(1705), + [anon_sym_bfloat16] = ACTIONS(1705), + [anon_sym_float128] = ACTIONS(1705), + [anon_sym_iptr] = ACTIONS(1705), + [anon_sym_uptr] = ACTIONS(1705), + [anon_sym_isz] = ACTIONS(1705), + [anon_sym_usz] = ACTIONS(1705), + [anon_sym_anyfault] = ACTIONS(1705), + [anon_sym_any] = ACTIONS(1705), + [anon_sym_DOLLARtypeof] = ACTIONS(1705), + [anon_sym_DOLLARtypefrom] = ACTIONS(1705), + [anon_sym_DOLLARevaltype] = ACTIONS(1705), + [anon_sym_DOLLARvatype] = ACTIONS(1705), + [sym_real_literal] = ACTIONS(1707), + }, + [806] = { + [sym_line_comment] = STATE(806), + [sym_doc_comment] = STATE(806), + [sym_block_comment] = STATE(806), + [sym_ident] = ACTIONS(1693), + [sym_integer_literal] = ACTIONS(1695), + [anon_sym_SQUOTE] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(1695), + [anon_sym_BQUOTE] = ACTIONS(1695), + [sym_bytes_literal] = ACTIONS(1695), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1357), - [sym_at_ident] = ACTIONS(1359), - [sym_hash_ident] = ACTIONS(1359), - [sym_type_ident] = ACTIONS(1359), - [sym_ct_type_ident] = ACTIONS(1359), - [sym_const_ident] = ACTIONS(1357), - [sym_builtin] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_fn] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_AMP_AMP] = ACTIONS(1359), - [anon_sym_int] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_DOLLARalignof] = ACTIONS(1357), - [anon_sym_DOLLARextnameof] = ACTIONS(1357), - [anon_sym_DOLLARnameof] = ACTIONS(1357), - [anon_sym_DOLLARoffsetof] = ACTIONS(1357), - [anon_sym_DOLLARqnameof] = ACTIONS(1357), - [anon_sym_DOLLAReval] = ACTIONS(1357), - [anon_sym_DOLLARdefined] = ACTIONS(1357), - [anon_sym_DOLLARsizeof] = ACTIONS(1357), - [anon_sym_DOLLARstringify] = ACTIONS(1357), - [anon_sym_DOLLARis_const] = ACTIONS(1357), - [anon_sym_DOLLARvaconst] = ACTIONS(1357), - [anon_sym_DOLLARvaarg] = ACTIONS(1357), - [anon_sym_DOLLARvaref] = ACTIONS(1357), - [anon_sym_DOLLARvaexpr] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1357), - [anon_sym_false] = ACTIONS(1357), - [anon_sym_null] = ACTIONS(1357), - [anon_sym_DOLLARvacount] = ACTIONS(1357), - [anon_sym_DOLLARfeature] = ACTIONS(1357), - [anon_sym_DOLLARand] = ACTIONS(1357), - [anon_sym_DOLLARor] = ACTIONS(1357), - [anon_sym_DOLLARassignable] = ACTIONS(1357), - [anon_sym_DOLLARembed] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_typeid] = ACTIONS(1357), - [anon_sym_LBRACE_PIPE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1357), - [anon_sym_bool] = ACTIONS(1357), - [anon_sym_char] = ACTIONS(1357), - [anon_sym_ichar] = ACTIONS(1357), - [anon_sym_short] = ACTIONS(1357), - [anon_sym_ushort] = ACTIONS(1357), - [anon_sym_uint] = ACTIONS(1357), - [anon_sym_long] = ACTIONS(1357), - [anon_sym_ulong] = ACTIONS(1357), - [anon_sym_int128] = ACTIONS(1357), - [anon_sym_uint128] = ACTIONS(1357), - [anon_sym_float] = ACTIONS(1357), - [anon_sym_double] = ACTIONS(1357), - [anon_sym_float16] = ACTIONS(1357), - [anon_sym_bfloat16] = ACTIONS(1357), - [anon_sym_float128] = ACTIONS(1357), - [anon_sym_iptr] = ACTIONS(1357), - [anon_sym_uptr] = ACTIONS(1357), - [anon_sym_isz] = ACTIONS(1357), - [anon_sym_usz] = ACTIONS(1357), - [anon_sym_anyfault] = ACTIONS(1357), - [anon_sym_any] = ACTIONS(1357), - [anon_sym_DOLLARtypeof] = ACTIONS(1357), - [anon_sym_DOLLARtypefrom] = ACTIONS(1357), - [anon_sym_DOLLARvatype] = ACTIONS(1357), - [anon_sym_DOLLARevaltype] = ACTIONS(1357), - [anon_sym_GT_RBRACK] = ACTIONS(1778), - [sym_real_literal] = ACTIONS(1359), + [sym_ct_ident] = ACTIONS(1693), + [sym_at_ident] = ACTIONS(1695), + [sym_hash_ident] = ACTIONS(1695), + [sym_type_ident] = ACTIONS(1695), + [sym_ct_type_ident] = ACTIONS(1695), + [sym_const_ident] = ACTIONS(1693), + [sym_builtin] = ACTIONS(1695), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_AMP] = ACTIONS(1693), + [anon_sym_static] = ACTIONS(1693), + [anon_sym_tlocal] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1695), + [anon_sym_fn] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [anon_sym_var] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_defer] = ACTIONS(1693), + [anon_sym_assert] = ACTIONS(1693), + [anon_sym_nextcase] = ACTIONS(1693), + [anon_sym_switch] = ACTIONS(1693), + [anon_sym_AMP_AMP] = ACTIONS(1695), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_foreach] = ACTIONS(1693), + [anon_sym_foreach_r] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_int] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1693), + [anon_sym_DASH] = ACTIONS(1693), + [anon_sym_STAR] = ACTIONS(1695), + [anon_sym_asm] = ACTIONS(1693), + [anon_sym_DOLLARassert] = ACTIONS(1693), + [anon_sym_DOLLARerror] = ACTIONS(1693), + [anon_sym_DOLLARecho] = ACTIONS(1693), + [anon_sym_DOLLARif] = ACTIONS(1693), + [anon_sym_DOLLARswitch] = ACTIONS(1693), + [anon_sym_DOLLARfor] = ACTIONS(1693), + [anon_sym_DOLLARforeach] = ACTIONS(1693), + [anon_sym_DOLLARalignof] = ACTIONS(1693), + [anon_sym_DOLLARextnameof] = ACTIONS(1693), + [anon_sym_DOLLARnameof] = ACTIONS(1693), + [anon_sym_DOLLARoffsetof] = ACTIONS(1693), + [anon_sym_DOLLARqnameof] = ACTIONS(1693), + [anon_sym_DOLLARvaconst] = ACTIONS(1693), + [anon_sym_DOLLARvaarg] = ACTIONS(1693), + [anon_sym_DOLLARvaref] = ACTIONS(1693), + [anon_sym_DOLLARvaexpr] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1693), + [anon_sym_false] = ACTIONS(1693), + [anon_sym_null] = ACTIONS(1693), + [anon_sym_DOLLARvacount] = ACTIONS(1693), + [anon_sym_DOLLAReval] = ACTIONS(1693), + [anon_sym_DOLLARis_const] = ACTIONS(1693), + [anon_sym_DOLLARsizeof] = ACTIONS(1693), + [anon_sym_DOLLARstringify] = ACTIONS(1693), + [anon_sym_DOLLARappend] = ACTIONS(1693), + [anon_sym_DOLLARconcat] = ACTIONS(1693), + [anon_sym_DOLLARdefined] = ACTIONS(1693), + [anon_sym_DOLLARembed] = ACTIONS(1693), + [anon_sym_DOLLARand] = ACTIONS(1693), + [anon_sym_DOLLARor] = ACTIONS(1693), + [anon_sym_DOLLARfeature] = ACTIONS(1693), + [anon_sym_DOLLARassignable] = ACTIONS(1693), + [anon_sym_BANG] = ACTIONS(1695), + [anon_sym_TILDE] = ACTIONS(1695), + [anon_sym_PLUS_PLUS] = ACTIONS(1695), + [anon_sym_DASH_DASH] = ACTIONS(1695), + [anon_sym_typeid] = ACTIONS(1693), + [anon_sym_LBRACE_PIPE] = ACTIONS(1695), + [anon_sym_void] = ACTIONS(1693), + [anon_sym_bool] = ACTIONS(1693), + [anon_sym_char] = ACTIONS(1693), + [anon_sym_ichar] = ACTIONS(1693), + [anon_sym_short] = ACTIONS(1693), + [anon_sym_ushort] = ACTIONS(1693), + [anon_sym_uint] = ACTIONS(1693), + [anon_sym_long] = ACTIONS(1693), + [anon_sym_ulong] = ACTIONS(1693), + [anon_sym_int128] = ACTIONS(1693), + [anon_sym_uint128] = ACTIONS(1693), + [anon_sym_float] = ACTIONS(1693), + [anon_sym_double] = ACTIONS(1693), + [anon_sym_float16] = ACTIONS(1693), + [anon_sym_bfloat16] = ACTIONS(1693), + [anon_sym_float128] = ACTIONS(1693), + [anon_sym_iptr] = ACTIONS(1693), + [anon_sym_uptr] = ACTIONS(1693), + [anon_sym_isz] = ACTIONS(1693), + [anon_sym_usz] = ACTIONS(1693), + [anon_sym_anyfault] = ACTIONS(1693), + [anon_sym_any] = ACTIONS(1693), + [anon_sym_DOLLARtypeof] = ACTIONS(1693), + [anon_sym_DOLLARtypefrom] = ACTIONS(1693), + [anon_sym_DOLLARevaltype] = ACTIONS(1693), + [anon_sym_DOLLARvatype] = ACTIONS(1693), + [sym_real_literal] = ACTIONS(1695), }, - [797] = { - [sym_line_comment] = STATE(797), - [sym_doc_comment] = STATE(797), - [sym_block_comment] = STATE(797), - [sym_ident] = ACTIONS(1357), - [sym_integer_literal] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [anon_sym_BQUOTE] = ACTIONS(1359), - [sym_bytes_literal] = ACTIONS(1359), + [807] = { + [sym_line_comment] = STATE(807), + [sym_doc_comment] = STATE(807), + [sym_block_comment] = STATE(807), + [sym_ident] = ACTIONS(1685), + [sym_integer_literal] = ACTIONS(1687), + [anon_sym_SQUOTE] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1687), + [anon_sym_BQUOTE] = ACTIONS(1687), + [sym_bytes_literal] = ACTIONS(1687), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1357), - [sym_at_ident] = ACTIONS(1359), - [sym_hash_ident] = ACTIONS(1359), - [sym_type_ident] = ACTIONS(1359), - [sym_ct_type_ident] = ACTIONS(1359), - [sym_const_ident] = ACTIONS(1357), - [sym_builtin] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_RBRACK] = ACTIONS(1778), - [anon_sym_fn] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_AMP_AMP] = ACTIONS(1359), - [anon_sym_int] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_DOLLARalignof] = ACTIONS(1357), - [anon_sym_DOLLARextnameof] = ACTIONS(1357), - [anon_sym_DOLLARnameof] = ACTIONS(1357), - [anon_sym_DOLLARoffsetof] = ACTIONS(1357), - [anon_sym_DOLLARqnameof] = ACTIONS(1357), - [anon_sym_DOLLAReval] = ACTIONS(1357), - [anon_sym_DOLLARdefined] = ACTIONS(1357), - [anon_sym_DOLLARsizeof] = ACTIONS(1357), - [anon_sym_DOLLARstringify] = ACTIONS(1357), - [anon_sym_DOLLARis_const] = ACTIONS(1357), - [anon_sym_DOLLARvaconst] = ACTIONS(1357), - [anon_sym_DOLLARvaarg] = ACTIONS(1357), - [anon_sym_DOLLARvaref] = ACTIONS(1357), - [anon_sym_DOLLARvaexpr] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1357), - [anon_sym_false] = ACTIONS(1357), - [anon_sym_null] = ACTIONS(1357), - [anon_sym_DOLLARvacount] = ACTIONS(1357), - [anon_sym_DOLLARfeature] = ACTIONS(1357), - [anon_sym_DOLLARand] = ACTIONS(1357), - [anon_sym_DOLLARor] = ACTIONS(1357), - [anon_sym_DOLLARassignable] = ACTIONS(1357), - [anon_sym_DOLLARembed] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_typeid] = ACTIONS(1357), - [anon_sym_LBRACE_PIPE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1357), - [anon_sym_bool] = ACTIONS(1357), - [anon_sym_char] = ACTIONS(1357), - [anon_sym_ichar] = ACTIONS(1357), - [anon_sym_short] = ACTIONS(1357), - [anon_sym_ushort] = ACTIONS(1357), - [anon_sym_uint] = ACTIONS(1357), - [anon_sym_long] = ACTIONS(1357), - [anon_sym_ulong] = ACTIONS(1357), - [anon_sym_int128] = ACTIONS(1357), - [anon_sym_uint128] = ACTIONS(1357), - [anon_sym_float] = ACTIONS(1357), - [anon_sym_double] = ACTIONS(1357), - [anon_sym_float16] = ACTIONS(1357), - [anon_sym_bfloat16] = ACTIONS(1357), - [anon_sym_float128] = ACTIONS(1357), - [anon_sym_iptr] = ACTIONS(1357), - [anon_sym_uptr] = ACTIONS(1357), - [anon_sym_isz] = ACTIONS(1357), - [anon_sym_usz] = ACTIONS(1357), - [anon_sym_anyfault] = ACTIONS(1357), - [anon_sym_any] = ACTIONS(1357), - [anon_sym_DOLLARtypeof] = ACTIONS(1357), - [anon_sym_DOLLARtypefrom] = ACTIONS(1357), - [anon_sym_DOLLARvatype] = ACTIONS(1357), - [anon_sym_DOLLARevaltype] = ACTIONS(1357), - [sym_real_literal] = ACTIONS(1359), + [sym_ct_ident] = ACTIONS(1685), + [sym_at_ident] = ACTIONS(1687), + [sym_hash_ident] = ACTIONS(1687), + [sym_type_ident] = ACTIONS(1687), + [sym_ct_type_ident] = ACTIONS(1687), + [sym_const_ident] = ACTIONS(1685), + [sym_builtin] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_static] = ACTIONS(1685), + [anon_sym_tlocal] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_fn] = ACTIONS(1685), + [anon_sym_LBRACE] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_var] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1685), + [anon_sym_continue] = ACTIONS(1685), + [anon_sym_break] = ACTIONS(1685), + [anon_sym_defer] = ACTIONS(1685), + [anon_sym_assert] = ACTIONS(1685), + [anon_sym_nextcase] = ACTIONS(1685), + [anon_sym_switch] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1687), + [anon_sym_if] = ACTIONS(1685), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_foreach] = ACTIONS(1685), + [anon_sym_foreach_r] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1685), + [anon_sym_do] = ACTIONS(1685), + [anon_sym_int] = ACTIONS(1685), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1685), + [anon_sym_STAR] = ACTIONS(1687), + [anon_sym_asm] = ACTIONS(1685), + [anon_sym_DOLLARassert] = ACTIONS(1685), + [anon_sym_DOLLARerror] = ACTIONS(1685), + [anon_sym_DOLLARecho] = ACTIONS(1685), + [anon_sym_DOLLARif] = ACTIONS(1685), + [anon_sym_DOLLARswitch] = ACTIONS(1685), + [anon_sym_DOLLARfor] = ACTIONS(1685), + [anon_sym_DOLLARforeach] = ACTIONS(1685), + [anon_sym_DOLLARalignof] = ACTIONS(1685), + [anon_sym_DOLLARextnameof] = ACTIONS(1685), + [anon_sym_DOLLARnameof] = ACTIONS(1685), + [anon_sym_DOLLARoffsetof] = ACTIONS(1685), + [anon_sym_DOLLARqnameof] = ACTIONS(1685), + [anon_sym_DOLLARvaconst] = ACTIONS(1685), + [anon_sym_DOLLARvaarg] = ACTIONS(1685), + [anon_sym_DOLLARvaref] = ACTIONS(1685), + [anon_sym_DOLLARvaexpr] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [anon_sym_null] = ACTIONS(1685), + [anon_sym_DOLLARvacount] = ACTIONS(1685), + [anon_sym_DOLLAReval] = ACTIONS(1685), + [anon_sym_DOLLARis_const] = ACTIONS(1685), + [anon_sym_DOLLARsizeof] = ACTIONS(1685), + [anon_sym_DOLLARstringify] = ACTIONS(1685), + [anon_sym_DOLLARappend] = ACTIONS(1685), + [anon_sym_DOLLARconcat] = ACTIONS(1685), + [anon_sym_DOLLARdefined] = ACTIONS(1685), + [anon_sym_DOLLARembed] = ACTIONS(1685), + [anon_sym_DOLLARand] = ACTIONS(1685), + [anon_sym_DOLLARor] = ACTIONS(1685), + [anon_sym_DOLLARfeature] = ACTIONS(1685), + [anon_sym_DOLLARassignable] = ACTIONS(1685), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [anon_sym_typeid] = ACTIONS(1685), + [anon_sym_LBRACE_PIPE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1685), + [anon_sym_bool] = ACTIONS(1685), + [anon_sym_char] = ACTIONS(1685), + [anon_sym_ichar] = ACTIONS(1685), + [anon_sym_short] = ACTIONS(1685), + [anon_sym_ushort] = ACTIONS(1685), + [anon_sym_uint] = ACTIONS(1685), + [anon_sym_long] = ACTIONS(1685), + [anon_sym_ulong] = ACTIONS(1685), + [anon_sym_int128] = ACTIONS(1685), + [anon_sym_uint128] = ACTIONS(1685), + [anon_sym_float] = ACTIONS(1685), + [anon_sym_double] = ACTIONS(1685), + [anon_sym_float16] = ACTIONS(1685), + [anon_sym_bfloat16] = ACTIONS(1685), + [anon_sym_float128] = ACTIONS(1685), + [anon_sym_iptr] = ACTIONS(1685), + [anon_sym_uptr] = ACTIONS(1685), + [anon_sym_isz] = ACTIONS(1685), + [anon_sym_usz] = ACTIONS(1685), + [anon_sym_anyfault] = ACTIONS(1685), + [anon_sym_any] = ACTIONS(1685), + [anon_sym_DOLLARtypeof] = ACTIONS(1685), + [anon_sym_DOLLARtypefrom] = ACTIONS(1685), + [anon_sym_DOLLARevaltype] = ACTIONS(1685), + [anon_sym_DOLLARvatype] = ACTIONS(1685), + [sym_real_literal] = ACTIONS(1687), }, - [798] = { - [sym_line_comment] = STATE(798), - [sym_doc_comment] = STATE(798), - [sym_block_comment] = STATE(798), - [sym_ident] = ACTIONS(1357), - [sym_integer_literal] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [anon_sym_BQUOTE] = ACTIONS(1359), - [sym_bytes_literal] = ACTIONS(1359), + [808] = { + [sym_line_comment] = STATE(808), + [sym_doc_comment] = STATE(808), + [sym_block_comment] = STATE(808), + [sym_ident] = ACTIONS(1681), + [sym_integer_literal] = ACTIONS(1683), + [anon_sym_SQUOTE] = ACTIONS(1683), + [anon_sym_DQUOTE] = ACTIONS(1683), + [anon_sym_BQUOTE] = ACTIONS(1683), + [sym_bytes_literal] = ACTIONS(1683), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1357), - [sym_at_ident] = ACTIONS(1359), - [sym_hash_ident] = ACTIONS(1359), - [sym_type_ident] = ACTIONS(1359), - [sym_ct_type_ident] = ACTIONS(1359), - [sym_const_ident] = ACTIONS(1357), - [sym_builtin] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_RBRACK] = ACTIONS(1780), - [anon_sym_fn] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_AMP_AMP] = ACTIONS(1359), - [anon_sym_int] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_DOLLARalignof] = ACTIONS(1357), - [anon_sym_DOLLARextnameof] = ACTIONS(1357), - [anon_sym_DOLLARnameof] = ACTIONS(1357), - [anon_sym_DOLLARoffsetof] = ACTIONS(1357), - [anon_sym_DOLLARqnameof] = ACTIONS(1357), - [anon_sym_DOLLAReval] = ACTIONS(1357), - [anon_sym_DOLLARdefined] = ACTIONS(1357), - [anon_sym_DOLLARsizeof] = ACTIONS(1357), - [anon_sym_DOLLARstringify] = ACTIONS(1357), - [anon_sym_DOLLARis_const] = ACTIONS(1357), - [anon_sym_DOLLARvaconst] = ACTIONS(1357), - [anon_sym_DOLLARvaarg] = ACTIONS(1357), - [anon_sym_DOLLARvaref] = ACTIONS(1357), - [anon_sym_DOLLARvaexpr] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1357), - [anon_sym_false] = ACTIONS(1357), - [anon_sym_null] = ACTIONS(1357), - [anon_sym_DOLLARvacount] = ACTIONS(1357), - [anon_sym_DOLLARfeature] = ACTIONS(1357), - [anon_sym_DOLLARand] = ACTIONS(1357), - [anon_sym_DOLLARor] = ACTIONS(1357), - [anon_sym_DOLLARassignable] = ACTIONS(1357), - [anon_sym_DOLLARembed] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_typeid] = ACTIONS(1357), - [anon_sym_LBRACE_PIPE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1357), - [anon_sym_bool] = ACTIONS(1357), - [anon_sym_char] = ACTIONS(1357), - [anon_sym_ichar] = ACTIONS(1357), - [anon_sym_short] = ACTIONS(1357), - [anon_sym_ushort] = ACTIONS(1357), - [anon_sym_uint] = ACTIONS(1357), - [anon_sym_long] = ACTIONS(1357), - [anon_sym_ulong] = ACTIONS(1357), - [anon_sym_int128] = ACTIONS(1357), - [anon_sym_uint128] = ACTIONS(1357), - [anon_sym_float] = ACTIONS(1357), - [anon_sym_double] = ACTIONS(1357), - [anon_sym_float16] = ACTIONS(1357), - [anon_sym_bfloat16] = ACTIONS(1357), - [anon_sym_float128] = ACTIONS(1357), - [anon_sym_iptr] = ACTIONS(1357), - [anon_sym_uptr] = ACTIONS(1357), - [anon_sym_isz] = ACTIONS(1357), - [anon_sym_usz] = ACTIONS(1357), - [anon_sym_anyfault] = ACTIONS(1357), - [anon_sym_any] = ACTIONS(1357), - [anon_sym_DOLLARtypeof] = ACTIONS(1357), - [anon_sym_DOLLARtypefrom] = ACTIONS(1357), - [anon_sym_DOLLARvatype] = ACTIONS(1357), - [anon_sym_DOLLARevaltype] = ACTIONS(1357), - [sym_real_literal] = ACTIONS(1359), + [sym_ct_ident] = ACTIONS(1681), + [sym_at_ident] = ACTIONS(1683), + [sym_hash_ident] = ACTIONS(1683), + [sym_type_ident] = ACTIONS(1683), + [sym_ct_type_ident] = ACTIONS(1683), + [sym_const_ident] = ACTIONS(1681), + [sym_builtin] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1683), + [anon_sym_AMP] = ACTIONS(1681), + [anon_sym_static] = ACTIONS(1681), + [anon_sym_tlocal] = ACTIONS(1681), + [anon_sym_SEMI] = ACTIONS(1683), + [anon_sym_fn] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1681), + [anon_sym_var] = ACTIONS(1681), + [anon_sym_return] = ACTIONS(1681), + [anon_sym_continue] = ACTIONS(1681), + [anon_sym_break] = ACTIONS(1681), + [anon_sym_defer] = ACTIONS(1681), + [anon_sym_assert] = ACTIONS(1681), + [anon_sym_nextcase] = ACTIONS(1681), + [anon_sym_switch] = ACTIONS(1681), + [anon_sym_AMP_AMP] = ACTIONS(1683), + [anon_sym_if] = ACTIONS(1681), + [anon_sym_for] = ACTIONS(1681), + [anon_sym_foreach] = ACTIONS(1681), + [anon_sym_foreach_r] = ACTIONS(1681), + [anon_sym_while] = ACTIONS(1681), + [anon_sym_do] = ACTIONS(1681), + [anon_sym_int] = ACTIONS(1681), + [anon_sym_PLUS] = ACTIONS(1681), + [anon_sym_DASH] = ACTIONS(1681), + [anon_sym_STAR] = ACTIONS(1683), + [anon_sym_asm] = ACTIONS(1681), + [anon_sym_DOLLARassert] = ACTIONS(1681), + [anon_sym_DOLLARerror] = ACTIONS(1681), + [anon_sym_DOLLARecho] = ACTIONS(1681), + [anon_sym_DOLLARif] = ACTIONS(1681), + [anon_sym_DOLLARswitch] = ACTIONS(1681), + [anon_sym_DOLLARfor] = ACTIONS(1681), + [anon_sym_DOLLARforeach] = ACTIONS(1681), + [anon_sym_DOLLARalignof] = ACTIONS(1681), + [anon_sym_DOLLARextnameof] = ACTIONS(1681), + [anon_sym_DOLLARnameof] = ACTIONS(1681), + [anon_sym_DOLLARoffsetof] = ACTIONS(1681), + [anon_sym_DOLLARqnameof] = ACTIONS(1681), + [anon_sym_DOLLARvaconst] = ACTIONS(1681), + [anon_sym_DOLLARvaarg] = ACTIONS(1681), + [anon_sym_DOLLARvaref] = ACTIONS(1681), + [anon_sym_DOLLARvaexpr] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1681), + [anon_sym_false] = ACTIONS(1681), + [anon_sym_null] = ACTIONS(1681), + [anon_sym_DOLLARvacount] = ACTIONS(1681), + [anon_sym_DOLLAReval] = ACTIONS(1681), + [anon_sym_DOLLARis_const] = ACTIONS(1681), + [anon_sym_DOLLARsizeof] = ACTIONS(1681), + [anon_sym_DOLLARstringify] = ACTIONS(1681), + [anon_sym_DOLLARappend] = ACTIONS(1681), + [anon_sym_DOLLARconcat] = ACTIONS(1681), + [anon_sym_DOLLARdefined] = ACTIONS(1681), + [anon_sym_DOLLARembed] = ACTIONS(1681), + [anon_sym_DOLLARand] = ACTIONS(1681), + [anon_sym_DOLLARor] = ACTIONS(1681), + [anon_sym_DOLLARfeature] = ACTIONS(1681), + [anon_sym_DOLLARassignable] = ACTIONS(1681), + [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1683), + [anon_sym_DASH_DASH] = ACTIONS(1683), + [anon_sym_typeid] = ACTIONS(1681), + [anon_sym_LBRACE_PIPE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1681), + [anon_sym_bool] = ACTIONS(1681), + [anon_sym_char] = ACTIONS(1681), + [anon_sym_ichar] = ACTIONS(1681), + [anon_sym_short] = ACTIONS(1681), + [anon_sym_ushort] = ACTIONS(1681), + [anon_sym_uint] = ACTIONS(1681), + [anon_sym_long] = ACTIONS(1681), + [anon_sym_ulong] = ACTIONS(1681), + [anon_sym_int128] = ACTIONS(1681), + [anon_sym_uint128] = ACTIONS(1681), + [anon_sym_float] = ACTIONS(1681), + [anon_sym_double] = ACTIONS(1681), + [anon_sym_float16] = ACTIONS(1681), + [anon_sym_bfloat16] = ACTIONS(1681), + [anon_sym_float128] = ACTIONS(1681), + [anon_sym_iptr] = ACTIONS(1681), + [anon_sym_uptr] = ACTIONS(1681), + [anon_sym_isz] = ACTIONS(1681), + [anon_sym_usz] = ACTIONS(1681), + [anon_sym_anyfault] = ACTIONS(1681), + [anon_sym_any] = ACTIONS(1681), + [anon_sym_DOLLARtypeof] = ACTIONS(1681), + [anon_sym_DOLLARtypefrom] = ACTIONS(1681), + [anon_sym_DOLLARevaltype] = ACTIONS(1681), + [anon_sym_DOLLARvatype] = ACTIONS(1681), + [sym_real_literal] = ACTIONS(1683), }, - [799] = { - [sym_line_comment] = STATE(799), - [sym_doc_comment] = STATE(799), - [sym_block_comment] = STATE(799), - [sym_ident] = ACTIONS(1357), - [sym_integer_literal] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [anon_sym_BQUOTE] = ACTIONS(1359), - [sym_bytes_literal] = ACTIONS(1359), + [809] = { + [sym_line_comment] = STATE(809), + [sym_doc_comment] = STATE(809), + [sym_block_comment] = STATE(809), + [sym_ident] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [anon_sym_SQUOTE] = ACTIONS(1679), + [anon_sym_DQUOTE] = ACTIONS(1679), + [anon_sym_BQUOTE] = ACTIONS(1679), + [sym_bytes_literal] = ACTIONS(1679), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1357), - [sym_at_ident] = ACTIONS(1359), - [sym_hash_ident] = ACTIONS(1359), - [sym_type_ident] = ACTIONS(1359), - [sym_ct_type_ident] = ACTIONS(1359), - [sym_const_ident] = ACTIONS(1357), - [sym_builtin] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_fn] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_AMP_AMP] = ACTIONS(1359), - [anon_sym_int] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_DOLLARalignof] = ACTIONS(1357), - [anon_sym_DOLLARextnameof] = ACTIONS(1357), - [anon_sym_DOLLARnameof] = ACTIONS(1357), - [anon_sym_DOLLARoffsetof] = ACTIONS(1357), - [anon_sym_DOLLARqnameof] = ACTIONS(1357), - [anon_sym_DOLLAReval] = ACTIONS(1357), - [anon_sym_DOLLARdefined] = ACTIONS(1357), - [anon_sym_DOLLARsizeof] = ACTIONS(1357), - [anon_sym_DOLLARstringify] = ACTIONS(1357), - [anon_sym_DOLLARis_const] = ACTIONS(1357), - [anon_sym_DOLLARvaconst] = ACTIONS(1357), - [anon_sym_DOLLARvaarg] = ACTIONS(1357), - [anon_sym_DOLLARvaref] = ACTIONS(1357), - [anon_sym_DOLLARvaexpr] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1357), - [anon_sym_false] = ACTIONS(1357), - [anon_sym_null] = ACTIONS(1357), - [anon_sym_DOLLARvacount] = ACTIONS(1357), - [anon_sym_DOLLARfeature] = ACTIONS(1357), - [anon_sym_DOLLARand] = ACTIONS(1357), - [anon_sym_DOLLARor] = ACTIONS(1357), - [anon_sym_DOLLARassignable] = ACTIONS(1357), - [anon_sym_DOLLARembed] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_typeid] = ACTIONS(1357), - [anon_sym_LBRACE_PIPE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1357), - [anon_sym_bool] = ACTIONS(1357), - [anon_sym_char] = ACTIONS(1357), - [anon_sym_ichar] = ACTIONS(1357), - [anon_sym_short] = ACTIONS(1357), - [anon_sym_ushort] = ACTIONS(1357), - [anon_sym_uint] = ACTIONS(1357), - [anon_sym_long] = ACTIONS(1357), - [anon_sym_ulong] = ACTIONS(1357), - [anon_sym_int128] = ACTIONS(1357), - [anon_sym_uint128] = ACTIONS(1357), - [anon_sym_float] = ACTIONS(1357), - [anon_sym_double] = ACTIONS(1357), - [anon_sym_float16] = ACTIONS(1357), - [anon_sym_bfloat16] = ACTIONS(1357), - [anon_sym_float128] = ACTIONS(1357), - [anon_sym_iptr] = ACTIONS(1357), - [anon_sym_uptr] = ACTIONS(1357), - [anon_sym_isz] = ACTIONS(1357), - [anon_sym_usz] = ACTIONS(1357), - [anon_sym_anyfault] = ACTIONS(1357), - [anon_sym_any] = ACTIONS(1357), - [anon_sym_DOLLARtypeof] = ACTIONS(1357), - [anon_sym_DOLLARtypefrom] = ACTIONS(1357), - [anon_sym_DOLLARvatype] = ACTIONS(1357), - [anon_sym_DOLLARevaltype] = ACTIONS(1357), - [anon_sym_GT_RBRACK] = ACTIONS(1782), - [sym_real_literal] = ACTIONS(1359), + [sym_ct_ident] = ACTIONS(1677), + [sym_at_ident] = ACTIONS(1679), + [sym_hash_ident] = ACTIONS(1679), + [sym_type_ident] = ACTIONS(1679), + [sym_ct_type_ident] = ACTIONS(1679), + [sym_const_ident] = ACTIONS(1677), + [sym_builtin] = ACTIONS(1679), + [anon_sym_LPAREN] = ACTIONS(1679), + [anon_sym_AMP] = ACTIONS(1677), + [anon_sym_static] = ACTIONS(1677), + [anon_sym_tlocal] = ACTIONS(1677), + [anon_sym_SEMI] = ACTIONS(1679), + [anon_sym_fn] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1677), + [anon_sym_const] = ACTIONS(1677), + [anon_sym_var] = ACTIONS(1677), + [anon_sym_return] = ACTIONS(1677), + [anon_sym_continue] = ACTIONS(1677), + [anon_sym_break] = ACTIONS(1677), + [anon_sym_defer] = ACTIONS(1677), + [anon_sym_assert] = ACTIONS(1677), + [anon_sym_nextcase] = ACTIONS(1677), + [anon_sym_switch] = ACTIONS(1677), + [anon_sym_AMP_AMP] = ACTIONS(1679), + [anon_sym_if] = ACTIONS(1677), + [anon_sym_for] = ACTIONS(1677), + [anon_sym_foreach] = ACTIONS(1677), + [anon_sym_foreach_r] = ACTIONS(1677), + [anon_sym_while] = ACTIONS(1677), + [anon_sym_do] = ACTIONS(1677), + [anon_sym_int] = ACTIONS(1677), + [anon_sym_PLUS] = ACTIONS(1677), + [anon_sym_DASH] = ACTIONS(1677), + [anon_sym_STAR] = ACTIONS(1679), + [anon_sym_asm] = ACTIONS(1677), + [anon_sym_DOLLARassert] = ACTIONS(1677), + [anon_sym_DOLLARerror] = ACTIONS(1677), + [anon_sym_DOLLARecho] = ACTIONS(1677), + [anon_sym_DOLLARif] = ACTIONS(1677), + [anon_sym_DOLLARswitch] = ACTIONS(1677), + [anon_sym_DOLLARfor] = ACTIONS(1677), + [anon_sym_DOLLARforeach] = ACTIONS(1677), + [anon_sym_DOLLARalignof] = ACTIONS(1677), + [anon_sym_DOLLARextnameof] = ACTIONS(1677), + [anon_sym_DOLLARnameof] = ACTIONS(1677), + [anon_sym_DOLLARoffsetof] = ACTIONS(1677), + [anon_sym_DOLLARqnameof] = ACTIONS(1677), + [anon_sym_DOLLARvaconst] = ACTIONS(1677), + [anon_sym_DOLLARvaarg] = ACTIONS(1677), + [anon_sym_DOLLARvaref] = ACTIONS(1677), + [anon_sym_DOLLARvaexpr] = ACTIONS(1677), + [anon_sym_true] = ACTIONS(1677), + [anon_sym_false] = ACTIONS(1677), + [anon_sym_null] = ACTIONS(1677), + [anon_sym_DOLLARvacount] = ACTIONS(1677), + [anon_sym_DOLLAReval] = ACTIONS(1677), + [anon_sym_DOLLARis_const] = ACTIONS(1677), + [anon_sym_DOLLARsizeof] = ACTIONS(1677), + [anon_sym_DOLLARstringify] = ACTIONS(1677), + [anon_sym_DOLLARappend] = ACTIONS(1677), + [anon_sym_DOLLARconcat] = ACTIONS(1677), + [anon_sym_DOLLARdefined] = ACTIONS(1677), + [anon_sym_DOLLARembed] = ACTIONS(1677), + [anon_sym_DOLLARand] = ACTIONS(1677), + [anon_sym_DOLLARor] = ACTIONS(1677), + [anon_sym_DOLLARfeature] = ACTIONS(1677), + [anon_sym_DOLLARassignable] = ACTIONS(1677), + [anon_sym_BANG] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1679), + [anon_sym_PLUS_PLUS] = ACTIONS(1679), + [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_typeid] = ACTIONS(1677), + [anon_sym_LBRACE_PIPE] = ACTIONS(1679), + [anon_sym_void] = ACTIONS(1677), + [anon_sym_bool] = ACTIONS(1677), + [anon_sym_char] = ACTIONS(1677), + [anon_sym_ichar] = ACTIONS(1677), + [anon_sym_short] = ACTIONS(1677), + [anon_sym_ushort] = ACTIONS(1677), + [anon_sym_uint] = ACTIONS(1677), + [anon_sym_long] = ACTIONS(1677), + [anon_sym_ulong] = ACTIONS(1677), + [anon_sym_int128] = ACTIONS(1677), + [anon_sym_uint128] = ACTIONS(1677), + [anon_sym_float] = ACTIONS(1677), + [anon_sym_double] = ACTIONS(1677), + [anon_sym_float16] = ACTIONS(1677), + [anon_sym_bfloat16] = ACTIONS(1677), + [anon_sym_float128] = ACTIONS(1677), + [anon_sym_iptr] = ACTIONS(1677), + [anon_sym_uptr] = ACTIONS(1677), + [anon_sym_isz] = ACTIONS(1677), + [anon_sym_usz] = ACTIONS(1677), + [anon_sym_anyfault] = ACTIONS(1677), + [anon_sym_any] = ACTIONS(1677), + [anon_sym_DOLLARtypeof] = ACTIONS(1677), + [anon_sym_DOLLARtypefrom] = ACTIONS(1677), + [anon_sym_DOLLARevaltype] = ACTIONS(1677), + [anon_sym_DOLLARvatype] = ACTIONS(1677), + [sym_real_literal] = ACTIONS(1679), }, - [800] = { - [sym_line_comment] = STATE(800), - [sym_doc_comment] = STATE(800), - [sym_block_comment] = STATE(800), - [sym_ident] = ACTIONS(1357), - [sym_integer_literal] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [anon_sym_BQUOTE] = ACTIONS(1359), - [sym_bytes_literal] = ACTIONS(1359), + [810] = { + [sym_line_comment] = STATE(810), + [sym_doc_comment] = STATE(810), + [sym_block_comment] = STATE(810), + [sym_ident] = ACTIONS(1669), + [sym_integer_literal] = ACTIONS(1671), + [anon_sym_SQUOTE] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(1671), + [anon_sym_BQUOTE] = ACTIONS(1671), + [sym_bytes_literal] = ACTIONS(1671), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1357), - [sym_at_ident] = ACTIONS(1359), - [sym_hash_ident] = ACTIONS(1359), - [sym_type_ident] = ACTIONS(1359), - [sym_ct_type_ident] = ACTIONS(1359), - [sym_const_ident] = ACTIONS(1357), - [sym_builtin] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_fn] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_AMP_AMP] = ACTIONS(1359), - [anon_sym_int] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_DOLLARalignof] = ACTIONS(1357), - [anon_sym_DOLLARextnameof] = ACTIONS(1357), - [anon_sym_DOLLARnameof] = ACTIONS(1357), - [anon_sym_DOLLARoffsetof] = ACTIONS(1357), - [anon_sym_DOLLARqnameof] = ACTIONS(1357), - [anon_sym_DOLLAReval] = ACTIONS(1357), - [anon_sym_DOLLARdefined] = ACTIONS(1357), - [anon_sym_DOLLARsizeof] = ACTIONS(1357), - [anon_sym_DOLLARstringify] = ACTIONS(1357), - [anon_sym_DOLLARis_const] = ACTIONS(1357), - [anon_sym_DOLLARvaconst] = ACTIONS(1357), - [anon_sym_DOLLARvaarg] = ACTIONS(1357), - [anon_sym_DOLLARvaref] = ACTIONS(1357), - [anon_sym_DOLLARvaexpr] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1357), - [anon_sym_false] = ACTIONS(1357), - [anon_sym_null] = ACTIONS(1357), - [anon_sym_DOLLARvacount] = ACTIONS(1357), - [anon_sym_DOLLARfeature] = ACTIONS(1357), - [anon_sym_DOLLARand] = ACTIONS(1357), - [anon_sym_DOLLARor] = ACTIONS(1357), - [anon_sym_DOLLARassignable] = ACTIONS(1357), - [anon_sym_DOLLARembed] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_typeid] = ACTIONS(1357), - [anon_sym_LBRACE_PIPE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1357), - [anon_sym_bool] = ACTIONS(1357), - [anon_sym_char] = ACTIONS(1357), - [anon_sym_ichar] = ACTIONS(1357), - [anon_sym_short] = ACTIONS(1357), - [anon_sym_ushort] = ACTIONS(1357), - [anon_sym_uint] = ACTIONS(1357), - [anon_sym_long] = ACTIONS(1357), - [anon_sym_ulong] = ACTIONS(1357), - [anon_sym_int128] = ACTIONS(1357), - [anon_sym_uint128] = ACTIONS(1357), - [anon_sym_float] = ACTIONS(1357), - [anon_sym_double] = ACTIONS(1357), - [anon_sym_float16] = ACTIONS(1357), - [anon_sym_bfloat16] = ACTIONS(1357), - [anon_sym_float128] = ACTIONS(1357), - [anon_sym_iptr] = ACTIONS(1357), - [anon_sym_uptr] = ACTIONS(1357), - [anon_sym_isz] = ACTIONS(1357), - [anon_sym_usz] = ACTIONS(1357), - [anon_sym_anyfault] = ACTIONS(1357), - [anon_sym_any] = ACTIONS(1357), - [anon_sym_DOLLARtypeof] = ACTIONS(1357), - [anon_sym_DOLLARtypefrom] = ACTIONS(1357), - [anon_sym_DOLLARvatype] = ACTIONS(1357), - [anon_sym_DOLLARevaltype] = ACTIONS(1357), - [anon_sym_GT_RBRACK] = ACTIONS(1780), - [sym_real_literal] = ACTIONS(1359), + [sym_ct_ident] = ACTIONS(1669), + [sym_at_ident] = ACTIONS(1671), + [sym_hash_ident] = ACTIONS(1671), + [sym_type_ident] = ACTIONS(1671), + [sym_ct_type_ident] = ACTIONS(1671), + [sym_const_ident] = ACTIONS(1669), + [sym_builtin] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1671), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_static] = ACTIONS(1669), + [anon_sym_tlocal] = ACTIONS(1669), + [anon_sym_SEMI] = ACTIONS(1671), + [anon_sym_fn] = ACTIONS(1669), + [anon_sym_LBRACE] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1669), + [anon_sym_var] = ACTIONS(1669), + [anon_sym_return] = ACTIONS(1669), + [anon_sym_continue] = ACTIONS(1669), + [anon_sym_break] = ACTIONS(1669), + [anon_sym_defer] = ACTIONS(1669), + [anon_sym_assert] = ACTIONS(1669), + [anon_sym_nextcase] = ACTIONS(1669), + [anon_sym_switch] = ACTIONS(1669), + [anon_sym_AMP_AMP] = ACTIONS(1671), + [anon_sym_if] = ACTIONS(1669), + [anon_sym_for] = ACTIONS(1669), + [anon_sym_foreach] = ACTIONS(1669), + [anon_sym_foreach_r] = ACTIONS(1669), + [anon_sym_while] = ACTIONS(1669), + [anon_sym_do] = ACTIONS(1669), + [anon_sym_int] = ACTIONS(1669), + [anon_sym_PLUS] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1669), + [anon_sym_STAR] = ACTIONS(1671), + [anon_sym_asm] = ACTIONS(1669), + [anon_sym_DOLLARassert] = ACTIONS(1669), + [anon_sym_DOLLARerror] = ACTIONS(1669), + [anon_sym_DOLLARecho] = ACTIONS(1669), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_DOLLARswitch] = ACTIONS(1669), + [anon_sym_DOLLARfor] = ACTIONS(1669), + [anon_sym_DOLLARforeach] = ACTIONS(1669), + [anon_sym_DOLLARalignof] = ACTIONS(1669), + [anon_sym_DOLLARextnameof] = ACTIONS(1669), + [anon_sym_DOLLARnameof] = ACTIONS(1669), + [anon_sym_DOLLARoffsetof] = ACTIONS(1669), + [anon_sym_DOLLARqnameof] = ACTIONS(1669), + [anon_sym_DOLLARvaconst] = ACTIONS(1669), + [anon_sym_DOLLARvaarg] = ACTIONS(1669), + [anon_sym_DOLLARvaref] = ACTIONS(1669), + [anon_sym_DOLLARvaexpr] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1669), + [anon_sym_false] = ACTIONS(1669), + [anon_sym_null] = ACTIONS(1669), + [anon_sym_DOLLARvacount] = ACTIONS(1669), + [anon_sym_DOLLAReval] = ACTIONS(1669), + [anon_sym_DOLLARis_const] = ACTIONS(1669), + [anon_sym_DOLLARsizeof] = ACTIONS(1669), + [anon_sym_DOLLARstringify] = ACTIONS(1669), + [anon_sym_DOLLARappend] = ACTIONS(1669), + [anon_sym_DOLLARconcat] = ACTIONS(1669), + [anon_sym_DOLLARdefined] = ACTIONS(1669), + [anon_sym_DOLLARembed] = ACTIONS(1669), + [anon_sym_DOLLARand] = ACTIONS(1669), + [anon_sym_DOLLARor] = ACTIONS(1669), + [anon_sym_DOLLARfeature] = ACTIONS(1669), + [anon_sym_DOLLARassignable] = ACTIONS(1669), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_TILDE] = ACTIONS(1671), + [anon_sym_PLUS_PLUS] = ACTIONS(1671), + [anon_sym_DASH_DASH] = ACTIONS(1671), + [anon_sym_typeid] = ACTIONS(1669), + [anon_sym_LBRACE_PIPE] = ACTIONS(1671), + [anon_sym_void] = ACTIONS(1669), + [anon_sym_bool] = ACTIONS(1669), + [anon_sym_char] = ACTIONS(1669), + [anon_sym_ichar] = ACTIONS(1669), + [anon_sym_short] = ACTIONS(1669), + [anon_sym_ushort] = ACTIONS(1669), + [anon_sym_uint] = ACTIONS(1669), + [anon_sym_long] = ACTIONS(1669), + [anon_sym_ulong] = ACTIONS(1669), + [anon_sym_int128] = ACTIONS(1669), + [anon_sym_uint128] = ACTIONS(1669), + [anon_sym_float] = ACTIONS(1669), + [anon_sym_double] = ACTIONS(1669), + [anon_sym_float16] = ACTIONS(1669), + [anon_sym_bfloat16] = ACTIONS(1669), + [anon_sym_float128] = ACTIONS(1669), + [anon_sym_iptr] = ACTIONS(1669), + [anon_sym_uptr] = ACTIONS(1669), + [anon_sym_isz] = ACTIONS(1669), + [anon_sym_usz] = ACTIONS(1669), + [anon_sym_anyfault] = ACTIONS(1669), + [anon_sym_any] = ACTIONS(1669), + [anon_sym_DOLLARtypeof] = ACTIONS(1669), + [anon_sym_DOLLARtypefrom] = ACTIONS(1669), + [anon_sym_DOLLARevaltype] = ACTIONS(1669), + [anon_sym_DOLLARvatype] = ACTIONS(1669), + [sym_real_literal] = ACTIONS(1671), + }, + [811] = { + [sym_line_comment] = STATE(811), + [sym_doc_comment] = STATE(811), + [sym_block_comment] = STATE(811), + [sym_ident] = ACTIONS(1673), + [sym_integer_literal] = ACTIONS(1675), + [anon_sym_SQUOTE] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [anon_sym_BQUOTE] = ACTIONS(1675), + [sym_bytes_literal] = ACTIONS(1675), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1673), + [sym_at_ident] = ACTIONS(1675), + [sym_hash_ident] = ACTIONS(1675), + [sym_type_ident] = ACTIONS(1675), + [sym_ct_type_ident] = ACTIONS(1675), + [sym_const_ident] = ACTIONS(1673), + [sym_builtin] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_AMP] = ACTIONS(1673), + [anon_sym_static] = ACTIONS(1673), + [anon_sym_tlocal] = ACTIONS(1673), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_fn] = ACTIONS(1673), + [anon_sym_LBRACE] = ACTIONS(1673), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_var] = ACTIONS(1673), + [anon_sym_return] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_defer] = ACTIONS(1673), + [anon_sym_assert] = ACTIONS(1673), + [anon_sym_nextcase] = ACTIONS(1673), + [anon_sym_switch] = ACTIONS(1673), + [anon_sym_AMP_AMP] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1673), + [anon_sym_for] = ACTIONS(1673), + [anon_sym_foreach] = ACTIONS(1673), + [anon_sym_foreach_r] = ACTIONS(1673), + [anon_sym_while] = ACTIONS(1673), + [anon_sym_do] = ACTIONS(1673), + [anon_sym_int] = ACTIONS(1673), + [anon_sym_PLUS] = ACTIONS(1673), + [anon_sym_DASH] = ACTIONS(1673), + [anon_sym_STAR] = ACTIONS(1675), + [anon_sym_asm] = ACTIONS(1673), + [anon_sym_DOLLARassert] = ACTIONS(1673), + [anon_sym_DOLLARerror] = ACTIONS(1673), + [anon_sym_DOLLARecho] = ACTIONS(1673), + [anon_sym_DOLLARif] = ACTIONS(1673), + [anon_sym_DOLLARswitch] = ACTIONS(1673), + [anon_sym_DOLLARfor] = ACTIONS(1673), + [anon_sym_DOLLARforeach] = ACTIONS(1673), + [anon_sym_DOLLARalignof] = ACTIONS(1673), + [anon_sym_DOLLARextnameof] = ACTIONS(1673), + [anon_sym_DOLLARnameof] = ACTIONS(1673), + [anon_sym_DOLLARoffsetof] = ACTIONS(1673), + [anon_sym_DOLLARqnameof] = ACTIONS(1673), + [anon_sym_DOLLARvaconst] = ACTIONS(1673), + [anon_sym_DOLLARvaarg] = ACTIONS(1673), + [anon_sym_DOLLARvaref] = ACTIONS(1673), + [anon_sym_DOLLARvaexpr] = ACTIONS(1673), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_null] = ACTIONS(1673), + [anon_sym_DOLLARvacount] = ACTIONS(1673), + [anon_sym_DOLLAReval] = ACTIONS(1673), + [anon_sym_DOLLARis_const] = ACTIONS(1673), + [anon_sym_DOLLARsizeof] = ACTIONS(1673), + [anon_sym_DOLLARstringify] = ACTIONS(1673), + [anon_sym_DOLLARappend] = ACTIONS(1673), + [anon_sym_DOLLARconcat] = ACTIONS(1673), + [anon_sym_DOLLARdefined] = ACTIONS(1673), + [anon_sym_DOLLARembed] = ACTIONS(1673), + [anon_sym_DOLLARand] = ACTIONS(1673), + [anon_sym_DOLLARor] = ACTIONS(1673), + [anon_sym_DOLLARfeature] = ACTIONS(1673), + [anon_sym_DOLLARassignable] = ACTIONS(1673), + [anon_sym_BANG] = ACTIONS(1675), + [anon_sym_TILDE] = ACTIONS(1675), + [anon_sym_PLUS_PLUS] = ACTIONS(1675), + [anon_sym_DASH_DASH] = ACTIONS(1675), + [anon_sym_typeid] = ACTIONS(1673), + [anon_sym_LBRACE_PIPE] = ACTIONS(1675), + [anon_sym_void] = ACTIONS(1673), + [anon_sym_bool] = ACTIONS(1673), + [anon_sym_char] = ACTIONS(1673), + [anon_sym_ichar] = ACTIONS(1673), + [anon_sym_short] = ACTIONS(1673), + [anon_sym_ushort] = ACTIONS(1673), + [anon_sym_uint] = ACTIONS(1673), + [anon_sym_long] = ACTIONS(1673), + [anon_sym_ulong] = ACTIONS(1673), + [anon_sym_int128] = ACTIONS(1673), + [anon_sym_uint128] = ACTIONS(1673), + [anon_sym_float] = ACTIONS(1673), + [anon_sym_double] = ACTIONS(1673), + [anon_sym_float16] = ACTIONS(1673), + [anon_sym_bfloat16] = ACTIONS(1673), + [anon_sym_float128] = ACTIONS(1673), + [anon_sym_iptr] = ACTIONS(1673), + [anon_sym_uptr] = ACTIONS(1673), + [anon_sym_isz] = ACTIONS(1673), + [anon_sym_usz] = ACTIONS(1673), + [anon_sym_anyfault] = ACTIONS(1673), + [anon_sym_any] = ACTIONS(1673), + [anon_sym_DOLLARtypeof] = ACTIONS(1673), + [anon_sym_DOLLARtypefrom] = ACTIONS(1673), + [anon_sym_DOLLARevaltype] = ACTIONS(1673), + [anon_sym_DOLLARvatype] = ACTIONS(1673), + [sym_real_literal] = ACTIONS(1675), }, - [801] = { - [sym_line_comment] = STATE(801), - [sym_doc_comment] = STATE(801), - [sym_block_comment] = STATE(801), - [sym_ident] = ACTIONS(1357), - [sym_integer_literal] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [anon_sym_BQUOTE] = ACTIONS(1359), - [sym_bytes_literal] = ACTIONS(1359), + [812] = { + [sym_line_comment] = STATE(812), + [sym_doc_comment] = STATE(812), + [sym_block_comment] = STATE(812), + [sym_ident] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [anon_sym_SQUOTE] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1691), + [anon_sym_BQUOTE] = ACTIONS(1691), + [sym_bytes_literal] = ACTIONS(1691), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1357), - [sym_at_ident] = ACTIONS(1359), - [sym_hash_ident] = ACTIONS(1359), - [sym_type_ident] = ACTIONS(1359), - [sym_ct_type_ident] = ACTIONS(1359), - [sym_const_ident] = ACTIONS(1357), - [sym_builtin] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_RBRACK] = ACTIONS(1782), - [anon_sym_fn] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_AMP_AMP] = ACTIONS(1359), - [anon_sym_int] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_DOLLARalignof] = ACTIONS(1357), - [anon_sym_DOLLARextnameof] = ACTIONS(1357), - [anon_sym_DOLLARnameof] = ACTIONS(1357), - [anon_sym_DOLLARoffsetof] = ACTIONS(1357), - [anon_sym_DOLLARqnameof] = ACTIONS(1357), - [anon_sym_DOLLAReval] = ACTIONS(1357), - [anon_sym_DOLLARdefined] = ACTIONS(1357), - [anon_sym_DOLLARsizeof] = ACTIONS(1357), - [anon_sym_DOLLARstringify] = ACTIONS(1357), - [anon_sym_DOLLARis_const] = ACTIONS(1357), - [anon_sym_DOLLARvaconst] = ACTIONS(1357), - [anon_sym_DOLLARvaarg] = ACTIONS(1357), - [anon_sym_DOLLARvaref] = ACTIONS(1357), - [anon_sym_DOLLARvaexpr] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1357), - [anon_sym_false] = ACTIONS(1357), - [anon_sym_null] = ACTIONS(1357), - [anon_sym_DOLLARvacount] = ACTIONS(1357), - [anon_sym_DOLLARfeature] = ACTIONS(1357), - [anon_sym_DOLLARand] = ACTIONS(1357), - [anon_sym_DOLLARor] = ACTIONS(1357), - [anon_sym_DOLLARassignable] = ACTIONS(1357), - [anon_sym_DOLLARembed] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_typeid] = ACTIONS(1357), - [anon_sym_LBRACE_PIPE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1357), - [anon_sym_bool] = ACTIONS(1357), - [anon_sym_char] = ACTIONS(1357), - [anon_sym_ichar] = ACTIONS(1357), - [anon_sym_short] = ACTIONS(1357), - [anon_sym_ushort] = ACTIONS(1357), - [anon_sym_uint] = ACTIONS(1357), - [anon_sym_long] = ACTIONS(1357), - [anon_sym_ulong] = ACTIONS(1357), - [anon_sym_int128] = ACTIONS(1357), - [anon_sym_uint128] = ACTIONS(1357), - [anon_sym_float] = ACTIONS(1357), - [anon_sym_double] = ACTIONS(1357), - [anon_sym_float16] = ACTIONS(1357), - [anon_sym_bfloat16] = ACTIONS(1357), - [anon_sym_float128] = ACTIONS(1357), - [anon_sym_iptr] = ACTIONS(1357), - [anon_sym_uptr] = ACTIONS(1357), - [anon_sym_isz] = ACTIONS(1357), - [anon_sym_usz] = ACTIONS(1357), - [anon_sym_anyfault] = ACTIONS(1357), - [anon_sym_any] = ACTIONS(1357), - [anon_sym_DOLLARtypeof] = ACTIONS(1357), - [anon_sym_DOLLARtypefrom] = ACTIONS(1357), - [anon_sym_DOLLARvatype] = ACTIONS(1357), - [anon_sym_DOLLARevaltype] = ACTIONS(1357), - [sym_real_literal] = ACTIONS(1359), - }, - [802] = { - [sym_line_comment] = STATE(802), - [sym_doc_comment] = STATE(802), - [sym_block_comment] = STATE(802), - [sym_ident] = ACTIONS(1784), - [sym_integer_literal] = ACTIONS(1786), - [anon_sym_SQUOTE] = ACTIONS(1786), - [anon_sym_DQUOTE] = ACTIONS(1786), - [anon_sym_BQUOTE] = ACTIONS(1786), - [sym_bytes_literal] = ACTIONS(1786), - [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), - [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1784), - [sym_at_ident] = ACTIONS(1786), - [sym_hash_ident] = ACTIONS(1786), - [sym_type_ident] = ACTIONS(1786), - [sym_ct_type_ident] = ACTIONS(1786), - [sym_const_ident] = ACTIONS(1784), - [sym_builtin] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_fn] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1784), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_int] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_DOLLARalignof] = ACTIONS(1784), - [anon_sym_DOLLARextnameof] = ACTIONS(1784), - [anon_sym_DOLLARnameof] = ACTIONS(1784), - [anon_sym_DOLLARoffsetof] = ACTIONS(1784), - [anon_sym_DOLLARqnameof] = ACTIONS(1784), - [anon_sym_DOLLAReval] = ACTIONS(1784), - [anon_sym_DOLLARdefined] = ACTIONS(1784), - [anon_sym_DOLLARsizeof] = ACTIONS(1784), - [anon_sym_DOLLARstringify] = ACTIONS(1784), - [anon_sym_DOLLARis_const] = ACTIONS(1784), - [anon_sym_DOLLARvaconst] = ACTIONS(1784), - [anon_sym_DOLLARvaarg] = ACTIONS(1784), - [anon_sym_DOLLARvaref] = ACTIONS(1784), - [anon_sym_DOLLARvaexpr] = ACTIONS(1784), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_DOLLARvacount] = ACTIONS(1784), - [anon_sym_DOLLARfeature] = ACTIONS(1784), - [anon_sym_DOLLARand] = ACTIONS(1784), - [anon_sym_DOLLARor] = ACTIONS(1784), - [anon_sym_DOLLARassignable] = ACTIONS(1784), - [anon_sym_DOLLARembed] = ACTIONS(1784), - [anon_sym_BANG] = ACTIONS(1786), - [anon_sym_TILDE] = ACTIONS(1786), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_typeid] = ACTIONS(1784), - [anon_sym_LBRACE_PIPE] = ACTIONS(1786), - [anon_sym_void] = ACTIONS(1784), - [anon_sym_bool] = ACTIONS(1784), - [anon_sym_char] = ACTIONS(1784), - [anon_sym_ichar] = ACTIONS(1784), - [anon_sym_short] = ACTIONS(1784), - [anon_sym_ushort] = ACTIONS(1784), - [anon_sym_uint] = ACTIONS(1784), - [anon_sym_long] = ACTIONS(1784), - [anon_sym_ulong] = ACTIONS(1784), - [anon_sym_int128] = ACTIONS(1784), - [anon_sym_uint128] = ACTIONS(1784), - [anon_sym_float] = ACTIONS(1784), - [anon_sym_double] = ACTIONS(1784), - [anon_sym_float16] = ACTIONS(1784), - [anon_sym_bfloat16] = ACTIONS(1784), - [anon_sym_float128] = ACTIONS(1784), - [anon_sym_iptr] = ACTIONS(1784), - [anon_sym_uptr] = ACTIONS(1784), - [anon_sym_isz] = ACTIONS(1784), - [anon_sym_usz] = ACTIONS(1784), - [anon_sym_anyfault] = ACTIONS(1784), - [anon_sym_any] = ACTIONS(1784), - [anon_sym_DOLLARtypeof] = ACTIONS(1784), - [anon_sym_DOLLARtypefrom] = ACTIONS(1784), - [anon_sym_DOLLARvatype] = ACTIONS(1784), - [anon_sym_DOLLARevaltype] = ACTIONS(1784), - [sym_real_literal] = ACTIONS(1786), + [sym_ct_ident] = ACTIONS(1689), + [sym_at_ident] = ACTIONS(1691), + [sym_hash_ident] = ACTIONS(1691), + [sym_type_ident] = ACTIONS(1691), + [sym_ct_type_ident] = ACTIONS(1691), + [sym_const_ident] = ACTIONS(1689), + [sym_builtin] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1691), + [anon_sym_AMP] = ACTIONS(1689), + [anon_sym_static] = ACTIONS(1689), + [anon_sym_tlocal] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1691), + [anon_sym_fn] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1689), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_var] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_defer] = ACTIONS(1689), + [anon_sym_assert] = ACTIONS(1689), + [anon_sym_nextcase] = ACTIONS(1689), + [anon_sym_switch] = ACTIONS(1689), + [anon_sym_AMP_AMP] = ACTIONS(1691), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_foreach] = ACTIONS(1689), + [anon_sym_foreach_r] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1689), + [anon_sym_do] = ACTIONS(1689), + [anon_sym_int] = ACTIONS(1689), + [anon_sym_PLUS] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1689), + [anon_sym_STAR] = ACTIONS(1691), + [anon_sym_asm] = ACTIONS(1689), + [anon_sym_DOLLARassert] = ACTIONS(1689), + [anon_sym_DOLLARerror] = ACTIONS(1689), + [anon_sym_DOLLARecho] = ACTIONS(1689), + [anon_sym_DOLLARif] = ACTIONS(1689), + [anon_sym_DOLLARswitch] = ACTIONS(1689), + [anon_sym_DOLLARfor] = ACTIONS(1689), + [anon_sym_DOLLARforeach] = ACTIONS(1689), + [anon_sym_DOLLARalignof] = ACTIONS(1689), + [anon_sym_DOLLARextnameof] = ACTIONS(1689), + [anon_sym_DOLLARnameof] = ACTIONS(1689), + [anon_sym_DOLLARoffsetof] = ACTIONS(1689), + [anon_sym_DOLLARqnameof] = ACTIONS(1689), + [anon_sym_DOLLARvaconst] = ACTIONS(1689), + [anon_sym_DOLLARvaarg] = ACTIONS(1689), + [anon_sym_DOLLARvaref] = ACTIONS(1689), + [anon_sym_DOLLARvaexpr] = ACTIONS(1689), + [anon_sym_true] = ACTIONS(1689), + [anon_sym_false] = ACTIONS(1689), + [anon_sym_null] = ACTIONS(1689), + [anon_sym_DOLLARvacount] = ACTIONS(1689), + [anon_sym_DOLLAReval] = ACTIONS(1689), + [anon_sym_DOLLARis_const] = ACTIONS(1689), + [anon_sym_DOLLARsizeof] = ACTIONS(1689), + [anon_sym_DOLLARstringify] = ACTIONS(1689), + [anon_sym_DOLLARappend] = ACTIONS(1689), + [anon_sym_DOLLARconcat] = ACTIONS(1689), + [anon_sym_DOLLARdefined] = ACTIONS(1689), + [anon_sym_DOLLARembed] = ACTIONS(1689), + [anon_sym_DOLLARand] = ACTIONS(1689), + [anon_sym_DOLLARor] = ACTIONS(1689), + [anon_sym_DOLLARfeature] = ACTIONS(1689), + [anon_sym_DOLLARassignable] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1691), + [anon_sym_TILDE] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1691), + [anon_sym_DASH_DASH] = ACTIONS(1691), + [anon_sym_typeid] = ACTIONS(1689), + [anon_sym_LBRACE_PIPE] = ACTIONS(1691), + [anon_sym_void] = ACTIONS(1689), + [anon_sym_bool] = ACTIONS(1689), + [anon_sym_char] = ACTIONS(1689), + [anon_sym_ichar] = ACTIONS(1689), + [anon_sym_short] = ACTIONS(1689), + [anon_sym_ushort] = ACTIONS(1689), + [anon_sym_uint] = ACTIONS(1689), + [anon_sym_long] = ACTIONS(1689), + [anon_sym_ulong] = ACTIONS(1689), + [anon_sym_int128] = ACTIONS(1689), + [anon_sym_uint128] = ACTIONS(1689), + [anon_sym_float] = ACTIONS(1689), + [anon_sym_double] = ACTIONS(1689), + [anon_sym_float16] = ACTIONS(1689), + [anon_sym_bfloat16] = ACTIONS(1689), + [anon_sym_float128] = ACTIONS(1689), + [anon_sym_iptr] = ACTIONS(1689), + [anon_sym_uptr] = ACTIONS(1689), + [anon_sym_isz] = ACTIONS(1689), + [anon_sym_usz] = ACTIONS(1689), + [anon_sym_anyfault] = ACTIONS(1689), + [anon_sym_any] = ACTIONS(1689), + [anon_sym_DOLLARtypeof] = ACTIONS(1689), + [anon_sym_DOLLARtypefrom] = ACTIONS(1689), + [anon_sym_DOLLARevaltype] = ACTIONS(1689), + [anon_sym_DOLLARvatype] = ACTIONS(1689), + [sym_real_literal] = ACTIONS(1691), }, - [803] = { - [sym_line_comment] = STATE(803), - [sym_doc_comment] = STATE(803), - [sym_block_comment] = STATE(803), - [sym_ident] = ACTIONS(1357), - [sym_integer_literal] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_DQUOTE] = ACTIONS(1359), - [anon_sym_BQUOTE] = ACTIONS(1359), - [sym_bytes_literal] = ACTIONS(1359), + [813] = { + [sym_line_comment] = STATE(813), + [sym_doc_comment] = STATE(813), + [sym_block_comment] = STATE(813), + [sym_ident] = ACTIONS(1709), + [sym_integer_literal] = ACTIONS(1711), + [anon_sym_SQUOTE] = ACTIONS(1711), + [anon_sym_DQUOTE] = ACTIONS(1711), + [anon_sym_BQUOTE] = ACTIONS(1711), + [sym_bytes_literal] = ACTIONS(1711), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1709), + [sym_at_ident] = ACTIONS(1711), + [sym_hash_ident] = ACTIONS(1711), + [sym_type_ident] = ACTIONS(1711), + [sym_ct_type_ident] = ACTIONS(1711), + [sym_const_ident] = ACTIONS(1709), + [sym_builtin] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1711), + [anon_sym_AMP] = ACTIONS(1709), + [anon_sym_static] = ACTIONS(1709), + [anon_sym_tlocal] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_fn] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [anon_sym_var] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_defer] = ACTIONS(1709), + [anon_sym_assert] = ACTIONS(1709), + [anon_sym_nextcase] = ACTIONS(1709), + [anon_sym_switch] = ACTIONS(1709), + [anon_sym_AMP_AMP] = ACTIONS(1711), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_foreach] = ACTIONS(1709), + [anon_sym_foreach_r] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_int] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_STAR] = ACTIONS(1711), + [anon_sym_asm] = ACTIONS(1709), + [anon_sym_DOLLARassert] = ACTIONS(1709), + [anon_sym_DOLLARerror] = ACTIONS(1709), + [anon_sym_DOLLARecho] = ACTIONS(1709), + [anon_sym_DOLLARif] = ACTIONS(1709), + [anon_sym_DOLLARswitch] = ACTIONS(1709), + [anon_sym_DOLLARfor] = ACTIONS(1709), + [anon_sym_DOLLARforeach] = ACTIONS(1709), + [anon_sym_DOLLARalignof] = ACTIONS(1709), + [anon_sym_DOLLARextnameof] = ACTIONS(1709), + [anon_sym_DOLLARnameof] = ACTIONS(1709), + [anon_sym_DOLLARoffsetof] = ACTIONS(1709), + [anon_sym_DOLLARqnameof] = ACTIONS(1709), + [anon_sym_DOLLARvaconst] = ACTIONS(1709), + [anon_sym_DOLLARvaarg] = ACTIONS(1709), + [anon_sym_DOLLARvaref] = ACTIONS(1709), + [anon_sym_DOLLARvaexpr] = ACTIONS(1709), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [anon_sym_null] = ACTIONS(1709), + [anon_sym_DOLLARvacount] = ACTIONS(1709), + [anon_sym_DOLLAReval] = ACTIONS(1709), + [anon_sym_DOLLARis_const] = ACTIONS(1709), + [anon_sym_DOLLARsizeof] = ACTIONS(1709), + [anon_sym_DOLLARstringify] = ACTIONS(1709), + [anon_sym_DOLLARappend] = ACTIONS(1709), + [anon_sym_DOLLARconcat] = ACTIONS(1709), + [anon_sym_DOLLARdefined] = ACTIONS(1709), + [anon_sym_DOLLARembed] = ACTIONS(1709), + [anon_sym_DOLLARand] = ACTIONS(1709), + [anon_sym_DOLLARor] = ACTIONS(1709), + [anon_sym_DOLLARfeature] = ACTIONS(1709), + [anon_sym_DOLLARassignable] = ACTIONS(1709), + [anon_sym_BANG] = ACTIONS(1711), + [anon_sym_TILDE] = ACTIONS(1711), + [anon_sym_PLUS_PLUS] = ACTIONS(1711), + [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_typeid] = ACTIONS(1709), + [anon_sym_LBRACE_PIPE] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(1709), + [anon_sym_bool] = ACTIONS(1709), + [anon_sym_char] = ACTIONS(1709), + [anon_sym_ichar] = ACTIONS(1709), + [anon_sym_short] = ACTIONS(1709), + [anon_sym_ushort] = ACTIONS(1709), + [anon_sym_uint] = ACTIONS(1709), + [anon_sym_long] = ACTIONS(1709), + [anon_sym_ulong] = ACTIONS(1709), + [anon_sym_int128] = ACTIONS(1709), + [anon_sym_uint128] = ACTIONS(1709), + [anon_sym_float] = ACTIONS(1709), + [anon_sym_double] = ACTIONS(1709), + [anon_sym_float16] = ACTIONS(1709), + [anon_sym_bfloat16] = ACTIONS(1709), + [anon_sym_float128] = ACTIONS(1709), + [anon_sym_iptr] = ACTIONS(1709), + [anon_sym_uptr] = ACTIONS(1709), + [anon_sym_isz] = ACTIONS(1709), + [anon_sym_usz] = ACTIONS(1709), + [anon_sym_anyfault] = ACTIONS(1709), + [anon_sym_any] = ACTIONS(1709), + [anon_sym_DOLLARtypeof] = ACTIONS(1709), + [anon_sym_DOLLARtypefrom] = ACTIONS(1709), + [anon_sym_DOLLARevaltype] = ACTIONS(1709), + [anon_sym_DOLLARvatype] = ACTIONS(1709), + [sym_real_literal] = ACTIONS(1711), + }, + [814] = { + [sym_line_comment] = STATE(814), + [sym_doc_comment] = STATE(814), + [sym_block_comment] = STATE(814), + [sym_ident] = ACTIONS(1697), + [sym_integer_literal] = ACTIONS(1699), + [anon_sym_SQUOTE] = ACTIONS(1699), + [anon_sym_DQUOTE] = ACTIONS(1699), + [anon_sym_BQUOTE] = ACTIONS(1699), + [sym_bytes_literal] = ACTIONS(1699), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1697), + [sym_at_ident] = ACTIONS(1699), + [sym_hash_ident] = ACTIONS(1699), + [sym_type_ident] = ACTIONS(1699), + [sym_ct_type_ident] = ACTIONS(1699), + [sym_const_ident] = ACTIONS(1697), + [sym_builtin] = ACTIONS(1699), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_AMP] = ACTIONS(1697), + [anon_sym_static] = ACTIONS(1697), + [anon_sym_tlocal] = ACTIONS(1697), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_fn] = ACTIONS(1697), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_var] = ACTIONS(1697), + [anon_sym_return] = ACTIONS(1697), + [anon_sym_continue] = ACTIONS(1697), + [anon_sym_break] = ACTIONS(1697), + [anon_sym_defer] = ACTIONS(1697), + [anon_sym_assert] = ACTIONS(1697), + [anon_sym_nextcase] = ACTIONS(1697), + [anon_sym_switch] = ACTIONS(1697), + [anon_sym_AMP_AMP] = ACTIONS(1699), + [anon_sym_if] = ACTIONS(1697), + [anon_sym_for] = ACTIONS(1697), + [anon_sym_foreach] = ACTIONS(1697), + [anon_sym_foreach_r] = ACTIONS(1697), + [anon_sym_while] = ACTIONS(1697), + [anon_sym_do] = ACTIONS(1697), + [anon_sym_int] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_STAR] = ACTIONS(1699), + [anon_sym_asm] = ACTIONS(1697), + [anon_sym_DOLLARassert] = ACTIONS(1697), + [anon_sym_DOLLARerror] = ACTIONS(1697), + [anon_sym_DOLLARecho] = ACTIONS(1697), + [anon_sym_DOLLARif] = ACTIONS(1697), + [anon_sym_DOLLARswitch] = ACTIONS(1697), + [anon_sym_DOLLARfor] = ACTIONS(1697), + [anon_sym_DOLLARforeach] = ACTIONS(1697), + [anon_sym_DOLLARalignof] = ACTIONS(1697), + [anon_sym_DOLLARextnameof] = ACTIONS(1697), + [anon_sym_DOLLARnameof] = ACTIONS(1697), + [anon_sym_DOLLARoffsetof] = ACTIONS(1697), + [anon_sym_DOLLARqnameof] = ACTIONS(1697), + [anon_sym_DOLLARvaconst] = ACTIONS(1697), + [anon_sym_DOLLARvaarg] = ACTIONS(1697), + [anon_sym_DOLLARvaref] = ACTIONS(1697), + [anon_sym_DOLLARvaexpr] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [anon_sym_null] = ACTIONS(1697), + [anon_sym_DOLLARvacount] = ACTIONS(1697), + [anon_sym_DOLLAReval] = ACTIONS(1697), + [anon_sym_DOLLARis_const] = ACTIONS(1697), + [anon_sym_DOLLARsizeof] = ACTIONS(1697), + [anon_sym_DOLLARstringify] = ACTIONS(1697), + [anon_sym_DOLLARappend] = ACTIONS(1697), + [anon_sym_DOLLARconcat] = ACTIONS(1697), + [anon_sym_DOLLARdefined] = ACTIONS(1697), + [anon_sym_DOLLARembed] = ACTIONS(1697), + [anon_sym_DOLLARand] = ACTIONS(1697), + [anon_sym_DOLLARor] = ACTIONS(1697), + [anon_sym_DOLLARfeature] = ACTIONS(1697), + [anon_sym_DOLLARassignable] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1699), + [anon_sym_TILDE] = ACTIONS(1699), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), + [anon_sym_typeid] = ACTIONS(1697), + [anon_sym_LBRACE_PIPE] = ACTIONS(1699), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_bool] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_ichar] = ACTIONS(1697), + [anon_sym_short] = ACTIONS(1697), + [anon_sym_ushort] = ACTIONS(1697), + [anon_sym_uint] = ACTIONS(1697), + [anon_sym_long] = ACTIONS(1697), + [anon_sym_ulong] = ACTIONS(1697), + [anon_sym_int128] = ACTIONS(1697), + [anon_sym_uint128] = ACTIONS(1697), + [anon_sym_float] = ACTIONS(1697), + [anon_sym_double] = ACTIONS(1697), + [anon_sym_float16] = ACTIONS(1697), + [anon_sym_bfloat16] = ACTIONS(1697), + [anon_sym_float128] = ACTIONS(1697), + [anon_sym_iptr] = ACTIONS(1697), + [anon_sym_uptr] = ACTIONS(1697), + [anon_sym_isz] = ACTIONS(1697), + [anon_sym_usz] = ACTIONS(1697), + [anon_sym_anyfault] = ACTIONS(1697), + [anon_sym_any] = ACTIONS(1697), + [anon_sym_DOLLARtypeof] = ACTIONS(1697), + [anon_sym_DOLLARtypefrom] = ACTIONS(1697), + [anon_sym_DOLLARevaltype] = ACTIONS(1697), + [anon_sym_DOLLARvatype] = ACTIONS(1697), + [sym_real_literal] = ACTIONS(1699), + }, + [815] = { + [sym_line_comment] = STATE(815), + [sym_doc_comment] = STATE(815), + [sym_block_comment] = STATE(815), + [sym_ident] = ACTIONS(1713), + [sym_integer_literal] = ACTIONS(1715), + [anon_sym_SQUOTE] = ACTIONS(1715), + [anon_sym_DQUOTE] = ACTIONS(1715), + [anon_sym_BQUOTE] = ACTIONS(1715), + [sym_bytes_literal] = ACTIONS(1715), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1713), + [sym_at_ident] = ACTIONS(1715), + [sym_hash_ident] = ACTIONS(1715), + [sym_type_ident] = ACTIONS(1715), + [sym_ct_type_ident] = ACTIONS(1715), + [sym_const_ident] = ACTIONS(1713), + [sym_builtin] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_static] = ACTIONS(1713), + [anon_sym_tlocal] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1715), + [anon_sym_fn] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(1713), + [anon_sym_var] = ACTIONS(1713), + [anon_sym_return] = ACTIONS(1713), + [anon_sym_continue] = ACTIONS(1713), + [anon_sym_break] = ACTIONS(1713), + [anon_sym_defer] = ACTIONS(1713), + [anon_sym_assert] = ACTIONS(1713), + [anon_sym_nextcase] = ACTIONS(1713), + [anon_sym_switch] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_for] = ACTIONS(1713), + [anon_sym_foreach] = ACTIONS(1713), + [anon_sym_foreach_r] = ACTIONS(1713), + [anon_sym_while] = ACTIONS(1713), + [anon_sym_do] = ACTIONS(1713), + [anon_sym_int] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1715), + [anon_sym_asm] = ACTIONS(1713), + [anon_sym_DOLLARassert] = ACTIONS(1713), + [anon_sym_DOLLARerror] = ACTIONS(1713), + [anon_sym_DOLLARecho] = ACTIONS(1713), + [anon_sym_DOLLARif] = ACTIONS(1713), + [anon_sym_DOLLARswitch] = ACTIONS(1713), + [anon_sym_DOLLARfor] = ACTIONS(1713), + [anon_sym_DOLLARforeach] = ACTIONS(1713), + [anon_sym_DOLLARalignof] = ACTIONS(1713), + [anon_sym_DOLLARextnameof] = ACTIONS(1713), + [anon_sym_DOLLARnameof] = ACTIONS(1713), + [anon_sym_DOLLARoffsetof] = ACTIONS(1713), + [anon_sym_DOLLARqnameof] = ACTIONS(1713), + [anon_sym_DOLLARvaconst] = ACTIONS(1713), + [anon_sym_DOLLARvaarg] = ACTIONS(1713), + [anon_sym_DOLLARvaref] = ACTIONS(1713), + [anon_sym_DOLLARvaexpr] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1713), + [anon_sym_false] = ACTIONS(1713), + [anon_sym_null] = ACTIONS(1713), + [anon_sym_DOLLARvacount] = ACTIONS(1713), + [anon_sym_DOLLAReval] = ACTIONS(1713), + [anon_sym_DOLLARis_const] = ACTIONS(1713), + [anon_sym_DOLLARsizeof] = ACTIONS(1713), + [anon_sym_DOLLARstringify] = ACTIONS(1713), + [anon_sym_DOLLARappend] = ACTIONS(1713), + [anon_sym_DOLLARconcat] = ACTIONS(1713), + [anon_sym_DOLLARdefined] = ACTIONS(1713), + [anon_sym_DOLLARembed] = ACTIONS(1713), + [anon_sym_DOLLARand] = ACTIONS(1713), + [anon_sym_DOLLARor] = ACTIONS(1713), + [anon_sym_DOLLARfeature] = ACTIONS(1713), + [anon_sym_DOLLARassignable] = ACTIONS(1713), + [anon_sym_BANG] = ACTIONS(1715), + [anon_sym_TILDE] = ACTIONS(1715), + [anon_sym_PLUS_PLUS] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1715), + [anon_sym_typeid] = ACTIONS(1713), + [anon_sym_LBRACE_PIPE] = ACTIONS(1715), + [anon_sym_void] = ACTIONS(1713), + [anon_sym_bool] = ACTIONS(1713), + [anon_sym_char] = ACTIONS(1713), + [anon_sym_ichar] = ACTIONS(1713), + [anon_sym_short] = ACTIONS(1713), + [anon_sym_ushort] = ACTIONS(1713), + [anon_sym_uint] = ACTIONS(1713), + [anon_sym_long] = ACTIONS(1713), + [anon_sym_ulong] = ACTIONS(1713), + [anon_sym_int128] = ACTIONS(1713), + [anon_sym_uint128] = ACTIONS(1713), + [anon_sym_float] = ACTIONS(1713), + [anon_sym_double] = ACTIONS(1713), + [anon_sym_float16] = ACTIONS(1713), + [anon_sym_bfloat16] = ACTIONS(1713), + [anon_sym_float128] = ACTIONS(1713), + [anon_sym_iptr] = ACTIONS(1713), + [anon_sym_uptr] = ACTIONS(1713), + [anon_sym_isz] = ACTIONS(1713), + [anon_sym_usz] = ACTIONS(1713), + [anon_sym_anyfault] = ACTIONS(1713), + [anon_sym_any] = ACTIONS(1713), + [anon_sym_DOLLARtypeof] = ACTIONS(1713), + [anon_sym_DOLLARtypefrom] = ACTIONS(1713), + [anon_sym_DOLLARevaltype] = ACTIONS(1713), + [anon_sym_DOLLARvatype] = ACTIONS(1713), + [sym_real_literal] = ACTIONS(1715), + }, + [816] = { + [sym_line_comment] = STATE(816), + [sym_doc_comment] = STATE(816), + [sym_block_comment] = STATE(816), + [ts_builtin_sym_end] = ACTIONS(1191), + [sym_ident] = ACTIONS(1189), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_type_ident] = ACTIONS(1191), + [sym_ct_type_ident] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_COMMA] = ACTIONS(1191), + [anon_sym_LPAREN_LT] = ACTIONS(1191), + [anon_sym_GT_RPAREN] = ACTIONS(1191), + [anon_sym_EQ] = ACTIONS(1189), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_RPAREN] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1191), + [anon_sym_RBRACK] = ACTIONS(1191), + [anon_sym_tlocal] = ACTIONS(1189), + [anon_sym_extern] = ACTIONS(1189), + [anon_sym_module] = ACTIONS(1189), + [anon_sym_SEMI] = ACTIONS(1191), + [anon_sym_import] = ACTIONS(1189), + [anon_sym_fn] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1191), + [anon_sym_def] = ACTIONS(1189), + [anon_sym_distinct] = ACTIONS(1189), + [anon_sym_const] = ACTIONS(1189), + [anon_sym_struct] = ACTIONS(1189), + [anon_sym_union] = ACTIONS(1189), + [anon_sym_bitstruct] = ACTIONS(1189), + [anon_sym_COLON] = ACTIONS(1191), + [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_fault] = ACTIONS(1189), + [anon_sym_enum] = ACTIONS(1189), + [anon_sym_interface] = ACTIONS(1189), + [anon_sym_macro] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1189), + [anon_sym_while] = ACTIONS(1189), + [anon_sym_int] = ACTIONS(1189), + [anon_sym_PLUS] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1189), + [anon_sym_LT_LT] = ACTIONS(1189), + [anon_sym_GT_GT] = ACTIONS(1189), + [anon_sym_STAR] = ACTIONS(1189), + [anon_sym_DOLLARassert] = ACTIONS(1191), + [anon_sym_DOLLARerror] = ACTIONS(1191), + [anon_sym_DOLLARinclude] = ACTIONS(1191), + [anon_sym_DOLLARexec] = ACTIONS(1191), + [anon_sym_DOLLARecho] = ACTIONS(1191), + [anon_sym_PLUS_EQ] = ACTIONS(1191), + [anon_sym_DASH_EQ] = ACTIONS(1191), + [anon_sym_STAR_EQ] = ACTIONS(1191), + [anon_sym_SLASH_EQ] = ACTIONS(1191), + [anon_sym_PERCENT_EQ] = ACTIONS(1191), + [anon_sym_LT_LT_EQ] = ACTIONS(1191), + [anon_sym_GT_GT_EQ] = ACTIONS(1191), + [anon_sym_AMP_EQ] = ACTIONS(1191), + [anon_sym_CARET_EQ] = ACTIONS(1191), + [anon_sym_PIPE_EQ] = ACTIONS(1191), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_QMARK_COLON] = ACTIONS(1191), + [anon_sym_QMARK_QMARK] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1189), + [anon_sym_PLUS_PLUS] = ACTIONS(1189), + [anon_sym_DASH_DASH] = ACTIONS(1191), + [anon_sym_SLASH] = ACTIONS(1189), + [anon_sym_PERCENT] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1189), + [anon_sym_CARET] = ACTIONS(1189), + [anon_sym_EQ_EQ] = ACTIONS(1191), + [anon_sym_BANG_EQ] = ACTIONS(1191), + [anon_sym_GT] = ACTIONS(1189), + [anon_sym_GT_EQ] = ACTIONS(1191), + [anon_sym_LT_EQ] = ACTIONS(1191), + [anon_sym_LT] = ACTIONS(1189), + [anon_sym_PIPE_PIPE] = ACTIONS(1189), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1191), + [anon_sym_BANG_BANG] = ACTIONS(1191), + [anon_sym_typeid] = ACTIONS(1189), + [anon_sym_void] = ACTIONS(1189), + [anon_sym_bool] = ACTIONS(1189), + [anon_sym_char] = ACTIONS(1189), + [anon_sym_ichar] = ACTIONS(1189), + [anon_sym_short] = ACTIONS(1189), + [anon_sym_ushort] = ACTIONS(1189), + [anon_sym_uint] = ACTIONS(1189), + [anon_sym_long] = ACTIONS(1189), + [anon_sym_ulong] = ACTIONS(1189), + [anon_sym_int128] = ACTIONS(1189), + [anon_sym_uint128] = ACTIONS(1189), + [anon_sym_float] = ACTIONS(1189), + [anon_sym_double] = ACTIONS(1189), + [anon_sym_float16] = ACTIONS(1189), + [anon_sym_bfloat16] = ACTIONS(1189), + [anon_sym_float128] = ACTIONS(1189), + [anon_sym_iptr] = ACTIONS(1189), + [anon_sym_uptr] = ACTIONS(1189), + [anon_sym_isz] = ACTIONS(1189), + [anon_sym_usz] = ACTIONS(1189), + [anon_sym_anyfault] = ACTIONS(1189), + [anon_sym_any] = ACTIONS(1189), + [anon_sym_DOLLARtypeof] = ACTIONS(1191), + [anon_sym_DOLLARtypefrom] = ACTIONS(1191), + [anon_sym_DOLLARevaltype] = ACTIONS(1191), + [anon_sym_DOLLARvatype] = ACTIONS(1191), + [anon_sym_GT_RBRACK] = ACTIONS(1191), + }, + [817] = { + [sym_line_comment] = STATE(817), + [sym_doc_comment] = STATE(817), + [sym_block_comment] = STATE(817), + [ts_builtin_sym_end] = ACTIONS(1365), + [sym_ident] = ACTIONS(1363), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_type_ident] = ACTIONS(1365), + [sym_ct_type_ident] = ACTIONS(1365), + [anon_sym_DOT] = ACTIONS(1363), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_LPAREN_LT] = ACTIONS(1365), + [anon_sym_GT_RPAREN] = ACTIONS(1365), + [anon_sym_EQ] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1363), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1365), + [anon_sym_RBRACK] = ACTIONS(1365), + [anon_sym_tlocal] = ACTIONS(1363), + [anon_sym_extern] = ACTIONS(1363), + [anon_sym_module] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_import] = ACTIONS(1363), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_def] = ACTIONS(1363), + [anon_sym_distinct] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_struct] = ACTIONS(1363), + [anon_sym_union] = ACTIONS(1363), + [anon_sym_bitstruct] = ACTIONS(1363), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_DOT_DOT] = ACTIONS(1365), + [anon_sym_fault] = ACTIONS(1363), + [anon_sym_enum] = ACTIONS(1363), + [anon_sym_interface] = ACTIONS(1363), + [anon_sym_macro] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_int] = ACTIONS(1363), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_LT_LT] = ACTIONS(1363), + [anon_sym_GT_GT] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_DOLLARassert] = ACTIONS(1365), + [anon_sym_DOLLARerror] = ACTIONS(1365), + [anon_sym_DOLLARinclude] = ACTIONS(1365), + [anon_sym_DOLLARexec] = ACTIONS(1365), + [anon_sym_DOLLARecho] = ACTIONS(1365), + [anon_sym_PLUS_EQ] = ACTIONS(1365), + [anon_sym_DASH_EQ] = ACTIONS(1365), + [anon_sym_STAR_EQ] = ACTIONS(1365), + [anon_sym_SLASH_EQ] = ACTIONS(1365), + [anon_sym_PERCENT_EQ] = ACTIONS(1365), + [anon_sym_LT_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_GT_EQ] = ACTIONS(1365), + [anon_sym_AMP_EQ] = ACTIONS(1365), + [anon_sym_CARET_EQ] = ACTIONS(1365), + [anon_sym_PIPE_EQ] = ACTIONS(1365), + [anon_sym_QMARK] = ACTIONS(1363), + [anon_sym_QMARK_COLON] = ACTIONS(1365), + [anon_sym_QMARK_QMARK] = ACTIONS(1365), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_PLUS_PLUS] = ACTIONS(1363), + [anon_sym_DASH_DASH] = ACTIONS(1365), + [anon_sym_SLASH] = ACTIONS(1363), + [anon_sym_PERCENT] = ACTIONS(1363), + [anon_sym_PIPE] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_GT] = ACTIONS(1363), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_LT] = ACTIONS(1363), + [anon_sym_PIPE_PIPE] = ACTIONS(1363), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1365), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1365), + [anon_sym_BANG_BANG] = ACTIONS(1365), + [anon_sym_typeid] = ACTIONS(1363), + [anon_sym_void] = ACTIONS(1363), + [anon_sym_bool] = ACTIONS(1363), + [anon_sym_char] = ACTIONS(1363), + [anon_sym_ichar] = ACTIONS(1363), + [anon_sym_short] = ACTIONS(1363), + [anon_sym_ushort] = ACTIONS(1363), + [anon_sym_uint] = ACTIONS(1363), + [anon_sym_long] = ACTIONS(1363), + [anon_sym_ulong] = ACTIONS(1363), + [anon_sym_int128] = ACTIONS(1363), + [anon_sym_uint128] = ACTIONS(1363), + [anon_sym_float] = ACTIONS(1363), + [anon_sym_double] = ACTIONS(1363), + [anon_sym_float16] = ACTIONS(1363), + [anon_sym_bfloat16] = ACTIONS(1363), + [anon_sym_float128] = ACTIONS(1363), + [anon_sym_iptr] = ACTIONS(1363), + [anon_sym_uptr] = ACTIONS(1363), + [anon_sym_isz] = ACTIONS(1363), + [anon_sym_usz] = ACTIONS(1363), + [anon_sym_anyfault] = ACTIONS(1363), + [anon_sym_any] = ACTIONS(1363), + [anon_sym_DOLLARtypeof] = ACTIONS(1365), + [anon_sym_DOLLARtypefrom] = ACTIONS(1365), + [anon_sym_DOLLARevaltype] = ACTIONS(1365), + [anon_sym_DOLLARvatype] = ACTIONS(1365), + [anon_sym_GT_RBRACK] = ACTIONS(1365), + }, + [818] = { + [sym_line_comment] = STATE(818), + [sym_doc_comment] = STATE(818), + [sym_block_comment] = STATE(818), + [sym_ident] = ACTIONS(1717), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_at_ident] = ACTIONS(1719), + [sym_type_ident] = ACTIONS(1719), + [sym_ct_type_ident] = ACTIONS(1719), + [sym_at_type_ident] = ACTIONS(1719), + [anon_sym_DOT] = ACTIONS(1717), + [anon_sym_COMMA] = ACTIONS(1719), + [anon_sym_LPAREN_LT] = ACTIONS(1719), + [anon_sym_GT_RPAREN] = ACTIONS(1719), + [anon_sym_EQ] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_RPAREN] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1719), + [anon_sym_RBRACK] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_RBRACE] = ACTIONS(1719), + [anon_sym_COLON] = ACTIONS(1719), + [anon_sym_DOT_DOT] = ACTIONS(1719), + [anon_sym_AMP_AMP] = ACTIONS(1717), + [anon_sym_int] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1717), + [anon_sym_LT_LT] = ACTIONS(1717), + [anon_sym_GT_GT] = ACTIONS(1717), + [anon_sym_STAR] = ACTIONS(1717), + [anon_sym_PLUS_EQ] = ACTIONS(1719), + [anon_sym_DASH_EQ] = ACTIONS(1719), + [anon_sym_STAR_EQ] = ACTIONS(1719), + [anon_sym_SLASH_EQ] = ACTIONS(1719), + [anon_sym_PERCENT_EQ] = ACTIONS(1719), + [anon_sym_LT_LT_EQ] = ACTIONS(1719), + [anon_sym_GT_GT_EQ] = ACTIONS(1719), + [anon_sym_AMP_EQ] = ACTIONS(1719), + [anon_sym_CARET_EQ] = ACTIONS(1719), + [anon_sym_PIPE_EQ] = ACTIONS(1719), + [anon_sym_QMARK] = ACTIONS(1717), + [anon_sym_QMARK_COLON] = ACTIONS(1719), + [anon_sym_QMARK_QMARK] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_DASH_DASH] = ACTIONS(1719), + [anon_sym_SLASH] = ACTIONS(1717), + [anon_sym_PERCENT] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_CARET] = ACTIONS(1717), + [anon_sym_EQ_EQ] = ACTIONS(1719), + [anon_sym_BANG_EQ] = ACTIONS(1719), + [anon_sym_GT] = ACTIONS(1717), + [anon_sym_GT_EQ] = ACTIONS(1719), + [anon_sym_LT_EQ] = ACTIONS(1719), + [anon_sym_LT] = ACTIONS(1717), + [anon_sym_PIPE_PIPE] = ACTIONS(1717), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1719), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1719), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1719), + [anon_sym_BANG_BANG] = ACTIONS(1719), + [anon_sym_typeid] = ACTIONS(1717), + [anon_sym_void] = ACTIONS(1717), + [anon_sym_bool] = ACTIONS(1717), + [anon_sym_char] = ACTIONS(1717), + [anon_sym_ichar] = ACTIONS(1717), + [anon_sym_short] = ACTIONS(1717), + [anon_sym_ushort] = ACTIONS(1717), + [anon_sym_uint] = ACTIONS(1717), + [anon_sym_long] = ACTIONS(1717), + [anon_sym_ulong] = ACTIONS(1717), + [anon_sym_int128] = ACTIONS(1717), + [anon_sym_uint128] = ACTIONS(1717), + [anon_sym_float] = ACTIONS(1717), + [anon_sym_double] = ACTIONS(1717), + [anon_sym_float16] = ACTIONS(1717), + [anon_sym_bfloat16] = ACTIONS(1717), + [anon_sym_float128] = ACTIONS(1717), + [anon_sym_iptr] = ACTIONS(1717), + [anon_sym_uptr] = ACTIONS(1717), + [anon_sym_isz] = ACTIONS(1717), + [anon_sym_usz] = ACTIONS(1717), + [anon_sym_anyfault] = ACTIONS(1717), + [anon_sym_any] = ACTIONS(1717), + [anon_sym_DOLLARtypeof] = ACTIONS(1719), + [anon_sym_DOLLARtypefrom] = ACTIONS(1719), + [anon_sym_DOLLARevaltype] = ACTIONS(1719), + [anon_sym_DOLLARvatype] = ACTIONS(1719), + [anon_sym_GT_RBRACK] = ACTIONS(1719), + }, + [819] = { + [sym_line_comment] = STATE(819), + [sym_doc_comment] = STATE(819), + [sym_block_comment] = STATE(819), + [sym_ident] = ACTIONS(1721), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_at_ident] = ACTIONS(1723), + [sym_type_ident] = ACTIONS(1723), + [sym_ct_type_ident] = ACTIONS(1723), + [sym_at_type_ident] = ACTIONS(1723), + [anon_sym_DOT] = ACTIONS(1721), + [anon_sym_COMMA] = ACTIONS(1723), + [anon_sym_LPAREN_LT] = ACTIONS(1723), + [anon_sym_GT_RPAREN] = ACTIONS(1723), + [anon_sym_EQ] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1721), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_RBRACK] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_COLON] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1723), + [anon_sym_AMP_AMP] = ACTIONS(1721), + [anon_sym_int] = ACTIONS(1721), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_LT_LT] = ACTIONS(1721), + [anon_sym_GT_GT] = ACTIONS(1721), + [anon_sym_STAR] = ACTIONS(1721), + [anon_sym_PLUS_EQ] = ACTIONS(1723), + [anon_sym_DASH_EQ] = ACTIONS(1723), + [anon_sym_STAR_EQ] = ACTIONS(1723), + [anon_sym_SLASH_EQ] = ACTIONS(1723), + [anon_sym_PERCENT_EQ] = ACTIONS(1723), + [anon_sym_LT_LT_EQ] = ACTIONS(1723), + [anon_sym_GT_GT_EQ] = ACTIONS(1723), + [anon_sym_AMP_EQ] = ACTIONS(1723), + [anon_sym_CARET_EQ] = ACTIONS(1723), + [anon_sym_PIPE_EQ] = ACTIONS(1723), + [anon_sym_QMARK] = ACTIONS(1721), + [anon_sym_QMARK_COLON] = ACTIONS(1723), + [anon_sym_QMARK_QMARK] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1721), + [anon_sym_PLUS_PLUS] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1721), + [anon_sym_PERCENT] = ACTIONS(1721), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_CARET] = ACTIONS(1721), + [anon_sym_EQ_EQ] = ACTIONS(1723), + [anon_sym_BANG_EQ] = ACTIONS(1723), + [anon_sym_GT] = ACTIONS(1721), + [anon_sym_GT_EQ] = ACTIONS(1723), + [anon_sym_LT_EQ] = ACTIONS(1723), + [anon_sym_LT] = ACTIONS(1721), + [anon_sym_PIPE_PIPE] = ACTIONS(1721), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1723), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1723), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1723), + [anon_sym_BANG_BANG] = ACTIONS(1723), + [anon_sym_typeid] = ACTIONS(1721), + [anon_sym_void] = ACTIONS(1721), + [anon_sym_bool] = ACTIONS(1721), + [anon_sym_char] = ACTIONS(1721), + [anon_sym_ichar] = ACTIONS(1721), + [anon_sym_short] = ACTIONS(1721), + [anon_sym_ushort] = ACTIONS(1721), + [anon_sym_uint] = ACTIONS(1721), + [anon_sym_long] = ACTIONS(1721), + [anon_sym_ulong] = ACTIONS(1721), + [anon_sym_int128] = ACTIONS(1721), + [anon_sym_uint128] = ACTIONS(1721), + [anon_sym_float] = ACTIONS(1721), + [anon_sym_double] = ACTIONS(1721), + [anon_sym_float16] = ACTIONS(1721), + [anon_sym_bfloat16] = ACTIONS(1721), + [anon_sym_float128] = ACTIONS(1721), + [anon_sym_iptr] = ACTIONS(1721), + [anon_sym_uptr] = ACTIONS(1721), + [anon_sym_isz] = ACTIONS(1721), + [anon_sym_usz] = ACTIONS(1721), + [anon_sym_anyfault] = ACTIONS(1721), + [anon_sym_any] = ACTIONS(1721), + [anon_sym_DOLLARtypeof] = ACTIONS(1723), + [anon_sym_DOLLARtypefrom] = ACTIONS(1723), + [anon_sym_DOLLARevaltype] = ACTIONS(1723), + [anon_sym_DOLLARvatype] = ACTIONS(1723), + [anon_sym_GT_RBRACK] = ACTIONS(1723), + }, + [820] = { + [sym_line_comment] = STATE(820), + [sym_doc_comment] = STATE(820), + [sym_block_comment] = STATE(820), + [sym_ident] = ACTIONS(1261), + [sym_integer_literal] = ACTIONS(1263), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [sym_bytes_literal] = ACTIONS(1263), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1261), + [sym_at_ident] = ACTIONS(1263), + [sym_hash_ident] = ACTIONS(1263), + [sym_type_ident] = ACTIONS(1263), + [sym_ct_type_ident] = ACTIONS(1263), + [sym_const_ident] = ACTIONS(1261), + [sym_builtin] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_fn] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_int] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_DOLLARalignof] = ACTIONS(1261), + [anon_sym_DOLLARextnameof] = ACTIONS(1261), + [anon_sym_DOLLARnameof] = ACTIONS(1261), + [anon_sym_DOLLARoffsetof] = ACTIONS(1261), + [anon_sym_DOLLARqnameof] = ACTIONS(1261), + [anon_sym_DOLLARvaconst] = ACTIONS(1261), + [anon_sym_DOLLARvaarg] = ACTIONS(1261), + [anon_sym_DOLLARvaref] = ACTIONS(1261), + [anon_sym_DOLLARvaexpr] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_DOLLARvacount] = ACTIONS(1261), + [anon_sym_DOLLAReval] = ACTIONS(1261), + [anon_sym_DOLLARis_const] = ACTIONS(1261), + [anon_sym_DOLLARsizeof] = ACTIONS(1261), + [anon_sym_DOLLARstringify] = ACTIONS(1261), + [anon_sym_DOLLARappend] = ACTIONS(1261), + [anon_sym_DOLLARconcat] = ACTIONS(1261), + [anon_sym_DOLLARdefined] = ACTIONS(1261), + [anon_sym_DOLLARembed] = ACTIONS(1261), + [anon_sym_DOLLARand] = ACTIONS(1261), + [anon_sym_DOLLARor] = ACTIONS(1261), + [anon_sym_DOLLARfeature] = ACTIONS(1261), + [anon_sym_DOLLARassignable] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_typeid] = ACTIONS(1261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1263), + [anon_sym_void] = ACTIONS(1261), + [anon_sym_bool] = ACTIONS(1261), + [anon_sym_char] = ACTIONS(1261), + [anon_sym_ichar] = ACTIONS(1261), + [anon_sym_short] = ACTIONS(1261), + [anon_sym_ushort] = ACTIONS(1261), + [anon_sym_uint] = ACTIONS(1261), + [anon_sym_long] = ACTIONS(1261), + [anon_sym_ulong] = ACTIONS(1261), + [anon_sym_int128] = ACTIONS(1261), + [anon_sym_uint128] = ACTIONS(1261), + [anon_sym_float] = ACTIONS(1261), + [anon_sym_double] = ACTIONS(1261), + [anon_sym_float16] = ACTIONS(1261), + [anon_sym_bfloat16] = ACTIONS(1261), + [anon_sym_float128] = ACTIONS(1261), + [anon_sym_iptr] = ACTIONS(1261), + [anon_sym_uptr] = ACTIONS(1261), + [anon_sym_isz] = ACTIONS(1261), + [anon_sym_usz] = ACTIONS(1261), + [anon_sym_anyfault] = ACTIONS(1261), + [anon_sym_any] = ACTIONS(1261), + [anon_sym_DOLLARtypeof] = ACTIONS(1261), + [anon_sym_DOLLARtypefrom] = ACTIONS(1261), + [anon_sym_DOLLARevaltype] = ACTIONS(1261), + [anon_sym_DOLLARvatype] = ACTIONS(1261), + [anon_sym_GT_RBRACK] = ACTIONS(1725), + [sym_real_literal] = ACTIONS(1263), + }, + [821] = { + [sym_line_comment] = STATE(821), + [sym_doc_comment] = STATE(821), + [sym_block_comment] = STATE(821), + [sym_ident] = ACTIONS(1261), + [sym_integer_literal] = ACTIONS(1263), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [sym_bytes_literal] = ACTIONS(1263), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1261), + [sym_at_ident] = ACTIONS(1263), + [sym_hash_ident] = ACTIONS(1263), + [sym_type_ident] = ACTIONS(1263), + [sym_ct_type_ident] = ACTIONS(1263), + [sym_const_ident] = ACTIONS(1261), + [sym_builtin] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(1725), + [anon_sym_fn] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_int] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_DOLLARalignof] = ACTIONS(1261), + [anon_sym_DOLLARextnameof] = ACTIONS(1261), + [anon_sym_DOLLARnameof] = ACTIONS(1261), + [anon_sym_DOLLARoffsetof] = ACTIONS(1261), + [anon_sym_DOLLARqnameof] = ACTIONS(1261), + [anon_sym_DOLLARvaconst] = ACTIONS(1261), + [anon_sym_DOLLARvaarg] = ACTIONS(1261), + [anon_sym_DOLLARvaref] = ACTIONS(1261), + [anon_sym_DOLLARvaexpr] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_DOLLARvacount] = ACTIONS(1261), + [anon_sym_DOLLAReval] = ACTIONS(1261), + [anon_sym_DOLLARis_const] = ACTIONS(1261), + [anon_sym_DOLLARsizeof] = ACTIONS(1261), + [anon_sym_DOLLARstringify] = ACTIONS(1261), + [anon_sym_DOLLARappend] = ACTIONS(1261), + [anon_sym_DOLLARconcat] = ACTIONS(1261), + [anon_sym_DOLLARdefined] = ACTIONS(1261), + [anon_sym_DOLLARembed] = ACTIONS(1261), + [anon_sym_DOLLARand] = ACTIONS(1261), + [anon_sym_DOLLARor] = ACTIONS(1261), + [anon_sym_DOLLARfeature] = ACTIONS(1261), + [anon_sym_DOLLARassignable] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_typeid] = ACTIONS(1261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1263), + [anon_sym_void] = ACTIONS(1261), + [anon_sym_bool] = ACTIONS(1261), + [anon_sym_char] = ACTIONS(1261), + [anon_sym_ichar] = ACTIONS(1261), + [anon_sym_short] = ACTIONS(1261), + [anon_sym_ushort] = ACTIONS(1261), + [anon_sym_uint] = ACTIONS(1261), + [anon_sym_long] = ACTIONS(1261), + [anon_sym_ulong] = ACTIONS(1261), + [anon_sym_int128] = ACTIONS(1261), + [anon_sym_uint128] = ACTIONS(1261), + [anon_sym_float] = ACTIONS(1261), + [anon_sym_double] = ACTIONS(1261), + [anon_sym_float16] = ACTIONS(1261), + [anon_sym_bfloat16] = ACTIONS(1261), + [anon_sym_float128] = ACTIONS(1261), + [anon_sym_iptr] = ACTIONS(1261), + [anon_sym_uptr] = ACTIONS(1261), + [anon_sym_isz] = ACTIONS(1261), + [anon_sym_usz] = ACTIONS(1261), + [anon_sym_anyfault] = ACTIONS(1261), + [anon_sym_any] = ACTIONS(1261), + [anon_sym_DOLLARtypeof] = ACTIONS(1261), + [anon_sym_DOLLARtypefrom] = ACTIONS(1261), + [anon_sym_DOLLARevaltype] = ACTIONS(1261), + [anon_sym_DOLLARvatype] = ACTIONS(1261), + [sym_real_literal] = ACTIONS(1263), + }, + [822] = { + [sym_line_comment] = STATE(822), + [sym_doc_comment] = STATE(822), + [sym_block_comment] = STATE(822), + [sym_ident] = ACTIONS(1261), + [sym_integer_literal] = ACTIONS(1263), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [sym_bytes_literal] = ACTIONS(1263), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1261), + [sym_at_ident] = ACTIONS(1263), + [sym_hash_ident] = ACTIONS(1263), + [sym_type_ident] = ACTIONS(1263), + [sym_ct_type_ident] = ACTIONS(1263), + [sym_const_ident] = ACTIONS(1261), + [sym_builtin] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(1727), + [anon_sym_fn] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_int] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_DOLLARalignof] = ACTIONS(1261), + [anon_sym_DOLLARextnameof] = ACTIONS(1261), + [anon_sym_DOLLARnameof] = ACTIONS(1261), + [anon_sym_DOLLARoffsetof] = ACTIONS(1261), + [anon_sym_DOLLARqnameof] = ACTIONS(1261), + [anon_sym_DOLLARvaconst] = ACTIONS(1261), + [anon_sym_DOLLARvaarg] = ACTIONS(1261), + [anon_sym_DOLLARvaref] = ACTIONS(1261), + [anon_sym_DOLLARvaexpr] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_DOLLARvacount] = ACTIONS(1261), + [anon_sym_DOLLAReval] = ACTIONS(1261), + [anon_sym_DOLLARis_const] = ACTIONS(1261), + [anon_sym_DOLLARsizeof] = ACTIONS(1261), + [anon_sym_DOLLARstringify] = ACTIONS(1261), + [anon_sym_DOLLARappend] = ACTIONS(1261), + [anon_sym_DOLLARconcat] = ACTIONS(1261), + [anon_sym_DOLLARdefined] = ACTIONS(1261), + [anon_sym_DOLLARembed] = ACTIONS(1261), + [anon_sym_DOLLARand] = ACTIONS(1261), + [anon_sym_DOLLARor] = ACTIONS(1261), + [anon_sym_DOLLARfeature] = ACTIONS(1261), + [anon_sym_DOLLARassignable] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_typeid] = ACTIONS(1261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1263), + [anon_sym_void] = ACTIONS(1261), + [anon_sym_bool] = ACTIONS(1261), + [anon_sym_char] = ACTIONS(1261), + [anon_sym_ichar] = ACTIONS(1261), + [anon_sym_short] = ACTIONS(1261), + [anon_sym_ushort] = ACTIONS(1261), + [anon_sym_uint] = ACTIONS(1261), + [anon_sym_long] = ACTIONS(1261), + [anon_sym_ulong] = ACTIONS(1261), + [anon_sym_int128] = ACTIONS(1261), + [anon_sym_uint128] = ACTIONS(1261), + [anon_sym_float] = ACTIONS(1261), + [anon_sym_double] = ACTIONS(1261), + [anon_sym_float16] = ACTIONS(1261), + [anon_sym_bfloat16] = ACTIONS(1261), + [anon_sym_float128] = ACTIONS(1261), + [anon_sym_iptr] = ACTIONS(1261), + [anon_sym_uptr] = ACTIONS(1261), + [anon_sym_isz] = ACTIONS(1261), + [anon_sym_usz] = ACTIONS(1261), + [anon_sym_anyfault] = ACTIONS(1261), + [anon_sym_any] = ACTIONS(1261), + [anon_sym_DOLLARtypeof] = ACTIONS(1261), + [anon_sym_DOLLARtypefrom] = ACTIONS(1261), + [anon_sym_DOLLARevaltype] = ACTIONS(1261), + [anon_sym_DOLLARvatype] = ACTIONS(1261), + [sym_real_literal] = ACTIONS(1263), + }, + [823] = { + [sym_line_comment] = STATE(823), + [sym_doc_comment] = STATE(823), + [sym_block_comment] = STATE(823), + [sym_ident] = ACTIONS(1261), + [sym_integer_literal] = ACTIONS(1263), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [sym_bytes_literal] = ACTIONS(1263), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1261), + [sym_at_ident] = ACTIONS(1263), + [sym_hash_ident] = ACTIONS(1263), + [sym_type_ident] = ACTIONS(1263), + [sym_ct_type_ident] = ACTIONS(1263), + [sym_const_ident] = ACTIONS(1261), + [sym_builtin] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_fn] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_int] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_DOLLARalignof] = ACTIONS(1261), + [anon_sym_DOLLARextnameof] = ACTIONS(1261), + [anon_sym_DOLLARnameof] = ACTIONS(1261), + [anon_sym_DOLLARoffsetof] = ACTIONS(1261), + [anon_sym_DOLLARqnameof] = ACTIONS(1261), + [anon_sym_DOLLARvaconst] = ACTIONS(1261), + [anon_sym_DOLLARvaarg] = ACTIONS(1261), + [anon_sym_DOLLARvaref] = ACTIONS(1261), + [anon_sym_DOLLARvaexpr] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_DOLLARvacount] = ACTIONS(1261), + [anon_sym_DOLLAReval] = ACTIONS(1261), + [anon_sym_DOLLARis_const] = ACTIONS(1261), + [anon_sym_DOLLARsizeof] = ACTIONS(1261), + [anon_sym_DOLLARstringify] = ACTIONS(1261), + [anon_sym_DOLLARappend] = ACTIONS(1261), + [anon_sym_DOLLARconcat] = ACTIONS(1261), + [anon_sym_DOLLARdefined] = ACTIONS(1261), + [anon_sym_DOLLARembed] = ACTIONS(1261), + [anon_sym_DOLLARand] = ACTIONS(1261), + [anon_sym_DOLLARor] = ACTIONS(1261), + [anon_sym_DOLLARfeature] = ACTIONS(1261), + [anon_sym_DOLLARassignable] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_typeid] = ACTIONS(1261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1263), + [anon_sym_void] = ACTIONS(1261), + [anon_sym_bool] = ACTIONS(1261), + [anon_sym_char] = ACTIONS(1261), + [anon_sym_ichar] = ACTIONS(1261), + [anon_sym_short] = ACTIONS(1261), + [anon_sym_ushort] = ACTIONS(1261), + [anon_sym_uint] = ACTIONS(1261), + [anon_sym_long] = ACTIONS(1261), + [anon_sym_ulong] = ACTIONS(1261), + [anon_sym_int128] = ACTIONS(1261), + [anon_sym_uint128] = ACTIONS(1261), + [anon_sym_float] = ACTIONS(1261), + [anon_sym_double] = ACTIONS(1261), + [anon_sym_float16] = ACTIONS(1261), + [anon_sym_bfloat16] = ACTIONS(1261), + [anon_sym_float128] = ACTIONS(1261), + [anon_sym_iptr] = ACTIONS(1261), + [anon_sym_uptr] = ACTIONS(1261), + [anon_sym_isz] = ACTIONS(1261), + [anon_sym_usz] = ACTIONS(1261), + [anon_sym_anyfault] = ACTIONS(1261), + [anon_sym_any] = ACTIONS(1261), + [anon_sym_DOLLARtypeof] = ACTIONS(1261), + [anon_sym_DOLLARtypefrom] = ACTIONS(1261), + [anon_sym_DOLLARevaltype] = ACTIONS(1261), + [anon_sym_DOLLARvatype] = ACTIONS(1261), + [anon_sym_GT_RBRACK] = ACTIONS(1727), + [sym_real_literal] = ACTIONS(1263), + }, + [824] = { + [sym_line_comment] = STATE(824), + [sym_doc_comment] = STATE(824), + [sym_block_comment] = STATE(824), + [sym_ident] = ACTIONS(1261), + [sym_integer_literal] = ACTIONS(1263), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [sym_bytes_literal] = ACTIONS(1263), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1261), + [sym_at_ident] = ACTIONS(1263), + [sym_hash_ident] = ACTIONS(1263), + [sym_type_ident] = ACTIONS(1263), + [sym_ct_type_ident] = ACTIONS(1263), + [sym_const_ident] = ACTIONS(1261), + [sym_builtin] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_fn] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_int] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_DOLLARalignof] = ACTIONS(1261), + [anon_sym_DOLLARextnameof] = ACTIONS(1261), + [anon_sym_DOLLARnameof] = ACTIONS(1261), + [anon_sym_DOLLARoffsetof] = ACTIONS(1261), + [anon_sym_DOLLARqnameof] = ACTIONS(1261), + [anon_sym_DOLLARvaconst] = ACTIONS(1261), + [anon_sym_DOLLARvaarg] = ACTIONS(1261), + [anon_sym_DOLLARvaref] = ACTIONS(1261), + [anon_sym_DOLLARvaexpr] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_DOLLARvacount] = ACTIONS(1261), + [anon_sym_DOLLAReval] = ACTIONS(1261), + [anon_sym_DOLLARis_const] = ACTIONS(1261), + [anon_sym_DOLLARsizeof] = ACTIONS(1261), + [anon_sym_DOLLARstringify] = ACTIONS(1261), + [anon_sym_DOLLARappend] = ACTIONS(1261), + [anon_sym_DOLLARconcat] = ACTIONS(1261), + [anon_sym_DOLLARdefined] = ACTIONS(1261), + [anon_sym_DOLLARembed] = ACTIONS(1261), + [anon_sym_DOLLARand] = ACTIONS(1261), + [anon_sym_DOLLARor] = ACTIONS(1261), + [anon_sym_DOLLARfeature] = ACTIONS(1261), + [anon_sym_DOLLARassignable] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_typeid] = ACTIONS(1261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1263), + [anon_sym_void] = ACTIONS(1261), + [anon_sym_bool] = ACTIONS(1261), + [anon_sym_char] = ACTIONS(1261), + [anon_sym_ichar] = ACTIONS(1261), + [anon_sym_short] = ACTIONS(1261), + [anon_sym_ushort] = ACTIONS(1261), + [anon_sym_uint] = ACTIONS(1261), + [anon_sym_long] = ACTIONS(1261), + [anon_sym_ulong] = ACTIONS(1261), + [anon_sym_int128] = ACTIONS(1261), + [anon_sym_uint128] = ACTIONS(1261), + [anon_sym_float] = ACTIONS(1261), + [anon_sym_double] = ACTIONS(1261), + [anon_sym_float16] = ACTIONS(1261), + [anon_sym_bfloat16] = ACTIONS(1261), + [anon_sym_float128] = ACTIONS(1261), + [anon_sym_iptr] = ACTIONS(1261), + [anon_sym_uptr] = ACTIONS(1261), + [anon_sym_isz] = ACTIONS(1261), + [anon_sym_usz] = ACTIONS(1261), + [anon_sym_anyfault] = ACTIONS(1261), + [anon_sym_any] = ACTIONS(1261), + [anon_sym_DOLLARtypeof] = ACTIONS(1261), + [anon_sym_DOLLARtypefrom] = ACTIONS(1261), + [anon_sym_DOLLARevaltype] = ACTIONS(1261), + [anon_sym_DOLLARvatype] = ACTIONS(1261), + [anon_sym_GT_RBRACK] = ACTIONS(1729), + [sym_real_literal] = ACTIONS(1263), + }, + [825] = { + [sym_line_comment] = STATE(825), + [sym_doc_comment] = STATE(825), + [sym_block_comment] = STATE(825), + [sym_ident] = ACTIONS(1261), + [sym_integer_literal] = ACTIONS(1263), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [sym_bytes_literal] = ACTIONS(1263), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1261), + [sym_at_ident] = ACTIONS(1263), + [sym_hash_ident] = ACTIONS(1263), + [sym_type_ident] = ACTIONS(1263), + [sym_ct_type_ident] = ACTIONS(1263), + [sym_const_ident] = ACTIONS(1261), + [sym_builtin] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(1729), + [anon_sym_fn] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_int] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_DOLLARalignof] = ACTIONS(1261), + [anon_sym_DOLLARextnameof] = ACTIONS(1261), + [anon_sym_DOLLARnameof] = ACTIONS(1261), + [anon_sym_DOLLARoffsetof] = ACTIONS(1261), + [anon_sym_DOLLARqnameof] = ACTIONS(1261), + [anon_sym_DOLLARvaconst] = ACTIONS(1261), + [anon_sym_DOLLARvaarg] = ACTIONS(1261), + [anon_sym_DOLLARvaref] = ACTIONS(1261), + [anon_sym_DOLLARvaexpr] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_DOLLARvacount] = ACTIONS(1261), + [anon_sym_DOLLAReval] = ACTIONS(1261), + [anon_sym_DOLLARis_const] = ACTIONS(1261), + [anon_sym_DOLLARsizeof] = ACTIONS(1261), + [anon_sym_DOLLARstringify] = ACTIONS(1261), + [anon_sym_DOLLARappend] = ACTIONS(1261), + [anon_sym_DOLLARconcat] = ACTIONS(1261), + [anon_sym_DOLLARdefined] = ACTIONS(1261), + [anon_sym_DOLLARembed] = ACTIONS(1261), + [anon_sym_DOLLARand] = ACTIONS(1261), + [anon_sym_DOLLARor] = ACTIONS(1261), + [anon_sym_DOLLARfeature] = ACTIONS(1261), + [anon_sym_DOLLARassignable] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_typeid] = ACTIONS(1261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1263), + [anon_sym_void] = ACTIONS(1261), + [anon_sym_bool] = ACTIONS(1261), + [anon_sym_char] = ACTIONS(1261), + [anon_sym_ichar] = ACTIONS(1261), + [anon_sym_short] = ACTIONS(1261), + [anon_sym_ushort] = ACTIONS(1261), + [anon_sym_uint] = ACTIONS(1261), + [anon_sym_long] = ACTIONS(1261), + [anon_sym_ulong] = ACTIONS(1261), + [anon_sym_int128] = ACTIONS(1261), + [anon_sym_uint128] = ACTIONS(1261), + [anon_sym_float] = ACTIONS(1261), + [anon_sym_double] = ACTIONS(1261), + [anon_sym_float16] = ACTIONS(1261), + [anon_sym_bfloat16] = ACTIONS(1261), + [anon_sym_float128] = ACTIONS(1261), + [anon_sym_iptr] = ACTIONS(1261), + [anon_sym_uptr] = ACTIONS(1261), + [anon_sym_isz] = ACTIONS(1261), + [anon_sym_usz] = ACTIONS(1261), + [anon_sym_anyfault] = ACTIONS(1261), + [anon_sym_any] = ACTIONS(1261), + [anon_sym_DOLLARtypeof] = ACTIONS(1261), + [anon_sym_DOLLARtypefrom] = ACTIONS(1261), + [anon_sym_DOLLARevaltype] = ACTIONS(1261), + [anon_sym_DOLLARvatype] = ACTIONS(1261), + [sym_real_literal] = ACTIONS(1263), + }, + [826] = { + [sym_line_comment] = STATE(826), + [sym_doc_comment] = STATE(826), + [sym_block_comment] = STATE(826), + [sym_ident] = ACTIONS(1261), + [sym_integer_literal] = ACTIONS(1263), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [sym_bytes_literal] = ACTIONS(1263), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1261), + [sym_at_ident] = ACTIONS(1263), + [sym_hash_ident] = ACTIONS(1263), + [sym_type_ident] = ACTIONS(1263), + [sym_ct_type_ident] = ACTIONS(1263), + [sym_const_ident] = ACTIONS(1261), + [sym_builtin] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_fn] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_int] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_DOLLARalignof] = ACTIONS(1261), + [anon_sym_DOLLARextnameof] = ACTIONS(1261), + [anon_sym_DOLLARnameof] = ACTIONS(1261), + [anon_sym_DOLLARoffsetof] = ACTIONS(1261), + [anon_sym_DOLLARqnameof] = ACTIONS(1261), + [anon_sym_DOLLARvaconst] = ACTIONS(1261), + [anon_sym_DOLLARvaarg] = ACTIONS(1261), + [anon_sym_DOLLARvaref] = ACTIONS(1261), + [anon_sym_DOLLARvaexpr] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_DOLLARvacount] = ACTIONS(1261), + [anon_sym_DOLLAReval] = ACTIONS(1261), + [anon_sym_DOLLARis_const] = ACTIONS(1261), + [anon_sym_DOLLARsizeof] = ACTIONS(1261), + [anon_sym_DOLLARstringify] = ACTIONS(1261), + [anon_sym_DOLLARappend] = ACTIONS(1261), + [anon_sym_DOLLARconcat] = ACTIONS(1261), + [anon_sym_DOLLARdefined] = ACTIONS(1261), + [anon_sym_DOLLARembed] = ACTIONS(1261), + [anon_sym_DOLLARand] = ACTIONS(1261), + [anon_sym_DOLLARor] = ACTIONS(1261), + [anon_sym_DOLLARfeature] = ACTIONS(1261), + [anon_sym_DOLLARassignable] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_typeid] = ACTIONS(1261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1263), + [anon_sym_void] = ACTIONS(1261), + [anon_sym_bool] = ACTIONS(1261), + [anon_sym_char] = ACTIONS(1261), + [anon_sym_ichar] = ACTIONS(1261), + [anon_sym_short] = ACTIONS(1261), + [anon_sym_ushort] = ACTIONS(1261), + [anon_sym_uint] = ACTIONS(1261), + [anon_sym_long] = ACTIONS(1261), + [anon_sym_ulong] = ACTIONS(1261), + [anon_sym_int128] = ACTIONS(1261), + [anon_sym_uint128] = ACTIONS(1261), + [anon_sym_float] = ACTIONS(1261), + [anon_sym_double] = ACTIONS(1261), + [anon_sym_float16] = ACTIONS(1261), + [anon_sym_bfloat16] = ACTIONS(1261), + [anon_sym_float128] = ACTIONS(1261), + [anon_sym_iptr] = ACTIONS(1261), + [anon_sym_uptr] = ACTIONS(1261), + [anon_sym_isz] = ACTIONS(1261), + [anon_sym_usz] = ACTIONS(1261), + [anon_sym_anyfault] = ACTIONS(1261), + [anon_sym_any] = ACTIONS(1261), + [anon_sym_DOLLARtypeof] = ACTIONS(1261), + [anon_sym_DOLLARtypefrom] = ACTIONS(1261), + [anon_sym_DOLLARevaltype] = ACTIONS(1261), + [anon_sym_DOLLARvatype] = ACTIONS(1261), + [sym_real_literal] = ACTIONS(1263), + }, + [827] = { + [sym_line_comment] = STATE(827), + [sym_doc_comment] = STATE(827), + [sym_block_comment] = STATE(827), + [sym_ident] = ACTIONS(1733), + [sym_integer_literal] = ACTIONS(1735), + [anon_sym_SQUOTE] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [anon_sym_BQUOTE] = ACTIONS(1735), + [sym_bytes_literal] = ACTIONS(1735), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1733), + [sym_at_ident] = ACTIONS(1735), + [sym_hash_ident] = ACTIONS(1735), + [sym_type_ident] = ACTIONS(1735), + [sym_ct_type_ident] = ACTIONS(1735), + [sym_const_ident] = ACTIONS(1733), + [sym_builtin] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1733), + [anon_sym_fn] = ACTIONS(1733), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_AMP_AMP] = ACTIONS(1735), + [anon_sym_int] = ACTIONS(1733), + [anon_sym_PLUS] = ACTIONS(1733), + [anon_sym_DASH] = ACTIONS(1733), + [anon_sym_STAR] = ACTIONS(1735), + [anon_sym_DOLLARalignof] = ACTIONS(1733), + [anon_sym_DOLLARextnameof] = ACTIONS(1733), + [anon_sym_DOLLARnameof] = ACTIONS(1733), + [anon_sym_DOLLARoffsetof] = ACTIONS(1733), + [anon_sym_DOLLARqnameof] = ACTIONS(1733), + [anon_sym_DOLLARvaconst] = ACTIONS(1733), + [anon_sym_DOLLARvaarg] = ACTIONS(1733), + [anon_sym_DOLLARvaref] = ACTIONS(1733), + [anon_sym_DOLLARvaexpr] = ACTIONS(1733), + [anon_sym_true] = ACTIONS(1733), + [anon_sym_false] = ACTIONS(1733), + [anon_sym_null] = ACTIONS(1733), + [anon_sym_DOLLARvacount] = ACTIONS(1733), + [anon_sym_DOLLAReval] = ACTIONS(1733), + [anon_sym_DOLLARis_const] = ACTIONS(1733), + [anon_sym_DOLLARsizeof] = ACTIONS(1733), + [anon_sym_DOLLARstringify] = ACTIONS(1733), + [anon_sym_DOLLARappend] = ACTIONS(1733), + [anon_sym_DOLLARconcat] = ACTIONS(1733), + [anon_sym_DOLLARdefined] = ACTIONS(1733), + [anon_sym_DOLLARembed] = ACTIONS(1733), + [anon_sym_DOLLARand] = ACTIONS(1733), + [anon_sym_DOLLARor] = ACTIONS(1733), + [anon_sym_DOLLARfeature] = ACTIONS(1733), + [anon_sym_DOLLARassignable] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_TILDE] = ACTIONS(1735), + [anon_sym_PLUS_PLUS] = ACTIONS(1735), + [anon_sym_DASH_DASH] = ACTIONS(1735), + [anon_sym_typeid] = ACTIONS(1733), + [anon_sym_LBRACE_PIPE] = ACTIONS(1735), + [anon_sym_void] = ACTIONS(1733), + [anon_sym_bool] = ACTIONS(1733), + [anon_sym_char] = ACTIONS(1733), + [anon_sym_ichar] = ACTIONS(1733), + [anon_sym_short] = ACTIONS(1733), + [anon_sym_ushort] = ACTIONS(1733), + [anon_sym_uint] = ACTIONS(1733), + [anon_sym_long] = ACTIONS(1733), + [anon_sym_ulong] = ACTIONS(1733), + [anon_sym_int128] = ACTIONS(1733), + [anon_sym_uint128] = ACTIONS(1733), + [anon_sym_float] = ACTIONS(1733), + [anon_sym_double] = ACTIONS(1733), + [anon_sym_float16] = ACTIONS(1733), + [anon_sym_bfloat16] = ACTIONS(1733), + [anon_sym_float128] = ACTIONS(1733), + [anon_sym_iptr] = ACTIONS(1733), + [anon_sym_uptr] = ACTIONS(1733), + [anon_sym_isz] = ACTIONS(1733), + [anon_sym_usz] = ACTIONS(1733), + [anon_sym_anyfault] = ACTIONS(1733), + [anon_sym_any] = ACTIONS(1733), + [anon_sym_DOLLARtypeof] = ACTIONS(1733), + [anon_sym_DOLLARtypefrom] = ACTIONS(1733), + [anon_sym_DOLLARevaltype] = ACTIONS(1733), + [anon_sym_DOLLARvatype] = ACTIONS(1733), + [sym_real_literal] = ACTIONS(1735), + }, + [828] = { + [sym_line_comment] = STATE(828), + [sym_doc_comment] = STATE(828), + [sym_block_comment] = STATE(828), + [sym_ident] = ACTIONS(1261), + [sym_integer_literal] = ACTIONS(1263), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_BQUOTE] = ACTIONS(1263), + [sym_bytes_literal] = ACTIONS(1263), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_ct_ident] = ACTIONS(1261), + [sym_at_ident] = ACTIONS(1263), + [sym_hash_ident] = ACTIONS(1263), + [sym_type_ident] = ACTIONS(1263), + [sym_ct_type_ident] = ACTIONS(1263), + [sym_const_ident] = ACTIONS(1261), + [sym_builtin] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_fn] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_AMP_AMP] = ACTIONS(1263), + [anon_sym_int] = ACTIONS(1261), + [anon_sym_PLUS] = ACTIONS(1261), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_DOLLARalignof] = ACTIONS(1261), + [anon_sym_DOLLARextnameof] = ACTIONS(1261), + [anon_sym_DOLLARnameof] = ACTIONS(1261), + [anon_sym_DOLLARoffsetof] = ACTIONS(1261), + [anon_sym_DOLLARqnameof] = ACTIONS(1261), + [anon_sym_DOLLARvaconst] = ACTIONS(1261), + [anon_sym_DOLLARvaarg] = ACTIONS(1261), + [anon_sym_DOLLARvaref] = ACTIONS(1261), + [anon_sym_DOLLARvaexpr] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_null] = ACTIONS(1261), + [anon_sym_DOLLARvacount] = ACTIONS(1261), + [anon_sym_DOLLAReval] = ACTIONS(1261), + [anon_sym_DOLLARis_const] = ACTIONS(1261), + [anon_sym_DOLLARsizeof] = ACTIONS(1261), + [anon_sym_DOLLARstringify] = ACTIONS(1261), + [anon_sym_DOLLARappend] = ACTIONS(1261), + [anon_sym_DOLLARconcat] = ACTIONS(1261), + [anon_sym_DOLLARdefined] = ACTIONS(1261), + [anon_sym_DOLLARembed] = ACTIONS(1261), + [anon_sym_DOLLARand] = ACTIONS(1261), + [anon_sym_DOLLARor] = ACTIONS(1261), + [anon_sym_DOLLARfeature] = ACTIONS(1261), + [anon_sym_DOLLARassignable] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_TILDE] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1263), + [anon_sym_typeid] = ACTIONS(1261), + [anon_sym_LBRACE_PIPE] = ACTIONS(1263), + [anon_sym_void] = ACTIONS(1261), + [anon_sym_bool] = ACTIONS(1261), + [anon_sym_char] = ACTIONS(1261), + [anon_sym_ichar] = ACTIONS(1261), + [anon_sym_short] = ACTIONS(1261), + [anon_sym_ushort] = ACTIONS(1261), + [anon_sym_uint] = ACTIONS(1261), + [anon_sym_long] = ACTIONS(1261), + [anon_sym_ulong] = ACTIONS(1261), + [anon_sym_int128] = ACTIONS(1261), + [anon_sym_uint128] = ACTIONS(1261), + [anon_sym_float] = ACTIONS(1261), + [anon_sym_double] = ACTIONS(1261), + [anon_sym_float16] = ACTIONS(1261), + [anon_sym_bfloat16] = ACTIONS(1261), + [anon_sym_float128] = ACTIONS(1261), + [anon_sym_iptr] = ACTIONS(1261), + [anon_sym_uptr] = ACTIONS(1261), + [anon_sym_isz] = ACTIONS(1261), + [anon_sym_usz] = ACTIONS(1261), + [anon_sym_anyfault] = ACTIONS(1261), + [anon_sym_any] = ACTIONS(1261), + [anon_sym_DOLLARtypeof] = ACTIONS(1261), + [anon_sym_DOLLARtypefrom] = ACTIONS(1261), + [anon_sym_DOLLARevaltype] = ACTIONS(1261), + [anon_sym_DOLLARvatype] = ACTIONS(1261), + [sym_real_literal] = ACTIONS(1263), + }, + [829] = { + [sym_line_comment] = STATE(829), + [sym_doc_comment] = STATE(829), + [sym_block_comment] = STATE(829), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1541), + [sym_global_storage] = STATE(1183), + [sym_module] = STATE(923), + [sym_import_declaration] = STATE(923), + [sym_define_declaration] = STATE(923), + [sym_distinct_declaration] = STATE(923), + [sym_const_declaration] = STATE(923), + [sym_global_declaration] = STATE(923), + [sym__struct_or_union] = STATE(2086), + [sym_struct_declaration] = STATE(923), + [sym_bitstruct_declaration] = STATE(923), + [sym_fault_declaration] = STATE(923), + [sym_enum_declaration] = STATE(923), + [sym_interface_declaration] = STATE(923), + [sym_func_declaration] = STATE(923), + [sym_func_definition] = STATE(923), + [sym_macro_declaration] = STATE(923), + [sym_ct_assert_stmt] = STATE(923), + [sym_ct_include_stmt] = STATE(923), + [sym_ct_exec_stmt] = STATE(923), + [sym_ct_echo_stmt] = STATE(923), + [sym_module_type_ident] = STATE(1063), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(2094), + [aux_sym_source_file_repeat1] = STATE(830), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym_ident] = ACTIONS(11), [aux_sym_line_comment_token1] = ACTIONS(3), - [anon_sym_SLASH_STAR_STAR] = ACTIONS(5), + [anon_sym_LT_STAR] = ACTIONS(5), [anon_sym_SLASH_STAR] = ACTIONS(7), - [sym_ct_ident] = ACTIONS(1357), - [sym_at_ident] = ACTIONS(1359), - [sym_hash_ident] = ACTIONS(1359), - [sym_type_ident] = ACTIONS(1359), - [sym_ct_type_ident] = ACTIONS(1359), - [sym_const_ident] = ACTIONS(1357), - [sym_builtin] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_fn] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_AMP_AMP] = ACTIONS(1359), - [anon_sym_int] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_DOLLARalignof] = ACTIONS(1357), - [anon_sym_DOLLARextnameof] = ACTIONS(1357), - [anon_sym_DOLLARnameof] = ACTIONS(1357), - [anon_sym_DOLLARoffsetof] = ACTIONS(1357), - [anon_sym_DOLLARqnameof] = ACTIONS(1357), - [anon_sym_DOLLAReval] = ACTIONS(1357), - [anon_sym_DOLLARdefined] = ACTIONS(1357), - [anon_sym_DOLLARsizeof] = ACTIONS(1357), - [anon_sym_DOLLARstringify] = ACTIONS(1357), - [anon_sym_DOLLARis_const] = ACTIONS(1357), - [anon_sym_DOLLARvaconst] = ACTIONS(1357), - [anon_sym_DOLLARvaarg] = ACTIONS(1357), - [anon_sym_DOLLARvaref] = ACTIONS(1357), - [anon_sym_DOLLARvaexpr] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1357), - [anon_sym_false] = ACTIONS(1357), - [anon_sym_null] = ACTIONS(1357), - [anon_sym_DOLLARvacount] = ACTIONS(1357), - [anon_sym_DOLLARfeature] = ACTIONS(1357), - [anon_sym_DOLLARand] = ACTIONS(1357), - [anon_sym_DOLLARor] = ACTIONS(1357), - [anon_sym_DOLLARassignable] = ACTIONS(1357), - [anon_sym_DOLLARembed] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1359), - [anon_sym_TILDE] = ACTIONS(1359), - [anon_sym_PLUS_PLUS] = ACTIONS(1359), - [anon_sym_DASH_DASH] = ACTIONS(1359), - [anon_sym_typeid] = ACTIONS(1357), - [anon_sym_LBRACE_PIPE] = ACTIONS(1359), - [anon_sym_void] = ACTIONS(1357), - [anon_sym_bool] = ACTIONS(1357), - [anon_sym_char] = ACTIONS(1357), - [anon_sym_ichar] = ACTIONS(1357), - [anon_sym_short] = ACTIONS(1357), - [anon_sym_ushort] = ACTIONS(1357), - [anon_sym_uint] = ACTIONS(1357), - [anon_sym_long] = ACTIONS(1357), - [anon_sym_ulong] = ACTIONS(1357), - [anon_sym_int128] = ACTIONS(1357), - [anon_sym_uint128] = ACTIONS(1357), - [anon_sym_float] = ACTIONS(1357), - [anon_sym_double] = ACTIONS(1357), - [anon_sym_float16] = ACTIONS(1357), - [anon_sym_bfloat16] = ACTIONS(1357), - [anon_sym_float128] = ACTIONS(1357), - [anon_sym_iptr] = ACTIONS(1357), - [anon_sym_uptr] = ACTIONS(1357), - [anon_sym_isz] = ACTIONS(1357), - [anon_sym_usz] = ACTIONS(1357), - [anon_sym_anyfault] = ACTIONS(1357), - [anon_sym_any] = ACTIONS(1357), - [anon_sym_DOLLARtypeof] = ACTIONS(1357), - [anon_sym_DOLLARtypefrom] = ACTIONS(1357), - [anon_sym_DOLLARvatype] = ACTIONS(1357), - [anon_sym_DOLLARevaltype] = ACTIONS(1357), - [sym_real_literal] = ACTIONS(1359), + [sym_type_ident] = ACTIONS(13), + [sym_ct_type_ident] = ACTIONS(15), + [anon_sym_tlocal] = ACTIONS(17), + [anon_sym_extern] = ACTIONS(19), + [anon_sym_module] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_fn] = ACTIONS(25), + [anon_sym_def] = ACTIONS(27), + [anon_sym_distinct] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(33), + [anon_sym_bitstruct] = ACTIONS(35), + [anon_sym_fault] = ACTIONS(37), + [anon_sym_enum] = ACTIONS(39), + [anon_sym_interface] = ACTIONS(41), + [anon_sym_macro] = ACTIONS(43), + [anon_sym_int] = ACTIONS(45), + [anon_sym_DOLLARassert] = ACTIONS(47), + [anon_sym_DOLLARerror] = ACTIONS(49), + [anon_sym_DOLLARinclude] = ACTIONS(51), + [anon_sym_DOLLARexec] = ACTIONS(53), + [anon_sym_DOLLARecho] = ACTIONS(55), + [anon_sym_typeid] = ACTIONS(45), + [anon_sym_void] = ACTIONS(45), + [anon_sym_bool] = ACTIONS(45), + [anon_sym_char] = ACTIONS(45), + [anon_sym_ichar] = ACTIONS(45), + [anon_sym_short] = ACTIONS(45), + [anon_sym_ushort] = ACTIONS(45), + [anon_sym_uint] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_ulong] = ACTIONS(45), + [anon_sym_int128] = ACTIONS(45), + [anon_sym_uint128] = ACTIONS(45), + [anon_sym_float] = ACTIONS(45), + [anon_sym_double] = ACTIONS(45), + [anon_sym_float16] = ACTIONS(45), + [anon_sym_bfloat16] = ACTIONS(45), + [anon_sym_float128] = ACTIONS(45), + [anon_sym_iptr] = ACTIONS(45), + [anon_sym_uptr] = ACTIONS(45), + [anon_sym_isz] = ACTIONS(45), + [anon_sym_usz] = ACTIONS(45), + [anon_sym_anyfault] = ACTIONS(45), + [anon_sym_any] = ACTIONS(45), + [anon_sym_DOLLARtypeof] = ACTIONS(57), + [anon_sym_DOLLARtypefrom] = ACTIONS(57), + [anon_sym_DOLLARevaltype] = ACTIONS(57), + [anon_sym_DOLLARvatype] = ACTIONS(59), + }, + [830] = { + [sym_line_comment] = STATE(830), + [sym_doc_comment] = STATE(830), + [sym_block_comment] = STATE(830), + [sym_module_resolution] = STATE(1461), + [aux_sym__module_path] = STATE(1541), + [sym_global_storage] = STATE(1183), + [sym_module] = STATE(923), + [sym_import_declaration] = STATE(923), + [sym_define_declaration] = STATE(923), + [sym_distinct_declaration] = STATE(923), + [sym_const_declaration] = STATE(923), + [sym_global_declaration] = STATE(923), + [sym__struct_or_union] = STATE(2086), + [sym_struct_declaration] = STATE(923), + [sym_bitstruct_declaration] = STATE(923), + [sym_fault_declaration] = STATE(923), + [sym_enum_declaration] = STATE(923), + [sym_interface_declaration] = STATE(923), + [sym_func_declaration] = STATE(923), + [sym_func_definition] = STATE(923), + [sym_macro_declaration] = STATE(923), + [sym_ct_assert_stmt] = STATE(923), + [sym_ct_include_stmt] = STATE(923), + [sym_ct_exec_stmt] = STATE(923), + [sym_ct_echo_stmt] = STATE(923), + [sym_module_type_ident] = STATE(1063), + [sym_base_type_name] = STATE(1128), + [sym_base_type] = STATE(1068), + [sym_type] = STATE(2094), + [aux_sym_source_file_repeat1] = STATE(830), + [ts_builtin_sym_end] = ACTIONS(1739), + [sym_ident] = ACTIONS(1741), + [aux_sym_line_comment_token1] = ACTIONS(3), + [anon_sym_LT_STAR] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(7), + [sym_type_ident] = ACTIONS(1744), + [sym_ct_type_ident] = ACTIONS(1747), + [anon_sym_tlocal] = ACTIONS(1750), + [anon_sym_extern] = ACTIONS(1753), + [anon_sym_module] = ACTIONS(1756), + [anon_sym_import] = ACTIONS(1759), + [anon_sym_fn] = ACTIONS(1762), + [anon_sym_def] = ACTIONS(1765), + [anon_sym_distinct] = ACTIONS(1768), + [anon_sym_const] = ACTIONS(1771), + [anon_sym_struct] = ACTIONS(1774), + [anon_sym_union] = ACTIONS(1774), + [anon_sym_bitstruct] = ACTIONS(1777), + [anon_sym_fault] = ACTIONS(1780), + [anon_sym_enum] = ACTIONS(1783), + [anon_sym_interface] = ACTIONS(1786), + [anon_sym_macro] = ACTIONS(1789), + [anon_sym_int] = ACTIONS(1792), + [anon_sym_DOLLARassert] = ACTIONS(1795), + [anon_sym_DOLLARerror] = ACTIONS(1798), + [anon_sym_DOLLARinclude] = ACTIONS(1801), + [anon_sym_DOLLARexec] = ACTIONS(1804), + [anon_sym_DOLLARecho] = ACTIONS(1807), + [anon_sym_typeid] = ACTIONS(1792), + [anon_sym_void] = ACTIONS(1792), + [anon_sym_bool] = ACTIONS(1792), + [anon_sym_char] = ACTIONS(1792), + [anon_sym_ichar] = ACTIONS(1792), + [anon_sym_short] = ACTIONS(1792), + [anon_sym_ushort] = ACTIONS(1792), + [anon_sym_uint] = ACTIONS(1792), + [anon_sym_long] = ACTIONS(1792), + [anon_sym_ulong] = ACTIONS(1792), + [anon_sym_int128] = ACTIONS(1792), + [anon_sym_uint128] = ACTIONS(1792), + [anon_sym_float] = ACTIONS(1792), + [anon_sym_double] = ACTIONS(1792), + [anon_sym_float16] = ACTIONS(1792), + [anon_sym_bfloat16] = ACTIONS(1792), + [anon_sym_float128] = ACTIONS(1792), + [anon_sym_iptr] = ACTIONS(1792), + [anon_sym_uptr] = ACTIONS(1792), + [anon_sym_isz] = ACTIONS(1792), + [anon_sym_usz] = ACTIONS(1792), + [anon_sym_anyfault] = ACTIONS(1792), + [anon_sym_any] = ACTIONS(1792), + [anon_sym_DOLLARtypeof] = ACTIONS(1810), + [anon_sym_DOLLARtypefrom] = ACTIONS(1810), + [anon_sym_DOLLARevaltype] = ACTIONS(1810), + [anon_sym_DOLLARvatype] = ACTIONS(1813), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 9, + [0] = 10, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_BQUOTE, + STATE(832), 1, + aux_sym_string_expr_repeat1, + STATE(874), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(831), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1816), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1818), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [84] = 9, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1820), 1, + anon_sym_DQUOTE, + ACTIONS(1823), 1, + anon_sym_BQUOTE, + STATE(874), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(832), 4, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + aux_sym_string_expr_repeat1, + ACTIONS(1826), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1828), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [166] = 9, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1830), 1, + sym_at_ident, + STATE(850), 1, + aux_sym_call_inline_attributes_repeat1, + STATE(887), 1, + sym_call_inline_attributes, + STATE(833), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1832), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1834), 33, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [247] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1788), 1, - anon_sym_DQUOTE, - ACTIONS(1791), 1, - anon_sym_BQUOTE, - STATE(900), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(804), 4, + ACTIONS(1830), 1, + sym_at_ident, + STATE(850), 1, + aux_sym_call_inline_attributes_repeat1, + STATE(890), 1, + sym_call_inline_attributes, + STATE(834), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_string_expr_repeat1, - ACTIONS(1796), 17, + ACTIONS(1836), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1838), 33, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [328] = 22, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(835), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1846), 11, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 28, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_GT_RBRACK, + [434] = 28, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(836), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1846), 6, + anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_GT_RBRACK, + [552] = 28, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(837), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1846), 6, + anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_GT_RBRACK, + [670] = 28, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(838), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1846), 6, + anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_GT_RBRACK, + [788] = 28, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(839), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1846), 6, anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_GT_RBRACK, + [906] = 28, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(840), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1846), 6, + anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_GT_RBRACK, + [1024] = 36, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1840), 1, anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, anon_sym_PLUS, + ACTIONS(1874), 1, anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + ACTIONS(1846), 3, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + STATE(841), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1842), 22, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_GT_RBRACK, + [1158] = 36, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(1794), 32, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + ACTIONS(1846), 3, + anon_sym_EQ, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + STATE(842), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1842), 22, anon_sym_COMMA, - anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117277,65 +121802,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, + anon_sym_PIPE_PIPE_PIPE, anon_sym_GT_RBRACK, - [79] = 10, + [1292] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(67), 1, - anon_sym_DQUOTE, - ACTIONS(69), 1, - anon_sym_BQUOTE, - STATE(804), 1, - aux_sym_string_expr_repeat1, - STATE(900), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(805), 3, + ACTIONS(1898), 1, + anon_sym_LBRACK, + ACTIONS(1900), 1, + anon_sym_STAR, + ACTIONS(1902), 1, + anon_sym_BANG, + ACTIONS(1904), 1, + anon_sym_LBRACK_LT, + STATE(847), 1, + aux_sym_type_repeat1, + STATE(883), 1, + sym_type_suffix, + STATE(843), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1800), 17, + ACTIONS(1717), 18, + anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, - anon_sym_DOT, + anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_STAR, anon_sym_QMARK, - anon_sym_BANG, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(1798), 32, + anon_sym_PIPE_PIPE, + ACTIONS(1719), 31, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117348,129 +121868,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [160] = 6, + [1378] = 34, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(806), 3, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(844), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1802), 13, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, + ACTIONS(1846), 4, + anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 23, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1804), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [232] = 9, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_GT_RBRACK, + [1508] = 25, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1806), 1, - sym_at_ident, - STATE(823), 1, - aux_sym_call_inline_attributes_repeat1, - STATE(906), 1, - sym_call_inline_attributes, - STATE(807), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1810), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, + ACTIONS(1840), 1, anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(845), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1846), 8, + anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK, anon_sym_GT, anon_sym_LT, - ACTIONS(1808), 33, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 28, anon_sym_COMMA, - anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117483,129 +122053,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, anon_sym_GT_RBRACK, - [310] = 6, + [1620] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(808), 3, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(846), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1812), 13, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, + ACTIONS(1906), 9, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1814), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [382] = 9, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_GT_RBRACK, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [1766] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1806), 1, - sym_at_ident, - STATE(823), 1, - aux_sym_call_inline_attributes_repeat1, - STATE(904), 1, - sym_call_inline_attributes, - STATE(809), 3, + ACTIONS(1926), 1, + anon_sym_LBRACK, + ACTIONS(1929), 1, + anon_sym_STAR, + ACTIONS(1932), 1, + anon_sym_LBRACK_LT, + STATE(883), 1, + sym_type_suffix, + STATE(847), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1818), 17, + aux_sym_type_repeat1, + ACTIONS(1922), 19, + anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, - anon_sym_DOT, + anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(1816), 33, + anon_sym_PIPE_PIPE, + ACTIONS(1924), 31, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -117618,880 +122227,965 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [460] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(810), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1820), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1822), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [531] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(811), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1824), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1826), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [602] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(812), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1828), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1830), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [673] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [1848] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(813), 3, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(848), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1832), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1834), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [744] = 6, + ACTIONS(1937), 16, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1935), 28, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_GT_RBRACK, + [1944] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(814), 3, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(849), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1836), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1838), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [815] = 6, + ACTIONS(1939), 9, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_GT_RBRACK, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [2090] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(815), 3, + ACTIONS(1830), 1, + sym_at_ident, + STATE(859), 1, + aux_sym_call_inline_attributes_repeat1, + STATE(850), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1840), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1842), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [886] = 6, + ACTIONS(1941), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1943), 33, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [2168] = 22, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(816), 3, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(851), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1844), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1846), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [957] = 6, + ACTIONS(1846), 11, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 28, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_GT_RBRACK, + [2274] = 34, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(817), 3, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(852), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1848), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1850), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [1028] = 6, + ACTIONS(1846), 4, + anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 23, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_GT_RBRACK, + [2404] = 25, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(818), 3, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(853), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1852), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1854), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [1099] = 6, + ACTIONS(1846), 8, + anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 28, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_GT_RBRACK, + [2516] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(819), 3, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(854), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1856), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1858), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [1170] = 6, + ACTIONS(1947), 16, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1945), 28, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_GT_RBRACK, + [2612] = 25, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(820), 3, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(855), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1860), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1862), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [1241] = 6, + ACTIONS(1846), 8, + anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 28, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_GT_RBRACK, + [2724] = 20, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(821), 3, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(856), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1864), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1866), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [1312] = 6, + ACTIONS(1846), 13, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 28, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_GT_RBRACK, + [2826] = 20, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(857), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1846), 13, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 28, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_GT_RBRACK, + [2928] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(822), 3, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(858), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1868), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1870), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [1383] = 8, + ACTIONS(1846), 16, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 28, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_GT_RBRACK, + [3024] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1806), 1, + ACTIONS(1949), 1, sym_at_ident, - STATE(894), 1, - aux_sym_call_inline_attributes_repeat1, - STATE(823), 3, + STATE(859), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1874), 17, + aux_sym_call_inline_attributes_repeat1, + ACTIONS(1952), 20, + anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, - anon_sym_DOT, + anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, @@ -118499,13 +123193,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(1872), 33, + anon_sym_PIPE_PIPE, + ACTIONS(1954), 33, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -118517,7 +123213,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -118530,1655 +123225,1623 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [1458] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(824), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1876), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1878), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [1529] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(825), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1880), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1882), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [1600] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(826), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1884), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1886), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [1671] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(827), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1888), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1890), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [1742] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(828), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(1465), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1463), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [1813] = 6, + [3100] = 41, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(829), 3, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(1958), 1, + anon_sym_EQ, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(860), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1697), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1892), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [1884] = 6, + ACTIONS(1956), 19, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_RBRACK, + [3244] = 41, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(830), 3, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(1962), 1, + anon_sym_EQ, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(861), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1888), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1890), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [1955] = 6, + ACTIONS(1960), 19, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_RBRACK, + [3388] = 41, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(831), 3, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(1962), 1, + anon_sym_EQ, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(862), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1894), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1896), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [2026] = 6, + ACTIONS(1960), 19, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_RBRACK, + [3532] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(832), 3, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(863), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1898), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1900), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [2097] = 6, + ACTIONS(1846), 16, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 28, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_GT_RBRACK, + [3628] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(833), 3, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(864), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1902), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1904), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [2168] = 6, + ACTIONS(1846), 16, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 28, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_GT_RBRACK, + [3724] = 22, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(834), 3, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(865), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1906), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1908), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [2239] = 6, + ACTIONS(1846), 11, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 28, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_GT_RBRACK, + [3830] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(835), 3, + ACTIONS(1898), 1, + anon_sym_LBRACK, + ACTIONS(1900), 1, + anon_sym_STAR, + ACTIONS(1904), 1, + anon_sym_LBRACK_LT, + ACTIONS(1968), 1, + anon_sym_BANG, + STATE(843), 1, + aux_sym_type_repeat1, + STATE(883), 1, + sym_type_suffix, + STATE(866), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1395), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1393), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [2310] = 6, + ACTIONS(1964), 18, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1966), 31, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [3916] = 28, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(836), 3, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(867), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1910), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1912), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [2381] = 6, + ACTIONS(1846), 6, + anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1842), 27, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_GT_RBRACK, + [4034] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(837), 3, + STATE(868), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1914), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1916), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [2452] = 6, + ACTIONS(1972), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1970), 34, + anon_sym_DQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [4107] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(838), 3, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(900), 1, + sym_compound_stmt, + STATE(869), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1918), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1920), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [2523] = 6, + ACTIONS(1974), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1976), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [4184] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(839), 3, + ACTIONS(1980), 1, + sym_bytes_literal, + STATE(870), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1922), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1924), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [2594] = 6, + aux_sym_bytes_expr_repeat1, + ACTIONS(1983), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1985), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [4259] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(840), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + STATE(891), 1, + sym_generic_arguments, + STATE(871), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1926), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1928), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [2665] = 6, + ACTIONS(1987), 21, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1989), 31, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, + anon_sym_GT_RBRACK, + [4336] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(841), 3, + ACTIONS(1991), 2, + anon_sym_DQUOTE, + anon_sym_BQUOTE, + STATE(872), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1391), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1389), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [2736] = 6, + ACTIONS(1993), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1995), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [4411] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(842), 3, + ACTIONS(71), 1, + sym_bytes_literal, + STATE(870), 1, + aux_sym_bytes_expr_repeat1, + STATE(873), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1930), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1932), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [2807] = 6, + ACTIONS(1997), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1999), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [4488] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(843), 3, + STATE(874), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1934), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1936), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [2878] = 6, + ACTIONS(2001), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1991), 34, + anon_sym_DQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [4561] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(844), 3, + STATE(875), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2005), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2003), 34, + anon_sym_DQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [4634] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(876), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1407), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1405), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [2949] = 6, + ACTIONS(2009), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2007), 34, + anon_sym_DQUOTE, + anon_sym_BQUOTE, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [4707] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(845), 3, + STATE(877), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1938), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1940), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [3020] = 6, + ACTIONS(2013), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2011), 34, + sym_at_ident, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [4780] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(846), 3, + STATE(878), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1942), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1944), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [3091] = 6, + ACTIONS(2015), 21, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2017), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, + anon_sym_GT_RBRACK, + [4852] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(847), 3, + STATE(879), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1946), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1948), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [3162] = 6, + ACTIONS(2019), 21, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2021), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, + anon_sym_GT_RBRACK, + [4924] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(848), 3, + STATE(880), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1950), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1952), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [3233] = 6, + ACTIONS(2023), 21, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2025), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, + anon_sym_GT_RBRACK, + [4996] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(849), 3, + STATE(881), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1387), 12, + ACTIONS(2027), 13, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, + anon_sym_RBRACE, anon_sym_DOLLARassert, anon_sym_DOLLARerror, anon_sym_DOLLARinclude, @@ -120186,9 +124849,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1385), 40, + anon_sym_DOLLARvatype, + ACTIONS(2029), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -120229,151 +124892,485 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [3304] = 6, + [5068] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(850), 3, + STATE(882), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1954), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1956), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [3375] = 6, + ACTIONS(2023), 21, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2025), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, + anon_sym_GT_RBRACK, + [5140] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(851), 3, + STATE(883), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1958), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1960), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [3446] = 6, + ACTIONS(2031), 21, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2033), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, + anon_sym_GT_RBRACK, + [5212] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(884), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2015), 21, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2017), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, + anon_sym_GT_RBRACK, + [5284] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(885), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2037), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2035), 33, + sym_bytes_literal, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [5356] = 7, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + STATE(886), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2041), 21, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2043), 31, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [5430] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(887), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2045), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2047), 33, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [5502] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(888), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2049), 21, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2051), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, + anon_sym_GT_RBRACK, + [5574] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(852), 3, + STATE(889), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1962), 12, + ACTIONS(2053), 13, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, + anon_sym_RBRACE, anon_sym_DOLLARassert, anon_sym_DOLLARerror, anon_sym_DOLLARinclude, @@ -120381,9 +125378,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1964), 40, + anon_sym_DOLLARvatype, + ACTIONS(2055), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -120424,473 +125421,480 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [3517] = 6, + [5646] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(853), 3, + STATE(890), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1966), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1968), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [3588] = 6, + ACTIONS(1832), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1834), 33, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [5718] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(854), 3, + STATE(891), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1970), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1972), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [3659] = 6, + ACTIONS(2057), 21, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2059), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, + anon_sym_GT_RBRACK, + [5790] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(855), 3, + STATE(892), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1974), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1976), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [3730] = 6, + ACTIONS(2061), 21, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2063), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, + anon_sym_GT_RBRACK, + [5862] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(856), 3, + STATE(893), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1978), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1980), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [3801] = 6, + ACTIONS(2065), 21, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2067), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, + anon_sym_GT_RBRACK, + [5934] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(857), 3, + STATE(894), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1982), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1984), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [3872] = 6, + ACTIONS(1987), 21, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1989), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, + anon_sym_GT_RBRACK, + [6006] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(858), 3, + STATE(895), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1986), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1988), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [3943] = 6, + ACTIONS(2069), 21, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2071), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, + anon_sym_GT_RBRACK, + [6078] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(859), 3, + STATE(896), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1990), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1992), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [4014] = 6, + ACTIONS(2073), 21, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2075), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_LBRACK_LT, + anon_sym_GT_RBRACK, + [6150] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(860), 3, + STATE(897), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1994), 12, + ACTIONS(2077), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -120901,9 +125905,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1996), 40, + anon_sym_DOLLARvatype, + ACTIONS(2079), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -120944,213 +125948,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4085] = 6, + [6221] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(861), 3, + STATE(898), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1998), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2000), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [4156] = 6, + ACTIONS(2081), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2083), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [6292] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(862), 3, + STATE(899), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2002), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2004), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [4227] = 6, + ACTIONS(1993), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1995), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [6363] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(863), 3, + STATE(900), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1403), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(1401), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [4298] = 6, + ACTIONS(2085), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2087), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [6434] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(864), 3, + STATE(901), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2006), 12, + ACTIONS(2089), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -121161,9 +126165,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2008), 40, + anon_sym_DOLLARvatype, + ACTIONS(2091), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -121204,18 +126208,603 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4369] = 6, + [6505] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(902), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2093), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2095), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [6576] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(903), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2097), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2099), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [6647] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(904), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2101), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2103), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [6718] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(905), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2105), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2107), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [6789] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(906), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2041), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2043), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [6860] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(907), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2109), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2111), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [6931] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(908), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2113), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2115), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [7002] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(909), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2117), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2119), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [7073] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(910), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2121), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2123), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [7144] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(865), 3, + STATE(911), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2010), 12, + ACTIONS(2125), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -121226,9 +126815,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2012), 40, + anon_sym_DOLLARvatype, + ACTIONS(2127), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -121269,18 +126858,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4440] = 6, + [7215] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(866), 3, + STATE(912), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2014), 12, + ACTIONS(2129), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -121291,9 +126880,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2016), 40, + anon_sym_DOLLARvatype, + ACTIONS(2131), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -121334,148 +126923,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4511] = 6, + [7286] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(867), 3, + STATE(913), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2018), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2020), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [4582] = 6, + ACTIONS(2133), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2135), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [7357] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(868), 3, + STATE(914), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2022), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2024), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [4653] = 6, + ACTIONS(2137), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2139), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [7428] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(869), 3, + STATE(915), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2141), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2143), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [7499] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(916), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2145), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2147), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [7570] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(917), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2145), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2147), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [7641] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(918), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2026), 12, + ACTIONS(2149), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -121486,9 +127270,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2028), 40, + anon_sym_DOLLARvatype, + ACTIONS(2151), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -121529,18 +127313,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4724] = 6, + [7712] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(919), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2153), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2155), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [7783] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(870), 3, + STATE(920), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2030), 12, + ACTIONS(2157), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -121551,9 +127400,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2032), 40, + anon_sym_DOLLARvatype, + ACTIONS(2159), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -121594,18 +127443,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4795] = 6, + [7854] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(871), 3, + STATE(921), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2034), 12, + ACTIONS(2161), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -121616,9 +127465,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2036), 40, + anon_sym_DOLLARvatype, + ACTIONS(2163), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -121659,18 +127508,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4866] = 6, + [7925] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(872), 3, + STATE(922), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2038), 12, + ACTIONS(2165), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -121681,9 +127530,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2040), 40, + anon_sym_DOLLARvatype, + ACTIONS(2167), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -121724,18 +127573,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [4937] = 6, + [7996] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(873), 3, + STATE(923), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2042), 12, + ACTIONS(2169), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -121746,9 +127595,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2044), 40, + anon_sym_DOLLARvatype, + ACTIONS(2171), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -121789,18 +127638,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5008] = 6, + [8067] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(874), 3, + STATE(924), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2046), 12, + ACTIONS(1611), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -121811,9 +127660,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2048), 40, + anon_sym_DOLLARvatype, + ACTIONS(1609), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -121854,18 +127703,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5079] = 6, + [8138] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(875), 3, + STATE(925), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2050), 12, + ACTIONS(2173), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -121876,9 +127725,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2052), 40, + anon_sym_DOLLARvatype, + ACTIONS(2175), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -121919,148 +127768,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5150] = 6, + [8209] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(876), 3, + STATE(926), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2054), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2056), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [5221] = 6, + ACTIONS(2177), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2179), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [8280] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(877), 3, + STATE(927), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2058), 12, - ts_builtin_sym_end, - sym_type_ident, - sym_ct_type_ident, - anon_sym_DOLLARassert, - anon_sym_DOLLARerror, - anon_sym_DOLLARinclude, - anon_sym_DOLLARexec, - anon_sym_DOLLARecho, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2060), 40, - sym_ident, - anon_sym_tlocal, - anon_sym_extern, - anon_sym_module, - anon_sym_import, - anon_sym_fn, - anon_sym_def, - anon_sym_distinct, - anon_sym_const, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, - anon_sym_fault, - anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [5292] = 6, + ACTIONS(2181), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2183), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [8351] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(878), 3, + STATE(928), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2062), 12, + ACTIONS(1375), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -122071,9 +127920,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2064), 40, + anon_sym_DOLLARvatype, + ACTIONS(1373), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -122114,18 +127963,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5363] = 6, + [8422] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(879), 3, + STATE(929), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2066), 12, + ACTIONS(2185), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -122136,9 +127985,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2068), 40, + anon_sym_DOLLARvatype, + ACTIONS(2187), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -122179,18 +128028,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5434] = 6, + [8493] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(880), 3, + STATE(930), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1399), 12, + ACTIONS(2189), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -122201,9 +128050,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1397), 40, + anon_sym_DOLLARvatype, + ACTIONS(2191), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -122244,18 +128093,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5505] = 6, + [8564] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(881), 3, + STATE(931), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2070), 12, + ACTIONS(2193), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -122266,9 +128115,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2072), 40, + anon_sym_DOLLARvatype, + ACTIONS(2195), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -122309,18 +128158,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5576] = 6, + [8635] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(882), 3, + STATE(932), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2074), 12, + ACTIONS(2197), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -122331,9 +128180,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2076), 40, + anon_sym_DOLLARvatype, + ACTIONS(2199), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -122374,18 +128223,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5647] = 6, + [8706] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(883), 3, + STATE(933), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2078), 12, + ACTIONS(2201), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -122396,9 +128245,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2080), 40, + anon_sym_DOLLARvatype, + ACTIONS(2203), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -122439,18 +128288,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5718] = 6, + [8777] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(884), 3, + STATE(934), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2082), 12, + ACTIONS(2205), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -122461,9 +128310,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2084), 40, + anon_sym_DOLLARvatype, + ACTIONS(2207), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -122504,18 +128353,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5789] = 6, + [8848] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(935), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1195), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(1193), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [8919] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(885), 3, + STATE(936), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2086), 12, + ACTIONS(2209), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -122526,9 +128440,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2088), 40, + anon_sym_DOLLARvatype, + ACTIONS(2211), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -122569,18 +128483,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5860] = 6, + [8990] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(886), 3, + STATE(937), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1451), 12, + ACTIONS(2213), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -122591,9 +128505,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1449), 40, + anon_sym_DOLLARvatype, + ACTIONS(2215), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -122634,18 +128548,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [5931] = 6, + [9061] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(887), 3, + STATE(938), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2090), 12, + ACTIONS(2217), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -122656,9 +128570,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2092), 40, + anon_sym_DOLLARvatype, + ACTIONS(2219), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -122699,18 +128613,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [6002] = 6, + [9132] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(888), 3, + STATE(939), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2094), 12, + ACTIONS(2221), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -122721,9 +128635,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2096), 40, + anon_sym_DOLLARvatype, + ACTIONS(2223), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -122764,18 +128678,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [6073] = 6, + [9203] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(889), 3, + STATE(940), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2098), 12, + ACTIONS(2225), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -122786,9 +128700,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2100), 40, + anon_sym_DOLLARvatype, + ACTIONS(2227), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -122829,18 +128743,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [6144] = 6, + [9274] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(890), 3, + STATE(941), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1469), 12, + ACTIONS(2229), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -122851,9 +128765,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1467), 40, + anon_sym_DOLLARvatype, + ACTIONS(2231), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -122894,18 +128808,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [6215] = 6, + [9345] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(891), 3, + STATE(942), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1447), 12, + ACTIONS(2233), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -122916,9 +128830,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1445), 40, + anon_sym_DOLLARvatype, + ACTIONS(2235), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -122959,18 +128873,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [6286] = 6, + [9416] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(892), 3, + STATE(943), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1431), 12, + ACTIONS(2237), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -122981,9 +128895,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1429), 40, + anon_sym_DOLLARvatype, + ACTIONS(2239), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -123024,18 +128938,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [6357] = 6, + [9487] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(893), 3, + STATE(944), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2102), 12, + ACTIONS(1523), 12, ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, @@ -123046,9 +128960,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2104), 40, + anon_sym_DOLLARvatype, + ACTIONS(1521), 40, sym_ident, anon_sym_tlocal, anon_sym_extern, @@ -123063,823 +128977,374 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitstruct, anon_sym_fault, anon_sym_enum, - anon_sym_interface, - anon_sym_macro, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [6428] = 7, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2106), 1, - sym_at_ident, - STATE(894), 4, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - aux_sym_call_inline_attributes_repeat1, - ACTIONS(2111), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2109), 33, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [6501] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(895), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2115), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2113), 34, - anon_sym_DQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [6571] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(896), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2119), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2117), 34, - anon_sym_DQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [6641] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2125), 1, - anon_sym_LBRACE, - STATE(914), 1, - sym_compound_stmt, - STATE(897), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2123), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2121), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [6715] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(898), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2129), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2127), 34, - anon_sym_DQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [6785] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(71), 1, - sym_bytes_literal, - STATE(902), 1, - aux_sym_bytes_expr_repeat1, - STATE(899), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2133), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2131), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [6859] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(900), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2137), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2135), 34, - anon_sym_DQUOTE, - anon_sym_BQUOTE, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [6929] = 7, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [9558] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2135), 2, - anon_sym_DQUOTE, - anon_sym_BQUOTE, - STATE(901), 3, + STATE(945), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2141), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2139), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [7001] = 7, + ACTIONS(2241), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2243), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [9629] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2143), 1, - sym_bytes_literal, - STATE(902), 4, + STATE(946), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_bytes_expr_repeat1, - ACTIONS(2148), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2146), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [7073] = 6, + ACTIONS(2245), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2247), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [9700] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(903), 3, + STATE(947), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2152), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2150), 34, - sym_at_ident, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [7143] = 6, + ACTIONS(2249), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2251), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [9771] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(904), 3, + STATE(948), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2156), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2154), 33, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [7212] = 7, + ACTIONS(2253), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2255), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [9842] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2158), 1, - anon_sym_COLON_COLON, - STATE(905), 3, + STATE(949), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2162), 18, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2160), 31, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [7283] = 6, + ACTIONS(2257), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2259), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [9913] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(906), 3, + STATE(950), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1818), 17, + ACTIONS(2261), 20, + anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, - anon_sym_DOT, + anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, @@ -123887,13 +129352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(1816), 33, + anon_sym_PIPE_PIPE, + ACTIONS(2263), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -123901,11 +129368,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -123918,94 +129383,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [7352] = 6, + [9984] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(907), 3, + STATE(951), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2166), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2164), 33, - sym_bytes_literal, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [7421] = 6, + ACTIONS(2265), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2267), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [10055] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(908), 3, + STATE(952), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2170), 17, + ACTIONS(2141), 20, + anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, - anon_sym_DOT, + anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, @@ -124013,13 +129482,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2168), 32, + anon_sym_PIPE_PIPE, + ACTIONS(2143), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -124030,7 +129501,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124043,31 +129513,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [7489] = 6, + [10126] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(909), 3, + STATE(953), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2174), 17, + ACTIONS(2269), 20, + anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, - anon_sym_DOT, + anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, @@ -124075,13 +129547,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2172), 32, + anon_sym_PIPE_PIPE, + ACTIONS(2271), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -124092,7 +129566,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124105,31 +129578,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [7557] = 6, + [10197] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(910), 3, + STATE(954), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2178), 17, + ACTIONS(2273), 20, + anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, - anon_sym_DOT, + anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, @@ -124137,13 +129612,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2176), 32, + anon_sym_PIPE_PIPE, + ACTIONS(2275), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -124154,7 +129631,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124167,117 +129643,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [7625] = 6, + [10268] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(911), 3, + STATE(955), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1187), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(1185), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [7693] = 8, + ACTIONS(2277), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2279), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [10339] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, - anon_sym_LPAREN_LT, - STATE(951), 1, - sym_generic_arguments, - STATE(912), 3, + STATE(956), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2182), 20, - sym_at_ident, + ACTIONS(1615), 12, + ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - anon_sym_LBRACK_LT, - ACTIONS(2180), 27, + anon_sym_DOLLARvatype, + ACTIONS(1613), 40, sym_ident, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -124302,146 +129783,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [7765] = 6, + [10410] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(913), 3, + STATE(957), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2188), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2186), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [7833] = 6, + ACTIONS(1639), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(1637), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [10481] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(914), 3, + STATE(958), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2192), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2190), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [7901] = 6, + ACTIONS(2281), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2283), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [10552] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(915), 3, + STATE(959), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2196), 17, + ACTIONS(2285), 20, + anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, - anon_sym_DOT, + anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, @@ -124449,13 +129937,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2194), 32, + anon_sym_PIPE_PIPE, + ACTIONS(2287), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -124466,7 +129956,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124479,217 +129968,423 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [7969] = 6, + [10623] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(916), 3, + STATE(960), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2141), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2139), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [8037] = 6, + ACTIONS(2289), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2291), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [10694] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(917), 3, + STATE(961), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2200), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2198), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [8105] = 6, + ACTIONS(2293), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2295), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [10765] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(918), 3, + STATE(962), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2204), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2202), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [8173] = 6, + ACTIONS(1615), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(1613), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [10836] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(963), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2297), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2299), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [10907] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(964), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1619), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(1617), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [10978] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(965), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2301), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2303), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [11049] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(919), 3, + STATE(966), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2208), 17, + ACTIONS(2081), 20, + anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, - anon_sym_DOT, + anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, @@ -124697,13 +130392,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2206), 32, + anon_sym_PIPE_PIPE, + ACTIONS(2083), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -124714,7 +130411,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -124727,620 +130423,1227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [8241] = 6, + [11120] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(920), 3, + STATE(967), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2305), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2307), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [11191] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(968), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2309), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2311), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [11262] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(969), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2313), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2315), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [11333] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(970), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2317), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2319), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [11404] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(971), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2321), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2323), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [11475] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(972), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2325), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2327), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [11546] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(973), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2329), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2331), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [11617] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(974), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1643), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(1641), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [11688] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(975), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2212), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2210), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [8309] = 6, + ACTIONS(1647), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(1645), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [11759] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(921), 3, + STATE(976), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2216), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2214), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [8377] = 6, + ACTIONS(2333), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2335), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [11830] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(922), 3, + STATE(977), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2220), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2218), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [8445] = 10, + ACTIONS(2337), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2339), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [11901] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK, - ACTIONS(2228), 2, - anon_sym_LPAREN, - anon_sym_BANG, - STATE(923), 3, + STATE(978), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2224), 5, - anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(2230), 7, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_GT_RBRACK, - ACTIONS(2226), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2222), 20, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [8521] = 6, + ACTIONS(2341), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2343), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [11972] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(924), 3, + STATE(979), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2236), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2234), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [8589] = 6, + ACTIONS(2345), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2347), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [12043] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(925), 3, + STATE(980), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2240), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2238), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [8657] = 6, + ACTIONS(2349), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2351), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [12114] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(926), 3, + STATE(981), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2244), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2242), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [8725] = 6, + ACTIONS(2353), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2355), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [12185] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(927), 3, + STATE(982), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2248), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2246), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [8793] = 6, + ACTIONS(2357), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2359), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [12256] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(928), 3, + STATE(983), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2252), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2250), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [8861] = 11, + ACTIONS(2361), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2363), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [12327] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2258), 1, - anon_sym_LBRACK, - ACTIONS(2260), 1, - anon_sym_STAR, - ACTIONS(2262), 1, - anon_sym_LBRACK_LT, - STATE(930), 1, - aux_sym_type_repeat1, - STATE(949), 1, - sym_type_suffix, - STATE(929), 3, + STATE(984), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2256), 19, - sym_at_ident, + ACTIONS(2365), 12, + ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_BANG, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, anon_sym_DOLLARvatype, + ACTIONS(2367), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [12398] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(985), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2369), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, anon_sym_DOLLARevaltype, - ACTIONS(2254), 25, + anon_sym_DOLLARvatype, + ACTIONS(2371), 40, sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -125365,48 +131668,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [8939] = 10, + [12469] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2268), 1, - anon_sym_LBRACK, - ACTIONS(2271), 1, - anon_sym_STAR, - ACTIONS(2274), 1, - anon_sym_LBRACK_LT, - STATE(949), 1, - sym_type_suffix, - STATE(930), 4, + STATE(986), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_type_repeat1, - ACTIONS(2266), 19, - sym_at_ident, + ACTIONS(2373), 12, + ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_BANG, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2264), 25, + anon_sym_DOLLARvatype, + ACTIONS(2375), 40, sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -125431,22 +131733,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [9015] = 6, + [12540] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(931), 3, + STATE(987), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2279), 17, + ACTIONS(2377), 20, + anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, - anon_sym_DOT, + anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, @@ -125454,13 +131757,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2277), 32, + anon_sym_PIPE_PIPE, + ACTIONS(2379), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, @@ -125471,7 +131776,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -125484,58 +131788,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [9083] = 11, + [12611] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2258), 1, - anon_sym_LBRACK, - ACTIONS(2260), 1, - anon_sym_STAR, - ACTIONS(2262), 1, - anon_sym_LBRACK_LT, - STATE(929), 1, - aux_sym_type_repeat1, - STATE(949), 1, - sym_type_suffix, - STATE(932), 3, + STATE(988), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2283), 19, - sym_at_ident, + ACTIONS(2381), 12, + ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_BANG, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2281), 25, + anon_sym_DOLLARvatype, + ACTIONS(2383), 40, sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -125560,731 +131863,632 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [9161] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(933), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2287), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2285), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [9229] = 9, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK, - ACTIONS(2228), 2, - anon_sym_LPAREN, - anon_sym_BANG, - STATE(934), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2224), 5, - anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(2289), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2230), 27, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [9303] = 6, + [12682] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(935), 3, + STATE(989), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2293), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2291), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [9371] = 6, + ACTIONS(2385), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2387), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [12753] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(936), 3, + STATE(990), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2297), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2295), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [9439] = 6, + ACTIONS(2389), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2391), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [12824] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(937), 3, + STATE(991), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2301), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2299), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [9507] = 6, + ACTIONS(2393), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2395), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [12895] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(938), 3, + STATE(992), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2305), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2303), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [9575] = 6, + ACTIONS(2397), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2399), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [12966] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(939), 3, + STATE(993), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2309), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2307), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [9643] = 6, + ACTIONS(2401), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2403), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [13037] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(940), 3, + STATE(994), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2313), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2311), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [9711] = 6, + ACTIONS(2405), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2407), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [13108] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(941), 3, + STATE(995), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2141), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2139), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [9779] = 6, + ACTIONS(2409), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2411), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [13179] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(942), 3, + STATE(996), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2162), 17, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2160), 32, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - anon_sym_GT_RBRACK, - [9847] = 10, + ACTIONS(1623), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(1621), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [13250] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK, - ACTIONS(2228), 2, - anon_sym_LPAREN, - anon_sym_BANG, - ACTIONS(2230), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(943), 3, + STATE(997), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2224), 5, - anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(2226), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2222), 24, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [9922] = 6, + ACTIONS(1627), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(1625), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [13321] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(944), 3, + STATE(998), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2317), 21, - sym_at_ident, + ACTIONS(1631), 12, + ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - anon_sym_LBRACK_LT, - ACTIONS(2315), 27, + anon_sym_DOLLARvatype, + ACTIONS(1629), 40, sym_ident, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -126309,42 +132513,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [9989] = 6, + [13392] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(945), 3, + STATE(999), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2321), 21, - sym_at_ident, + ACTIONS(2413), 12, + ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - anon_sym_LBRACK_LT, - ACTIONS(2319), 26, + anon_sym_DOLLARvatype, + ACTIONS(2415), 40, sym_ident, - anon_sym_LBRACK, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -126369,42 +132578,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [10055] = 6, + [13463] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(946), 3, + STATE(1000), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2325), 21, - sym_at_ident, - sym_type_ident, - sym_ct_type_ident, - sym_at_type_ident, + ACTIONS(2417), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2419), 32, anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [13534] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1001), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2421), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - anon_sym_LBRACK_LT, - ACTIONS(2323), 26, + anon_sym_DOLLARvatype, + ACTIONS(2423), 40, sym_ident, - anon_sym_LBRACK, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -126429,42 +132708,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [10121] = 6, + [13605] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(947), 3, + STATE(1002), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2329), 21, - sym_at_ident, + ACTIONS(2425), 12, + ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - anon_sym_LBRACK_LT, - ACTIONS(2327), 26, + anon_sym_DOLLARvatype, + ACTIONS(2427), 40, sym_ident, - anon_sym_LBRACK, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -126489,42 +132773,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [10187] = 6, + [13676] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(948), 3, + STATE(1003), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2333), 21, - sym_at_ident, + ACTIONS(2429), 12, + ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - anon_sym_LBRACK_LT, - ACTIONS(2331), 26, + anon_sym_DOLLARvatype, + ACTIONS(2431), 40, sym_ident, - anon_sym_LBRACK, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -126549,42 +132838,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [10253] = 6, + [13747] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(949), 3, + STATE(1004), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2337), 21, - sym_at_ident, + ACTIONS(2433), 12, + ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - anon_sym_LBRACK_LT, - ACTIONS(2335), 26, + anon_sym_DOLLARvatype, + ACTIONS(2435), 40, sym_ident, - anon_sym_LBRACK, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -126609,59 +132903,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [10319] = 23, + [13818] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(11), 1, - sym_ident, - ACTIONS(13), 1, + STATE(1005), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2437), 12, + ts_builtin_sym_end, sym_type_ident, - ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(17), 1, - anon_sym_tlocal, - ACTIONS(25), 1, - anon_sym_fn, - ACTIONS(31), 1, - anon_sym_const, - ACTIONS(57), 1, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1030), 1, - sym_global_storage, - STATE(1100), 1, - sym_type, - STATE(1106), 1, - sym_optional_type, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(2115), 1, - sym__type_or_optional_type, - ACTIONS(59), 3, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(950), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - STATE(829), 4, - sym_const_declaration, - sym_global_declaration, - sym_func_declaration, - sym_func_definition, - ACTIONS(45), 24, + anon_sym_DOLLARvatype, + ACTIONS(2439), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -126686,42 +132968,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [10419] = 6, + [13889] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(951), 3, + STATE(1006), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2341), 21, - sym_at_ident, + ACTIONS(2441), 12, + ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - anon_sym_LBRACK_LT, - ACTIONS(2339), 26, + anon_sym_DOLLARvatype, + ACTIONS(2443), 40, sym_ident, - anon_sym_LBRACK, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -126746,42 +133033,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [10485] = 6, + [13960] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(952), 3, + STATE(1007), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2345), 21, - sym_at_ident, + ACTIONS(1739), 12, + ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - anon_sym_LBRACK_LT, - ACTIONS(2343), 26, + anon_sym_DOLLARvatype, + ACTIONS(2445), 40, sym_ident, - anon_sym_LBRACK, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -126806,42 +133098,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [10551] = 6, + [14031] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(953), 3, + STATE(1008), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2182), 21, - sym_at_ident, + ACTIONS(2447), 12, + ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - anon_sym_LBRACK_LT, - ACTIONS(2180), 26, + anon_sym_DOLLARvatype, + ACTIONS(2449), 40, sym_ident, - anon_sym_LBRACK, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -126866,42 +133163,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [10617] = 6, + [14102] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(954), 3, + STATE(1009), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2238), 21, - sym_at_ident, + ACTIONS(2451), 12, + ts_builtin_sym_end, sym_type_ident, sym_ct_type_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - anon_sym_LBRACK_LT, - ACTIONS(2240), 26, + anon_sym_DOLLARvatype, + ACTIONS(2453), 40, sym_ident, - anon_sym_LBRACK, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -126926,248 +133228,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [10683] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2347), 1, - anon_sym_LPAREN_LT, - STATE(976), 1, - sym_generic_arguments, - STATE(955), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2180), 16, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2182), 28, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [10752] = 11, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2349), 1, - anon_sym_LBRACK, - ACTIONS(2351), 1, - anon_sym_STAR, - ACTIONS(2353), 1, - anon_sym_LBRACK_LT, - STATE(959), 1, - aux_sym_type_repeat1, - STATE(978), 1, - sym_type_suffix, - STATE(956), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2281), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2283), 27, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [10827] = 10, + [14173] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2355), 1, - anon_sym_LBRACK, - ACTIONS(2358), 1, - anon_sym_STAR, - ACTIONS(2361), 1, - anon_sym_LBRACK_LT, - STATE(978), 1, - sym_type_suffix, - STATE(957), 4, + STATE(1010), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_type_repeat1, - ACTIONS(2264), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2266), 27, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [10900] = 25, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, + ACTIONS(2455), 12, + ts_builtin_sym_end, sym_type_ident, - ACTIONS(175), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2364), 1, - sym_ident, - ACTIONS(2366), 1, - sym_ct_ident, - ACTIONS(2368), 1, - sym_hash_ident, - ACTIONS(2370), 1, sym_ct_type_ident, - ACTIONS(2372), 1, - anon_sym_RPAREN, - ACTIONS(2374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2376), 1, - anon_sym_AMP, - ACTIONS(2378), 1, - anon_sym_SEMI, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1195), 1, - sym_type, - STATE(1308), 1, - sym__parameter, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 1, - aux_sym__module_path, - STATE(1551), 1, - sym_parameter, - STATE(1815), 1, - sym__parameters, - ACTIONS(177), 3, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(958), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, + anon_sym_DOLLARvatype, + ACTIONS(2457), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -127192,52 +133293,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [11003] = 11, + [14244] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2349), 1, - anon_sym_LBRACK, - ACTIONS(2351), 1, - anon_sym_STAR, - ACTIONS(2353), 1, - anon_sym_LBRACK_LT, - STATE(957), 1, - aux_sym_type_repeat1, - STATE(978), 1, - sym_type_suffix, - STATE(959), 3, + STATE(1011), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2254), 14, + ACTIONS(2459), 20, + anon_sym_DOT, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_AMP, - anon_sym_DOT, + anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_STAR, anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2256), 27, + anon_sym_PIPE_PIPE, + ACTIONS(2461), 32, anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127250,139 +133348,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [11078] = 23, + [14315] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(175), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2364), 1, - sym_ident, - ACTIONS(2366), 1, - sym_ct_ident, - ACTIONS(2368), 1, - sym_hash_ident, - ACTIONS(2370), 1, - sym_ct_type_ident, - ACTIONS(2374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2376), 1, - anon_sym_AMP, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1195), 1, - sym_type, - STATE(1308), 1, - sym__parameter, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 1, - aux_sym__module_path, - STATE(1671), 1, - sym_parameter, - ACTIONS(2380), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(177), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(960), 3, + STATE(1012), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [11176] = 24, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, + ACTIONS(2463), 12, + ts_builtin_sym_end, sym_type_ident, - ACTIONS(175), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2364), 1, - sym_ident, - ACTIONS(2366), 1, - sym_ct_ident, - ACTIONS(2368), 1, - sym_hash_ident, - ACTIONS(2370), 1, sym_ct_type_ident, - ACTIONS(2374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2376), 1, - anon_sym_AMP, - ACTIONS(2382), 1, - anon_sym_RPAREN, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1195), 1, - sym_type, - STATE(1396), 1, - sym__parameter, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 1, - aux_sym__module_path, - STATE(1641), 1, - sym_parameter, - STATE(2024), 1, - sym__parameters, - ACTIONS(177), 3, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(961), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, + anon_sym_DOLLARvatype, + ACTIONS(2465), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -127407,56 +133423,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [11276] = 22, + [14386] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2384), 1, - sym_ident, - ACTIONS(2387), 1, + STATE(1013), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2467), 12, + ts_builtin_sym_end, sym_type_ident, - ACTIONS(2390), 1, sym_ct_type_ident, - ACTIONS(2393), 1, - anon_sym_RBRACE, - ACTIONS(2395), 1, - anon_sym_inline, - ACTIONS(2401), 1, - anon_sym_bitstruct, - ACTIONS(2407), 1, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1095), 1, - sym_struct_member_declaration, - STATE(1246), 1, - sym__struct_or_union, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1763), 1, - sym_type, - ACTIONS(2398), 2, - anon_sym_struct, - anon_sym_union, - ACTIONS(2410), 3, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(962), 4, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - aux_sym_struct_body_repeat1, - ACTIONS(2404), 24, + anon_sym_DOLLARvatype, + ACTIONS(2469), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -127481,58 +133488,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [11372] = 24, + [14457] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, + STATE(1014), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2471), 12, + ts_builtin_sym_end, sym_type_ident, - ACTIONS(175), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2364), 1, - sym_ident, - ACTIONS(2366), 1, - sym_ct_ident, - ACTIONS(2368), 1, - sym_hash_ident, - ACTIONS(2370), 1, sym_ct_type_ident, - ACTIONS(2374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2376), 1, - anon_sym_AMP, - ACTIONS(2413), 1, - anon_sym_RPAREN, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1195), 1, - sym_type, - STATE(1396), 1, - sym__parameter, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 1, - aux_sym__module_path, - STATE(1641), 1, - sym_parameter, - STATE(2065), 1, - sym__parameters, - ACTIONS(177), 3, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(963), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, + anon_sym_DOLLARvatype, + ACTIONS(2473), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -127557,58 +133553,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [11472] = 24, + [14528] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(175), 1, - anon_sym_DOLLARtypeof, - ACTIONS(1219), 1, + STATE(1015), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2475), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2477), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, anon_sym_RPAREN, - ACTIONS(2364), 1, - sym_ident, - ACTIONS(2366), 1, - sym_ct_ident, - ACTIONS(2368), 1, - sym_hash_ident, - ACTIONS(2370), 1, - sym_ct_type_ident, - ACTIONS(2374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2376), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [14599] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1016), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2479), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, anon_sym_AMP, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1195), 1, - sym_type, - STATE(1396), 1, - sym__parameter, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 1, - aux_sym__module_path, - STATE(1641), 1, - sym_parameter, - STATE(2090), 1, - sym__parameters, - ACTIONS(177), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(964), 3, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2481), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [14670] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1017), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, + ACTIONS(2483), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2485), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -127633,57 +133748,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [11572] = 23, + [14741] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + STATE(1018), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2487), 12, + ts_builtin_sym_end, sym_type_ident, - ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(57), 1, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2489), 40, sym_ident, - ACTIONS(2417), 1, - anon_sym_RBRACE, - ACTIONS(2419), 1, - anon_sym_inline, - ACTIONS(2421), 1, - anon_sym_bitstruct, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(966), 1, - aux_sym_struct_body_repeat1, - STATE(1095), 1, - sym_struct_member_declaration, - STATE(1246), 1, - sym__struct_or_union, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1763), 1, - sym_type, - ACTIONS(33), 2, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, anon_sym_struct, anon_sym_union, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(965), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -127708,57 +133813,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [11670] = 23, + [14812] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + STATE(1019), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2491), 12, + ts_builtin_sym_end, sym_type_ident, - ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(57), 1, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2493), 40, sym_ident, - ACTIONS(2419), 1, - anon_sym_inline, - ACTIONS(2421), 1, - anon_sym_bitstruct, - ACTIONS(2423), 1, - anon_sym_RBRACE, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(962), 1, - aux_sym_struct_body_repeat1, - STATE(1095), 1, - sym_struct_member_declaration, - STATE(1246), 1, - sym__struct_or_union, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1763), 1, - sym_type, - ACTIONS(33), 2, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, anon_sym_struct, anon_sym_union, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(966), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -127783,45 +133878,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [11768] = 6, + [14883] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(967), 3, + STATE(1020), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2315), 16, + ACTIONS(2495), 20, + anon_sym_DOT, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2497), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [14954] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1021), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2499), 20, anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_STAR, anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2317), 29, + anon_sym_PIPE_PIPE, + ACTIONS(2501), 32, anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_GT_RPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -127834,64 +133998,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [15025] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1022), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1993), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, + ACTIONS(1995), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, anon_sym_GT_RBRACK, - [11832] = 23, + [15096] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + STATE(1023), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2503), 12, + ts_builtin_sym_end, sym_type_ident, - ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(57), 1, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2505), 40, sym_ident, - ACTIONS(2419), 1, - anon_sym_inline, - ACTIONS(2421), 1, - anon_sym_bitstruct, - ACTIONS(2425), 1, - anon_sym_RBRACE, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(969), 1, - aux_sym_struct_body_repeat1, - STATE(1095), 1, - sym_struct_member_declaration, - STATE(1246), 1, - sym__struct_or_union, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1763), 1, - sym_type, - ACTIONS(33), 2, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, anon_sym_struct, anon_sym_union, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(968), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -127916,57 +134138,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [11930] = 23, + [15167] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + STATE(1024), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2507), 12, + ts_builtin_sym_end, sym_type_ident, - ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(57), 1, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2509), 40, sym_ident, - ACTIONS(2419), 1, - anon_sym_inline, - ACTIONS(2421), 1, - anon_sym_bitstruct, - ACTIONS(2427), 1, - anon_sym_RBRACE, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(962), 1, - aux_sym_struct_body_repeat1, - STATE(1095), 1, - sym_struct_member_declaration, - STATE(1246), 1, - sym__struct_or_union, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1763), 1, - sym_type, - ACTIONS(33), 2, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, anon_sym_struct, anon_sym_union, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(969), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -127991,58 +134203,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [12028] = 24, + [15238] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, + STATE(1025), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2511), 12, + ts_builtin_sym_end, sym_type_ident, - ACTIONS(175), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2364), 1, - sym_ident, - ACTIONS(2366), 1, - sym_ct_ident, - ACTIONS(2368), 1, - sym_hash_ident, - ACTIONS(2370), 1, sym_ct_type_ident, - ACTIONS(2374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2376), 1, - anon_sym_AMP, - ACTIONS(2429), 1, - anon_sym_RPAREN, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1195), 1, - sym_type, - STATE(1396), 1, - sym__parameter, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 1, - aux_sym__module_path, - STATE(1641), 1, - sym_parameter, - STATE(1924), 1, - sym__parameters, - ACTIONS(177), 3, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(970), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, + anon_sym_DOLLARvatype, + ACTIONS(2513), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -128067,133 +134268,242 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [12128] = 24, + [15309] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(175), 1, - anon_sym_DOLLARtypeof, - ACTIONS(1215), 1, - anon_sym_RPAREN, - ACTIONS(2364), 1, - sym_ident, - ACTIONS(2366), 1, - sym_ct_ident, - ACTIONS(2368), 1, - sym_hash_ident, - ACTIONS(2370), 1, - sym_ct_type_ident, - ACTIONS(2374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2376), 1, + STATE(1026), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2515), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, anon_sym_AMP, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1195), 1, - sym_type, - STATE(1396), 1, - sym__parameter, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 1, - aux_sym__module_path, - STATE(1641), 1, - sym_parameter, - STATE(2190), 1, - sym__parameters, - ACTIONS(177), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(971), 3, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2517), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [15380] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1027), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [12228] = 23, + ACTIONS(2519), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2521), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [15451] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(175), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2364), 1, - sym_ident, - ACTIONS(2366), 1, - sym_ct_ident, - ACTIONS(2368), 1, - sym_hash_ident, - ACTIONS(2370), 1, - sym_ct_type_ident, - ACTIONS(2374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2376), 1, + STATE(1028), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2081), 20, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN, anon_sym_AMP, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1195), 1, - sym_type, - STATE(1308), 1, - sym__parameter, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 1, - aux_sym__module_path, - STATE(1671), 1, - sym_parameter, - ACTIONS(2431), 2, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2083), 32, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_SEMI, - ACTIONS(177), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(972), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_DOT_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + anon_sym_GT_RBRACK, + [15522] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1029), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, + ACTIONS(2523), 12, + ts_builtin_sym_end, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARassert, + anon_sym_DOLLARerror, + anon_sym_DOLLARinclude, + anon_sym_DOLLARexec, + anon_sym_DOLLARecho, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2525), 40, + sym_ident, + anon_sym_tlocal, + anon_sym_extern, + anon_sym_module, + anon_sym_import, + anon_sym_fn, + anon_sym_def, + anon_sym_distinct, + anon_sym_const, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_fault, + anon_sym_enum, + anon_sym_interface, + anon_sym_macro, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -128218,44 +134528,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [12326] = 6, + [15593] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(973), 3, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1030), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2180), 16, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(2527), 4, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [15734] = 42, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1840), 1, anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2182), 28, - anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1031), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2529), 4, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [15875] = 44, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2533), 1, + anon_sym_COMMA, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1613), 1, + aux_sym_assert_stmt_repeat1, + ACTIONS(2535), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1032), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128266,67 +134827,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [12389] = 16, + [16020] = 44, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(91), 1, - anon_sym_LBRACK, - ACTIONS(2232), 1, - anon_sym_QMARK, - ACTIONS(2433), 1, - anon_sym_RPAREN, - ACTIONS(2435), 1, - anon_sym_DOT, - STATE(1376), 1, - aux_sym_param_path_repeat1, - STATE(1545), 1, - sym_param_path_element, - STATE(2126), 1, - sym_param_path, - ACTIONS(2228), 2, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, anon_sym_BANG, - ACTIONS(2230), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(974), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2224), 4, - anon_sym_LPAREN_LT, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(2226), 13, - anon_sym_EQ, + ACTIONS(1870), 1, anon_sym_AMP, + ACTIONS(1872), 1, anon_sym_PLUS, + ACTIONS(1874), 1, anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2222), 16, - anon_sym_AMP_AMP, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2533), 1, + anon_sym_COMMA, + ACTIONS(2537), 1, + anon_sym_RPAREN, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1726), 1, + aux_sym_assert_stmt_repeat1, + STATE(1033), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128337,123 +134927,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [12472] = 23, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(175), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2364), 1, - sym_ident, - ACTIONS(2366), 1, - sym_ct_ident, - ACTIONS(2368), 1, - sym_hash_ident, - ACTIONS(2370), 1, - sym_ct_type_ident, - ACTIONS(2374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2376), 1, - anon_sym_AMP, - ACTIONS(2380), 1, - anon_sym_RPAREN, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1195), 1, - sym_type, - STATE(1396), 1, - sym__parameter, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 1, - aux_sym__module_path, - STATE(1671), 1, - sym_parameter, - ACTIONS(177), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(975), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [12569] = 6, + [16164] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(976), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2339), 16, - anon_sym_EQ, - anon_sym_AMP, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2341), 28, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + ACTIONS(2539), 3, anon_sym_COMMA, - anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(1034), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128464,53 +135025,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [12632] = 6, + [16304] = 44, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(977), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2331), 16, - anon_sym_EQ, - anon_sym_AMP, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2333), 28, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2541), 1, anon_sym_COMMA, + ACTIONS(2543), 1, anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1711), 1, + aux_sym__generic_arg_list_repeat1, + STATE(1035), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128521,53 +135125,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [12695] = 6, + [16448] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(978), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2335), 16, - anon_sym_EQ, - anon_sym_AMP, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2337), 28, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + ACTIONS(2545), 3, anon_sym_COMMA, - anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(1036), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128578,53 +135223,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [12758] = 6, + [16588] = 44, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(979), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2319), 16, - anon_sym_EQ, - anon_sym_AMP, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2321), 28, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2533), 1, anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(2547), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1619), 1, + aux_sym_assert_stmt_repeat1, + STATE(1037), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128635,201 +135323,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [12821] = 23, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(175), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2364), 1, - sym_ident, - ACTIONS(2366), 1, - sym_ct_ident, - ACTIONS(2368), 1, - sym_hash_ident, - ACTIONS(2370), 1, - sym_ct_type_ident, - ACTIONS(2374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2376), 1, - anon_sym_AMP, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1195), 1, - sym_type, - STATE(1396), 1, - sym__parameter, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 1, - aux_sym__module_path, - STATE(1641), 1, - sym_parameter, - STATE(2034), 1, - sym__parameters, - ACTIONS(177), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(980), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [12918] = 23, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(175), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2364), 1, - sym_ident, - ACTIONS(2366), 1, - sym_ct_ident, - ACTIONS(2368), 1, - sym_hash_ident, - ACTIONS(2370), 1, - sym_ct_type_ident, - ACTIONS(2374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2376), 1, - anon_sym_AMP, - ACTIONS(2431), 1, - anon_sym_RPAREN, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1195), 1, - sym_type, - STATE(1396), 1, - sym__parameter, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 1, - aux_sym__module_path, - STATE(1671), 1, - sym_parameter, - ACTIONS(177), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(981), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [13015] = 6, + [16732] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(982), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2240), 16, - anon_sym_EQ, - anon_sym_AMP, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2238), 28, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + ACTIONS(2549), 3, anon_sym_COMMA, - anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(1038), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128840,53 +135421,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [13078] = 6, + [16872] = 44, ACTIONS(3), 1, aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(983), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2327), 16, - anon_sym_EQ, - anon_sym_AMP, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2329), 28, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2533), 1, anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(2551), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1687), 1, + aux_sym_assert_stmt_repeat1, + STATE(1039), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128897,53 +135521,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [13141] = 6, + [17016] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(984), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2323), 16, - anon_sym_EQ, - anon_sym_AMP, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2325), 28, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + ACTIONS(2553), 3, anon_sym_COMMA, - anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(1040), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -128954,53 +135619,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [13204] = 6, + [17156] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(985), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2343), 16, - anon_sym_EQ, - anon_sym_AMP, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2345), 28, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + ACTIONS(2555), 3, anon_sym_COMMA, - anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(1041), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129011,196 +135717,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LT, - anon_sym_GT_RBRACK, - [13267] = 22, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(175), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2364), 1, - sym_ident, - ACTIONS(2366), 1, - sym_ct_ident, - ACTIONS(2368), 1, - sym_hash_ident, - ACTIONS(2370), 1, - sym_ct_type_ident, - ACTIONS(2374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2376), 1, - anon_sym_AMP, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1195), 1, - sym_type, - STATE(1396), 1, - sym__parameter, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 1, - aux_sym__module_path, - STATE(1671), 1, - sym_parameter, - ACTIONS(177), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(986), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [13361] = 21, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2437), 1, - sym_ident, - ACTIONS(2439), 1, - sym_at_ident, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1040), 1, - sym__type_or_optional_type, - STATE(1106), 1, - sym_optional_type, - STATE(1110), 1, - sym_type, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1963), 1, - sym__func_macro_name, - STATE(1918), 2, - sym_func_header, - sym_macro_header, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(987), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [13453] = 8, + [17296] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2158), 1, - anon_sym_COLON_COLON, - ACTIONS(2441), 1, - anon_sym_EQ, - STATE(988), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2162), 15, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2160), 26, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + ACTIONS(2557), 3, anon_sym_COMMA, - anon_sym_LPAREN_LT, anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, + anon_sym_SEMI, + STATE(1042), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129211,62 +135815,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - [13519] = 11, + [17436] = 44, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK, - ACTIONS(2228), 2, - anon_sym_LPAREN, - anon_sym_BANG, - ACTIONS(2230), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2443), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(989), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2224), 5, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(2226), 13, - anon_sym_EQ, + ACTIONS(1870), 1, anon_sym_AMP, + ACTIONS(1872), 1, anon_sym_PLUS, + ACTIONS(1874), 1, anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2222), 17, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, anon_sym_DOT, - anon_sym_AMP_AMP, + ACTIONS(2533), 1, + anon_sym_COMMA, + ACTIONS(2559), 1, + anon_sym_RPAREN, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1708), 1, + aux_sym_assert_stmt_repeat1, + STATE(1043), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129277,121 +135915,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [13591] = 22, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(175), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2364), 1, - sym_ident, - ACTIONS(2366), 1, - sym_ct_ident, - ACTIONS(2368), 1, - sym_hash_ident, - ACTIONS(2370), 1, - sym_ct_type_ident, - ACTIONS(2374), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2376), 1, - anon_sym_AMP, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1195), 1, - sym_type, - STATE(1308), 1, - sym__parameter, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 1, - aux_sym__module_path, - STATE(1671), 1, - sym_parameter, - ACTIONS(177), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(990), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [13685] = 8, + [17580] = 44, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2158), 1, - anon_sym_COLON_COLON, - ACTIONS(2445), 1, - anon_sym_EQ, - STATE(991), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2162), 15, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2160), 26, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_SEMI, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, anon_sym_DOT, - anon_sym_AMP_AMP, + ACTIONS(2533), 1, + anon_sym_COMMA, + ACTIONS(2561), 1, + anon_sym_RPAREN, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1718), 1, + aux_sym_assert_stmt_repeat1, + STATE(1044), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129402,61 +136015,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - [13751] = 10, + [17724] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK, - ACTIONS(2228), 2, - anon_sym_LPAREN, - anon_sym_BANG, - STATE(992), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2224), 5, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(2230), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2226), 13, - anon_sym_EQ, + ACTIONS(1870), 1, anon_sym_AMP, + ACTIONS(1872), 1, anon_sym_PLUS, + ACTIONS(1874), 1, anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2222), 17, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, anon_sym_DOT, - anon_sym_AMP_AMP, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + ACTIONS(2563), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1045), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129467,49 +136113,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [13821] = 7, + [17864] = 44, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK, - STATE(993), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2289), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2230), 27, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2533), 1, anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(2565), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1733), 1, + aux_sym_assert_stmt_repeat1, + STATE(1046), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129520,66 +136213,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [13884] = 16, + [18008] = 44, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2453), 1, - anon_sym_DOT, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2449), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, + ACTIONS(1856), 1, anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(994), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2463), 4, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, anon_sym_EQ_EQ, + ACTIONS(1886), 1, anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, anon_sym_GT_EQ, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(2447), 20, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2533), 1, anon_sym_COMMA, + ACTIONS(2567), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1738), 1, + aux_sym_assert_stmt_repeat1, + STATE(1047), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129590,46 +136313,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_GT_RBRACK, - [13965] = 6, + [18152] = 43, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(995), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2471), 15, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2469), 27, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2571), 1, anon_sym_SEMI, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + ACTIONS(2569), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(1048), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129640,51 +136412,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [14026] = 6, + [18294] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(996), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2475), 15, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2473), 27, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + ACTIONS(2573), 2, anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(1049), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129695,32 +136509,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [14087] = 8, + [18433] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2158), 1, + ACTIONS(2039), 1, anon_sym_COLON_COLON, - ACTIONS(2477), 1, - anon_sym_EQ, - STATE(997), 3, + ACTIONS(2575), 1, + anon_sym_COLON, + STATE(1050), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2162), 15, + ACTIONS(2041), 19, + anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, + anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, @@ -129728,18 +136536,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2160), 25, + anon_sym_PIPE_PIPE, + ACTIONS(2043), 27, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_LPAREN_LT, anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129752,51 +136563,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, - [14152] = 8, + [18504] = 43, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2158), 1, - anon_sym_COLON_COLON, - ACTIONS(2479), 1, - anon_sym_EQ, - STATE(998), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2162), 15, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2160), 25, - anon_sym_LPAREN_LT, - anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_AMP_AMP, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2577), 1, + anon_sym_COLON, + ACTIONS(2579), 1, + anon_sym_DOT_DOT, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1051), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129807,65 +136670,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_BANG_BANG, - [14217] = 14, + [18645] = 43, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2453), 1, + ACTIONS(1840), 1, anon_sym_DOT, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2483), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, + ACTIONS(1856), 1, anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(999), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2463), 4, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, anon_sym_EQ_EQ, + ACTIONS(1886), 1, anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, anon_sym_GT_EQ, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(2481), 22, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2581), 1, anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(2583), 1, anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1052), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129876,60 +136768,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [14294] = 15, + [18786] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2453), 1, - anon_sym_DOT, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2483), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, + ACTIONS(1856), 1, anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(1000), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2463), 4, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, anon_sym_EQ_EQ, + ACTIONS(1886), 1, anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, anon_sym_GT_EQ, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(2481), 21, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + ACTIONS(2585), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, + STATE(1053), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -129940,67 +136865,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [14373] = 18, + [18925] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2453), 1, + ACTIONS(2587), 1, + anon_sym_LBRACK, + ACTIONS(2590), 1, + anon_sym_STAR, + ACTIONS(2593), 1, + anon_sym_LBRACK_LT, + STATE(1126), 1, + sym_type_suffix, + STATE(1054), 4, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + aux_sym_type_repeat1, + ACTIONS(1924), 18, + sym_at_ident, + sym_type_ident, + sym_ct_type_ident, + sym_at_type_ident, anon_sym_DOT, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2471), 1, - anon_sym_QMARK, - ACTIONS(2485), 1, - anon_sym_EQ, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_BANG, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(1922), 25, + sym_ident, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [19000] = 42, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, + ACTIONS(1856), 1, anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(1001), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2463), 4, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, anon_sym_EQ_EQ, + ACTIONS(1886), 1, anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, anon_sym_GT_EQ, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(2469), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - anon_sym_GT_RBRACK, - ACTIONS(2487), 10, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + ACTIONS(2596), 2, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + STATE(1055), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130011,45 +137027,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [14458] = 8, + [19139] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2453), 1, - anon_sym_DOT, - STATE(359), 1, - sym__assignment_op, - STATE(1002), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2483), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2481), 26, - anon_sym_COMMA, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2600), 1, + anon_sym_AMP_AMP, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + ACTIONS(2598), 2, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(1056), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130060,51 +137124,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [14523] = 6, + [19278] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1003), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2226), 15, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2222), 27, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + ACTIONS(2569), 2, anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(1057), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130115,51 +137221,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [14584] = 6, + [19417] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1004), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2289), 15, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2230), 27, - anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2604), 1, + anon_sym_AMP_AMP, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + ACTIONS(2602), 2, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(1058), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130170,55 +137318,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [14645] = 7, + [19556] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1005), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2230), 7, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_GT_RBRACK, - ACTIONS(2226), 15, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2222), 20, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2608), 1, anon_sym_AMP_AMP, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + ACTIONS(2606), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1059), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130229,50 +137415,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [14708] = 8, + [19695] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2453), 1, - anon_sym_DOT, - STATE(359), 1, - sym__assignment_op, - STATE(1006), 3, + STATE(1060), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2491), 14, + ACTIONS(1993), 20, + anon_sym_DOT, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_AMP, + anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_STAR, anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2489), 26, + anon_sym_PIPE_PIPE, + ACTIONS(1995), 28, anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130285,110 +137467,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [14773] = 10, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + [19762] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2453), 1, - anon_sym_DOT, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1007), 3, + STATE(1061), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2483), 9, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2481), 26, + ACTIONS(2610), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_COLON, anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [14842] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2453), 1, + ACTIONS(2133), 20, anon_sym_DOT, - STATE(359), 1, - sym__assignment_op, - STATE(1008), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2495), 14, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_AMP, + anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_STAR, anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2493), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2135), 23, + anon_sym_LPAREN_LT, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130401,29 +137529,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [14907] = 7, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + [19831] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2497), 1, - anon_sym_COLON, - STATE(1009), 3, + STATE(1062), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2162), 16, + ACTIONS(2612), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(2499), 20, + anon_sym_DOT, anon_sym_EQ, anon_sym_LPAREN, anon_sym_AMP, + anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, @@ -130431,18 +137568,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2160), 25, + anon_sym_PIPE_PIPE, + ACTIONS(2501), 23, anon_sym_LPAREN_LT, anon_sym_LBRACK, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_AMP_AMP, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130455,116 +137591,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, anon_sym_BANG_BANG, - [14970] = 11, + [19900] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2453), 1, - anon_sym_DOT, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1010), 3, + ACTIONS(2614), 1, + anon_sym_LPAREN_LT, + STATE(1125), 1, + sym_generic_arguments, + STATE(1063), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2483), 6, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2481), 26, + ACTIONS(1989), 19, + sym_at_ident, + sym_type_ident, + sym_ct_type_ident, + sym_at_type_ident, + anon_sym_DOT, anon_sym_COMMA, + anon_sym_GT_RPAREN, anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_AMP, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [15041] = 8, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + anon_sym_LBRACK_LT, + ACTIONS(1987), 27, + sym_ident, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [19971] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK, - STATE(1011), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2230), 7, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_GT_RBRACK, - ACTIONS(2226), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2222), 20, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2618), 1, anon_sym_AMP_AMP, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + ACTIONS(2616), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1064), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130575,114 +137760,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [15106] = 11, + [20110] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK, - ACTIONS(2228), 2, - anon_sym_LPAREN, - anon_sym_BANG, - ACTIONS(2230), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2443), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - STATE(1012), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2224), 5, + ACTIONS(1844), 1, anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(2226), 13, - anon_sym_EQ, + ACTIONS(1870), 1, anon_sym_AMP, + ACTIONS(1872), 1, anon_sym_PLUS, + ACTIONS(1874), 1, anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2222), 16, - anon_sym_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, anon_sym_EQ_EQ, + ACTIONS(1886), 1, anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, anon_sym_GT_EQ, + ACTIONS(1892), 1, anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - [15177] = 12, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2453), 1, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, anon_sym_DOT, - STATE(359), 1, + ACTIONS(2620), 1, + anon_sym_SEMI, + STATE(291), 1, sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1013), 3, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1065), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2483), 4, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2481), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130693,54 +137856,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [15250] = 9, + [20248] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2453), 1, - anon_sym_DOT, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2461), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(1014), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2483), 11, - anon_sym_EQ, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, anon_sym_AMP, + ACTIONS(1872), 1, anon_sym_PLUS, + ACTIONS(1874), 1, anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2481), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2622), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1066), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130751,53 +137952,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [15317] = 7, + [20386] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1015), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2501), 15, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2499), 24, - anon_sym_COMMA, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2624), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1067), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130808,56 +138048,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [15379] = 20, + [20524] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + ACTIONS(2626), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, + anon_sym_STAR, + ACTIONS(2630), 1, + anon_sym_BANG, + ACTIONS(2632), 1, + anon_sym_LBRACK_LT, + STATE(1080), 1, + aux_sym_type_repeat1, + STATE(1126), 1, + sym_type_suffix, + STATE(1068), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1966), 16, + sym_at_ident, sym_type_ident, - ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2505), 1, + sym_at_type_ident, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_GT_RPAREN, anon_sym_LPAREN, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1100), 1, - sym_type, - STATE(1106), 1, - sym_optional_type, - STATE(1241), 1, - sym_fn_parameter_list, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1759), 1, - sym__type_or_optional_type, - ACTIONS(59), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1016), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, + anon_sym_DOLLARvatype, + ACTIONS(1964), 25, + sym_ident, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -130882,46 +138114,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [15467] = 8, + [20602] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK, - ACTIONS(2230), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1017), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2226), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2222), 24, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2634), 1, anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1069), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130932,51 +138210,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [15531] = 7, + [20740] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2230), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1018), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2226), 15, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2222), 24, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2636), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1070), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -130987,187 +138306,380 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [15593] = 20, + [20878] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2507), 1, - sym_ident, - ACTIONS(2509), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, anon_sym_AMP, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1100), 1, - sym_type, - STATE(1106), 1, - sym_optional_type, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1854), 1, - sym__type_or_optional_type, - STATE(2161), 1, - sym_foreach_var, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1019), 3, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2638), 1, + anon_sym_RPAREN, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1071), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [15681] = 20, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [21016] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2507), 1, - sym_ident, - ACTIONS(2509), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, anon_sym_AMP, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1100), 1, - sym_type, - STATE(1106), 1, - sym_optional_type, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1853), 1, - sym_foreach_var, - STATE(1854), 1, - sym__type_or_optional_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1020), 3, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2640), 1, + anon_sym_RPAREN, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1072), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [15769] = 7, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [21154] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2503), 2, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - STATE(1021), 3, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2642), 1, + anon_sym_RBRACK, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1073), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2513), 15, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [21292] = 42, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2511), 24, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2644), 1, anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1074), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131178,56 +138690,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - anon_sym_GT_RBRACK, - [15831] = 11, + [21430] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK, - ACTIONS(2228), 2, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, anon_sym_LPAREN, - anon_sym_BANG, - ACTIONS(2230), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2515), 3, - anon_sym_RPAREN, + ACTIONS(1850), 1, anon_sym_LBRACK, - anon_sym_DOT, - STATE(1022), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2224), 4, - anon_sym_LPAREN_LT, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(2226), 13, - anon_sym_EQ, + ACTIONS(1870), 1, anon_sym_AMP, + ACTIONS(1872), 1, anon_sym_PLUS, + ACTIONS(1874), 1, anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2222), 16, - anon_sym_AMP_AMP, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2646), 1, + anon_sym_RBRACK, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1075), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131238,317 +138786,284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [15901] = 18, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2517), 1, - anon_sym_fn, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1275), 1, - sym_typedef_type, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1490), 2, - sym_func_typedef, - sym_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1023), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [15984] = 19, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2519), 1, - anon_sym_RBRACE, - STATE(912), 1, - sym_module_type_ident, - STATE(953), 1, - sym_base_type_name, - STATE(1041), 1, - aux_sym__bitstruct_defs, - STATE(1052), 1, - aux_sym__bitstruct_simple_defs, - STATE(1132), 1, - sym_bitstruct_def, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1966), 1, - sym_base_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1024), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [16069] = 18, + [21568] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2517), 1, - anon_sym_fn, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1272), 1, - sym_typedef_type, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1490), 2, - sym_func_typedef, - sym_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1025), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2648), 1, + anon_sym_GT_RBRACK, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1076), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [16152] = 19, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [21706] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1040), 1, - sym__type_or_optional_type, - STATE(1100), 1, - sym_type, - STATE(1106), 1, - sym_optional_type, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1883), 1, - sym_func_header, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1026), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2650), 1, + anon_sym_SEMI, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1077), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [16237] = 12, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [21844] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK, - ACTIONS(2521), 1, - anon_sym_EQ, - ACTIONS(2228), 2, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, anon_sym_LPAREN, - anon_sym_BANG, - ACTIONS(2230), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2515), 2, + ACTIONS(1850), 1, anon_sym_LBRACK, - anon_sym_DOT, - STATE(1027), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2224), 4, - anon_sym_LPAREN_LT, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, anon_sym_BANG_BANG, - ACTIONS(2226), 12, + ACTIONS(1870), 1, anon_sym_AMP, + ACTIONS(1872), 1, anon_sym_PLUS, + ACTIONS(1874), 1, anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2222), 16, - anon_sym_AMP_AMP, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2652), 1, + anon_sym_SEMI, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1078), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131559,119 +139074,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [16308] = 19, + [21982] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2523), 1, - anon_sym_RBRACE, - STATE(912), 1, - sym_module_type_ident, - STATE(953), 1, - sym_base_type_name, - STATE(1036), 1, - aux_sym__bitstruct_defs, - STATE(1046), 1, - aux_sym__bitstruct_simple_defs, - STATE(1132), 1, - sym_bitstruct_def, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1966), 1, - sym_base_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1028), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2654), 1, + anon_sym_SEMI, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1079), 3, sym_line_comment, sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [16393] = 19, + sym_block_comment, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [22120] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + ACTIONS(2626), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, + anon_sym_STAR, + ACTIONS(2632), 1, + anon_sym_LBRACK_LT, + ACTIONS(2656), 1, + anon_sym_BANG, + STATE(1054), 1, + aux_sym_type_repeat1, + STATE(1126), 1, + sym_type_suffix, + STATE(1080), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1719), 16, + sym_at_ident, sym_type_ident, - ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(57), 1, + sym_at_type_ident, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1040), 1, - sym__type_or_optional_type, - STATE(1100), 1, - sym_type, - STATE(1106), 1, - sym_optional_type, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1805), 1, - sym_func_header, - ACTIONS(59), 3, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1029), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, + anon_sym_DOLLARvatype, + ACTIONS(1717), 25, + sym_ident, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -131696,1123 +139236,1655 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [16478] = 18, + [22198] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2525), 1, - sym_ident, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1100), 1, - sym_type, - STATE(1106), 1, - sym_optional_type, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(2062), 1, - sym__type_or_optional_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1030), 3, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + ACTIONS(2658), 1, + anon_sym_EQ, + STATE(1081), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [16560] = 18, + ACTIONS(2041), 18, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2043), 27, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + [22268] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2527), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2660), 1, anon_sym_RPAREN, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1686), 1, - sym_enum_param_declaration, - STATE(1948), 1, - sym_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1031), 3, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1082), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [16642] = 17, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [22406] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2529), 1, - sym_ident, - ACTIONS(2532), 1, - sym_type_ident, - ACTIONS(2535), 1, - sym_ct_type_ident, - ACTIONS(2538), 1, - anon_sym_RBRACE, - ACTIONS(2543), 1, - anon_sym_DOLLARtypeof, - STATE(912), 1, - sym_module_type_ident, - STATE(953), 1, - sym_base_type_name, - STATE(1132), 1, - sym_bitstruct_def, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(2122), 1, - sym_base_type, - ACTIONS(2546), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1032), 4, + ACTIONS(2662), 1, + anon_sym_COLON, + STATE(1083), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__bitstruct_defs, - ACTIONS(2540), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [16722] = 18, + ACTIONS(2097), 19, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2099), 27, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + [22474] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2370), 1, - sym_ct_type_ident, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2549), 1, - anon_sym_DOLLARtypeof, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1487), 1, - sym__type_or_optional_type, - STATE(1527), 1, - aux_sym__module_path, - STATE(1661), 1, - sym_type, - STATE(1886), 1, - sym_optional_type, - ACTIONS(2551), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1033), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2664), 1, + anon_sym_SEMI, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1084), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [16804] = 18, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [22612] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2370), 1, - sym_ct_type_ident, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2549), 1, - anon_sym_DOLLARtypeof, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1416), 1, - sym__type_or_optional_type, - STATE(1527), 1, - aux_sym__module_path, - STATE(1661), 1, - sym_type, - STATE(1886), 1, - sym_optional_type, - ACTIONS(2551), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1034), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2666), 1, + anon_sym_SEMI, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1085), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [16886] = 18, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [22750] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2370), 1, - sym_ct_type_ident, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2549), 1, - anon_sym_DOLLARtypeof, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1436), 1, - sym__type_or_optional_type, - STATE(1527), 1, - aux_sym__module_path, - STATE(1661), 1, - sym_type, - STATE(1886), 1, - sym_optional_type, - ACTIONS(2551), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1035), 3, + anon_sym_SLASH_STAR, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2668), 1, + anon_sym_SEMI, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1086), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [16968] = 18, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [22888] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2553), 1, - anon_sym_RBRACE, - STATE(912), 1, - sym_module_type_ident, - STATE(953), 1, - sym_base_type_name, - STATE(1032), 1, - aux_sym__bitstruct_defs, - STATE(1132), 1, - sym_bitstruct_def, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(2122), 1, - sym_base_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1036), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2670), 1, + anon_sym_RPAREN, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1087), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [17050] = 18, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [23026] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1100), 1, - sym_type, - STATE(1106), 1, - sym_optional_type, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1782), 1, - sym__type_or_optional_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1037), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2672), 1, + anon_sym_SEMI, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1088), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [17132] = 18, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [23164] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2370), 1, - sym_ct_type_ident, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2549), 1, - anon_sym_DOLLARtypeof, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1410), 1, - sym__type_or_optional_type, - STATE(1527), 1, - aux_sym__module_path, - STATE(1661), 1, - sym_type, - STATE(1886), 1, - sym_optional_type, - ACTIONS(2551), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1038), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2674), 1, + anon_sym_RBRACK, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1089), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [17214] = 18, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [23302] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2370), 1, - sym_ct_type_ident, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2549), 1, - anon_sym_DOLLARtypeof, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1451), 1, - sym__type_or_optional_type, - STATE(1527), 1, - aux_sym__module_path, - STATE(1661), 1, - sym_type, - STATE(1886), 1, - sym_optional_type, - ACTIONS(2551), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1039), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2676), 1, + anon_sym_RBRACK, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1090), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [17296] = 18, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [23440] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2437), 1, - sym_ident, - ACTIONS(2439), 1, - sym_at_ident, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1957), 1, - sym__func_macro_name, - STATE(1958), 1, - sym_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1040), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2678), 1, + anon_sym_COLON, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1091), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [17378] = 18, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [23578] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2555), 1, - anon_sym_RBRACE, - STATE(912), 1, - sym_module_type_ident, - STATE(953), 1, - sym_base_type_name, - STATE(1032), 1, - aux_sym__bitstruct_defs, - STATE(1132), 1, - sym_bitstruct_def, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(2122), 1, - sym_base_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1041), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2680), 1, + anon_sym_SEMI, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1092), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [17460] = 18, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [23716] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2370), 1, - sym_ct_type_ident, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2549), 1, - anon_sym_DOLLARtypeof, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 1, - aux_sym__module_path, - STATE(1541), 1, - sym__type_or_optional_type, - STATE(1661), 1, - sym_type, - STATE(1886), 1, - sym_optional_type, - ACTIONS(2551), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1042), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2682), 1, + anon_sym_RPAREN, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1093), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [17542] = 17, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [23854] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2557), 1, - anon_sym_inline, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(2176), 1, - sym_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1043), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2684), 1, + anon_sym_SEMI, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1094), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [17621] = 17, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [23992] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2559), 1, - anon_sym_inline, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(2147), 1, - sym_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1044), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2686), 1, + anon_sym_SEMI, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1095), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [17700] = 17, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [24130] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2370), 1, - sym_ct_type_ident, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2549), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2561), 1, - sym_const_ident, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 1, - aux_sym__module_path, - STATE(1976), 1, - sym_type, - ACTIONS(2551), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1045), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2688), 1, + anon_sym_SEMI, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1096), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [17779] = 17, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [24268] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2553), 1, - anon_sym_RBRACE, - STATE(912), 1, - sym_module_type_ident, - STATE(953), 1, - sym_base_type_name, - STATE(1051), 1, - aux_sym__bitstruct_simple_defs, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(2125), 1, - sym_base_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1046), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [17858] = 10, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2690), 1, + anon_sym_SEMI, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1097), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [24406] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2563), 1, - anon_sym_DOT, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, - ACTIONS(2567), 3, + ACTIONS(1856), 1, anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(1047), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2483), 9, - anon_sym_EQ, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, anon_sym_AMP, + ACTIONS(1872), 1, anon_sym_PLUS, + ACTIONS(1874), 1, anon_sym_DASH, - anon_sym_QMARK, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2481), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2692), 1, + anon_sym_SEMI, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1098), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132823,49 +140895,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [17923] = 8, + [24544] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2563), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, anon_sym_DOT, - STATE(274), 1, + ACTIONS(2694), 1, + anon_sym_SEMI, + STATE(291), 1, sym__assignment_op, - STATE(1048), 3, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1099), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2491), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [24682] = 42, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2489), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2696), 1, + anon_sym_SEMI, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1100), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132876,128 +141087,284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, + [24820] = 42, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, anon_sym_EQ_EQ, + ACTIONS(1886), 1, anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, anon_sym_GT_EQ, + ACTIONS(1892), 1, anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - [17984] = 17, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2571), 1, + anon_sym_SEMI, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1101), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [24958] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2370), 1, - sym_ct_type_ident, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2549), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2569), 1, - sym_const_ident, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 1, - aux_sym__module_path, - STATE(2145), 1, - sym_type, - ACTIONS(2551), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1049), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2698), 1, + anon_sym_SEMI, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1102), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [18063] = 18, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [25096] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, - anon_sym_QMARK, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, + ACTIONS(1856), 1, anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(2571), 3, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, - STATE(1050), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2577), 4, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, anon_sym_EQ_EQ, + ACTIONS(1886), 1, anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, anon_sym_GT_EQ, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(2469), 6, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, anon_sym_QMARK_COLON, + ACTIONS(1916), 1, anon_sym_QMARK_QMARK, - ACTIONS(2487), 10, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2700), 1, + anon_sym_RPAREN, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1103), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133008,165 +141375,380 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [18144] = 16, + [25234] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2583), 1, - sym_ident, - ACTIONS(2586), 1, - sym_type_ident, - ACTIONS(2589), 1, - sym_ct_type_ident, - ACTIONS(2592), 1, - anon_sym_RBRACE, - ACTIONS(2597), 1, - anon_sym_DOLLARtypeof, - STATE(912), 1, - sym_module_type_ident, - STATE(953), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(2125), 1, - sym_base_type, - ACTIONS(2600), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1051), 4, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_RBRACK, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1104), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__bitstruct_simple_defs, - ACTIONS(2594), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [18221] = 17, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [25372] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2555), 1, - anon_sym_RBRACE, - STATE(912), 1, - sym_module_type_ident, - STATE(953), 1, - sym_base_type_name, - STATE(1051), 1, - aux_sym__bitstruct_simple_defs, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(2125), 1, - sym_base_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1052), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2704), 1, + anon_sym_COMMA, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1105), 3, sym_line_comment, sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [18300] = 8, + sym_block_comment, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [25510] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2563), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, anon_sym_DOT, - STATE(274), 1, + ACTIONS(2706), 1, + anon_sym_SEMI, + STATE(291), 1, sym__assignment_op, - STATE(1053), 3, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1106), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2495), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [25648] = 42, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2493), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2708), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1107), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133177,124 +141759,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [18361] = 17, + [25786] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1756), 1, - sym_enum_param_declaration, - STATE(1948), 1, - sym_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1054), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2710), 1, + anon_sym_RPAREN, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1108), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [18440] = 16, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [25924] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2449), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(2565), 2, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, + ACTIONS(1856), 1, anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(2571), 3, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, - STATE(1055), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2577), 4, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, anon_sym_EQ_EQ, + ACTIONS(1886), 1, anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, anon_sym_GT_EQ, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(2447), 16, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2712), 1, + anon_sym_RBRACK, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1109), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133305,240 +141951,380 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - [18517] = 17, + [26062] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2603), 1, - anon_sym_inline, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1967), 1, - sym_type, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1056), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2714), 1, + anon_sym_GT_RBRACK, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1110), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [18596] = 17, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [26200] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2370), 1, - sym_ct_type_ident, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2549), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2605), 1, - sym_const_ident, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 1, - aux_sym__module_path, - STATE(2021), 1, - sym_type, - ACTIONS(2551), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1057), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2716), 1, + anon_sym_SEMI, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1111), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [18675] = 17, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [26338] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2370), 1, - sym_ct_type_ident, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2549), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2607), 1, - sym_const_ident, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 1, - aux_sym__module_path, - STATE(2174), 1, - sym_type, - ACTIONS(2551), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1058), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2718), 1, + anon_sym_SEMI, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1112), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [18754] = 14, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [26476] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2563), 1, - anon_sym_DOT, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2483), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(2565), 2, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, + ACTIONS(1856), 1, anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(2571), 3, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, - STATE(1059), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2577), 4, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, anon_sym_EQ_EQ, + ACTIONS(1886), 1, anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, anon_sym_GT_EQ, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(2481), 18, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2720), 1, + anon_sym_COLON, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1113), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133549,172 +142335,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - [18827] = 17, + [26614] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2370), 1, - sym_ct_type_ident, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2549), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2609), 1, - sym_const_ident, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 1, - aux_sym__module_path, - STATE(2203), 1, - sym_type, - ACTIONS(2551), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1060), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, + anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, + anon_sym_SLASH, + ACTIONS(1866), 1, + anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, + anon_sym_PIPE, + ACTIONS(1878), 1, + anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2722), 1, + anon_sym_SEMI, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1114), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [18906] = 17, + ACTIONS(1910), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [26752] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, - sym_type_ident, - ACTIONS(2370), 1, - sym_ct_type_ident, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2549), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2611), 1, - sym_const_ident, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 1, - aux_sym__module_path, - STATE(2116), 1, - sym_type, - ACTIONS(2551), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1061), 3, + ACTIONS(91), 1, + anon_sym_LBRACK, + ACTIONS(2724), 1, + anon_sym_DOT, + ACTIONS(2726), 1, + anon_sym_RPAREN, + STATE(1435), 1, + sym_param_path_element, + STATE(1453), 1, + aux_sym_param_path_repeat1, + STATE(2139), 1, + sym_param_path, + STATE(1115), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(139), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [18985] = 11, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2563), 1, - anon_sym_DOT, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, + ACTIONS(2499), 19, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2567), 3, anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, anon_sym_PIPE, anon_sym_CARET, - STATE(1062), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2483), 6, - anon_sym_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_QMARK, anon_sym_GT, anon_sym_LT, - ACTIONS(2481), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2501), 22, + anon_sym_LPAREN_LT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133727,49 +142488,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_QMARK_COLON, anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [19052] = 17, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + [26830] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(79), 1, + STATE(1116), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2067), 20, + sym_at_ident, sym_type_ident, - ACTIONS(2370), 1, sym_ct_type_ident, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2549), 1, + sym_at_type_ident, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, anon_sym_DOLLARtypeof, - ACTIONS(2613), 1, - sym_const_ident, - STATE(1183), 1, - sym_module_type_ident, - STATE(1184), 1, - sym_base_type, - STATE(1192), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 1, - aux_sym__module_path, - STATE(2083), 1, - sym_type, - ACTIONS(2551), 3, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1063), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(139), 24, + anon_sym_DOLLARvatype, + anon_sym_LBRACK_LT, + ACTIONS(2065), 27, + sym_ident, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -133794,53 +142557,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [19131] = 15, + [26896] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2483), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(2565), 2, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, + ACTIONS(1856), 1, anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(2571), 3, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, - STATE(1064), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2577), 4, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, anon_sym_EQ_EQ, + ACTIONS(1886), 1, anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, anon_sym_GT_EQ, + ACTIONS(1892), 1, anon_sym_LT_EQ, - ACTIONS(2481), 17, - anon_sym_COMMA, - anon_sym_GT_RPAREN, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2728), 1, anon_sym_RPAREN, - anon_sym_RBRACE, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1117), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133851,102 +142653,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_PIPE_PIPE, - [19206] = 12, + [27034] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2563), 1, - anon_sym_DOT, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2567), 3, + ACTIONS(1856), 1, anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, - ACTIONS(2571), 3, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, - STATE(1065), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2483), 4, - anon_sym_EQ, - anon_sym_QMARK, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2481), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, + ACTIONS(1884), 1, anon_sym_EQ_EQ, + ACTIONS(1886), 1, anon_sym_BANG_EQ, + ACTIONS(1888), 1, + anon_sym_GT, + ACTIONS(1890), 1, anon_sym_GT_EQ, + ACTIONS(1892), 1, anon_sym_LT_EQ, + ACTIONS(1894), 1, + anon_sym_LT, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, anon_sym_PIPE_PIPE, - [19275] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2563), 1, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, anon_sym_DOT, - STATE(274), 1, + ACTIONS(2730), 1, + anon_sym_RPAREN, + STATE(291), 1, sym__assignment_op, - STATE(1066), 3, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1118), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2483), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2481), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133957,50 +142749,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [19336] = 9, + [27172] = 42, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2563), 1, - anon_sym_DOT, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2567), 3, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_LT_LT, + ACTIONS(1854), 1, + anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, - STATE(1067), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2483), 11, - anon_sym_EQ, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, anon_sym_AMP, + ACTIONS(1872), 1, anon_sym_PLUS, + ACTIONS(1874), 1, anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2481), 22, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, + anon_sym_DOT, + ACTIONS(2732), 1, + anon_sym_GT_RBRACK, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1119), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134011,109 +142845,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [19399] = 16, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(13), 1, - sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1255), 1, - sym_type, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - ACTIONS(59), 3, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - STATE(1068), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, - anon_sym_int, - anon_sym_typeid, - anon_sym_void, - anon_sym_bool, - anon_sym_char, - anon_sym_ichar, - anon_sym_short, - anon_sym_ushort, - anon_sym_uint, - anon_sym_long, - anon_sym_ulong, - anon_sym_int128, - anon_sym_uint128, - anon_sym_float, - anon_sym_double, - anon_sym_float16, - anon_sym_bfloat16, - anon_sym_float128, - anon_sym_iptr, - anon_sym_uptr, - anon_sym_isz, - anon_sym_usz, - anon_sym_anyfault, - anon_sym_any, - [19475] = 7, + [27310] = 41, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2615), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1069), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2513), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1844), 1, + anon_sym_LPAREN_LT, + ACTIONS(1848), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, anon_sym_LT_LT, + ACTIONS(1854), 1, anon_sym_GT_GT, + ACTIONS(1856), 1, anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(1858), 1, + anon_sym_BANG, + ACTIONS(1860), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1862), 1, + anon_sym_DASH_DASH, + ACTIONS(1864), 1, anon_sym_SLASH, + ACTIONS(1866), 1, anon_sym_PERCENT, + ACTIONS(1868), 1, + anon_sym_BANG_BANG, + ACTIONS(1870), 1, + anon_sym_AMP, + ACTIONS(1872), 1, + anon_sym_PLUS, + ACTIONS(1874), 1, + anon_sym_DASH, + ACTIONS(1876), 1, anon_sym_PIPE, + ACTIONS(1878), 1, anon_sym_CARET, + ACTIONS(1880), 1, + anon_sym_PLUS_PLUS_PLUS, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_EQ_EQ, + ACTIONS(1886), 1, + anon_sym_BANG_EQ, + ACTIONS(1888), 1, anon_sym_GT, + ACTIONS(1890), 1, + anon_sym_GT_EQ, + ACTIONS(1892), 1, + anon_sym_LT_EQ, + ACTIONS(1894), 1, anon_sym_LT, - ACTIONS(2511), 21, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(1896), 1, + anon_sym_AMP_AMP_AMP, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_QMARK, + ACTIONS(1914), 1, + anon_sym_QMARK_COLON, + ACTIONS(1916), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1918), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1920), 1, + anon_sym_PIPE_PIPE_PIPE, + ACTIONS(2531), 1, anon_sym_DOT, - anon_sym_AMP_AMP, + STATE(291), 1, + sym__assignment_op, + STATE(869), 1, + sym_call_invocation, + STATE(954), 1, + sym_generic_arguments, + STATE(1120), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1910), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134124,47 +142939,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [19533] = 16, + [27445] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + STATE(1121), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2063), 20, + sym_at_ident, sym_type_ident, - ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(57), 1, + sym_at_type_ident, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1306), 1, - sym_type, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - ACTIONS(59), 3, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1070), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, + anon_sym_DOLLARvatype, + anon_sym_LBRACK_LT, + ACTIONS(2061), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -134189,42 +142998,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [19609] = 16, + [27510] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + STATE(1122), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2025), 20, + sym_at_ident, sym_type_ident, - ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(57), 1, + sym_at_type_ident, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1249), 1, - sym_type, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - ACTIONS(59), 3, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1071), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, + anon_sym_DOLLARvatype, + anon_sym_LBRACK_LT, + ACTIONS(2023), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -134249,42 +143057,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [19685] = 16, + [27575] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + STATE(1123), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2075), 20, + sym_at_ident, sym_type_ident, - ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(57), 1, + sym_at_type_ident, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1696), 1, - sym_type, - ACTIONS(59), 3, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1072), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, + anon_sym_DOLLARvatype, + anon_sym_LBRACK_LT, + ACTIONS(2073), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -134309,42 +143116,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [19761] = 16, + [27640] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + STATE(1124), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2017), 20, + sym_at_ident, sym_type_ident, - ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(57), 1, + sym_at_type_ident, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1967), 1, - sym_type, - ACTIONS(59), 3, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1073), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, + anon_sym_DOLLARvatype, + anon_sym_LBRACK_LT, + ACTIONS(2015), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -134369,42 +143175,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [19837] = 16, + [27705] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + STATE(1125), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2059), 20, + sym_at_ident, sym_type_ident, - ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(57), 1, + sym_at_type_ident, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(2114), 1, - sym_type, - ACTIONS(59), 3, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1074), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, + anon_sym_DOLLARvatype, + anon_sym_LBRACK_LT, + ACTIONS(2057), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -134429,93 +143234,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [19913] = 7, + [27770] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2615), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1075), 3, + STATE(1126), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2501), 14, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2499), 21, + ACTIONS(2033), 20, + sym_at_ident, + sym_type_ident, + sym_ct_type_ident, + sym_at_type_ident, + anon_sym_DOT, anon_sym_COMMA, anon_sym_GT_RPAREN, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [19971] = 16, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2415), 1, - sym_ident, - ACTIONS(2617), 1, - sym_type_ident, - ACTIONS(2619), 1, - sym_ct_type_ident, - ACTIONS(2623), 1, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, anon_sym_DOLLARtypeof, - STATE(955), 1, - sym_module_type_ident, - STATE(956), 1, - sym_base_type, - STATE(973), 1, - sym_base_type_name, - STATE(995), 1, - sym_type, - STATE(1399), 1, - sym_module_resolution, - STATE(1566), 1, - aux_sym__module_path, - ACTIONS(2625), 3, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1076), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2621), 24, + anon_sym_DOLLARvatype, + anon_sym_LBRACK_LT, + ACTIONS(2031), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -134540,42 +143293,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [20047] = 16, + [27835] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + STATE(1127), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2025), 20, + sym_at_ident, sym_type_ident, - ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(57), 1, + sym_at_type_ident, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1245), 1, - sym_type, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - ACTIONS(59), 3, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1077), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, + anon_sym_DOLLARvatype, + anon_sym_LBRACK_LT, + ACTIONS(2023), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -134600,42 +143352,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [20123] = 16, + [27900] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + STATE(1128), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1989), 20, + sym_at_ident, sym_type_ident, - ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(57), 1, + sym_at_type_ident, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1259), 1, - sym_type, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - ACTIONS(59), 3, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1078), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, + anon_sym_DOLLARvatype, + anon_sym_LBRACK_LT, + ACTIONS(1987), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -134660,42 +143411,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [20199] = 16, + [27965] = 25, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + ACTIONS(79), 1, sym_type_ident, - ACTIONS(15), 1, - sym_ct_type_ident, - ACTIONS(57), 1, - anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, + ACTIONS(173), 1, + anon_sym_DOLLARvatype, + ACTIONS(2734), 1, sym_ident, - STATE(912), 1, + ACTIONS(2736), 1, + sym_ct_ident, + ACTIONS(2738), 1, + sym_hash_ident, + ACTIONS(2740), 1, + sym_ct_type_ident, + ACTIONS(2742), 1, + anon_sym_RPAREN, + ACTIONS(2744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2746), 1, + anon_sym_AMP, + ACTIONS(2748), 1, + anon_sym_SEMI, + STATE(1222), 1, sym_module_type_ident, - STATE(932), 1, + STATE(1224), 1, sym_base_type, - STATE(953), 1, + STATE(1230), 1, sym_base_type_name, - STATE(1399), 1, + STATE(1352), 1, + sym_type, + STATE(1408), 1, + sym__parameter, + STATE(1461), 1, sym_module_resolution, - STATE(1440), 1, + STATE(1522), 1, aux_sym__module_path, - STATE(2176), 1, - sym_type, - ACTIONS(59), 3, + STATE(1616), 1, + sym_parameter, + STATE(1843), 1, + sym__parameters, + ACTIONS(171), 3, + anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1079), 3, + STATE(1129), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(45), 24, + ACTIONS(137), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -134720,42 +143489,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [20275] = 16, + [28068] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + ACTIONS(2750), 1, + anon_sym_EQ, + STATE(1130), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2041), 18, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2043), 26, + anon_sym_DOT, + anon_sym_LPAREN_LT, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + [28137] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1131), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2021), 20, + sym_at_ident, sym_type_ident, - ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(57), 1, + sym_at_type_ident, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1248), 1, - sym_type, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - ACTIONS(59), 3, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1080), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, + anon_sym_DOLLARvatype, + anon_sym_LBRACK_LT, + ACTIONS(2019), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -134780,42 +143609,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [20351] = 16, + [28202] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(13), 1, + STATE(1132), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(2071), 20, + sym_at_ident, sym_type_ident, - ACTIONS(15), 1, sym_ct_type_ident, - ACTIONS(57), 1, + sym_at_type_ident, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, anon_sym_DOLLARtypeof, - ACTIONS(2415), 1, - sym_ident, - STATE(912), 1, - sym_module_type_ident, - STATE(932), 1, - sym_base_type, - STATE(953), 1, - sym_base_type_name, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 1, - aux_sym__module_path, - STATE(1934), 1, - sym_type, - ACTIONS(59), 3, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - STATE(1081), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(45), 24, + anon_sym_DOLLARvatype, + anon_sym_LBRACK_LT, + ACTIONS(2069), 26, + sym_ident, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -134840,31 +143668,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [20427] = 6, + [28267] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1082), 3, + STATE(1133), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2094), 7, + ACTIONS(2017), 20, + sym_at_ident, sym_type_ident, sym_ct_type_ident, - anon_sym_RBRACE, + sym_at_type_ident, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2096), 29, + anon_sym_DOLLARvatype, + anon_sym_LBRACK_LT, + ACTIONS(2015), 26, sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -134889,31 +143727,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [20482] = 6, + [28332] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1083), 3, + STATE(1134), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(1926), 7, + ACTIONS(2051), 20, + sym_at_ident, sym_type_ident, sym_ct_type_ident, - anon_sym_RBRACE, + sym_at_type_ident, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(1928), 29, + anon_sym_DOLLARvatype, + anon_sym_LBRACK_LT, + ACTIONS(2049), 26, sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, + anon_sym_LBRACK, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -134938,83 +143786,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [20537] = 9, + [28397] = 24, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK, - ACTIONS(2230), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2443), 3, - anon_sym_COMMA, + ACTIONS(79), 1, + sym_type_ident, + ACTIONS(173), 1, + anon_sym_DOLLARvatype, + ACTIONS(2734), 1, + sym_ident, + ACTIONS(2736), 1, + sym_ct_ident, + ACTIONS(2738), 1, + sym_hash_ident, + ACTIONS(2740), 1, + sym_ct_type_ident, + ACTIONS(2744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2746), 1, + anon_sym_AMP, + ACTIONS(2752), 1, anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1084), 3, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1352), 1, + sym_type, + STATE(1408), 1, + sym__parameter, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(1616), 1, + sym_parameter, + STATE(1965), 1, + sym__parameters, + ACTIONS(171), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1135), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2226), 13, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2222), 17, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [20598] = 6, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [28497] = 23, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1085), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2629), 7, + ACTIONS(79), 1, sym_type_ident, + ACTIONS(173), 1, + anon_sym_DOLLARvatype, + ACTIONS(2734), 1, + sym_ident, + ACTIONS(2736), 1, + sym_ct_ident, + ACTIONS(2738), 1, + sym_hash_ident, + ACTIONS(2740), 1, sym_ct_type_ident, - anon_sym_RBRACE, + ACTIONS(2744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2746), 1, + anon_sym_AMP, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1352), 1, + sym_type, + STATE(1408), 1, + sym__parameter, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(1658), 1, + sym_parameter, + ACTIONS(2754), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(171), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2627), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, + STATE(1136), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(137), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -135039,31 +143937,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [20653] = 6, + [28595] = 23, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1086), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2633), 7, + ACTIONS(13), 1, sym_type_ident, + ACTIONS(15), 1, sym_ct_type_ident, - anon_sym_RBRACE, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, + ACTIONS(59), 1, anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2631), 29, + ACTIONS(2756), 1, sym_ident, + ACTIONS(2758), 1, + anon_sym_RBRACE, + ACTIONS(2760), 1, anon_sym_inline, + ACTIONS(2762), 1, + anon_sym_bitstruct, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1139), 1, + aux_sym_struct_body_repeat1, + STATE(1201), 1, + sym_struct_member_declaration, + STATE(1303), 1, + sym__struct_or_union, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(1828), 1, + sym_type, + ACTIONS(33), 2, anon_sym_struct, anon_sym_union, - anon_sym_bitstruct, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1137), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -135088,31 +144012,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [20708] = 6, + [28693] = 23, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1087), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2637), 7, + ACTIONS(13), 1, sym_type_ident, + ACTIONS(15), 1, sym_ct_type_ident, - anon_sym_RBRACE, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, + ACTIONS(59), 1, anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2635), 29, + ACTIONS(2756), 1, sym_ident, + ACTIONS(2760), 1, anon_sym_inline, + ACTIONS(2762), 1, + anon_sym_bitstruct, + ACTIONS(2764), 1, + anon_sym_RBRACE, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1143), 1, + aux_sym_struct_body_repeat1, + STATE(1201), 1, + sym_struct_member_declaration, + STATE(1303), 1, + sym__struct_or_union, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(1828), 1, + sym_type, + ACTIONS(33), 2, anon_sym_struct, anon_sym_union, - anon_sym_bitstruct, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1138), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -135137,31 +144087,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [20763] = 6, + [28791] = 23, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1088), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2641), 7, + ACTIONS(13), 1, sym_type_ident, + ACTIONS(15), 1, sym_ct_type_ident, - anon_sym_RBRACE, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, + ACTIONS(59), 1, anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2639), 29, + ACTIONS(2756), 1, sym_ident, + ACTIONS(2760), 1, anon_sym_inline, + ACTIONS(2762), 1, + anon_sym_bitstruct, + ACTIONS(2766), 1, + anon_sym_RBRACE, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1144), 1, + aux_sym_struct_body_repeat1, + STATE(1201), 1, + sym_struct_member_declaration, + STATE(1303), 1, + sym__struct_or_union, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(1828), 1, + sym_type, + ACTIONS(33), 2, anon_sym_struct, anon_sym_union, - anon_sym_bitstruct, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1139), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -135186,31 +144162,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [20818] = 6, + [28889] = 24, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1089), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2645), 7, + ACTIONS(79), 1, sym_type_ident, + ACTIONS(173), 1, + anon_sym_DOLLARvatype, + ACTIONS(2734), 1, + sym_ident, + ACTIONS(2736), 1, + sym_ct_ident, + ACTIONS(2738), 1, + sym_hash_ident, + ACTIONS(2740), 1, sym_ct_type_ident, - anon_sym_RBRACE, + ACTIONS(2744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2746), 1, + anon_sym_AMP, + ACTIONS(2768), 1, + anon_sym_RPAREN, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1352), 1, + sym_type, + STATE(1408), 1, + sym__parameter, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(1616), 1, + sym_parameter, + STATE(2029), 1, + sym__parameters, + ACTIONS(171), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2643), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, + STATE(1140), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(137), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -135235,31 +144238,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [20873] = 6, + [28989] = 21, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1090), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2649), 7, + ACTIONS(11), 1, + sym_ident, + ACTIONS(13), 1, sym_type_ident, + ACTIONS(15), 1, sym_ct_type_ident, - anon_sym_RBRACE, + ACTIONS(17), 1, + anon_sym_tlocal, + ACTIONS(25), 1, + anon_sym_fn, + ACTIONS(31), 1, + anon_sym_const, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1183), 1, + sym_global_storage, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(2094), 1, + sym_type, + ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2647), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, + STATE(1141), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + STATE(1007), 4, + sym_const_declaration, + sym_global_declaration, + sym_func_declaration, + sym_func_definition, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -135284,31 +144311,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [20928] = 6, + [29083] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1091), 3, + ACTIONS(2770), 1, + anon_sym_COLON, + STATE(1142), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2653), 7, + ACTIONS(2041), 19, + anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_AMP_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT, + anon_sym_PIPE_PIPE, + ACTIONS(2043), 25, + anon_sym_DOT, + anon_sym_LPAREN_LT, + anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + [29149] = 23, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, sym_type_ident, + ACTIONS(15), 1, sym_ct_type_ident, - anon_sym_RBRACE, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, + ACTIONS(59), 1, anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2651), 29, + ACTIONS(2756), 1, sym_ident, + ACTIONS(2760), 1, anon_sym_inline, + ACTIONS(2762), 1, + anon_sym_bitstruct, + ACTIONS(2772), 1, + anon_sym_RBRACE, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1144), 1, + aux_sym_struct_body_repeat1, + STATE(1201), 1, + sym_struct_member_declaration, + STATE(1303), 1, + sym__struct_or_union, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(1828), 1, + sym_type, + ACTIONS(33), 2, anon_sym_struct, anon_sym_union, - anon_sym_bitstruct, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1143), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -135333,31 +144445,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [20983] = 6, + [29247] = 22, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1092), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2657), 7, + ACTIONS(2774), 1, + sym_ident, + ACTIONS(2777), 1, sym_type_ident, + ACTIONS(2780), 1, sym_ct_type_ident, + ACTIONS(2783), 1, anon_sym_RBRACE, - anon_sym_DOLLARtypeof, - anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, - anon_sym_DOLLARevaltype, - ACTIONS(2655), 29, - sym_ident, + ACTIONS(2785), 1, anon_sym_inline, + ACTIONS(2791), 1, + anon_sym_bitstruct, + ACTIONS(2800), 1, + anon_sym_DOLLARvatype, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1201), 1, + sym_struct_member_declaration, + STATE(1303), 1, + sym__struct_or_union, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(1828), 1, + sym_type, + ACTIONS(2788), 2, anon_sym_struct, anon_sym_union, - anon_sym_bitstruct, + ACTIONS(2797), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1144), 4, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + aux_sym_struct_body_repeat1, + ACTIONS(2794), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -135382,31 +144519,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [21038] = 6, + [29343] = 24, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1093), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2661), 7, + ACTIONS(79), 1, sym_type_ident, + ACTIONS(173), 1, + anon_sym_DOLLARvatype, + ACTIONS(1241), 1, + anon_sym_RPAREN, + ACTIONS(2734), 1, + sym_ident, + ACTIONS(2736), 1, + sym_ct_ident, + ACTIONS(2738), 1, + sym_hash_ident, + ACTIONS(2740), 1, sym_ct_type_ident, - anon_sym_RBRACE, + ACTIONS(2744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2746), 1, + anon_sym_AMP, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1352), 1, + sym_type, + STATE(1408), 1, + sym__parameter, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(1616), 1, + sym_parameter, + STATE(1958), 1, + sym__parameters, + ACTIONS(171), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2659), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, + STATE(1145), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(137), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -135431,31 +144595,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [21093] = 6, + [29443] = 24, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1094), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2665), 7, + ACTIONS(79), 1, sym_type_ident, + ACTIONS(173), 1, + anon_sym_DOLLARvatype, + ACTIONS(1237), 1, + anon_sym_RPAREN, + ACTIONS(2734), 1, + sym_ident, + ACTIONS(2736), 1, + sym_ct_ident, + ACTIONS(2738), 1, + sym_hash_ident, + ACTIONS(2740), 1, sym_ct_type_ident, - anon_sym_RBRACE, + ACTIONS(2744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2746), 1, + anon_sym_AMP, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1352), 1, + sym_type, + STATE(1408), 1, + sym__parameter, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(1616), 1, + sym_parameter, + STATE(2217), 1, + sym__parameters, + ACTIONS(171), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2663), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, + STATE(1146), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(137), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -135480,31 +144671,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [21148] = 6, + [29543] = 24, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1095), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2669), 7, + ACTIONS(79), 1, sym_type_ident, + ACTIONS(173), 1, + anon_sym_DOLLARvatype, + ACTIONS(2734), 1, + sym_ident, + ACTIONS(2736), 1, + sym_ct_ident, + ACTIONS(2738), 1, + sym_hash_ident, + ACTIONS(2740), 1, sym_ct_type_ident, - anon_sym_RBRACE, + ACTIONS(2744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2746), 1, + anon_sym_AMP, + ACTIONS(2803), 1, + anon_sym_RPAREN, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1352), 1, + sym_type, + STATE(1408), 1, + sym__parameter, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(1616), 1, + sym_parameter, + STATE(2207), 1, + sym__parameters, + ACTIONS(171), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2667), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, + STATE(1147), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(137), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -135529,42 +144747,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [21203] = 8, + [29643] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK, - STATE(1096), 3, + ACTIONS(2807), 1, + anon_sym_EQ, + STATE(1148), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2230), 5, + ACTIONS(2805), 4, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2226), 13, - anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACE, + ACTIONS(2499), 18, + anon_sym_LPAREN, anon_sym_AMP, + anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2222), 17, - anon_sym_DOT, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2501), 22, + anon_sym_LPAREN_LT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135575,36 +144796,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [21262] = 6, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + [29711] = 23, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1097), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2070), 7, + ACTIONS(79), 1, sym_type_ident, + ACTIONS(173), 1, + anon_sym_DOLLARvatype, + ACTIONS(2734), 1, + sym_ident, + ACTIONS(2736), 1, + sym_ct_ident, + ACTIONS(2738), 1, + sym_hash_ident, + ACTIONS(2740), 1, sym_ct_type_ident, - anon_sym_RBRACE, + ACTIONS(2744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2746), 1, + anon_sym_AMP, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1352), 1, + sym_type, + STATE(1408), 1, + sym__parameter, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(1658), 1, + sym_parameter, + ACTIONS(2809), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(171), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2072), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, + STATE(1149), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(137), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -135629,31 +144882,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [21317] = 6, + [29809] = 23, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1098), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2102), 7, + ACTIONS(79), 1, sym_type_ident, + ACTIONS(173), 1, + anon_sym_DOLLARvatype, + ACTIONS(2734), 1, + sym_ident, + ACTIONS(2736), 1, + sym_ct_ident, + ACTIONS(2738), 1, + sym_hash_ident, + ACTIONS(2740), 1, sym_ct_type_ident, - anon_sym_RBRACE, + ACTIONS(2744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2746), 1, + anon_sym_AMP, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1352), 1, + sym_type, + STATE(1408), 1, + sym__parameter, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(1616), 1, + sym_parameter, + STATE(2155), 1, + sym__parameters, + ACTIONS(171), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2104), 29, - sym_ident, - anon_sym_inline, - anon_sym_struct, - anon_sym_union, - anon_sym_bitstruct, + STATE(1150), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(137), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -135678,40 +144956,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [21372] = 7, + [29906] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1099), 3, + ACTIONS(2805), 3, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_LBRACK, + STATE(1151), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2230), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2226), 13, + ACTIONS(2499), 19, anon_sym_EQ, + anon_sym_LPAREN, anon_sym_AMP, + anon_sym_AMP_AMP, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_GT, anon_sym_LT, - ACTIONS(2222), 17, - anon_sym_DOT, - anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(2501), 22, + anon_sym_LPAREN_LT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135722,36 +145003,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_QMARK_COLON, + anon_sym_QMARK_QMARK, + anon_sym_DASH_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [21428] = 7, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP_AMP, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_BANG_BANG, + [29971] = 22, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2675), 1, - anon_sym_BANG, - STATE(1100), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2673), 9, - sym_at_ident, + ACTIONS(79), 1, sym_type_ident, + ACTIONS(173), 1, + anon_sym_DOLLARvatype, + ACTIONS(2734), 1, + sym_ident, + ACTIONS(2736), 1, + sym_ct_ident, + ACTIONS(2738), 1, + sym_hash_ident, + ACTIONS(2740), 1, sym_ct_type_ident, - anon_sym_LPAREN, + ACTIONS(2744), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2746), 1, anon_sym_AMP, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1352), 1, + sym_type, + STATE(1408), 1, + sym__parameter, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(1658), 1, + sym_parameter, + ACTIONS(171), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2671), 25, - sym_ident, + STATE(1152), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(137), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -135776,318 +145086,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [21484] = 9, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2232), 1, - anon_sym_QMARK, - ACTIONS(2230), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(2443), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - STATE(1101), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2226), 13, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2222), 16, - anon_sym_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_PIPE_PIPE, - [21544] = 19, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2677), 1, - anon_sym_COMMA, - ACTIONS(2679), 1, - anon_sym_RPAREN, - STATE(274), 1, - sym__assignment_op, - STATE(1626), 1, - aux_sym_assert_stmt_repeat1, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1102), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [21623] = 19, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2681), 1, - anon_sym_COMMA, - ACTIONS(2683), 1, - anon_sym_GT_RPAREN, - STATE(274), 1, - sym__assignment_op, - STATE(1628), 1, - aux_sym__generic_arg_list_repeat1, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1103), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [21702] = 19, + [30065] = 19, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2677), 1, - anon_sym_COMMA, - ACTIONS(2685), 1, - anon_sym_RPAREN, - STATE(274), 1, - sym__assignment_op, - STATE(1599), 1, - aux_sym_assert_stmt_repeat1, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1104), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2813), 1, + anon_sym_LPAREN, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1407), 1, + sym_type, + STATE(1461), 1, + sym_module_resolution, + STATE(1531), 1, + sym_enum_param_list, + STATE(1541), 1, + aux_sym__module_path, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + ACTIONS(2811), 3, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + STATE(1153), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [21781] = 17, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30152] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2687), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(1105), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2815), 1, + anon_sym_fn, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1311), 1, + sym_typedef_type, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(1503), 2, + sym_func_typedef, + sym_type, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1154), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [21856] = 6, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30235] = 19, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1106), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2673), 9, - sym_at_ident, + ACTIONS(13), 1, sym_type_ident, + ACTIONS(15), 1, sym_ct_type_ident, - anon_sym_LPAREN, - anon_sym_AMP, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2817), 1, + sym_ident, + ACTIONS(2819), 1, + sym_at_ident, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1157), 1, + sym_type, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(1862), 1, + sym_macro_header, + STATE(1972), 1, + sym__func_macro_name, + ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2671), 25, - sym_ident, + STATE(1155), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -136112,210 +145285,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [21909] = 19, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2677), 1, - anon_sym_COMMA, - ACTIONS(2689), 1, - anon_sym_RPAREN, - STATE(274), 1, - sym__assignment_op, - STATE(1639), 1, - aux_sym_assert_stmt_repeat1, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1107), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [21988] = 19, + [30320] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2677), 1, - anon_sym_COMMA, - ACTIONS(2691), 1, - anon_sym_RPAREN, - STATE(274), 1, - sym__assignment_op, - STATE(1697), 1, - aux_sym_assert_stmt_repeat1, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1108), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2815), 1, + anon_sym_fn, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1332), 1, + sym_typedef_type, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(1503), 2, + sym_func_typedef, + sym_type, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1156), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22067] = 18, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30403] = 19, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2817), 1, + sym_ident, + ACTIONS(2819), 1, + sym_at_ident, + ACTIONS(2821), 1, anon_sym_DOT, - ACTIONS(2695), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2693), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1109), 3, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(2182), 1, + sym__func_macro_name, + STATE(2192), 1, + sym_type, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1157), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22144] = 8, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30488] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2675), 1, - anon_sym_BANG, - ACTIONS(2697), 1, - anon_sym_DOT, - STATE(1110), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2673), 7, - sym_at_ident, + ACTIONS(13), 1, sym_type_ident, + ACTIONS(15), 1, sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2823), 1, + anon_sym_RBRACE, + STATE(1063), 1, + sym_module_type_ident, + STATE(1128), 1, + sym_base_type_name, + STATE(1162), 1, + aux_sym_bitstruct_body_repeat1, + STATE(1218), 1, + sym_bitstruct_member_declaration, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(2189), 1, + sym_base_type, + ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2671), 25, - sym_ident, + STATE(1158), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -136340,29 +145480,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [22201] = 6, + [30570] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1111), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2701), 9, - sym_at_ident, + ACTIONS(13), 1, sym_type_ident, + ACTIONS(15), 1, sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2825), 1, anon_sym_LPAREN, - anon_sym_AMP, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1289), 1, + sym_fn_parameter_list, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(1797), 1, + sym_type, + ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2699), 25, - sym_ident, + STATE(1159), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -136387,1180 +145544,989 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [22254] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2453), 1, - anon_sym_DOT, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2703), 3, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1112), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22329] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2687), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1113), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22404] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2453), 1, - anon_sym_DOT, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2705), 3, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1114), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22479] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2707), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1115), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22554] = 19, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2677), 1, - anon_sym_COMMA, - ACTIONS(2709), 1, - anon_sym_RPAREN, - STATE(274), 1, - sym__assignment_op, - STATE(1586), 1, - aux_sym_assert_stmt_repeat1, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1116), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22633] = 17, + [30652] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2693), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1117), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2827), 1, + sym_ident, + ACTIONS(2829), 1, + anon_sym_AMP, + STATE(1063), 1, + sym_module_type_ident, + STATE(1128), 1, + sym_base_type_name, + STATE(1361), 1, + sym_base_type, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(1804), 1, + sym_foreach_var, + STATE(1805), 1, + sym_type, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1160), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22708] = 17, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30734] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2711), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1118), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2831), 1, + anon_sym_RBRACE, + STATE(1063), 1, + sym_module_type_ident, + STATE(1128), 1, + sym_base_type_name, + STATE(1162), 1, + aux_sym_bitstruct_body_repeat1, + STATE(1218), 1, + sym_bitstruct_member_declaration, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(2189), 1, + sym_base_type, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1161), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22783] = 17, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30816] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2707), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2833), 1, + sym_ident, + ACTIONS(2836), 1, + sym_type_ident, + ACTIONS(2839), 1, + sym_ct_type_ident, + ACTIONS(2842), 1, anon_sym_RBRACE, - STATE(1119), 3, + ACTIONS(2850), 1, + anon_sym_DOLLARvatype, + STATE(1063), 1, + sym_module_type_ident, + STATE(1128), 1, + sym_base_type_name, + STATE(1218), 1, + sym_bitstruct_member_declaration, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(2189), 1, + sym_base_type, + ACTIONS(2847), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1162), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22858] = 19, + aux_sym_bitstruct_body_repeat1, + ACTIONS(2844), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30896] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2677), 1, - anon_sym_COMMA, - ACTIONS(2713), 1, - anon_sym_RPAREN, - STATE(274), 1, - sym__assignment_op, - STATE(1610), 1, - aux_sym_assert_stmt_repeat1, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2827), 1, + sym_ident, + ACTIONS(2829), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1120), 3, + STATE(1063), 1, + sym_module_type_ident, + STATE(1128), 1, + sym_base_type_name, + STATE(1361), 1, + sym_base_type, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(1805), 1, + sym_type, + STATE(2045), 1, + sym_foreach_var, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1163), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [22937] = 17, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [30978] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2693), 3, - anon_sym_COMMA, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2853), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(1121), 3, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(1645), 1, + sym_enum_param_declaration, + STATE(2187), 1, + sym_type, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1164), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23012] = 16, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [31060] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2449), 1, - anon_sym_EQ, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2563), 1, - anon_sym_DOT, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1122), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2855), 1, + anon_sym_RBRACE, + STATE(1063), 1, + sym_module_type_ident, + STATE(1128), 1, + sym_base_type_name, + STATE(1158), 1, + aux_sym_bitstruct_body_repeat1, + STATE(1218), 1, + sym_bitstruct_member_declaration, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(2189), 1, + sym_base_type, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1165), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2447), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - [23084] = 17, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [31142] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2715), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1123), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2857), 1, + anon_sym_RBRACE, + STATE(1063), 1, + sym_module_type_ident, + STATE(1128), 1, + sym_base_type_name, + STATE(1161), 1, + aux_sym_bitstruct_body_repeat1, + STATE(1218), 1, + sym_bitstruct_member_declaration, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(2189), 1, + sym_base_type, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1166), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23158] = 17, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [31224] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2717), 2, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1124), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2817), 1, + sym_ident, + ACTIONS(2819), 1, + sym_at_ident, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(2257), 1, + sym__func_macro_name, + STATE(2265), 1, + sym_type, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1167), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23232] = 17, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [31306] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2715), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1125), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2859), 1, + anon_sym_inline, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(2173), 1, + sym_type, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1168), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23306] = 18, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [31385] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2453), 1, - anon_sym_DOT, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2719), 1, - anon_sym_RBRACK, - ACTIONS(2721), 1, - anon_sym_DOT_DOT, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1126), 3, + ACTIONS(79), 1, + sym_type_ident, + ACTIONS(2740), 1, + sym_ct_type_ident, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2861), 1, + sym_const_ident, + ACTIONS(2865), 1, + anon_sym_DOLLARvatype, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(2125), 1, + sym_type, + ACTIONS(2863), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1169), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23382] = 17, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [31464] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2711), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1127), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1167), 1, + sym_type, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(1786), 1, + sym_func_header, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1170), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23456] = 17, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [31543] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2723), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1128), 3, + ACTIONS(79), 1, + sym_type_ident, + ACTIONS(2740), 1, + sym_ct_type_ident, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2865), 1, + anon_sym_DOLLARvatype, + ACTIONS(2867), 1, + sym_const_ident, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(2157), 1, + sym_type, + ACTIONS(2863), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1171), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23530] = 18, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [31622] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2453), 1, - anon_sym_DOT, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2725), 1, - anon_sym_COLON, - ACTIONS(2727), 1, - anon_sym_DOT_DOT, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1129), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1167), 1, + sym_type, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(1833), 1, + sym_func_header, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1172), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23606] = 17, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [31701] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2695), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1130), 3, + ACTIONS(79), 1, + sym_type_ident, + ACTIONS(2740), 1, + sym_ct_type_ident, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2865), 1, + anon_sym_DOLLARvatype, + ACTIONS(2869), 1, + sym_const_ident, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(2215), 1, + sym_type, + ACTIONS(2863), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1173), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23679] = 17, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [31780] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2729), 1, - anon_sym_COMMA, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1131), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(1777), 1, + sym_enum_param_declaration, + STATE(2187), 1, + sym_type, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1174), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23752] = 6, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [31859] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1132), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2733), 7, + ACTIONS(79), 1, sym_type_ident, + ACTIONS(2740), 1, sym_ct_type_ident, - anon_sym_RBRACE, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2865), 1, + anon_sym_DOLLARvatype, + ACTIONS(2871), 1, + sym_const_ident, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(2186), 1, + sym_type, + ACTIONS(2863), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2731), 25, - sym_ident, + STATE(1175), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(137), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -137585,363 +146551,472 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [23803] = 17, + [31938] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2735), 1, - anon_sym_RPAREN, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1133), 3, + ACTIONS(79), 1, + sym_type_ident, + ACTIONS(2740), 1, + sym_ct_type_ident, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2865), 1, + anon_sym_DOLLARvatype, + ACTIONS(2873), 1, + sym_const_ident, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(2242), 1, + sym_type, + ACTIONS(2863), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1176), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23876] = 17, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [32017] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2737), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1134), 3, + ACTIONS(79), 1, + sym_type_ident, + ACTIONS(2740), 1, + sym_ct_type_ident, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2865), 1, + anon_sym_DOLLARvatype, + ACTIONS(2875), 1, + sym_const_ident, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(2269), 1, + sym_type, + ACTIONS(2863), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1177), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [23949] = 17, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [32096] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2739), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1135), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2877), 1, + anon_sym_inline, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(2057), 1, + sym_type, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1178), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24022] = 17, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [32175] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2741), 1, - anon_sym_COLON, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1136), 3, + ACTIONS(79), 1, + sym_type_ident, + ACTIONS(2740), 1, + sym_ct_type_ident, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2865), 1, + anon_sym_DOLLARvatype, + ACTIONS(2879), 1, + sym_const_ident, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(2087), 1, + sym_type, + ACTIONS(2863), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1179), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24095] = 17, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [32254] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2743), 1, - anon_sym_RPAREN, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1137), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2881), 1, + anon_sym_inline, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(2255), 1, + sym_type, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1180), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24168] = 17, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [32333] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2745), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1138), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1297), 1, + sym_type, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1181), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24241] = 6, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [32409] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1139), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1286), 1, + sym_type, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1182), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2749), 7, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [32485] = 16, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, sym_type_ident, + ACTIONS(15), 1, sym_ct_type_ident, - anon_sym_RBRACE, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2883), 1, + sym_ident, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(2144), 1, + sym_type, + ACTIONS(57), 3, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2747), 25, - sym_ident, + STATE(1183), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(45), 24, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -137966,1203 +147041,1236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [24292] = 17, + [32561] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2751), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1140), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(1924), 1, + sym_type, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1184), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24365] = 17, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [32637] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2753), 1, - anon_sym_RPAREN, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1141), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(2025), 1, + sym_type, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1185), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24438] = 17, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [32713] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2755), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1142), 3, + ACTIONS(79), 1, + sym_type_ident, + ACTIONS(2740), 1, + sym_ct_type_ident, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2865), 1, + anon_sym_DOLLARvatype, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1511), 1, + sym_type, + STATE(1522), 1, + aux_sym__module_path, + ACTIONS(2863), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1186), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24511] = 17, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [32789] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2757), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1143), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1298), 1, + sym_type, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1187), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24584] = 17, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [32865] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2759), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1144), 3, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2885), 1, + sym_type_ident, + ACTIONS(2887), 1, + sym_ct_type_ident, + ACTIONS(2893), 1, + anon_sym_DOLLARvatype, + STATE(866), 1, + sym_base_type, + STATE(871), 1, + sym_module_type_ident, + STATE(894), 1, + sym_base_type_name, + STATE(1015), 1, + sym_type, + STATE(1461), 1, + sym_module_resolution, + STATE(1615), 1, + aux_sym__module_path, + ACTIONS(2891), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1188), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24657] = 17, + ACTIONS(2889), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [32941] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2761), 1, - anon_sym_COLON, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1145), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(2255), 1, + sym_type, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1189), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24730] = 17, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [33017] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2763), 1, - anon_sym_RPAREN, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1146), 3, + ACTIONS(79), 1, + sym_type_ident, + ACTIONS(2740), 1, + sym_ct_type_ident, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2865), 1, + anon_sym_DOLLARvatype, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(1555), 1, + sym_type, + ACTIONS(2863), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1190), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24803] = 17, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [33093] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2765), 1, - anon_sym_RPAREN, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1147), 3, + ACTIONS(79), 1, + sym_type_ident, + ACTIONS(2740), 1, + sym_ct_type_ident, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2865), 1, + anon_sym_DOLLARvatype, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(1568), 1, + sym_type, + ACTIONS(2863), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1191), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24876] = 17, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [33169] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2767), 1, - anon_sym_COLON, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1148), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(2173), 1, + sym_type, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1192), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [24949] = 17, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [33245] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2769), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1149), 3, + ACTIONS(79), 1, + sym_type_ident, + ACTIONS(2740), 1, + sym_ct_type_ident, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2865), 1, + anon_sym_DOLLARvatype, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(1581), 1, + sym_type, + ACTIONS(2863), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1193), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [25022] = 17, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [33321] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2771), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1150), 3, + ACTIONS(79), 1, + sym_type_ident, + ACTIONS(2740), 1, + sym_ct_type_ident, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2865), 1, + anon_sym_DOLLARvatype, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(1593), 1, + sym_type, + ACTIONS(2863), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1194), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [25095] = 17, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [33397] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2705), 1, - anon_sym_RPAREN, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1151), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(1971), 1, + sym_type, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1195), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [25168] = 17, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [33473] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2773), 1, - anon_sym_RPAREN, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1152), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + STATE(1686), 1, + sym_type, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1196), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [25241] = 17, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [33549] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2775), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1153), 3, + ACTIONS(79), 1, + sym_type_ident, + ACTIONS(2740), 1, + sym_ct_type_ident, + ACTIONS(2756), 1, + sym_ident, + ACTIONS(2865), 1, + anon_sym_DOLLARvatype, + STATE(1222), 1, + sym_module_type_ident, + STATE(1224), 1, + sym_base_type, + STATE(1230), 1, + sym_base_type_name, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 1, + aux_sym__module_path, + STATE(1605), 1, + sym_type, + ACTIONS(2863), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1197), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [25314] = 17, + ACTIONS(137), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [33625] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2777), 1, - anon_sym_RPAREN, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1154), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1285), 1, + sym_type, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1198), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [25387] = 17, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [33701] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2779), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1155), 3, + ACTIONS(13), 1, + sym_type_ident, + ACTIONS(15), 1, + sym_ct_type_ident, + ACTIONS(59), 1, + anon_sym_DOLLARvatype, + ACTIONS(2756), 1, + sym_ident, + STATE(1063), 1, + sym_module_type_ident, + STATE(1068), 1, + sym_base_type, + STATE(1128), 1, + sym_base_type_name, + STATE(1331), 1, + sym_type, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 1, + aux_sym__module_path, + ACTIONS(57), 3, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + STATE(1199), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [25460] = 17, + ACTIONS(45), 24, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [33777] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2781), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1156), 3, + STATE(1200), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [25533] = 17, + ACTIONS(2897), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2895), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [33832] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2783), 1, - anon_sym_RBRACK, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1157), 3, + STATE(1201), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [25606] = 17, + ACTIONS(2901), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2899), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [33887] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2785), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1158), 3, + STATE(1202), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [25679] = 17, + ACTIONS(2905), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2903), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [33942] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2787), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1159), 3, + STATE(1203), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [25752] = 17, + ACTIONS(2217), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2219), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [33997] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2789), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1160), 3, + STATE(1204), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [25825] = 6, + ACTIONS(2909), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2907), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [34052] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1161), 3, + STATE(1205), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2793), 7, + ACTIONS(2913), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2791), 25, + anon_sym_DOLLARvatype, + ACTIONS(2911), 29, sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -139187,307 +148295,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [25876] = 17, + [34107] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2795), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1162), 3, + STATE(1206), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [25949] = 17, + ACTIONS(2917), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2915), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [34162] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2797), 1, - anon_sym_RPAREN, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1163), 3, + STATE(1207), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26022] = 17, + ACTIONS(2361), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2363), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [34217] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2799), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1164), 3, + STATE(1208), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26095] = 17, + ACTIONS(2921), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2919), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [34272] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2801), 1, - anon_sym_RPAREN, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1165), 3, + STATE(1209), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26168] = 17, + ACTIONS(2925), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2923), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [34327] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2703), 1, - anon_sym_RPAREN, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1166), 3, + STATE(1210), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26241] = 6, + ACTIONS(2309), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2311), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [34382] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1167), 3, + STATE(1211), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2805), 7, + ACTIONS(2929), 7, sym_type_ident, sym_ct_type_ident, anon_sym_RBRACE, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2803), 25, + anon_sym_DOLLARvatype, + ACTIONS(2927), 29, sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, anon_sym_int, anon_sym_typeid, anon_sym_void, @@ -139512,529 +148589,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [26292] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2807), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1168), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26365] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2809), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1169), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26438] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2811), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1170), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26511] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2447), 1, - anon_sym_SEMI, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1171), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26584] = 17, + [34437] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2813), 1, - anon_sym_RPAREN, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1172), 3, + STATE(1212), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26657] = 17, + ACTIONS(2933), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2931), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [34492] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2815), 1, - anon_sym_RPAREN, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1173), 3, + STATE(1213), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26730] = 17, + ACTIONS(2241), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2243), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [34547] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2817), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1174), 3, + STATE(1214), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26803] = 17, + ACTIONS(2937), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2935), 29, + sym_ident, + anon_sym_inline, + anon_sym_struct, + anon_sym_union, + anon_sym_bitstruct, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [34602] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2819), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1175), 3, + STATE(1215), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26876] = 17, + ACTIONS(2941), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2939), 25, + sym_ident, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [34653] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2821), 1, - anon_sym_SEMI, - STATE(359), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1176), 3, + STATE(1216), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [26949] = 6, + ACTIONS(2945), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2943), 25, + sym_ident, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [34704] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1177), 3, + STATE(1217), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2825), 6, + ACTIONS(2949), 7, sym_type_ident, sym_ct_type_ident, + anon_sym_RBRACE, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2823), 25, + anon_sym_DOLLARvatype, + ACTIONS(2947), 25, sym_ident, anon_sym_int, anon_sym_typeid, @@ -140060,79 +148871,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [26999] = 16, + [34755] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - ACTIONS(2573), 1, - anon_sym_AMP_AMP, - ACTIONS(2581), 1, - anon_sym_PIPE_PIPE, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2565), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2575), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2579), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2567), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2571), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - STATE(1178), 3, + STATE(1218), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2577), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27069] = 6, + ACTIONS(2953), 7, + sym_type_ident, + sym_ct_type_ident, + anon_sym_RBRACE, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2951), 25, + sym_ident, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [34806] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1179), 3, + STATE(1219), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2829), 6, + ACTIONS(2957), 6, sym_type_ident, sym_ct_type_ident, anon_sym_DOLLARtypeof, anon_sym_DOLLARtypefrom, - anon_sym_DOLLARvatype, anon_sym_DOLLARevaltype, - ACTIONS(2827), 25, + anon_sym_DOLLARvatype, + ACTIONS(2955), 25, sym_ident, anon_sym_int, anon_sym_typeid, @@ -140158,89 +148960,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usz, anon_sym_anyfault, anon_sym_any, - [27119] = 16, + [34856] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2455), 1, - anon_sym_AMP_AMP, - ACTIONS(2467), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2485), 1, - anon_sym_EQ, - ACTIONS(2563), 1, - anon_sym_DOT, - STATE(274), 1, - sym__assignment_op, - ACTIONS(2457), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2465), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2451), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(2461), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - STATE(1180), 3, + STATE(1220), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2463), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2487), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [27189] = 11, + ACTIONS(2961), 6, + sym_type_ident, + sym_ct_type_ident, + anon_sym_DOLLARtypeof, + anon_sym_DOLLARtypefrom, + anon_sym_DOLLARevaltype, + anon_sym_DOLLARvatype, + ACTIONS(2959), 25, + sym_ident, + anon_sym_int, + anon_sym_typeid, + anon_sym_void, + anon_sym_bool, + anon_sym_char, + anon_sym_ichar, + anon_sym_short, + anon_sym_ushort, + anon_sym_uint, + anon_sym_long, + anon_sym_ulong, + anon_sym_int128, + anon_sym_uint128, + anon_sym_float, + anon_sym_double, + anon_sym_float16, + anon_sym_bfloat16, + anon_sym_float128, + anon_sym_iptr, + anon_sym_uptr, + anon_sym_isz, + anon_sym_usz, + anon_sym_anyfault, + anon_sym_any, + [34906] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2254), 1, + ACTIONS(1717), 1, anon_sym_DOT, - ACTIONS(2831), 1, + ACTIONS(2963), 1, anon_sym_LBRACK, - ACTIONS(2833), 1, + ACTIONS(2965), 1, anon_sym_STAR, - ACTIONS(2835), 1, + ACTIONS(2967), 1, + anon_sym_BANG, + ACTIONS(2969), 1, anon_sym_LBRACK_LT, - STATE(1182), 1, + STATE(1223), 1, aux_sym_type_repeat1, - STATE(1188), 1, + STATE(1227), 1, sym_type_suffix, - STATE(1181), 3, + STATE(1221), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2256), 15, + ACTIONS(1719), 11, sym_ident, sym_ct_ident, - sym_at_ident, sym_hash_ident, - sym_at_type_ident, sym_const_ident, anon_sym_COMMA, anon_sym_EQ, @@ -140249,36 +149041,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG, - [27239] = 10, + [34955] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2264), 1, + ACTIONS(2971), 1, + anon_sym_LPAREN_LT, + STATE(1242), 1, + sym_generic_arguments, + ACTIONS(1987), 2, anon_sym_DOT, - ACTIONS(2837), 1, anon_sym_LBRACK, - ACTIONS(2840), 1, - anon_sym_STAR, - ACTIONS(2843), 1, - anon_sym_LBRACK_LT, - STATE(1188), 1, - sym_type_suffix, - STATE(1182), 4, + STATE(1222), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_type_repeat1, - ACTIONS(2266), 15, + ACTIONS(1989), 14, sym_ident, sym_ct_ident, - sym_at_ident, sym_hash_ident, - sym_at_type_ident, sym_const_ident, anon_sym_COMMA, anon_sym_EQ, @@ -140287,32 +149071,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_STAR, anon_sym_BANG, - [27287] = 8, + anon_sym_LBRACK_LT, + [34996] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2846), 1, - anon_sym_LPAREN_LT, - STATE(1194), 1, - sym_generic_arguments, - ACTIONS(2180), 2, - anon_sym_LBRACK, + ACTIONS(1922), 1, anon_sym_DOT, - STATE(1183), 3, + ACTIONS(2973), 1, + anon_sym_LBRACK, + ACTIONS(2976), 1, + anon_sym_STAR, + ACTIONS(2979), 1, + anon_sym_LBRACK_LT, + STATE(1227), 1, + sym_type_suffix, + STATE(1223), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2182), 17, + aux_sym_type_repeat1, + ACTIONS(1924), 12, sym_ident, sym_ct_ident, - sym_at_ident, sym_hash_ident, - sym_at_type_ident, sym_const_ident, anon_sym_COMMA, anon_sym_EQ, @@ -140321,39 +149108,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, anon_sym_BANG, - anon_sym_LBRACK_LT, - [27331] = 11, + [35041] = 12, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2281), 1, + ACTIONS(1964), 1, anon_sym_DOT, - ACTIONS(2831), 1, + ACTIONS(2963), 1, anon_sym_LBRACK, - ACTIONS(2833), 1, + ACTIONS(2965), 1, anon_sym_STAR, - ACTIONS(2835), 1, + ACTIONS(2969), 1, anon_sym_LBRACK_LT, - STATE(1181), 1, + ACTIONS(2982), 1, + anon_sym_BANG, + STATE(1221), 1, aux_sym_type_repeat1, - STATE(1188), 1, + STATE(1227), 1, sym_type_suffix, - STATE(1184), 3, + STATE(1224), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2283), 15, + ACTIONS(1966), 11, sym_ident, sym_ct_ident, - sym_at_ident, sym_hash_ident, - sym_at_type_ident, sym_const_ident, anon_sym_COMMA, anon_sym_EQ, @@ -140362,28 +149146,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG, - [27381] = 6, + [35090] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2315), 2, - anon_sym_LBRACK, + ACTIONS(2065), 2, anon_sym_DOT, - STATE(1185), 3, + anon_sym_LBRACK, + STATE(1225), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2317), 18, + ACTIONS(2067), 15, sym_ident, sym_ct_ident, - sym_at_ident, sym_hash_ident, - sym_at_type_ident, sym_const_ident, anon_sym_COMMA, anon_sym_LPAREN_LT, @@ -140393,30 +149173,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_BANG, anon_sym_LBRACK_LT, - [27420] = 6, + [35126] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2240), 2, - anon_sym_LBRACK, + ACTIONS(2019), 2, anon_sym_DOT, - STATE(1186), 3, + anon_sym_LBRACK, + STATE(1226), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2238), 17, + ACTIONS(2021), 14, sym_ident, sym_ct_ident, - sym_at_ident, sym_hash_ident, - sym_at_type_ident, sym_const_ident, anon_sym_COMMA, anon_sym_EQ, @@ -140425,30 +149202,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_BANG, anon_sym_LBRACK_LT, - [27458] = 6, + [35161] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2331), 2, - anon_sym_LBRACK, + ACTIONS(2031), 2, anon_sym_DOT, - STATE(1187), 3, + anon_sym_LBRACK, + STATE(1227), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2333), 17, + ACTIONS(2033), 14, sym_ident, sym_ct_ident, - sym_at_ident, sym_hash_ident, - sym_at_type_ident, sym_const_ident, anon_sym_COMMA, anon_sym_EQ, @@ -140457,30 +149231,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_BANG, anon_sym_LBRACK_LT, - [27496] = 6, + [35196] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2335), 2, - anon_sym_LBRACK, + ACTIONS(2015), 2, anon_sym_DOT, - STATE(1188), 3, + anon_sym_LBRACK, + STATE(1228), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2337), 17, + ACTIONS(2017), 14, sym_ident, sym_ct_ident, - sym_at_ident, sym_hash_ident, - sym_at_type_ident, sym_const_ident, anon_sym_COMMA, anon_sym_EQ, @@ -140489,94 +149260,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_BANG, anon_sym_LBRACK_LT, - [27534] = 6, + [35231] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2327), 2, - anon_sym_LBRACK, - anon_sym_DOT, - STATE(1189), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2329), 17, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + ACTIONS(2984), 1, sym_ident, - sym_ct_ident, + ACTIONS(2986), 1, sym_at_ident, - sym_hash_ident, + ACTIONS(2988), 1, sym_at_type_ident, - sym_const_ident, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(2992), 1, anon_sym_DOT_DOT_DOT, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LBRACK_LT, - [27572] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2343), 2, - anon_sym_LBRACK, - anon_sym_DOT, - STATE(1190), 3, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1577), 1, + sym_attributes, + STATE(1229), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2345), 17, - sym_ident, - sym_ct_ident, - sym_at_ident, - sym_hash_ident, - sym_at_type_ident, - sym_const_ident, + ACTIONS(2990), 4, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AMP, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LBRACK_LT, - [27610] = 6, + [35288] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2323), 2, - anon_sym_LBRACK, + ACTIONS(1987), 2, anon_sym_DOT, - STATE(1191), 3, + anon_sym_LBRACK, + STATE(1230), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2325), 17, + ACTIONS(1989), 14, sym_ident, sym_ct_ident, - sym_at_ident, sym_hash_ident, - sym_at_type_ident, sym_const_ident, anon_sym_COMMA, anon_sym_EQ, @@ -140585,30 +149329,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_BANG, anon_sym_LBRACK_LT, - [27648] = 6, + [35323] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2180), 2, - anon_sym_LBRACK, + ACTIONS(2061), 2, anon_sym_DOT, - STATE(1192), 3, + anon_sym_LBRACK, + STATE(1231), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2182), 17, + ACTIONS(2063), 14, sym_ident, sym_ct_ident, - sym_at_ident, sym_hash_ident, - sym_at_type_ident, sym_const_ident, anon_sym_COMMA, anon_sym_EQ, @@ -140617,62 +149358,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_BANG, anon_sym_LBRACK_LT, - [27686] = 6, + [35358] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2319), 2, - anon_sym_LBRACK, - anon_sym_DOT, - STATE(1193), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2321), 17, + ACTIONS(2994), 1, sym_ident, - sym_ct_ident, + ACTIONS(2997), 1, sym_at_ident, - sym_hash_ident, + ACTIONS(3000), 1, sym_at_type_ident, - sym_const_ident, - anon_sym_COMMA, + ACTIONS(3005), 1, anon_sym_EQ, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1232), 4, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + aux_sym_attributes_repeat1, + ACTIONS(3003), 6, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LBRACK_LT, - [27724] = 6, + anon_sym_EQ_GT, + [35409] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2339), 2, - anon_sym_LBRACK, + ACTIONS(2069), 2, anon_sym_DOT, - STATE(1194), 3, + anon_sym_LBRACK, + STATE(1233), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2341), 17, + ACTIONS(2071), 14, sym_ident, sym_ct_ident, - sym_at_ident, sym_hash_ident, - sym_at_type_ident, sym_const_ident, anon_sym_COMMA, anon_sym_EQ, @@ -140681,3006 +149424,2850 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_BANG, anon_sym_LBRACK_LT, - [27762] = 19, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2848), 1, - sym_ident, - ACTIONS(2850), 1, - sym_ct_ident, - ACTIONS(2852), 1, - sym_at_ident, - ACTIONS(2854), 1, - sym_hash_ident, - ACTIONS(2856), 1, - sym_at_type_ident, - ACTIONS(2860), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2862), 1, - anon_sym_AMP, - STATE(1202), 1, - aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, - sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, - sym_module_resolution, - STATE(1407), 1, - aux_sym__module_path, - STATE(1478), 1, - sym_attributes, - STATE(1195), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2858), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_SEMI, - [27825] = 14, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2864), 1, - sym_ident, - ACTIONS(2867), 1, - sym_at_ident, - ACTIONS(2870), 1, - sym_at_type_ident, - ACTIONS(2875), 1, - anon_sym_EQ, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, - sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, - sym_module_resolution, - STATE(1407), 1, - aux_sym__module_path, - STATE(1196), 4, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - aux_sym_attributes_repeat1, - ACTIONS(2873), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [27876] = 20, + [35444] = 20, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2158), 1, + ACTIONS(2039), 1, anon_sym_COLON_COLON, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2879), 1, + ACTIONS(3007), 1, anon_sym_COMMA, - ACTIONS(2881), 1, + ACTIONS(3009), 1, anon_sym_EQ, - ACTIONS(2883), 1, + ACTIONS(3011), 1, anon_sym_SEMI, - STATE(1202), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1274), 1, - sym_multi_declaration, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1329), 1, + sym__multi_declaration, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1642), 1, + STATE(1720), 1, sym_attributes, - STATE(2080), 1, + STATE(2128), 1, sym__assign_right_expr, - STATE(1197), 3, + STATE(1234), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [27939] = 17, + [35507] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2158), 1, - anon_sym_COLON_COLON, - ACTIONS(2852), 1, - sym_at_ident, - ACTIONS(2854), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2856), 1, - sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - STATE(1202), 1, - aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, - sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, - sym_module_resolution, - STATE(1407), 1, - aux_sym__module_path, - STATE(1478), 1, - sym_attributes, - STATE(1198), 3, + ACTIONS(2023), 2, + anon_sym_DOT, + anon_sym_LBRACK, + STATE(1235), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2858), 4, + ACTIONS(2025), 14, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, anon_sym_SEMI, - [27996] = 20, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [35542] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, - sym_at_ident, - ACTIONS(2856), 1, - sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2885), 1, - anon_sym_LPAREN, - ACTIONS(2887), 1, - anon_sym_LBRACE, - ACTIONS(2889), 1, - anon_sym_COLON, - STATE(852), 1, - sym_enum_body, - STATE(1202), 1, - aux_sym_attributes_repeat1, - STATE(1218), 1, - sym_interface_impl, - STATE(1253), 1, - sym_enum_spec, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, - sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, - sym_module_resolution, - STATE(1407), 1, - aux_sym__module_path, - STATE(1784), 1, - sym_attributes, - STATE(1199), 3, + ACTIONS(2015), 2, + anon_sym_DOT, + anon_sym_LBRACK, + STATE(1236), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [28059] = 20, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2158), 1, - anon_sym_COLON_COLON, - ACTIONS(2852), 1, - sym_at_ident, - ACTIONS(2856), 1, - sym_at_type_ident, - ACTIONS(2877), 1, + ACTIONS(2017), 14, sym_ident, - ACTIONS(2879), 1, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, anon_sym_COMMA, - ACTIONS(2881), 1, anon_sym_EQ, - ACTIONS(2891), 1, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, anon_sym_SEMI, - STATE(1202), 1, - aux_sym_attributes_repeat1, - STATE(1257), 1, - sym_multi_declaration, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, - sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, - sym_module_resolution, - STATE(1407), 1, - aux_sym__module_path, - STATE(1615), 1, - sym_attributes, - STATE(2127), 1, - sym__assign_right_expr, - STATE(1200), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [28122] = 20, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [35577] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, - anon_sym_LBRACE, - ACTIONS(2852), 1, - sym_at_ident, - ACTIONS(2856), 1, - sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2893), 1, - anon_sym_SEMI, - ACTIONS(2895), 1, - anon_sym_EQ_GT, - STATE(845), 1, - sym_compound_stmt, - STATE(848), 1, - sym_macro_func_body, - STATE(1202), 1, - aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, - sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1340), 1, - sym_attributes, - STATE(1399), 1, - sym_module_resolution, - STATE(1407), 1, - aux_sym__module_path, - STATE(2046), 1, - sym_implies_body, - STATE(1201), 3, + ACTIONS(2073), 2, + anon_sym_DOT, + anon_sym_LBRACK, + STATE(1237), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [28185] = 15, + ACTIONS(2075), 14, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [35612] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, - sym_at_ident, - ACTIONS(2856), 1, - sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2899), 1, - anon_sym_EQ, - STATE(1196), 1, - aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, - sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, - sym_module_resolution, - STATE(1407), 1, - aux_sym__module_path, - STATE(1202), 3, + ACTIONS(2023), 2, + anon_sym_DOT, + anon_sym_LBRACK, + STATE(1238), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2897), 6, + ACTIONS(2025), 14, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, anon_sym_COMMA, + anon_sym_EQ, anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [28238] = 16, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [35647] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2158), 1, - anon_sym_COLON_COLON, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - STATE(1202), 1, + ACTIONS(3015), 1, + anon_sym_EQ, + STATE(1232), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1528), 1, - sym_attributes, - STATE(1203), 3, + STATE(1239), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2901), 4, + ACTIONS(3013), 6, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, anon_sym_SEMI, - [28292] = 7, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [35700] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2180), 1, + ACTIONS(2049), 2, + anon_sym_DOT, anon_sym_LBRACK, - ACTIONS(2903), 1, - anon_sym_EQ, - STATE(1204), 3, + STATE(1240), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2182), 13, + ACTIONS(2051), 14, sym_ident, sym_ct_ident, + sym_hash_ident, + sym_const_ident, anon_sym_COMMA, - anon_sym_GT_RPAREN, + anon_sym_EQ, anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_DOT, anon_sym_STAR, anon_sym_BANG, anon_sym_LBRACK_LT, - [28328] = 19, + [35735] = 20, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2879), 1, - anon_sym_COMMA, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(2905), 1, - anon_sym_SEMI, - STATE(1202), 1, + ACTIONS(3017), 1, + anon_sym_LPAREN, + ACTIONS(3019), 1, + anon_sym_LBRACE, + ACTIONS(3021), 1, + anon_sym_COLON, + STATE(955), 1, + sym_enum_body, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1258), 1, + sym_interface_impl, + STATE(1290), 1, sym__attribute_name, - STATE(1278), 1, - sym_multi_declaration, - STATE(1279), 1, + STATE(1301), 1, + sym_enum_spec, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1622), 1, + STATE(1788), 1, sym_attributes, - STATE(2097), 1, - sym__assign_right_expr, - STATE(1205), 3, + STATE(1241), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [35798] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2057), 2, + anon_sym_DOT, + anon_sym_LBRACK, + STATE(1242), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [28388] = 19, + ACTIONS(2059), 14, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [35833] = 20, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2879), 1, + ACTIONS(3007), 1, anon_sym_COMMA, - ACTIONS(2881), 1, + ACTIONS(3009), 1, anon_sym_EQ, - ACTIONS(2907), 1, + ACTIONS(3023), 1, anon_sym_SEMI, - STATE(1202), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1260), 1, - sym_multi_declaration, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1319), 1, + sym__multi_declaration, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1576), 1, + STATE(1667), 1, sym_attributes, - STATE(2222), 1, + STATE(2137), 1, sym__assign_right_expr, - STATE(1206), 3, + STATE(1243), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [28448] = 18, + [35896] = 20, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(1978), 1, + anon_sym_LBRACE, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2911), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_LPAREN, - STATE(1202), 1, + ACTIONS(3025), 1, + anon_sym_SEMI, + ACTIONS(3027), 1, + anon_sym_EQ_GT, + STATE(992), 1, + sym_macro_func_body, + STATE(993), 1, + sym_compound_stmt, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1250), 1, - sym_enum_arg, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1431), 1, + sym_attributes, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1800), 1, - sym_attributes, - ACTIONS(2909), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1207), 3, + STATE(2152), 1, + sym_implies_body, + STATE(1244), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [28506] = 16, + [35959] = 19, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2915), 1, - sym_ident, - ACTIONS(2917), 1, - sym_ct_ident, - STATE(1202), 1, + ACTIONS(3007), 1, + anon_sym_COMMA, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3029), 1, + anon_sym_SEMI, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1327), 1, + sym__multi_declaration, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1536), 1, + STATE(1695), 1, sym_attributes, - STATE(1208), 3, + STATE(1946), 1, + sym__assign_right_expr, + STATE(1245), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2919), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_SEMI, - [28560] = 19, + [36019] = 19, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, + ACTIONS(1978), 1, anon_sym_LBRACE, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2895), 1, + ACTIONS(3027), 1, anon_sym_EQ_GT, - STATE(845), 1, + STATE(993), 1, sym_compound_stmt, - STATE(862), 1, + STATE(1010), 1, sym_macro_func_body, - STATE(1202), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1397), 1, - sym_attributes, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1472), 1, + sym_attributes, + STATE(1554), 1, aux_sym__module_path, - STATE(2046), 1, + STATE(2152), 1, sym_implies_body, - STATE(1209), 3, + STATE(1246), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [28620] = 16, + [36079] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2158), 1, - anon_sym_COLON_COLON, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - STATE(1202), 1, + ACTIONS(3009), 1, + anon_sym_EQ, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1454), 1, + sym_attributes, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1536), 1, - sym_attributes, - STATE(1210), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2919), 4, + STATE(1620), 1, + sym__assign_right_expr, + ACTIONS(3031), 3, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RPAREN, anon_sym_SEMI, - [28674] = 17, + STATE(1247), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [36135] = 19, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2923), 1, + ACTIONS(3007), 1, + anon_sym_COMMA, + ACTIONS(3009), 1, anon_sym_EQ, - STATE(1202), 1, + ACTIONS(3033), 1, + anon_sym_SEMI, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1324), 1, + sym__multi_declaration, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1437), 1, + STATE(1698), 1, sym_attributes, - STATE(1652), 1, + STATE(2044), 1, sym__assign_right_expr, - ACTIONS(2921), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1211), 3, + STATE(1248), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [28729] = 15, + [36195] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - STATE(1202), 1, - aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3037), 1, + anon_sym_LPAREN, + ACTIONS(3039), 1, + anon_sym_LBRACE, + STATE(732), 1, + sym_switch_body, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, + STATE(1295), 1, + sym_label, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1337), 1, + sym_paren_cond, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1536), 1, - sym_attributes, - STATE(1212), 3, + STATE(1768), 1, + sym_attribute, + STATE(1249), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2919), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_SEMI, - [28780] = 15, + [36252] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - STATE(1202), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1478), 1, + STATE(1577), 1, sym_attributes, - STATE(1213), 3, + STATE(1250), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2858), 4, + ACTIONS(2990), 4, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, anon_sym_SEMI, - [28831] = 18, + [36303] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, - sym_at_ident, - ACTIONS(2856), 1, - sym_at_type_ident, - ACTIONS(2877), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(2885), 1, - anon_sym_LPAREN, - ACTIONS(2925), 1, - anon_sym_LBRACE, - STATE(836), 1, - sym_fault_body, - STATE(1202), 1, - aux_sym_attributes_repeat1, - STATE(1244), 1, - sym_interface_impl, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, - sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, - sym_module_resolution, - STATE(1407), 1, - aux_sym__module_path, - STATE(1827), 1, - sym_attributes, - STATE(1214), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [28888] = 15, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - STATE(1202), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, - aux_sym__module_path, - STATE(1528), 1, + STATE(1492), 1, sym_attributes, - STATE(1215), 3, + STATE(1554), 1, + aux_sym__module_path, + STATE(1251), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2901), 4, + ACTIONS(3041), 4, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, anon_sym_SEMI, - [28939] = 18, + [36354] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2885), 1, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3037), 1, anon_sym_LPAREN, - ACTIONS(2927), 1, + ACTIONS(3043), 1, anon_sym_LBRACE, - STATE(874), 1, - sym_struct_body, - STATE(1202), 1, - aux_sym_attributes_repeat1, - STATE(1247), 1, - sym_interface_impl, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(488), 1, + sym_switch_body, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, + STATE(1299), 1, + sym_label, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1342), 1, + sym_paren_cond, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1826), 1, - sym_attributes, - STATE(1216), 3, + STATE(1800), 1, + sym_attribute, + STATE(1252), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [28996] = 17, + [36411] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2881), 1, + ACTIONS(3047), 1, anon_sym_EQ, - STATE(1202), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, - aux_sym__module_path, - STATE(1456), 1, + STATE(1512), 1, sym_attributes, - STATE(1652), 1, - sym__assign_right_expr, - ACTIONS(2921), 2, + STATE(1554), 1, + aux_sym__module_path, + STATE(1849), 1, + sym_enum_arg, + ACTIONS(3045), 2, anon_sym_COMMA, - anon_sym_SEMI, - STATE(1217), 3, + anon_sym_RBRACE, + STATE(1253), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [29051] = 18, + [36466] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2887), 1, + ACTIONS(3017), 1, + anon_sym_LPAREN, + ACTIONS(3049), 1, anon_sym_LBRACE, - ACTIONS(2889), 1, - anon_sym_COLON, - STATE(839), 1, - sym_enum_body, - STATE(1202), 1, + STATE(1029), 1, + sym_struct_body, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1240), 1, - sym_enum_spec, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1306), 1, + sym_interface_impl, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1803), 1, + STATE(1885), 1, sym_attributes, - STATE(1218), 3, + STATE(1254), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [29108] = 11, + [36523] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2931), 1, - anon_sym_LPAREN, - ACTIONS(2933), 1, - anon_sym_AMP, - ACTIONS(2935), 1, - anon_sym_LBRACK, - ACTIONS(2937), 1, - anon_sym_SEMI, - STATE(1717), 1, - sym_asm_expr, - STATE(1286), 2, - sym_asm_addr, - sym_paren_expr, - STATE(1219), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2929), 6, - sym_real_literal, - sym_integer_literal, + ACTIONS(2984), 1, sym_ident, - sym_ct_ident, - sym_const_ident, - sym_ct_const_ident, - [29150] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(2939), 1, - anon_sym_SEMI, - STATE(1202), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, - sym_module_resolution, - STATE(1407), 1, - aux_sym__module_path, - STATE(1727), 1, - sym_attributes, - STATE(2059), 1, - sym__assign_right_expr, - STATE(1220), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [29204] = 17, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2852), 1, - sym_at_ident, - ACTIONS(2856), 1, - sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(2941), 1, - anon_sym_SEMI, - STATE(1202), 1, - aux_sym_attributes_repeat1, - STATE(1269), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1277), 1, - sym__attribute_name, - STATE(1279), 1, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1662), 1, + STATE(1612), 1, sym_attributes, - STATE(2011), 1, - sym__assign_right_expr, - STATE(1221), 3, + STATE(1255), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [29258] = 17, + ACTIONS(3051), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [36574] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(2943), 1, - anon_sym_SEMI, - STATE(1202), 1, - aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3037), 1, + anon_sym_LPAREN, + ACTIONS(3053), 1, + anon_sym_LBRACE, + STATE(659), 1, + sym_switch_body, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, + STATE(1291), 1, + sym_label, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1348), 1, + sym_paren_cond, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1636), 1, - sym_attributes, - STATE(2086), 1, - sym__assign_right_expr, - STATE(1222), 3, + STATE(1888), 1, + sym_attribute, + STATE(1256), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [29312] = 17, + [36631] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(2945), 1, - anon_sym_SEMI, - STATE(1202), 1, - aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3037), 1, + anon_sym_LPAREN, + ACTIONS(3055), 1, + anon_sym_LBRACE, + STATE(380), 1, + sym_switch_body, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, + STATE(1294), 1, + sym_label, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1336), 1, + sym_paren_cond, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1755), 1, - sym_attributes, - STATE(2141), 1, - sym__assign_right_expr, - STATE(1223), 3, + STATE(1886), 1, + sym_attribute, + STATE(1257), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [29366] = 17, + [36688] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2885), 1, - anon_sym_LPAREN, - ACTIONS(2947), 1, - anon_sym_EQ, - STATE(1202), 1, + ACTIONS(3019), 1, + anon_sym_LBRACE, + ACTIONS(3021), 1, + anon_sym_COLON, + STATE(1005), 1, + sym_enum_body, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1261), 1, - sym_interface_impl, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1308), 1, + sym_enum_spec, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2063), 1, + STATE(1757), 1, sym_attributes, - STATE(1224), 3, + STATE(1258), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [29420] = 17, + [36745] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2949), 1, - anon_sym_COMMA, - ACTIONS(2951), 1, - anon_sym_SEMI, - STATE(1202), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1228), 1, - aux_sym_import_declaration_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, - aux_sym__module_path, - STATE(1944), 1, + STATE(1490), 1, sym_attributes, - STATE(1225), 3, + STATE(1554), 1, + aux_sym__module_path, + STATE(1259), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [29474] = 17, + ACTIONS(3057), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [36796] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, - sym_at_ident, - ACTIONS(2856), 1, - sym_at_type_ident, - ACTIONS(2877), 1, + ACTIONS(1987), 1, + anon_sym_LBRACK, + ACTIONS(3059), 1, + anon_sym_EQ, + STATE(1260), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(1989), 12, sym_ident, - ACTIONS(2953), 1, - anon_sym_LPAREN_LT, - ACTIONS(2955), 1, + sym_ct_ident, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(1202), 1, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_LBRACK_LT, + [36831] = 18, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3017), 1, + anon_sym_LPAREN, + ACTIONS(3061), 1, + anon_sym_LBRACE, + STATE(934), 1, + sym_fault_body, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1268), 1, - sym_generic_module_parameters, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1309), 1, + sym_interface_impl, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1977), 1, + STATE(1848), 1, sym_attributes, - STATE(1226), 3, + STATE(1261), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [29528] = 17, + [36888] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(2957), 1, - anon_sym_SEMI, - STATE(1202), 1, - aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3037), 1, + anon_sym_LPAREN, + ACTIONS(3063), 1, + anon_sym_LBRACE, + STATE(593), 1, + sym_switch_body, + STATE(1287), 1, + sym_label, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1339), 1, + sym_paren_cond, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1751), 1, - sym_attributes, - STATE(2153), 1, - sym__assign_right_expr, - STATE(1227), 3, + STATE(1807), 1, + sym_attribute, + STATE(1262), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [29582] = 17, + [36945] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2949), 1, - anon_sym_COMMA, - ACTIONS(2959), 1, - anon_sym_SEMI, - STATE(1202), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1333), 1, - aux_sym_import_declaration_repeat1, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, - aux_sym__module_path, - STATE(2048), 1, + STATE(1527), 1, sym_attributes, - STATE(1228), 3, + STATE(1554), 1, + aux_sym__module_path, + STATE(1263), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [29636] = 17, + ACTIONS(3065), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [36996] = 18, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(2961), 1, - anon_sym_SEMI, - STATE(1202), 1, - aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3037), 1, + anon_sym_LPAREN, + ACTIONS(3067), 1, + anon_sym_LBRACE, + STATE(522), 1, + sym_switch_body, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, + STATE(1302), 1, + sym_label, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1347), 1, + sym_paren_cond, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1738), 1, - sym_attributes, - STATE(2064), 1, - sym__assign_right_expr, - STATE(1229), 3, + STATE(1791), 1, + sym_attribute, + STATE(1264), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [29690] = 17, + [37053] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2881), 1, + ACTIONS(3009), 1, anon_sym_EQ, - ACTIONS(2963), 1, + ACTIONS(3069), 1, anon_sym_SEMI, - STATE(1202), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1715), 1, + STATE(1688), 1, sym_attributes, - STATE(2041), 1, + STATE(1997), 1, sym__assign_right_expr, - STATE(1230), 3, + STATE(1265), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [29744] = 17, + [37107] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2881), 1, + ACTIONS(3009), 1, anon_sym_EQ, - ACTIONS(2965), 1, + ACTIONS(3071), 1, anon_sym_SEMI, - STATE(1202), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1725), 1, + STATE(1635), 1, sym_attributes, - STATE(2060), 1, + STATE(2063), 1, sym__assign_right_expr, - STATE(1231), 3, + STATE(1266), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [29798] = 17, + [37161] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, - sym_at_ident, - ACTIONS(2856), 1, - sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(2967), 1, + ACTIONS(3075), 1, + anon_sym_LPAREN, + ACTIONS(3077), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_LBRACK, + ACTIONS(3081), 1, anon_sym_SEMI, - STATE(1202), 1, - aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, - sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, - sym_module_resolution, - STATE(1407), 1, - aux_sym__module_path, - STATE(1681), 1, - sym_attributes, - STATE(1956), 1, - sym__assign_right_expr, - STATE(1232), 3, + STATE(1717), 1, + sym_asm_expr, + STATE(1360), 2, + sym_asm_addr, + sym_paren_expr, + STATE(1267), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [29852] = 17, + ACTIONS(3073), 6, + sym_real_literal, + sym_integer_literal, + sym_ident, + sym_ct_ident, + sym_const_ident, + sym_ct_const_ident, + [37203] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2158), 1, + ACTIONS(2039), 1, anon_sym_COLON_COLON, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2969), 1, + ACTIONS(3083), 1, anon_sym_LBRACE, - STATE(1090), 1, - sym_struct_body, STATE(1202), 1, + sym_struct_body, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1835), 1, + STATE(1801), 1, sym_attributes, - STATE(1233), 3, + STATE(1268), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [29906] = 17, + [37257] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2881), 1, + ACTIONS(3009), 1, anon_sym_EQ, - ACTIONS(2971), 1, + ACTIONS(3085), 1, anon_sym_SEMI, - STATE(1202), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1587), 1, + STATE(1630), 1, sym_attributes, - STATE(2199), 1, + STATE(1988), 1, sym__assign_right_expr, - STATE(1234), 3, + STATE(1269), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [29960] = 17, + [37311] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2881), 1, + ACTIONS(3009), 1, anon_sym_EQ, - ACTIONS(2973), 1, + ACTIONS(3087), 1, anon_sym_SEMI, - STATE(1202), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1689), 1, + STATE(1637), 1, sym_attributes, - STATE(1945), 1, + STATE(2219), 1, sym__assign_right_expr, - STATE(1235), 3, + STATE(1270), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [30014] = 17, + [37365] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2881), 1, + ACTIONS(3009), 1, anon_sym_EQ, - ACTIONS(2975), 1, + ACTIONS(3089), 1, anon_sym_SEMI, - STATE(1202), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1664), 1, + STATE(1648), 1, sym_attributes, - STATE(2006), 1, + STATE(2253), 1, sym__assign_right_expr, - STATE(1236), 3, + STATE(1271), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [30068] = 17, + [37419] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2881), 1, + ACTIONS(3009), 1, anon_sym_EQ, - ACTIONS(2977), 1, + ACTIONS(3091), 1, anon_sym_SEMI, - STATE(1202), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1706), 1, + STATE(1655), 1, sym_attributes, - STATE(2081), 1, + STATE(1970), 1, sym__assign_right_expr, - STATE(1237), 3, + STATE(1272), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [30122] = 17, + [37473] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2881), 1, + ACTIONS(3009), 1, anon_sym_EQ, - ACTIONS(2979), 1, + ACTIONS(3093), 1, anon_sym_SEMI, - STATE(1202), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1570), 1, + STATE(1663), 1, sym_attributes, - STATE(2094), 1, + STATE(2115), 1, sym__assign_right_expr, - STATE(1238), 3, + STATE(1273), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [30176] = 16, + [37527] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2981), 1, + ACTIONS(3009), 1, anon_sym_EQ, - ACTIONS(2983), 1, - anon_sym_LPAREN, - STATE(1202), 1, + ACTIONS(3095), 1, + anon_sym_SEMI, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2012), 1, + STATE(1666), 1, sym_attributes, - STATE(1239), 3, + STATE(2142), 1, + sym__assign_right_expr, + STATE(1274), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [30227] = 16, + [37581] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2887), 1, - anon_sym_LBRACE, - STATE(868), 1, - sym_enum_body, - STATE(1202), 1, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3097), 1, + anon_sym_SEMI, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1802), 1, + STATE(1675), 1, sym_attributes, - STATE(1240), 3, + STATE(2234), 1, + sym__assign_right_expr, + STATE(1275), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [30278] = 15, + [37635] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - STATE(1202), 1, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3099), 1, + anon_sym_SEMI, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1864), 1, + STATE(1679), 1, sym_attributes, - ACTIONS(2985), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(1241), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [30327] = 10, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2931), 1, - anon_sym_LPAREN, - ACTIONS(2933), 1, - anon_sym_AMP, - ACTIONS(2935), 1, - anon_sym_LBRACK, - STATE(1901), 1, - sym_asm_expr, - STATE(1286), 2, - sym_asm_addr, - sym_paren_expr, - STATE(1242), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2929), 6, - sym_real_literal, - sym_integer_literal, - sym_ident, - sym_ct_ident, - sym_const_ident, - sym_ct_const_ident, - [30366] = 10, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2933), 1, - anon_sym_AMP, - ACTIONS(2935), 1, - anon_sym_LBRACK, - ACTIONS(2987), 1, - anon_sym_LPAREN, - STATE(1289), 1, - sym_asm_expr, - STATE(1286), 2, - sym_asm_addr, - sym_paren_expr, - STATE(1243), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(2929), 6, - sym_real_literal, - sym_integer_literal, - sym_ident, - sym_ct_ident, - sym_const_ident, - sym_ct_const_ident, - [30405] = 16, + STATE(2266), 1, + sym__assign_right_expr, + STATE(1276), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [37689] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2925), 1, - anon_sym_LBRACE, - STATE(825), 1, - sym_fault_body, - STATE(1202), 1, + ACTIONS(3101), 1, + anon_sym_LPAREN_LT, + ACTIONS(3103), 1, + anon_sym_SEMI, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1328), 1, + sym_generic_module_parameters, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1787), 1, + STATE(2112), 1, sym_attributes, - STATE(1244), 3, + STATE(1277), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [30456] = 16, + [37743] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2989), 1, - anon_sym_LBRACE, - STATE(1091), 1, - sym_bitstruct_body, - STATE(1202), 1, + ACTIONS(3105), 1, + anon_sym_COMMA, + ACTIONS(3107), 1, + anon_sym_SEMI, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1282), 1, + aux_sym_import_declaration_repeat1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1917), 1, + STATE(2205), 1, sym_attributes, - STATE(1245), 3, + STATE(1278), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [30507] = 16, + [37797] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2969), 1, - anon_sym_LBRACE, - ACTIONS(2991), 1, - sym_ident, - STATE(1085), 1, - sym_struct_body, - STATE(1202), 1, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3109), 1, + anon_sym_SEMI, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1889), 1, + STATE(1692), 1, sym_attributes, - STATE(1246), 3, + STATE(2010), 1, + sym__assign_right_expr, + STATE(1279), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [30558] = 16, + [37851] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2927), 1, - anon_sym_LBRACE, - STATE(853), 1, - sym_struct_body, - STATE(1202), 1, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3111), 1, + anon_sym_SEMI, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1764), 1, + STATE(1702), 1, sym_attributes, - STATE(1247), 3, + STATE(2072), 1, + sym__assign_right_expr, + STATE(1280), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [30609] = 16, + [37905] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2993), 1, - anon_sym_LBRACE, - STATE(873), 1, - sym_bitstruct_body, - STATE(1202), 1, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3113), 1, + anon_sym_SEMI, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1789), 1, + STATE(1703), 1, sym_attributes, - STATE(1248), 3, + STATE(2077), 1, + sym__assign_right_expr, + STATE(1281), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [30660] = 16, + [37959] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2989), 1, - anon_sym_LBRACE, - STATE(1093), 1, - sym_bitstruct_body, - STATE(1202), 1, + ACTIONS(3105), 1, + anon_sym_COMMA, + ACTIONS(3115), 1, + anon_sym_SEMI, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, STATE(1399), 1, + aux_sym_import_declaration_repeat1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1768), 1, + STATE(2259), 1, sym_attributes, - STATE(1249), 3, + STATE(1282), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [30711] = 15, + [38013] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - STATE(1202), 1, + ACTIONS(3017), 1, + anon_sym_LPAREN, + ACTIONS(3117), 1, + anon_sym_EQ, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1320), 1, + sym_interface_impl, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1910), 1, + STATE(2106), 1, sym_attributes, - ACTIONS(2995), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1250), 3, + STATE(1283), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [30760] = 16, + [38067] = 17, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2158), 1, - anon_sym_COLON_COLON, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2997), 1, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3119), 1, anon_sym_SEMI, - STATE(1202), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2197), 1, + STATE(1696), 1, sym_attributes, - STATE(1251), 3, + STATE(1944), 1, + sym__assign_right_expr, + STATE(1284), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [30811] = 15, + [38121] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - STATE(1202), 1, + ACTIONS(3121), 1, + anon_sym_LBRACE, + STATE(1211), 1, + sym_bitstruct_body, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1811), 1, + STATE(1756), 1, sym_attributes, - ACTIONS(2999), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(1252), 3, + STATE(1285), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [30860] = 16, + [38172] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2887), 1, + ACTIONS(3123), 1, anon_sym_LBRACE, - STATE(839), 1, - sym_enum_body, - STATE(1202), 1, + STATE(946), 1, + sym_bitstruct_body, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1803), 1, + STATE(1744), 1, sym_attributes, - STATE(1253), 3, + STATE(1286), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [30911] = 10, + [38223] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2933), 1, - anon_sym_AMP, - ACTIONS(2935), 1, - anon_sym_LBRACK, - ACTIONS(2987), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3037), 1, anon_sym_LPAREN, - STATE(1484), 1, - sym_asm_expr, - STATE(1286), 2, - sym_asm_addr, - sym_paren_expr, - STATE(1254), 3, + ACTIONS(3063), 1, + anon_sym_LBRACE, + STATE(605), 1, + sym_switch_body, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1338), 1, + sym_paren_cond, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1846), 1, + sym_attribute, + STATE(1287), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2929), 6, - sym_real_literal, - sym_integer_literal, - sym_ident, - sym_ct_ident, - sym_const_ident, - sym_ct_const_ident, - [30950] = 16, + [38274] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2993), 1, - anon_sym_LBRACE, - STATE(813), 1, - sym_bitstruct_body, - STATE(1202), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1277), 1, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1793), 1, + sym_attributes, + ACTIONS(3125), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(1288), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [38323] = 15, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1913), 1, + STATE(1755), 1, sym_attributes, - STATE(1255), 3, + ACTIONS(3127), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(1289), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [31001] = 6, + [38372] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3003), 1, + ACTIONS(3131), 1, anon_sym_EQ, - STATE(1256), 3, + ACTIONS(3133), 1, + anon_sym_LPAREN, + STATE(1343), 1, + sym_attribute_param_list, + STATE(1290), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3001), 10, + ACTIONS(3129), 9, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [31031] = 15, + [38407] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(3005), 1, - anon_sym_SEMI, - STATE(1202), 1, - aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + ACTIONS(3037), 1, + anon_sym_LPAREN, + ACTIONS(3053), 1, + anon_sym_LBRACE, + STATE(675), 1, + sym_switch_body, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1350), 1, + sym_paren_cond, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2223), 1, - sym_attributes, - STATE(1257), 3, + STATE(1930), 1, + sym_attribute, + STATE(1291), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [31079] = 15, + [38458] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, - sym_at_ident, - ACTIONS(2856), 1, - sym_at_type_ident, - ACTIONS(2877), 1, + ACTIONS(3077), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_LBRACK, + ACTIONS(3135), 1, + anon_sym_LPAREN, + STATE(1356), 1, + sym_asm_expr, + STATE(1360), 2, + sym_asm_addr, + sym_paren_expr, + STATE(1292), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3073), 6, + sym_real_literal, + sym_integer_literal, sym_ident, - ACTIONS(3007), 1, - anon_sym_RBRACE, - STATE(1202), 1, - aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, - sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, - sym_module_resolution, - STATE(1407), 1, - aux_sym__module_path, - STATE(1936), 1, - sym_attributes, - STATE(1258), 3, + sym_ct_ident, + sym_const_ident, + sym_ct_const_ident, + [38497] = 10, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3077), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_LBRACK, + ACTIONS(3135), 1, + anon_sym_LPAREN, + STATE(1610), 1, + sym_asm_expr, + STATE(1360), 2, + sym_asm_addr, + sym_paren_expr, + STATE(1293), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [31127] = 15, + ACTIONS(3073), 6, + sym_real_literal, + sym_integer_literal, + sym_ident, + sym_ct_ident, + sym_const_ident, + sym_ct_const_ident, + [38536] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3009), 1, - sym_ident, - ACTIONS(3011), 1, - anon_sym_SEMI, - STATE(1202), 1, - aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + ACTIONS(3037), 1, + anon_sym_LPAREN, + ACTIONS(3055), 1, + anon_sym_LBRACE, + STATE(347), 1, + sym_switch_body, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1341), 1, + sym_paren_cond, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2105), 1, - sym_attributes, - STATE(1259), 3, + STATE(1922), 1, + sym_attribute, + STATE(1294), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [31175] = 15, + [38587] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(3013), 1, - anon_sym_SEMI, - STATE(1202), 1, - aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + ACTIONS(3037), 1, + anon_sym_LPAREN, + ACTIONS(3039), 1, + anon_sym_LBRACE, + STATE(748), 1, + sym_switch_body, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1340), 1, + sym_paren_cond, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2009), 1, - sym_attributes, - STATE(1260), 3, + STATE(1778), 1, + sym_attribute, + STATE(1295), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [31223] = 15, + [38638] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(3015), 1, - anon_sym_EQ, - STATE(1202), 1, + ACTIONS(3137), 1, + anon_sym_SEMI, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, STATE(1982), 1, sym_attributes, - STATE(1261), 3, + STATE(1296), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [31271] = 15, + [38689] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(3017), 1, - anon_sym_RBRACE, - STATE(1202), 1, + ACTIONS(3121), 1, + anon_sym_LBRACE, + STATE(1205), 1, + sym_bitstruct_body, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2198), 1, + STATE(1795), 1, sym_attributes, - STATE(1262), 3, + STATE(1297), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [31319] = 15, + [38740] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(3019), 1, - anon_sym_RBRACE, - STATE(1202), 1, + ACTIONS(3123), 1, + anon_sym_LBRACE, + STATE(976), 1, + sym_bitstruct_body, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1974), 1, + STATE(1830), 1, sym_attributes, - STATE(1263), 3, + STATE(1298), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [31367] = 6, + [38791] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3023), 1, - anon_sym_EQ, - STATE(1264), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3021), 10, + ACTIONS(2984), 1, sym_ident, + ACTIONS(2986), 1, sym_at_ident, + ACTIONS(2988), 1, sym_at_type_ident, - anon_sym_COMMA, + ACTIONS(3037), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(3043), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [31397] = 15, + STATE(471), 1, + sym_switch_body, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1344), 1, + sym_paren_cond, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1810), 1, + sym_attribute, + STATE(1299), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [38842] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, - sym_at_ident, - ACTIONS(2856), 1, - sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(3025), 1, - anon_sym_RBRACE, - STATE(1202), 1, - aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, - sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, - sym_module_resolution, - STATE(1407), 1, - aux_sym__module_path, - STATE(2177), 1, - sym_attributes, - STATE(1265), 3, + ACTIONS(1717), 1, + anon_sym_DOT, + STATE(1300), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [31445] = 15, + ACTIONS(1719), 11, + sym_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + [38873] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(3027), 1, - anon_sym_EQ, - STATE(1202), 1, + ACTIONS(3019), 1, + anon_sym_LBRACE, + STATE(1005), 1, + sym_enum_body, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1922), 1, + STATE(1757), 1, sym_attributes, - STATE(1266), 3, + STATE(1301), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [31493] = 15, + [38924] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(3029), 1, - anon_sym_SEMI, - STATE(1202), 1, - aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + ACTIONS(3037), 1, + anon_sym_LPAREN, + ACTIONS(3067), 1, + anon_sym_LBRACE, + STATE(545), 1, + sym_switch_body, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1349), 1, + sym_paren_cond, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2107), 1, - sym_attributes, - STATE(1267), 3, + STATE(1881), 1, + sym_attribute, + STATE(1302), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [31541] = 15, + [38975] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, + ACTIONS(3083), 1, + anon_sym_LBRACE, + ACTIONS(3139), 1, sym_ident, - ACTIONS(3031), 1, - anon_sym_SEMI, - STATE(1202), 1, + STATE(1209), 1, + sym_struct_body, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2092), 1, + STATE(1770), 1, sym_attributes, - STATE(1268), 3, + STATE(1303), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [31589] = 6, + [39026] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3035), 1, - anon_sym_EQ, - STATE(1269), 3, + ACTIONS(1721), 1, + anon_sym_DOT, + STATE(1304), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3033), 10, + ACTIONS(1723), 11, sym_ident, - sym_at_ident, - sym_at_type_ident, + sym_ct_ident, + sym_hash_ident, + sym_const_ident, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_EQ, anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [31619] = 15, + [39057] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(3037), 1, + ACTIONS(3141), 1, anon_sym_EQ, - STATE(1202), 1, + ACTIONS(3143), 1, + anon_sym_LPAREN, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, - sym_attribute, - STATE(1399), 1, - sym_module_resolution, - STATE(1407), 1, - aux_sym__module_path, - STATE(2067), 1, - sym_attributes, - STATE(1270), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [31667] = 15, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2852), 1, - sym_at_ident, - ACTIONS(2856), 1, - sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(3039), 1, - anon_sym_SEMI, - STATE(1202), 1, - aux_sym_attributes_repeat1, - STATE(1269), 1, + STATE(1313), 1, sym_path_at_type_ident, - STATE(1277), 1, - sym__attribute_name, - STATE(1279), 1, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2036), 1, + STATE(2074), 1, sym_attributes, - STATE(1271), 3, + STATE(1305), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [31715] = 15, + [39108] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(3041), 1, - anon_sym_SEMI, - STATE(1202), 1, + ACTIONS(3049), 1, + anon_sym_LBRACE, + STATE(1017), 1, + sym_struct_body, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2178), 1, + STATE(1829), 1, sym_attributes, - STATE(1272), 3, + STATE(1306), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [31763] = 6, + [39159] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3045), 1, - anon_sym_DOT, - STATE(1273), 3, + ACTIONS(3075), 1, + anon_sym_LPAREN, + ACTIONS(3077), 1, + anon_sym_AMP, + ACTIONS(3079), 1, + anon_sym_LBRACK, + STATE(1907), 1, + sym_asm_expr, + STATE(1360), 2, + sym_asm_addr, + sym_paren_expr, + STATE(1307), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3043), 10, + ACTIONS(3073), 6, sym_real_literal, sym_integer_literal, sym_ident, sym_ct_ident, sym_const_ident, sym_ct_const_ident, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_SEMI, - [31793] = 15, + [39198] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2891), 1, - anon_sym_SEMI, - STATE(1202), 1, + ACTIONS(3019), 1, + anon_sym_LBRACE, + STATE(1012), 1, + sym_enum_body, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2220), 1, + STATE(1825), 1, sym_attributes, - STATE(1274), 3, + STATE(1308), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [31841] = 15, + [39249] = 16, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(3047), 1, - anon_sym_SEMI, - STATE(1202), 1, + ACTIONS(3061), 1, + anon_sym_LBRACE, + STATE(1001), 1, + sym_fault_body, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1981), 1, + STATE(1815), 1, sym_attributes, - STATE(1275), 3, + STATE(1309), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [31889] = 15, + [39300] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(2893), 1, + ACTIONS(3145), 1, anon_sym_SEMI, - STATE(1202), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2131), 1, + STATE(1967), 1, sym_attributes, - STATE(1276), 3, + STATE(1310), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [31937] = 7, + [39348] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3051), 1, - anon_sym_EQ, - ACTIONS(3053), 1, - anon_sym_LPAREN, - STATE(1277), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3049), 9, + ACTIONS(2984), 1, sym_ident, + ACTIONS(2986), 1, sym_at_ident, + ACTIONS(2988), 1, sym_at_type_ident, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3147), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [31969] = 15, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(2241), 1, + sym_attributes, + STATE(1311), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [39396] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2852), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(2856), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(3055), 1, + ACTIONS(3149), 1, anon_sym_SEMI, - STATE(1202), 1, + STATE(1239), 1, aux_sym_attributes_repeat1, - STATE(1269), 1, - sym_path_at_type_ident, - STATE(1277), 1, + STATE(1290), 1, sym__attribute_name, - STATE(1279), 1, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, sym_attribute, - STATE(1399), 1, + STATE(1461), 1, sym_module_resolution, - STATE(1407), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(2212), 1, + STATE(2105), 1, sym_attributes, - STATE(1278), 3, + STATE(1312), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [32017] = 6, + [39444] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3059), 1, + ACTIONS(3153), 1, anon_sym_EQ, - STATE(1279), 3, + STATE(1313), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3057), 9, + ACTIONS(3151), 10, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [32046] = 5, + [39474] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1280), 3, + ACTIONS(3157), 1, + anon_sym_DOT, + STATE(1314), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3061), 10, + ACTIONS(3155), 10, sym_real_literal, sym_integer_literal, sym_ident, @@ -143691,18943 +152278,19531 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_LBRACK, anon_sym_SEMI, - [32073] = 6, + [39504] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3065), 1, + ACTIONS(3161), 1, anon_sym_EQ, - STATE(1281), 3, + STATE(1315), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3063), 9, + ACTIONS(3159), 10, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - [32102] = 6, + [39534] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3069), 1, - anon_sym_EQ, - STATE(1282), 3, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3163), 1, + anon_sym_RBRACE, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(2250), 1, + sym_attributes, + STATE(1316), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3067), 9, + [39582] = 15, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2984), 1, sym_ident, + ACTIONS(2986), 1, sym_at_ident, + ACTIONS(2988), 1, sym_at_type_ident, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3025), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [32131] = 5, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(2058), 1, + sym_attributes, + STATE(1317), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [39630] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1283), 3, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3165), 1, + anon_sym_RBRACE, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(2247), 1, + sym_attributes, + STATE(1318), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3071), 9, - sym_real_literal, - sym_integer_literal, + [39678] = 15, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2984), 1, sym_ident, - sym_ct_ident, - sym_const_ident, - sym_ct_const_ident, - anon_sym_LPAREN, - anon_sym_AMP, - anon_sym_LBRACK, - [32157] = 12, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3167), 1, + anon_sym_SEMI, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(2043), 1, + sym_attributes, + STATE(1319), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [39726] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3073), 1, - anon_sym_LPAREN_LT, - ACTIONS(3075), 1, - anon_sym_LPAREN, - ACTIONS(3077), 1, - anon_sym_LBRACK, - ACTIONS(3079), 1, - anon_sym_BANG, - ACTIONS(3083), 1, - anon_sym_BANG_BANG, - STATE(897), 1, - sym_call_invocation, - STATE(918), 1, - sym_generic_arguments, - ACTIONS(3081), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1284), 3, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3169), 1, + anon_sym_EQ, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(2176), 1, + sym_attributes, + STATE(1320), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [32197] = 5, + [39774] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1285), 3, + ACTIONS(3173), 1, + anon_sym_EQ, + STATE(1321), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3085), 8, + ACTIONS(3171), 10, + sym_ident, + sym_at_ident, + sym_at_type_ident, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - [32222] = 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [39804] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1286), 3, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3175), 1, + anon_sym_SEMI, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(2060), 1, + sym_attributes, + STATE(1322), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3087), 8, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - [32247] = 10, + [39852] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3093), 1, - anon_sym_BANG, - STATE(936), 1, - sym_initializer_list, - ACTIONS(2673), 2, + ACTIONS(2984), 1, sym_ident, - sym_ct_ident, - ACTIONS(2693), 2, - anon_sym_COMMA, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3177), 1, anon_sym_RBRACE, - STATE(1287), 3, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(2020), 1, + sym_attributes, + STATE(1323), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [32282] = 5, + [39900] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1288), 3, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3179), 1, + anon_sym_SEMI, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(2183), 1, + sym_attributes, + STATE(1324), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3095), 8, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - [32307] = 9, + [39948] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3097), 1, - anon_sym_RBRACK, - ACTIONS(3103), 1, - anon_sym_STAR, - ACTIONS(3099), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3101), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1972), 2, - sym__additive_op, - sym__shift_op, - STATE(1289), 3, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3181), 1, + anon_sym_EQ, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(2022), 1, + sym_attributes, + STATE(1325), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [32340] = 5, + [39996] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1290), 3, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3183), 1, + anon_sym_SEMI, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(2240), 1, + sym_attributes, + STATE(1326), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3105), 8, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - [32365] = 5, + [40044] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1291), 3, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3185), 1, + anon_sym_SEMI, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(2117), 1, + sym_attributes, + STATE(1327), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3107), 8, - anon_sym_COMMA, - anon_sym_RBRACK, + [40092] = 15, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3187), 1, anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - [32390] = 5, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1963), 1, + sym_attributes, + STATE(1328), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [40140] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1292), 3, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3189), 1, + anon_sym_SEMI, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(2042), 1, + sym_attributes, + STATE(1329), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3109), 8, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_STAR, - [32415] = 8, + [40188] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3111), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(3116), 1, - sym_const_ident, - STATE(1399), 1, - sym_module_resolution, - ACTIONS(3114), 3, + ACTIONS(2986), 1, sym_at_ident, - sym_type_ident, + ACTIONS(2988), 1, sym_at_type_ident, - STATE(1293), 4, + ACTIONS(3191), 1, + anon_sym_SEMI, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(2001), 1, + sym_attributes, + STATE(1330), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__module_path, - [32445] = 11, + [40236] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(75), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(83), 1, - sym_const_ident, - ACTIONS(3118), 1, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3193), 1, sym_ident, - ACTIONS(3120), 1, - sym_type_ident, - STATE(938), 1, - sym__ident_expr, - STATE(1293), 1, - aux_sym__module_path, - STATE(1399), 1, + ACTIONS(3195), 1, + anon_sym_SEMI, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, sym_module_resolution, - STATE(1294), 3, + STATE(1554), 1, + aux_sym__module_path, + STATE(2254), 1, + sym_attributes, + STATE(1331), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [32481] = 8, + [40284] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_DOT, - STATE(936), 1, - sym_initializer_list, - STATE(1295), 3, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3197), 1, + anon_sym_SEMI, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(2149), 1, + sym_attributes, + STATE(1332), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2687), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - [32511] = 6, + [40332] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2158), 1, - anon_sym_COLON_COLON, - STATE(1296), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3122), 6, + ACTIONS(2984), 1, sym_ident, + ACTIONS(2986), 1, sym_at_ident, + ACTIONS(2988), 1, sym_at_type_ident, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_SEMI, - [32537] = 11, + ACTIONS(3199), 1, + anon_sym_EQ, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(2154), 1, + sym_attributes, + STATE(1333), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [40380] = 15, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2877), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(3124), 1, - sym_type_ident, - ACTIONS(3126), 1, - anon_sym_RPAREN, - STATE(1399), 1, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3201), 1, + anon_sym_RBRACE, + STATE(1239), 1, + aux_sym_attributes_repeat1, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1346), 1, + sym_attribute, + STATE(1461), 1, sym_module_resolution, - STATE(1452), 1, - sym_path_type_ident, - STATE(1567), 1, + STATE(1554), 1, aux_sym__module_path, - STATE(1708), 1, - sym_interface, - STATE(1297), 3, + STATE(2160), 1, + sym_attributes, + STATE(1334), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [32573] = 5, + [40428] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1298), 3, + ACTIONS(3205), 1, + anon_sym_EQ, + STATE(1335), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3128), 7, + ACTIONS(3203), 9, sym_ident, sym_at_ident, sym_at_type_ident, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, - [32597] = 9, + [40457] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3134), 1, - sym_const_ident, - ACTIONS(3136), 1, - anon_sym_DOLLAReval, - STATE(926), 1, - sym_access_ident, - ACTIONS(3130), 2, + ACTIONS(2984), 1, sym_ident, - anon_sym_typeid, - ACTIONS(3132), 2, + ACTIONS(2986), 1, sym_at_ident, - sym_hash_ident, - STATE(1299), 3, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3055), 1, + anon_sym_LBRACE, + STATE(343), 1, + sym_switch_body, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1883), 1, + sym_attribute, + STATE(1336), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [32629] = 5, + [40502] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1300), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3138), 7, + ACTIONS(2984), 1, sym_ident, + ACTIONS(2986), 1, sym_at_ident, + ACTIONS(2988), 1, sym_at_type_ident, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(3039), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [32653] = 6, + STATE(746), 1, + sym_switch_body, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1776), 1, + sym_attribute, + STATE(1337), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [40547] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2158), 1, - anon_sym_COLON_COLON, - STATE(1301), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3140), 6, + ACTIONS(2984), 1, sym_ident, + ACTIONS(2986), 1, sym_at_ident, + ACTIONS(2988), 1, sym_at_type_ident, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_SEMI, - [32679] = 11, + ACTIONS(3063), 1, + anon_sym_LBRACE, + STATE(619), 1, + sym_switch_body, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1861), 1, + sym_attribute, + STATE(1338), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [40592] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(75), 1, - sym_at_ident, - ACTIONS(83), 1, - sym_const_ident, - ACTIONS(3118), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(3142), 1, - sym_type_ident, - STATE(938), 1, - sym__ident_expr, - STATE(1293), 1, - aux_sym__module_path, - STATE(1399), 1, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3063), 1, + anon_sym_LBRACE, + STATE(603), 1, + sym_switch_body, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1461), 1, sym_module_resolution, - STATE(1302), 3, + STATE(1554), 1, + aux_sym__module_path, + STATE(1837), 1, + sym_attribute, + STATE(1339), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [32715] = 10, + [40637] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3144), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(3146), 1, + ACTIONS(2986), 1, sym_at_ident, - ACTIONS(3148), 1, - sym_type_ident, - ACTIONS(3150), 1, + ACTIONS(2988), 1, sym_at_type_ident, - ACTIONS(3152), 1, - sym_const_ident, - STATE(1271), 2, - sym_define_attribute, - sym_define_ident, - STATE(1303), 3, + ACTIONS(3039), 1, + anon_sym_LBRACE, + STATE(764), 1, + sym_switch_body, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1783), 1, + sym_attribute, + STATE(1340), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [32749] = 8, + [40682] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3089), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3055), 1, anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_DOT, - STATE(936), 1, - sym_initializer_list, - STATE(1304), 3, + STATE(363), 1, + sym_switch_body, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1820), 1, + sym_attribute, + STATE(1341), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2693), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - [32779] = 9, + [40727] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3156), 1, - anon_sym_RBRACE, - STATE(1219), 1, - sym_asm_instr, - STATE(1320), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, - sym_asm_stmt, - ACTIONS(3154), 2, + ACTIONS(2984), 1, sym_ident, - anon_sym_int, - STATE(1305), 3, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3043), 1, + anon_sym_LBRACE, + STATE(467), 1, + sym_switch_body, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1808), 1, + sym_attribute, + STATE(1342), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [32810] = 7, + [40772] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3160), 1, - anon_sym_LPAREN, - STATE(1441), 1, - sym_enum_param_list, - STATE(1306), 3, + ACTIONS(3209), 1, + anon_sym_EQ, + STATE(1343), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3158), 4, + ACTIONS(3207), 9, sym_ident, sym_at_ident, sym_at_type_ident, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, - [32837] = 10, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [40801] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3164), 1, - anon_sym_LPAREN, - ACTIONS(3166), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3043), 1, anon_sym_LBRACE, - STATE(617), 1, + STATE(425), 1, sym_switch_body, - STATE(1513), 1, - sym_label, - STATE(1760), 1, - sym_paren_cond, - STATE(1307), 3, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1816), 1, + sym_attribute, + STATE(1344), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [32870] = 8, + [40846] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, + ACTIONS(3213), 1, anon_sym_EQ, - STATE(1590), 1, - sym__assign_right_expr, - STATE(1591), 1, - sym_parameter_default, - ACTIONS(3168), 3, + STATE(1345), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3211), 9, + sym_ident, + sym_at_ident, + sym_at_type_ident, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - STATE(1308), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [40875] = 6, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3217), 1, + anon_sym_EQ, + STATE(1346), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [32899] = 10, + ACTIONS(3215), 9, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [40904] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3164), 1, - anon_sym_LPAREN, - ACTIONS(3170), 1, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3067), 1, anon_sym_LBRACE, - STATE(455), 1, + STATE(543), 1, sym_switch_body, - STATE(1444), 1, - sym_label, - STATE(1912), 1, - sym_paren_cond, - STATE(1309), 3, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1880), 1, + sym_attribute, + STATE(1347), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [32932] = 9, + [40949] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3172), 1, - anon_sym_RBRACE, - STATE(1219), 1, - sym_asm_instr, - STATE(1352), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, - sym_asm_stmt, - ACTIONS(3154), 2, + ACTIONS(2984), 1, sym_ident, - anon_sym_int, - STATE(1310), 3, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3053), 1, + anon_sym_LBRACE, + STATE(673), 1, + sym_switch_body, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1910), 1, + sym_attribute, + STATE(1348), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [32963] = 9, + [40994] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3174), 1, - anon_sym_RBRACE, - ACTIONS(3176), 1, - anon_sym_case, - ACTIONS(3178), 1, - anon_sym_default, - STATE(1342), 1, - aux_sym_switch_body_repeat1, - STATE(1634), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1311), 3, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3067), 1, + anon_sym_LBRACE, + STATE(566), 1, + sym_switch_body, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1754), 1, + sym_attribute, + STATE(1349), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [32994] = 9, + [41039] = 14, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3180), 1, - anon_sym_RBRACE, - STATE(1219), 1, - sym_asm_instr, - STATE(1319), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, - sym_asm_stmt, - ACTIONS(3154), 2, + ACTIONS(2984), 1, sym_ident, - anon_sym_int, - STATE(1312), 3, + ACTIONS(2986), 1, + sym_at_ident, + ACTIONS(2988), 1, + sym_at_type_ident, + ACTIONS(3053), 1, + anon_sym_LBRACE, + STATE(691), 1, + sym_switch_body, + STATE(1290), 1, + sym__attribute_name, + STATE(1313), 1, + sym_path_at_type_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 1, + aux_sym__module_path, + STATE(1748), 1, + sym_attribute, + STATE(1350), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33025] = 9, + [41084] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3180), 1, - anon_sym_RBRACE, - STATE(1219), 1, - sym_asm_instr, - STATE(1352), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, - sym_asm_stmt, - ACTIONS(3154), 2, - sym_ident, - anon_sym_int, - STATE(1313), 3, + STATE(1351), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33056] = 10, + ACTIONS(3219), 10, + sym_real_literal, + sym_integer_literal, + sym_ident, + sym_ct_ident, + sym_const_ident, + sym_ct_const_ident, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_SEMI, + [41111] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2681), 1, - anon_sym_COMMA, - ACTIONS(2683), 1, - anon_sym_GT_RPAREN, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_DOT, - STATE(936), 1, - sym_initializer_list, - STATE(1628), 1, - aux_sym__generic_arg_list_repeat1, - STATE(1314), 3, + ACTIONS(3225), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3227), 1, + anon_sym_AMP, + ACTIONS(3221), 3, + sym_ident, + sym_ct_ident, + sym_hash_ident, + STATE(1352), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33089] = 9, + ACTIONS(3223), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [41143] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3176), 1, - anon_sym_case, - ACTIONS(3178), 1, - anon_sym_default, - ACTIONS(3182), 1, - anon_sym_RBRACE, - STATE(1360), 1, - aux_sym_switch_body_repeat1, - STATE(1634), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1315), 3, + STATE(1353), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33120] = 9, + ACTIONS(3229), 9, + sym_real_literal, + sym_integer_literal, + sym_ident, + sym_ct_ident, + sym_const_ident, + sym_ct_const_ident, + anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_LBRACK, + [41169] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3184), 1, - anon_sym_RBRACE, - STATE(1219), 1, - sym_asm_instr, - STATE(1362), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, - sym_asm_stmt, - ACTIONS(3154), 2, + ACTIONS(3235), 1, + sym_const_ident, + ACTIONS(3237), 1, + anon_sym_DOLLAReval, + STATE(904), 1, + sym_access_ident, + STATE(905), 1, + sym_access_eval, + ACTIONS(3231), 2, sym_ident, - anon_sym_int, - STATE(1316), 3, + anon_sym_typeid, + ACTIONS(3233), 2, + sym_at_ident, + sym_hash_ident, + STATE(1354), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33151] = 9, + [41204] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3176), 1, - anon_sym_case, - ACTIONS(3178), 1, - anon_sym_default, - ACTIONS(3186), 1, - anon_sym_RBRACE, - STATE(1328), 1, - aux_sym_switch_body_repeat1, - STATE(1634), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1317), 3, + STATE(1355), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33182] = 10, + ACTIONS(3239), 8, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + [41229] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3164), 1, - anon_sym_LPAREN, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(417), 1, - sym_switch_body, - STATE(1499), 1, - sym_label, - STATE(1861), 1, - sym_paren_cond, - STATE(1318), 3, + ACTIONS(3241), 1, + anon_sym_RBRACK, + ACTIONS(3247), 1, + anon_sym_STAR, + ACTIONS(3243), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3245), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1980), 2, + sym__additive_op, + sym__shift_op, + STATE(1356), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33215] = 9, + [41262] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3190), 1, - anon_sym_RBRACE, - STATE(1219), 1, - sym_asm_instr, - STATE(1352), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, - sym_asm_stmt, - ACTIONS(3154), 2, + ACTIONS(2626), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, + anon_sym_STAR, + ACTIONS(2632), 1, + anon_sym_LBRACK_LT, + ACTIONS(2967), 1, + anon_sym_BANG, + STATE(1054), 1, + aux_sym_type_repeat1, + STATE(1126), 1, + sym_type_suffix, + ACTIONS(1719), 2, sym_ident, - anon_sym_int, - STATE(1319), 3, + anon_sym_AMP, + STATE(1357), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33246] = 9, + [41299] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3192), 1, - anon_sym_RBRACE, - STATE(1219), 1, - sym_asm_instr, - STATE(1352), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, - sym_asm_stmt, - ACTIONS(3154), 2, - sym_ident, - anon_sym_int, - STATE(1320), 3, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1358), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33277] = 9, + ACTIONS(3249), 8, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + [41324] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3194), 1, - anon_sym_RBRACE, - STATE(1219), 1, - sym_asm_instr, - STATE(1332), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, - sym_asm_stmt, - ACTIONS(3154), 2, - sym_ident, - anon_sym_int, - STATE(1321), 3, + STATE(1359), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33308] = 7, + ACTIONS(3251), 8, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + [41349] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3198), 1, - anon_sym_COMMA, - STATE(1350), 1, - aux_sym_multi_declaration_repeat1, - STATE(1322), 3, + STATE(1360), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3196), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, + ACTIONS(3253), 8, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_SEMI, - [33335] = 9, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + [41374] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3093), 1, + ACTIONS(2626), 1, + anon_sym_LBRACK, + ACTIONS(2628), 1, + anon_sym_STAR, + ACTIONS(2632), 1, + anon_sym_LBRACK_LT, + ACTIONS(2982), 1, anon_sym_BANG, - STATE(936), 1, - sym_initializer_list, - ACTIONS(2673), 2, + STATE(1126), 1, + sym_type_suffix, + STATE(1357), 1, + aux_sym_type_repeat1, + ACTIONS(1966), 2, sym_ident, - sym_ct_ident, - STATE(1323), 3, + anon_sym_AMP, + STATE(1361), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33366] = 5, + [41411] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1324), 3, + STATE(1362), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2206), 6, + ACTIONS(3255), 8, + anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_STAR, - [33389] = 8, + [41436] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3136), 1, - anon_sym_DOLLAReval, - STATE(931), 1, - sym_access_ident, - ACTIONS(3130), 2, - sym_ident, - anon_sym_typeid, - ACTIONS(3132), 2, - sym_at_ident, - sym_hash_ident, - STATE(1325), 3, + STATE(1363), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33418] = 9, + ACTIONS(3257), 8, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + [41461] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3156), 1, - anon_sym_RBRACE, - STATE(1219), 1, - sym_asm_instr, - STATE(1352), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, - sym_asm_stmt, - ACTIONS(3154), 2, - sym_ident, - anon_sym_int, - STATE(1326), 3, + STATE(1364), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33449] = 6, + ACTIONS(3259), 7, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [41485] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3202), 1, - anon_sym_COMMA, - ACTIONS(3200), 4, + ACTIONS(3261), 1, sym_ident, + ACTIONS(3263), 1, sym_at_ident, + ACTIONS(3265), 1, + sym_type_ident, + ACTIONS(3267), 1, sym_at_type_ident, - anon_sym_SEMI, - STATE(1327), 4, + ACTIONS(3269), 1, + sym_const_ident, + STATE(1330), 2, + sym_define_attribute, + sym_define_ident, + STATE(1365), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_multi_declaration_repeat1, - [33474] = 9, + [41519] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3176), 1, - anon_sym_case, - ACTIONS(3178), 1, - anon_sym_default, - ACTIONS(3205), 1, - anon_sym_RBRACE, - STATE(1360), 1, - aux_sym_switch_body_repeat1, - STATE(1634), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1328), 3, + ACTIONS(75), 1, + sym_at_ident, + ACTIONS(83), 1, + sym_const_ident, + ACTIONS(3271), 1, + sym_ident, + ACTIONS(3273), 1, + sym_type_ident, + STATE(907), 1, + sym__ident_expr, + STATE(1371), 1, + aux_sym__module_path, + STATE(1461), 1, + sym_module_resolution, + STATE(1366), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33505] = 7, + [41555] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3198), 1, - anon_sym_COMMA, - STATE(1343), 1, - aux_sym_multi_declaration_repeat1, - STATE(1329), 3, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + STATE(1367), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3207), 4, + ACTIONS(3275), 6, sym_ident, sym_at_ident, sym_at_type_ident, + anon_sym_COMMA, + anon_sym_LPAREN_LT, anon_sym_SEMI, - [33532] = 9, + [41581] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3176), 1, - anon_sym_case, - ACTIONS(3178), 1, - anon_sym_default, - ACTIONS(3209), 1, - anon_sym_RBRACE, - STATE(1336), 1, - aux_sym_switch_body_repeat1, - STATE(1634), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1330), 3, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(3277), 1, + sym_type_ident, + ACTIONS(3279), 1, + anon_sym_RPAREN, + STATE(1461), 1, + sym_module_resolution, + STATE(1489), 1, + aux_sym__module_path, + STATE(1501), 1, + sym_path_type_ident, + STATE(1628), 1, + sym_interface, + STATE(1368), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33563] = 9, + [41617] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3211), 1, - anon_sym_RBRACE, - STATE(1219), 1, - sym_asm_instr, - STATE(1334), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, - sym_asm_stmt, - ACTIONS(3154), 2, + ACTIONS(3281), 1, sym_ident, - anon_sym_int, - STATE(1331), 3, + ACTIONS(3283), 1, + sym_ct_ident, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + STATE(959), 1, + sym_initializer_list, + STATE(1639), 1, + sym_local_decl_after_type, + STATE(2030), 1, + sym__decl_statement_after_type, + STATE(1369), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33594] = 9, + [41653] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3211), 1, + ACTIONS(85), 1, + anon_sym_DOT, + ACTIONS(91), 1, + anon_sym_LBRACK, + STATE(1375), 1, + aux_sym_param_path_repeat1, + STATE(1435), 1, + sym_param_path_element, + ACTIONS(3289), 3, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_RBRACE, - STATE(1219), 1, - sym_asm_instr, - STATE(1352), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, - sym_asm_stmt, - ACTIONS(3154), 2, - sym_ident, - anon_sym_int, - STATE(1332), 3, + STATE(1370), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33625] = 6, + [41685] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3215), 1, - anon_sym_COMMA, - ACTIONS(3213), 4, + ACTIONS(3291), 1, sym_ident, + ACTIONS(3296), 1, + sym_const_ident, + STATE(1461), 1, + sym_module_resolution, + ACTIONS(3294), 3, sym_at_ident, + sym_type_ident, sym_at_type_ident, - anon_sym_SEMI, - STATE(1333), 4, + STATE(1371), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_import_declaration_repeat1, - [33650] = 9, + aux_sym__module_path, + [41715] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3218), 1, - anon_sym_RBRACE, - STATE(1219), 1, - sym_asm_instr, - STATE(1352), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, - sym_asm_stmt, - ACTIONS(3154), 2, + ACTIONS(3281), 1, sym_ident, - anon_sym_int, - STATE(1334), 3, + ACTIONS(3283), 1, + sym_ct_ident, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + STATE(959), 1, + sym_initializer_list, + STATE(1639), 1, + sym_local_decl_after_type, + STATE(2178), 1, + sym__decl_statement_after_type, + STATE(1372), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33681] = 7, + [41751] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, - anon_sym_LPAREN_LT, - STATE(1468), 1, - sym_generic_arguments, - STATE(1335), 3, + ACTIONS(3281), 1, + sym_ident, + ACTIONS(3283), 1, + sym_ct_ident, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + STATE(959), 1, + sym_initializer_list, + STATE(1639), 1, + sym_local_decl_after_type, + STATE(2031), 1, + sym__decl_statement_after_type, + STATE(1373), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3220), 4, + [41787] = 11, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3281), 1, sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [33708] = 9, + ACTIONS(3283), 1, + sym_ct_ident, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + STATE(959), 1, + sym_initializer_list, + STATE(1639), 1, + sym_local_decl_after_type, + STATE(1959), 1, + sym__decl_statement_after_type, + STATE(1374), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [41823] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3176), 1, - anon_sym_case, - ACTIONS(3178), 1, - anon_sym_default, - ACTIONS(3222), 1, + ACTIONS(3298), 1, + anon_sym_DOT, + ACTIONS(3303), 1, + anon_sym_LBRACK, + STATE(1435), 1, + sym_param_path_element, + ACTIONS(3301), 3, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_RBRACE, - STATE(1360), 1, - aux_sym_switch_body_repeat1, - STATE(1634), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1336), 3, + STATE(1375), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [33739] = 10, + aux_sym_param_path_repeat1, + [41853] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3164), 1, - anon_sym_LPAREN, - ACTIONS(3224), 1, + ACTIONS(3281), 1, + sym_ident, + ACTIONS(3283), 1, + sym_ct_ident, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, anon_sym_LBRACE, - STATE(511), 1, - sym_switch_body, - STATE(1535), 1, - sym_label, - STATE(1776), 1, - sym_paren_cond, - STATE(1337), 3, + STATE(959), 1, + sym_initializer_list, + STATE(1639), 1, + sym_local_decl_after_type, + STATE(1950), 1, + sym__decl_statement_after_type, + STATE(1376), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33772] = 10, + [41889] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3164), 1, - anon_sym_LPAREN, - ACTIONS(3226), 1, + ACTIONS(3281), 1, + sym_ident, + ACTIONS(3283), 1, + sym_ct_ident, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, anon_sym_LBRACE, - STATE(775), 1, - sym_switch_body, - STATE(1454), 1, - sym_label, - STATE(1817), 1, - sym_paren_cond, - STATE(1338), 3, + STATE(959), 1, + sym_initializer_list, + STATE(1639), 1, + sym_local_decl_after_type, + STATE(2035), 1, + sym__decl_statement_after_type, + STATE(1377), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33805] = 5, + [41925] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1339), 3, + ACTIONS(3237), 1, + anon_sym_DOLLAReval, + STATE(905), 1, + sym_access_eval, + STATE(910), 1, + sym_access_ident, + ACTIONS(3231), 2, + sym_ident, + anon_sym_typeid, + ACTIONS(3233), 2, + sym_at_ident, + sym_hash_ident, + STATE(1378), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [41957] = 5, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1379), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3228), 6, + ACTIONS(3306), 7, sym_ident, sym_at_ident, sym_at_type_ident, - anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_COLON, - [33828] = 10, + anon_sym_EQ_GT, + [41981] = 11, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, - anon_sym_LBRACE, - ACTIONS(2895), 1, - anon_sym_EQ_GT, - ACTIONS(3230), 1, - anon_sym_SEMI, - STATE(832), 1, - sym_macro_func_body, - STATE(845), 1, - sym_compound_stmt, - STATE(2046), 1, - sym_implies_body, - STATE(1340), 3, + ACTIONS(75), 1, + sym_at_ident, + ACTIONS(83), 1, + sym_const_ident, + ACTIONS(3271), 1, + sym_ident, + ACTIONS(3308), 1, + sym_type_ident, + STATE(907), 1, + sym__ident_expr, + STATE(1371), 1, + aux_sym__module_path, + STATE(1461), 1, + sym_module_resolution, + STATE(1380), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33861] = 9, + [42017] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3176), 1, - anon_sym_case, - ACTIONS(3178), 1, - anon_sym_default, - ACTIONS(3232), 1, - anon_sym_RBRACE, - STATE(1360), 1, - aux_sym_switch_body_repeat1, - STATE(1634), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1341), 3, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + STATE(1381), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33892] = 9, + ACTIONS(3310), 6, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_COMMA, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [42043] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3176), 1, - anon_sym_case, - ACTIONS(3178), 1, - anon_sym_default, - ACTIONS(3234), 1, - anon_sym_RBRACE, - STATE(1360), 1, - aux_sym_switch_body_repeat1, - STATE(1634), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1342), 3, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(3312), 1, + sym_at_ident, + ACTIONS(3314), 1, + sym_type_ident, + STATE(1443), 1, + sym_define_path_at_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1463), 1, + aux_sym__module_path, + STATE(1382), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33923] = 7, + [42076] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3198), 1, + ACTIONS(3318), 1, anon_sym_COMMA, - STATE(1327), 1, - aux_sym_multi_declaration_repeat1, - STATE(1343), 3, + STATE(1437), 1, + aux_sym__multi_declaration_repeat1, + STATE(1383), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3236), 4, + ACTIONS(3316), 4, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_SEMI, - [33950] = 9, + [42103] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3238), 1, + ACTIONS(3322), 1, anon_sym_RBRACE, - STATE(1219), 1, + STATE(1267), 1, sym_asm_instr, - STATE(1313), 1, + STATE(1390), 1, aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, + STATE(1713), 1, sym_asm_stmt, - ACTIONS(3154), 2, + ACTIONS(3320), 2, sym_ident, anon_sym_int, - STATE(1344), 3, + STATE(1384), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [33981] = 9, + [42134] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3176), 1, - anon_sym_case, - ACTIONS(3178), 1, - anon_sym_default, - ACTIONS(3240), 1, + STATE(1385), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3324), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACE, - STATE(1315), 1, - aux_sym_switch_body_repeat1, - STATE(1634), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1345), 3, + [42157] = 5, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1386), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3326), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + [42180] = 9, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3328), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1438), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, + STATE(1387), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34012] = 9, + [42211] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(67), 1, anon_sym_DQUOTE, ACTIONS(69), 1, anon_sym_BQUOTE, - STATE(805), 1, + STATE(831), 1, aux_sym_string_expr_repeat1, - STATE(2130), 1, + STATE(2055), 1, sym_string_expr, - STATE(900), 2, + STATE(874), 2, sym_string_literal, sym_raw_string_literal, - STATE(1346), 3, + STATE(1388), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34043] = 10, + [42242] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(3124), 1, - sym_type_ident, - STATE(1399), 1, - sym_module_resolution, - STATE(1452), 1, - sym_path_type_ident, - STATE(1567), 1, - aux_sym__module_path, - STATE(1900), 1, - sym_interface, - STATE(1347), 3, + ACTIONS(3330), 1, + anon_sym_RBRACE, + ACTIONS(3332), 1, + anon_sym_case, + ACTIONS(3334), 1, + anon_sym_default, + STATE(1392), 1, + aux_sym_switch_body_repeat1, + STATE(1661), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1389), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34076] = 5, + [42273] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1348), 3, + ACTIONS(3328), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1440), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, + STATE(1390), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3242), 6, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COLON, - [34099] = 9, + [42304] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3244), 1, + ACTIONS(3336), 1, anon_sym_RBRACE, - STATE(1219), 1, + STATE(1267), 1, sym_asm_instr, - STATE(1364), 1, + STATE(1394), 1, aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, + STATE(1713), 1, sym_asm_stmt, - ACTIONS(3154), 2, + ACTIONS(3320), 2, sym_ident, anon_sym_int, - STATE(1349), 3, + STATE(1391), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34130] = 7, + [42335] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3198), 1, - anon_sym_COMMA, - STATE(1327), 1, - aux_sym_multi_declaration_repeat1, - STATE(1350), 3, + ACTIONS(3332), 1, + anon_sym_case, + ACTIONS(3334), 1, + anon_sym_default, + ACTIONS(3338), 1, + anon_sym_RBRACE, + STATE(1436), 1, + aux_sym_switch_body_repeat1, + STATE(1661), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1392), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3246), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [34157] = 9, + [42366] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3248), 1, + ACTIONS(3340), 1, anon_sym_RBRACE, - STATE(1219), 1, + STATE(1267), 1, sym_asm_instr, - STATE(1357), 1, + STATE(1395), 1, aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, + STATE(1713), 1, sym_asm_stmt, - ACTIONS(3154), 2, + ACTIONS(3320), 2, sym_ident, anon_sym_int, - STATE(1351), 3, + STATE(1393), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34188] = 8, + [42397] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3253), 1, + ACTIONS(3340), 1, anon_sym_RBRACE, - STATE(1219), 1, + STATE(1267), 1, sym_asm_instr, - STATE(1646), 1, + STATE(1440), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, sym_asm_stmt, - ACTIONS(3250), 2, + ACTIONS(3320), 2, sym_ident, anon_sym_int, - STATE(1352), 4, + STATE(1394), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_asm_block_stmt_repeat1, - [34217] = 9, + [42428] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3255), 1, + ACTIONS(3342), 1, anon_sym_RBRACE, - STATE(1219), 1, + STATE(1267), 1, sym_asm_instr, - STATE(1359), 1, + STATE(1440), 1, aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, + STATE(1713), 1, sym_asm_stmt, - ACTIONS(3154), 2, + ACTIONS(3320), 2, sym_ident, anon_sym_int, - STATE(1353), 3, + STATE(1395), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [42459] = 5, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1396), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34248] = 9, + ACTIONS(3344), 6, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COLON, + [42482] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3176), 1, - anon_sym_case, - ACTIONS(3178), 1, - anon_sym_default, - ACTIONS(3257), 1, - anon_sym_RBRACE, - STATE(1341), 1, - aux_sym_switch_body_repeat1, - STATE(1634), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1354), 3, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + STATE(959), 1, + sym_initializer_list, + ACTIONS(3346), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1397), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34279] = 10, + [42511] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3164), 1, - anon_sym_LPAREN, - ACTIONS(3259), 1, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, anon_sym_LBRACE, - STATE(678), 1, - sym_switch_body, - STATE(1512), 1, - sym_label, - STATE(1885), 1, - sym_paren_cond, - STATE(1355), 3, + STATE(959), 1, + sym_initializer_list, + ACTIONS(3348), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1398), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34312] = 9, + [42540] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3261), 1, - anon_sym_RBRACE, - STATE(1219), 1, - sym_asm_instr, - STATE(1363), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, - sym_asm_stmt, - ACTIONS(3154), 2, + ACTIONS(3352), 1, + anon_sym_COMMA, + ACTIONS(3350), 4, sym_ident, - anon_sym_int, - STATE(1356), 3, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + STATE(1399), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [34343] = 9, + aux_sym_import_declaration_repeat1, + [42565] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3263), 1, + ACTIONS(3332), 1, + anon_sym_case, + ACTIONS(3334), 1, + anon_sym_default, + ACTIONS(3355), 1, anon_sym_RBRACE, - STATE(1219), 1, - sym_asm_instr, - STATE(1352), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, - sym_asm_stmt, - ACTIONS(3154), 2, - sym_ident, - anon_sym_int, - STATE(1357), 3, + STATE(1403), 1, + aux_sym_switch_body_repeat1, + STATE(1661), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1400), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34374] = 9, + [42596] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3265), 1, - anon_sym_RBRACE, - STATE(1219), 1, - sym_asm_instr, - STATE(1310), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, - sym_asm_stmt, - ACTIONS(3154), 2, - sym_ident, - anon_sym_int, - STATE(1358), 3, + ACTIONS(3318), 1, + anon_sym_COMMA, + STATE(1437), 1, + aux_sym__multi_declaration_repeat1, + STATE(1401), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34405] = 9, + ACTIONS(3357), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [42623] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3267), 1, + ACTIONS(3359), 1, anon_sym_RBRACE, - STATE(1219), 1, + STATE(1267), 1, sym_asm_instr, - STATE(1352), 1, + STATE(1405), 1, aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, + STATE(1713), 1, sym_asm_stmt, - ACTIONS(3154), 2, + ACTIONS(3320), 2, sym_ident, anon_sym_int, - STATE(1359), 3, + STATE(1402), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34436] = 8, + [42654] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3269), 1, - anon_sym_RBRACE, - ACTIONS(3271), 1, + ACTIONS(3332), 1, anon_sym_case, - ACTIONS(3274), 1, + ACTIONS(3334), 1, anon_sym_default, - STATE(1634), 2, + ACTIONS(3361), 1, + anon_sym_RBRACE, + STATE(1436), 1, + aux_sym_switch_body_repeat1, + STATE(1661), 2, sym_case_stmt, sym_default_stmt, - STATE(1360), 4, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - aux_sym_switch_body_repeat1, - [34465] = 9, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3277), 1, - anon_sym_RBRACE, - STATE(1219), 1, - sym_asm_instr, - STATE(1326), 1, - aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, - sym_asm_stmt, - ACTIONS(3154), 2, - sym_ident, - anon_sym_int, - STATE(1361), 3, + STATE(1403), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34496] = 9, + [42685] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3265), 1, + ACTIONS(3363), 1, anon_sym_RBRACE, - STATE(1219), 1, + STATE(1267), 1, sym_asm_instr, - STATE(1352), 1, + STATE(1406), 1, aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, + STATE(1713), 1, sym_asm_stmt, - ACTIONS(3154), 2, + ACTIONS(3320), 2, sym_ident, anon_sym_int, - STATE(1362), 3, + STATE(1404), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34527] = 9, + [42716] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3255), 1, + ACTIONS(3363), 1, anon_sym_RBRACE, - STATE(1219), 1, + STATE(1267), 1, sym_asm_instr, - STATE(1352), 1, + STATE(1440), 1, aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, + STATE(1713), 1, sym_asm_stmt, - ACTIONS(3154), 2, + ACTIONS(3320), 2, sym_ident, anon_sym_int, - STATE(1363), 3, + STATE(1405), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34558] = 9, + [42747] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3248), 1, + ACTIONS(3365), 1, anon_sym_RBRACE, - STATE(1219), 1, + STATE(1267), 1, sym_asm_instr, - STATE(1352), 1, + STATE(1440), 1, aux_sym_asm_block_stmt_repeat1, - STATE(1646), 1, + STATE(1713), 1, sym_asm_stmt, - ACTIONS(3154), 2, + ACTIONS(3320), 2, sym_ident, anon_sym_int, - STATE(1364), 3, + STATE(1406), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34589] = 5, + [42778] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1365), 3, + ACTIONS(2813), 1, + anon_sym_LPAREN, + STATE(1485), 1, + sym_enum_param_list, + STATE(1407), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3279), 6, + ACTIONS(3367), 4, sym_ident, sym_at_ident, sym_at_type_ident, - anon_sym_EQ, anon_sym_LBRACE, - anon_sym_COLON, - [34612] = 9, + [42805] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3176), 1, - anon_sym_case, - ACTIONS(3178), 1, - anon_sym_default, - ACTIONS(3281), 1, - anon_sym_RBRACE, - STATE(1360), 1, - aux_sym_switch_body_repeat1, - STATE(1634), 2, - sym_case_stmt, - sym_default_stmt, - STATE(1366), 3, + ACTIONS(3009), 1, + anon_sym_EQ, + STATE(1724), 1, + sym__assign_right_expr, + STATE(1725), 1, + sym_parameter_default, + ACTIONS(3369), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1408), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34643] = 9, + [42834] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3176), 1, + ACTIONS(3332), 1, anon_sym_case, - ACTIONS(3178), 1, + ACTIONS(3334), 1, anon_sym_default, - ACTIONS(3283), 1, + ACTIONS(3371), 1, anon_sym_RBRACE, - STATE(1366), 1, + STATE(1413), 1, aux_sym_switch_body_repeat1, - STATE(1634), 2, + STATE(1661), 2, sym_case_stmt, sym_default_stmt, - STATE(1367), 3, + STATE(1409), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34674] = 9, + [42865] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3285), 1, - anon_sym_DOLLARcase, - ACTIONS(3287), 1, - anon_sym_DOLLARdefault, - ACTIONS(3289), 1, - anon_sym_DOLLARendswitch, - STATE(1394), 1, - aux_sym__ct_switch_body, - STATE(1632), 1, - sym_ct_case_stmt, - STATE(1368), 3, + ACTIONS(3318), 1, + anon_sym_COMMA, + STATE(1383), 1, + aux_sym__multi_declaration_repeat1, + STATE(1410), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34704] = 8, + ACTIONS(3373), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [42892] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2923), 1, - anon_sym_EQ, - STATE(1590), 1, - sym__assign_right_expr, - STATE(1758), 1, - sym_parameter_default, - ACTIONS(3291), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1369), 3, + ACTIONS(3375), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1415), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, + STATE(1411), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34732] = 8, + [42923] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3293), 1, - anon_sym_RPAREN, - ACTIONS(3295), 1, - anon_sym_LBRACK, - ACTIONS(3298), 1, + ACTIONS(3281), 1, + sym_ident, + ACTIONS(3283), 1, + sym_ct_ident, + ACTIONS(3285), 1, anon_sym_DOT, - STATE(1545), 1, - sym_param_path_element, - STATE(1370), 4, + ACTIONS(3287), 1, + anon_sym_LBRACE, + STATE(959), 1, + sym_initializer_list, + STATE(1697), 1, + sym_local_decl_after_type, + STATE(1412), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_param_path_repeat1, - [34760] = 5, + [42956] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1371), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3301), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_COMMA, + ACTIONS(3332), 1, + anon_sym_case, + ACTIONS(3334), 1, + anon_sym_default, + ACTIONS(3377), 1, anon_sym_RBRACE, - [34782] = 9, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3285), 1, - anon_sym_DOLLARcase, - ACTIONS(3287), 1, - anon_sym_DOLLARdefault, - ACTIONS(3303), 1, - anon_sym_DOLLARendswitch, - STATE(1394), 1, - aux_sym__ct_switch_body, - STATE(1632), 1, - sym_ct_case_stmt, - STATE(1372), 3, + STATE(1436), 1, + aux_sym_switch_body_repeat1, + STATE(1661), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1413), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34812] = 9, + [42987] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2877), 1, + ACTIONS(3379), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1416), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, sym_ident, - ACTIONS(3305), 1, - sym_at_ident, - STATE(1335), 1, - sym_path_at_ident, - STATE(1399), 1, - sym_module_resolution, - STATE(1485), 1, - aux_sym__module_path, - STATE(1373), 3, + anon_sym_int, + STATE(1414), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34842] = 5, + [43018] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1374), 3, + ACTIONS(3379), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1440), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, + STATE(1415), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3307), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_RBRACE, - [34864] = 5, + [43049] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1375), 3, + ACTIONS(3381), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1440), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, + STATE(1416), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3309), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [34886] = 9, + [43080] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(91), 1, - anon_sym_LBRACK, - ACTIONS(2435), 1, - anon_sym_DOT, - ACTIONS(3311), 1, - anon_sym_RPAREN, - STATE(1370), 1, - aux_sym_param_path_repeat1, - STATE(1545), 1, - sym_param_path_element, - STATE(1376), 3, + ACTIONS(3332), 1, + anon_sym_case, + ACTIONS(3334), 1, + anon_sym_default, + ACTIONS(3383), 1, + anon_sym_RBRACE, + STATE(1420), 1, + aux_sym_switch_body_repeat1, + STATE(1661), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1417), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34916] = 9, + [43111] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3313), 1, - sym_ident, - ACTIONS(3315), 1, - sym_const_ident, - STATE(1335), 1, - sym_path_const_ident, - STATE(1507), 1, - aux_sym__module_path, - STATE(1887), 1, - sym_module_resolution, - STATE(1377), 3, + STATE(1418), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34946] = 9, + ACTIONS(3385), 6, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COLON, + [43134] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(91), 1, - anon_sym_LBRACK, - ACTIONS(3311), 1, - anon_sym_EQ, - ACTIONS(3317), 1, - anon_sym_DOT, - STATE(1386), 1, - aux_sym_param_path_repeat1, - STATE(1545), 1, - sym_param_path_element, - STATE(1378), 3, + ACTIONS(3387), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1423), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, + STATE(1419), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [34976] = 9, + [43165] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3285), 1, - anon_sym_DOLLARcase, - ACTIONS(3287), 1, - anon_sym_DOLLARdefault, - ACTIONS(3319), 1, - anon_sym_DOLLARendswitch, - STATE(1394), 1, - aux_sym__ct_switch_body, - STATE(1632), 1, - sym_ct_case_stmt, - STATE(1379), 3, + ACTIONS(3332), 1, + anon_sym_case, + ACTIONS(3334), 1, + anon_sym_default, + ACTIONS(3389), 1, + anon_sym_RBRACE, + STATE(1436), 1, + aux_sym_switch_body_repeat1, + STATE(1661), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1420), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35006] = 5, + [43196] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1380), 3, + STATE(1421), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3321), 5, + ACTIONS(3391), 6, sym_ident, sym_at_ident, sym_at_type_ident, - anon_sym_COMMA, - anon_sym_RBRACE, - [35028] = 8, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COLON, + [43219] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2801), 1, - anon_sym_RPAREN, - ACTIONS(3323), 1, - anon_sym_COMMA, - STATE(1621), 1, - aux_sym_ct_exec_stmt_repeat1, - ACTIONS(2615), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1381), 3, + ACTIONS(3393), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1424), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, + STATE(1422), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35056] = 5, + [43250] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1382), 3, + ACTIONS(3393), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1440), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, + STATE(1423), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3325), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LPAREN_LT, - anon_sym_SEMI, - [35078] = 6, + [43281] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2850), 1, - anon_sym_DOT_DOT_DOT, - STATE(1383), 3, + ACTIONS(3395), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1440), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, + STATE(1424), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2858), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_SEMI, - [35102] = 5, + [43312] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1384), 3, + ACTIONS(3332), 1, + anon_sym_case, + ACTIONS(3334), 1, + anon_sym_default, + ACTIONS(3397), 1, + anon_sym_RBRACE, + STATE(1428), 1, + aux_sym_switch_body_repeat1, + STATE(1661), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1425), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3200), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_SEMI, - [35124] = 5, + [43343] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1385), 3, + ACTIONS(3399), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1430), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, + STATE(1426), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3327), 5, - sym_ident, - sym_at_ident, - sym_type_ident, - sym_at_type_ident, - anon_sym_LBRACE, - [35146] = 8, + [43374] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3293), 1, - anon_sym_EQ, - ACTIONS(3295), 1, - anon_sym_LBRACK, - ACTIONS(3329), 1, - anon_sym_DOT, - STATE(1545), 1, - sym_param_path_element, - STATE(1386), 4, + ACTIONS(3332), 1, + anon_sym_case, + ACTIONS(3334), 1, + anon_sym_default, + ACTIONS(3401), 1, + anon_sym_RBRACE, + STATE(1436), 1, + aux_sym_switch_body_repeat1, + STATE(1661), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1427), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_param_path_repeat1, - [35174] = 8, + [43405] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_DOT, - STATE(936), 1, - sym_initializer_list, - ACTIONS(2717), 2, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - STATE(1387), 3, + ACTIONS(3332), 1, + anon_sym_case, + ACTIONS(3334), 1, + anon_sym_default, + ACTIONS(3403), 1, + anon_sym_RBRACE, + STATE(1436), 1, + aux_sym_switch_body_repeat1, + STATE(1661), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1428), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35202] = 8, + [43436] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3323), 1, - anon_sym_COMMA, - ACTIONS(3332), 1, - anon_sym_RPAREN, - STATE(1575), 1, - aux_sym_ct_exec_stmt_repeat1, - ACTIONS(2615), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1388), 3, + ACTIONS(3405), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1432), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, + STATE(1429), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35230] = 5, + [43467] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1389), 3, + ACTIONS(3405), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1440), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, + STATE(1430), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3334), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LPAREN_LT, - anon_sym_SEMI, - [35252] = 5, + [43498] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1390), 3, + ACTIONS(1978), 1, + anon_sym_LBRACE, + ACTIONS(3027), 1, + anon_sym_EQ_GT, + ACTIONS(3407), 1, + anon_sym_SEMI, + STATE(993), 1, + sym_compound_stmt, + STATE(1008), 1, + sym_macro_func_body, + STATE(2152), 1, + sym_implies_body, + STATE(1431), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3336), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [35274] = 9, + [43531] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3285), 1, - anon_sym_DOLLARcase, - ACTIONS(3287), 1, - anon_sym_DOLLARdefault, - ACTIONS(3338), 1, - anon_sym_DOLLARendswitch, - STATE(1394), 1, - aux_sym__ct_switch_body, - STATE(1632), 1, - sym_ct_case_stmt, - STATE(1391), 3, + ACTIONS(3409), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1440), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, + STATE(1432), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35304] = 9, + [43562] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, + ACTIONS(2541), 1, + anon_sym_COMMA, ACTIONS(3285), 1, - anon_sym_DOLLARcase, + anon_sym_DOT, ACTIONS(3287), 1, - anon_sym_DOLLARdefault, - ACTIONS(3340), 1, - anon_sym_DOLLARendswitch, - STATE(1394), 1, - aux_sym__ct_switch_body, - STATE(1632), 1, - sym_ct_case_stmt, - STATE(1392), 3, + anon_sym_LBRACE, + ACTIONS(3411), 1, + anon_sym_GT_RPAREN, + STATE(959), 1, + sym_initializer_list, + STATE(1723), 1, + aux_sym__generic_arg_list_repeat1, + STATE(1433), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35334] = 6, + [43595] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - sym_const_ident, - STATE(1393), 3, + STATE(1434), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3342), 4, - sym_ident, - sym_at_ident, - sym_type_ident, - sym_at_type_ident, - [35358] = 8, + ACTIONS(2481), 6, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_STAR, + [43618] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3346), 1, - anon_sym_DOLLARcase, - ACTIONS(3349), 1, - anon_sym_DOLLARdefault, - ACTIONS(3352), 1, - anon_sym_DOLLARendswitch, - STATE(1632), 1, - sym_ct_case_stmt, - STATE(1394), 4, + STATE(1435), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__ct_switch_body, - [35386] = 5, + ACTIONS(3413), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + [43641] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1395), 3, + ACTIONS(3415), 1, + anon_sym_RBRACE, + ACTIONS(3417), 1, + anon_sym_case, + ACTIONS(3420), 1, + anon_sym_default, + STATE(1661), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1436), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3354), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_COMMA, - anon_sym_RBRACE, - [35408] = 8, + aux_sym_switch_body_repeat1, + [43670] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2923), 1, - anon_sym_EQ, - STATE(1590), 1, - sym__assign_right_expr, - STATE(1591), 1, - sym_parameter_default, - ACTIONS(3168), 2, + ACTIONS(3425), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1396), 3, + ACTIONS(3423), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + STATE(1437), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [35436] = 9, + aux_sym__multi_declaration_repeat1, + [43695] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, - anon_sym_LBRACE, - ACTIONS(2895), 1, - anon_sym_EQ_GT, - STATE(845), 1, - sym_compound_stmt, - STATE(859), 1, - sym_macro_func_body, - STATE(2046), 1, - sym_implies_body, - STATE(1397), 3, + ACTIONS(3428), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1440), 1, + aux_sym_asm_block_stmt_repeat1, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3320), 2, + sym_ident, + anon_sym_int, + STATE(1438), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35466] = 5, + [43726] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1398), 3, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + STATE(1439), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3356), 5, + ACTIONS(3430), 5, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_LPAREN_LT, anon_sym_SEMI, - [35488] = 6, + [43751] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3360), 1, - sym_const_ident, - STATE(1399), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3358), 4, + ACTIONS(3435), 1, + anon_sym_RBRACE, + STATE(1267), 1, + sym_asm_instr, + STATE(1713), 1, + sym_asm_stmt, + ACTIONS(3432), 2, sym_ident, - sym_at_ident, - sym_type_ident, - sym_at_type_ident, - [35512] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1400), 3, + anon_sym_int, + STATE(1440), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3362), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [35534] = 5, + aux_sym_asm_block_stmt_repeat1, + [43780] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1401), 3, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + STATE(1441), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3364), 5, + ACTIONS(3437), 5, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_LPAREN_LT, anon_sym_SEMI, - [35556] = 5, + [43805] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1402), 3, + ACTIONS(3332), 1, + anon_sym_case, + ACTIONS(3334), 1, + anon_sym_default, + ACTIONS(3439), 1, + anon_sym_RBRACE, + STATE(1427), 1, + aux_sym_switch_body_repeat1, + STATE(1661), 2, + sym_case_stmt, + sym_default_stmt, + STATE(1442), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3366), 5, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [35578] = 5, + [43836] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1403), 3, + ACTIONS(2614), 1, + anon_sym_LPAREN_LT, + STATE(1604), 1, + sym_generic_arguments, + STATE(1443), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3213), 5, + ACTIONS(3441), 4, sym_ident, sym_at_ident, sym_at_type_ident, - anon_sym_COMMA, anon_sym_SEMI, - [35600] = 9, + [43863] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(3285), 1, - anon_sym_DOLLARcase, + anon_sym_DOT, ACTIONS(3287), 1, - anon_sym_DOLLARdefault, - ACTIONS(3368), 1, - anon_sym_DOLLARendswitch, - STATE(1394), 1, - aux_sym__ct_switch_body, - STATE(1632), 1, - sym_ct_case_stmt, - STATE(1404), 3, + anon_sym_LBRACE, + STATE(959), 1, + sym_initializer_list, + ACTIONS(3443), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1444), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35630] = 8, + [43892] = 10, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 1, + ACTIONS(2984), 1, sym_ident, - ACTIONS(3372), 1, - sym_ct_ident, - STATE(1625), 1, - sym_local_decl_after_type, - STATE(2117), 1, - sym__decl_statement_after_type, - STATE(1405), 3, + ACTIONS(3277), 1, + sym_type_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1489), 1, + aux_sym__module_path, + STATE(1501), 1, + sym_path_type_ident, + STATE(1893), 1, + sym_interface, + STATE(1445), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35657] = 8, + [43925] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3374), 1, + ACTIONS(3318), 1, anon_sym_COMMA, - ACTIONS(3376), 1, - anon_sym_SEMI, - ACTIONS(3378), 1, - anon_sym_QMARK, - STATE(1682), 1, - aux_sym_catch_unwrap_list_repeat1, - STATE(1406), 3, + STATE(1401), 1, + aux_sym__multi_declaration_repeat1, + STATE(1446), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35684] = 8, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2877), 1, + ACTIONS(3445), 4, sym_ident, - ACTIONS(3380), 1, + sym_at_ident, sym_at_type_ident, - STATE(1293), 1, - aux_sym__module_path, - STATE(1399), 1, - sym_module_resolution, - STATE(1407), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [35711] = 8, + anon_sym_SEMI, + [43952] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3382), 1, - anon_sym_LPAREN, - STATE(64), 1, - sym_paren_cond, - STATE(1761), 1, - sym_label, - STATE(1408), 3, + STATE(1447), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35738] = 8, + ACTIONS(3447), 5, + sym_ident, + sym_at_ident, + sym_type_ident, + sym_at_type_ident, + anon_sym_LBRACE, + [43974] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, + ACTIONS(3449), 1, + sym_ident, + ACTIONS(3451), 1, sym_const_ident, - ACTIONS(3384), 1, - anon_sym_LPAREN, - STATE(131), 1, - sym_for_cond, - STATE(1841), 1, - sym_label, - STATE(1409), 3, + STATE(1443), 1, + sym_path_const_ident, + STATE(1533), 1, + aux_sym__module_path, + STATE(1796), 1, + sym_module_resolution, + STATE(1448), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35765] = 8, + [44004] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 1, - sym_ident, - ACTIONS(3372), 1, - sym_ct_ident, - STATE(1625), 1, - sym_local_decl_after_type, - STATE(2037), 1, - sym__decl_statement_after_type, - STATE(1410), 3, + STATE(1449), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35792] = 8, + ACTIONS(3453), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [44026] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3386), 1, - anon_sym_LPAREN, - STATE(132), 1, - sym_foreach_cond, - STATE(1840), 1, - sym_label, - STATE(1411), 3, + STATE(1450), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35819] = 8, + ACTIONS(3350), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_COMMA, + anon_sym_SEMI, + [44048] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3382), 1, - anon_sym_LPAREN, - STATE(133), 1, - sym_paren_cond, - STATE(1839), 1, - sym_label, - STATE(1412), 3, + STATE(1451), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35846] = 8, + ACTIONS(3455), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [44070] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, - anon_sym_LBRACE, - ACTIONS(3162), 1, - sym_const_ident, - STATE(1765), 1, - sym_compound_stmt, - STATE(1836), 1, - sym_label, - STATE(1413), 3, + ACTIONS(3457), 1, + anon_sym_DOLLARcase, + ACTIONS(3460), 1, + anon_sym_DOLLARdefault, + ACTIONS(3463), 1, + anon_sym_DOLLARendswitch, + STATE(1631), 1, + sym_ct_case_stmt, + STATE(1452), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [35873] = 8, + aux_sym__ct_switch_body, + [44098] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3285), 1, - anon_sym_DOLLARcase, - ACTIONS(3287), 1, - anon_sym_DOLLARdefault, - STATE(1368), 1, - aux_sym__ct_switch_body, - STATE(1632), 1, - sym_ct_case_stmt, - STATE(1414), 3, + ACTIONS(91), 1, + anon_sym_LBRACK, + ACTIONS(2724), 1, + anon_sym_DOT, + ACTIONS(3289), 1, + anon_sym_RPAREN, + STATE(1435), 1, + sym_param_path_element, + STATE(1459), 1, + aux_sym_param_path_repeat1, + STATE(1453), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35900] = 8, + [44128] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 1, - sym_ident, - ACTIONS(3372), 1, - sym_ct_ident, - STATE(1625), 1, - sym_local_decl_after_type, - STATE(2195), 1, - sym__decl_statement_after_type, - STATE(1415), 3, + ACTIONS(3009), 1, + anon_sym_EQ, + STATE(1728), 1, + sym__assign_right_expr, + ACTIONS(3465), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1454), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35927] = 8, + [44154] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 1, - sym_ident, - ACTIONS(3372), 1, - sym_ct_ident, - STATE(1625), 1, - sym_local_decl_after_type, - STATE(2179), 1, - sym__decl_statement_after_type, - STATE(1416), 3, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + ACTIONS(3471), 1, + anon_sym_DOLLARendswitch, + STATE(1452), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, + STATE(1455), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35954] = 7, + [44184] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3388), 1, - anon_sym_SEMI, - ACTIONS(3390), 1, - anon_sym_COLON, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1417), 3, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + ACTIONS(3473), 1, + anon_sym_DOLLARendswitch, + STATE(1452), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, + STATE(1456), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [35979] = 7, + [44214] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3392), 1, - anon_sym_SEMI, - ACTIONS(3394), 1, - anon_sym_COLON, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1418), 3, + STATE(1457), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36004] = 7, + ACTIONS(3475), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [44236] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3396), 1, - anon_sym_EQ, - STATE(1654), 1, - sym__assign_right_constant_expr, - ACTIONS(2921), 2, + ACTIONS(3477), 1, + anon_sym_LPAREN, + ACTIONS(3479), 1, + anon_sym_LBRACK, + ACTIONS(3348), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(1419), 3, + STATE(1458), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36029] = 7, + [44262] = 8, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3398), 1, - sym_escape_sequence, - ACTIONS(3401), 1, - anon_sym_DQUOTE, - ACTIONS(3403), 1, - aux_sym_string_literal_token1, - ACTIONS(3406), 1, - aux_sym_line_comment_token1, - ACTIONS(3408), 1, - anon_sym_SLASH_STAR_STAR, - STATE(1420), 4, + ACTIONS(3301), 1, + anon_sym_RPAREN, + ACTIONS(3303), 1, + anon_sym_LBRACK, + ACTIONS(3481), 1, + anon_sym_DOT, + STATE(1435), 1, + sym_param_path_element, + STATE(1459), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [36054] = 6, + aux_sym_param_path_repeat1, + [44290] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(3410), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1421), 3, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + ACTIONS(3484), 1, + anon_sym_DOLLARendswitch, + STATE(1452), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, + STATE(1460), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36077] = 8, + [44320] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, + ACTIONS(3488), 1, sym_const_ident, - ACTIONS(3382), 1, - anon_sym_LPAREN, - STATE(62), 1, - sym_paren_cond, - STATE(1819), 1, - sym_label, - STATE(1422), 3, + STATE(1461), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36104] = 8, + ACTIONS(3486), 4, + sym_ident, + sym_at_ident, + sym_type_ident, + sym_at_type_ident, + [44344] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3384), 1, - anon_sym_LPAREN, - STATE(124), 1, - sym_for_cond, - STATE(1821), 1, - sym_label, - STATE(1423), 3, + ACTIONS(3009), 1, + anon_sym_EQ, + STATE(1621), 1, + sym__assign_right_expr, + ACTIONS(3031), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1462), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36131] = 8, + [44370] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3386), 1, - anon_sym_LPAREN, - STATE(122), 1, - sym_foreach_cond, - STATE(1818), 1, - sym_label, - STATE(1424), 3, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(3490), 1, + sym_at_ident, + ACTIONS(3492), 1, + sym_type_ident, + STATE(1371), 1, + aux_sym__module_path, + STATE(1461), 1, + sym_module_resolution, + STATE(1463), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36158] = 8, + [44400] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_LBRACE, - ACTIONS(3414), 1, - anon_sym_if, - STATE(706), 1, - sym_if_stmt, - STATE(708), 1, - sym_compound_stmt, - STATE(1425), 3, + STATE(1464), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36185] = 8, + ACTIONS(3494), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [44422] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3382), 1, - anon_sym_LPAREN, - STATE(121), 1, - sym_paren_cond, - STATE(1816), 1, - sym_label, - STATE(1426), 3, + STATE(1465), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36212] = 8, + ACTIONS(3496), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [44444] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, - anon_sym_LBRACE, - ACTIONS(3162), 1, - sym_const_ident, - STATE(1814), 1, - sym_label, - STATE(1822), 1, - sym_compound_stmt, - STATE(1427), 3, + STATE(1466), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36239] = 8, + ACTIONS(3423), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_COMMA, + anon_sym_SEMI, + [44466] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2755), 1, - anon_sym_SEMI, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_DOT, - STATE(936), 1, - sym_initializer_list, - STATE(1428), 3, + STATE(1467), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36266] = 6, + ACTIONS(3498), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [44488] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3416), 1, + ACTIONS(3009), 1, + anon_sym_EQ, + STATE(1627), 1, + sym__assign_right_expr, + ACTIONS(3500), 3, anon_sym_COMMA, - ACTIONS(3419), 2, anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(1429), 4, + anon_sym_SEMI, + STATE(1468), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_enum_arg_repeat1, - [36289] = 8, + [44514] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(3285), 1, - anon_sym_DOLLARcase, + anon_sym_DOT, ACTIONS(3287), 1, - anon_sym_DOLLARdefault, - STATE(1391), 1, - aux_sym__ct_switch_body, - STATE(1632), 1, - sym_ct_case_stmt, - STATE(1430), 3, + anon_sym_LBRACE, + STATE(959), 1, + sym_initializer_list, + ACTIONS(3502), 2, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + STATE(1469), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36316] = 5, + [44542] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1431), 3, + STATE(1470), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3419), 4, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3504), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LPAREN_LT, anon_sym_SEMI, - anon_sym_RBRACE, - [36337] = 8, + [44564] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 1, - sym_ident, - ACTIONS(3372), 1, - sym_ct_ident, - STATE(1625), 1, - sym_local_decl_after_type, - STATE(1980), 1, - sym__decl_statement_after_type, - STATE(1432), 3, + STATE(1471), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36364] = 8, + ACTIONS(3506), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [44586] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 1, - sym_ident, - ACTIONS(3372), 1, - sym_ct_ident, - STATE(1625), 1, - sym_local_decl_after_type, - STATE(2124), 1, - sym__decl_statement_after_type, - STATE(1433), 3, + ACTIONS(1978), 1, + anon_sym_LBRACE, + ACTIONS(3027), 1, + anon_sym_EQ_GT, + STATE(993), 1, + sym_compound_stmt, + STATE(1023), 1, + sym_macro_func_body, + STATE(2152), 1, + sym_implies_body, + STATE(1472), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36391] = 5, + [44616] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1434), 3, + ACTIONS(3508), 1, + sym_ident, + STATE(1473), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2687), 4, + ACTIONS(3510), 4, anon_sym_COMMA, + anon_sym_EQ, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_RBRACE, - [36412] = 5, + [44640] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1435), 3, + STATE(1474), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3421), 4, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - [36433] = 8, + ACTIONS(3512), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [44662] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 1, - sym_ident, - ACTIONS(3372), 1, - sym_ct_ident, - STATE(1625), 1, - sym_local_decl_after_type, - STATE(2100), 1, - sym__decl_statement_after_type, - STATE(1436), 3, + STATE(1475), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36460] = 7, + ACTIONS(3514), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LPAREN, + anon_sym_LBRACE, + [44684] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2923), 1, - anon_sym_EQ, - STATE(1729), 1, - sym__assign_right_expr, - ACTIONS(3423), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1437), 3, + STATE(1476), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36485] = 8, + ACTIONS(3516), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [44706] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3384), 1, - anon_sym_LPAREN, - STATE(123), 1, - sym_for_cond, - STATE(1871), 1, - sym_label, - STATE(1438), 3, + STATE(1477), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36512] = 7, + ACTIONS(3518), 5, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [44728] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3425), 1, - anon_sym_fn, - ACTIONS(3428), 1, - anon_sym_RBRACE, - STATE(1809), 1, - sym_func_declaration, - STATE(1439), 4, + ACTIONS(3522), 1, + sym_const_ident, + STATE(1478), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_interface_body_repeat1, - [36537] = 8, + ACTIONS(3520), 4, + sym_ident, + sym_at_ident, + sym_type_ident, + sym_at_type_ident, + [44752] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(3142), 1, - sym_type_ident, - STATE(1293), 1, - aux_sym__module_path, - STATE(1399), 1, - sym_module_resolution, - STATE(1440), 3, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + ACTIONS(3524), 1, + anon_sym_DOLLARendswitch, + STATE(1452), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, + STATE(1479), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36564] = 5, + [44782] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1441), 3, + STATE(1480), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3430), 4, + ACTIONS(3526), 5, sym_ident, sym_at_ident, sym_at_type_ident, - anon_sym_LBRACE, - [36585] = 8, + anon_sym_LPAREN_LT, + anon_sym_SEMI, + [44804] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3382), 1, - anon_sym_LPAREN, - STATE(78), 1, - sym_paren_cond, - STATE(1888), 1, - sym_label, - STATE(1442), 3, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + ACTIONS(3528), 1, + anon_sym_DOLLARendswitch, + STATE(1452), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, + STATE(1481), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36612] = 8, + [44834] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3384), 1, - anon_sym_LPAREN, - STATE(113), 1, - sym_for_cond, - STATE(1795), 1, - sym_label, - STATE(1443), 3, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + ACTIONS(3530), 1, + anon_sym_DOLLARendswitch, + STATE(1452), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, + STATE(1482), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36639] = 8, + [44864] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3164), 1, - anon_sym_LPAREN, - ACTIONS(3170), 1, - anon_sym_LBRACE, - STATE(433), 1, - sym_switch_body, - STATE(1899), 1, - sym_paren_cond, - STATE(1444), 3, + ACTIONS(3532), 1, + sym_ident, + ACTIONS(3534), 1, + sym_type_ident, + STATE(1443), 1, + sym_define_path_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1592), 1, + aux_sym__module_path, + STATE(1483), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36666] = 8, + [44894] = 9, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3386), 1, - anon_sym_LPAREN, - STATE(112), 1, - sym_foreach_cond, - STATE(1794), 1, - sym_label, - STATE(1445), 3, + ACTIONS(3536), 1, + anon_sym_STAR_GT, + ACTIONS(3538), 1, + sym_at_ident, + ACTIONS(3540), 1, + sym_doc_comment_text, + STATE(1579), 1, + aux_sym_doc_comment_repeat1, + STATE(1887), 1, + sym_doc_comment_contract, + STATE(1484), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36693] = 8, + [44924] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3382), 1, - anon_sym_LPAREN, - STATE(111), 1, - sym_paren_cond, - STATE(1793), 1, - sym_label, - STATE(1446), 3, + STATE(1485), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36720] = 8, + ACTIONS(3542), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + [44945] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, - anon_sym_LBRACE, - ACTIONS(3162), 1, - sym_const_ident, - STATE(1792), 1, - sym_label, - STATE(1892), 1, - sym_compound_stmt, - STATE(1447), 3, + ACTIONS(3544), 1, + sym_ident, + STATE(1278), 1, + sym_path_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1683), 1, + aux_sym__module_path, + STATE(1486), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36747] = 8, + [44972] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, ACTIONS(3285), 1, - anon_sym_DOLLARcase, + anon_sym_DOT, ACTIONS(3287), 1, - anon_sym_DOLLARdefault, - STATE(1392), 1, - aux_sym__ct_switch_body, - STATE(1632), 1, - sym_ct_case_stmt, - STATE(1448), 3, + anon_sym_LBRACE, + ACTIONS(3546), 1, + anon_sym_SEMI, + STATE(959), 1, + sym_initializer_list, + STATE(1487), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36774] = 5, + [44999] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1449), 3, + ACTIONS(3548), 1, + anon_sym_LBRACE, + ACTIONS(3550), 1, + anon_sym_if, + STATE(708), 1, + sym_compound_stmt, + STATE(709), 1, + sym_if_stmt, + STATE(1488), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3432), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [36795] = 7, + [45026] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, - anon_sym_SEMI, - ACTIONS(3436), 1, - anon_sym_COLON, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1450), 3, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(3552), 1, + sym_type_ident, + STATE(1371), 1, + aux_sym__module_path, + STATE(1461), 1, + sym_module_resolution, + STATE(1489), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36820] = 8, + [45053] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 1, - sym_ident, - ACTIONS(3372), 1, - sym_ct_ident, - STATE(1625), 1, - sym_local_decl_after_type, - STATE(1928), 1, - sym__decl_statement_after_type, - STATE(1451), 3, + STATE(1490), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36847] = 7, + ACTIONS(3554), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [45074] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2184), 1, - anon_sym_LPAREN_LT, - STATE(1783), 1, - sym_generic_arguments, - ACTIONS(3438), 2, + ACTIONS(3556), 1, anon_sym_COMMA, + ACTIONS(3559), 2, anon_sym_RPAREN, - STATE(1452), 3, + anon_sym_SEMI, + STATE(1491), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [36872] = 5, + aux_sym__parameters_repeat1, + [45097] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1453), 3, + STATE(1492), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3561), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [45118] = 5, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + STATE(1493), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3440), 4, + ACTIONS(3563), 4, sym_ident, sym_at_ident, sym_at_type_ident, - anon_sym_LBRACE, - [36893] = 8, + anon_sym_SEMI, + [45139] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3164), 1, - anon_sym_LPAREN, - ACTIONS(3226), 1, - anon_sym_LBRACE, - STATE(754), 1, - sym_switch_body, - STATE(1829), 1, - sym_paren_cond, - STATE(1454), 3, + ACTIONS(3538), 1, + sym_at_ident, + ACTIONS(3565), 1, + anon_sym_STAR_GT, + STATE(1495), 1, + aux_sym_doc_comment_repeat1, + STATE(1887), 1, + sym_doc_comment_contract, + STATE(1494), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36920] = 8, + [45166] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3382), 1, - anon_sym_LPAREN, - STATE(72), 1, - sym_paren_cond, - STATE(1781), 1, - sym_label, - STATE(1455), 3, + ACTIONS(3567), 1, + anon_sym_STAR_GT, + ACTIONS(3569), 1, + sym_at_ident, + STATE(1887), 1, + sym_doc_comment_contract, + STATE(1495), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [36947] = 7, + aux_sym_doc_comment_repeat1, + [45191] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, - anon_sym_EQ, - STATE(1729), 1, - sym__assign_right_expr, - ACTIONS(3423), 2, - anon_sym_COMMA, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3572), 1, anon_sym_SEMI, - STATE(1456), 3, + STATE(959), 1, + sym_initializer_list, + STATE(1496), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [36972] = 8, + [45218] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3382), 1, - anon_sym_LPAREN, - STATE(80), 1, - sym_paren_cond, - STATE(1919), 1, - sym_label, - STATE(1457), 3, + ACTIONS(3576), 1, + anon_sym_AMP_AMP, + ACTIONS(3574), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1497), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [36999] = 6, + aux_sym__try_unwrap_chain_repeat1, + [45241] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2615), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(3442), 2, + ACTIONS(3579), 1, anon_sym_COMMA, + ACTIONS(3582), 2, anon_sym_RPAREN, - STATE(1458), 3, + anon_sym_SEMI, + STATE(1498), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [37022] = 8, + aux_sym__cond_repeat1, + [45264] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3444), 1, + ACTIONS(2752), 1, anon_sym_RPAREN, - STATE(936), 1, - sym_initializer_list, - STATE(1459), 3, + ACTIONS(3584), 1, + anon_sym_COMMA, + ACTIONS(3586), 1, + anon_sym_SEMI, + STATE(1509), 1, + aux_sym__call_arg_list_repeat1, + STATE(1499), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37049] = 8, + [45291] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3384), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - STATE(103), 1, - sym_for_cond, - STATE(1775), 1, + STATE(80), 1, + sym_paren_cond, + STATE(1896), 1, sym_label, - STATE(1460), 3, + STATE(1500), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37076] = 8, + [45318] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2725), 1, - anon_sym_COLON, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_DOT, - STATE(936), 1, - sym_initializer_list, - STATE(1461), 3, + ACTIONS(2614), 1, + anon_sym_LPAREN_LT, + STATE(1931), 1, + sym_generic_arguments, + ACTIONS(3590), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1501), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37103] = 5, + [45343] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1462), 3, + STATE(1502), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3446), 4, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - [37124] = 5, + ACTIONS(3592), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [45364] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1463), 3, + STATE(1503), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3448), 4, + ACTIONS(3594), 4, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_SEMI, - [37145] = 8, + [45385] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3386), 1, - anon_sym_LPAREN, - STATE(102), 1, - sym_foreach_cond, - STATE(1773), 1, - sym_label, - STATE(1464), 3, + STATE(1504), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37172] = 8, - ACTIONS(3), 1, + ACTIONS(3596), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [45406] = 8, + ACTIONS(3598), 1, + sym_escape_sequence, + ACTIONS(3600), 1, + anon_sym_DQUOTE, + ACTIONS(3602), 1, + aux_sym_string_literal_token1, + ACTIONS(3604), 1, aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, + ACTIONS(3606), 1, + anon_sym_LT_STAR, + ACTIONS(3608), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3382), 1, - anon_sym_LPAREN, - STATE(101), 1, - sym_paren_cond, - STATE(1772), 1, - sym_label, - STATE(1465), 3, + STATE(1518), 1, + aux_sym_string_literal_repeat1, + STATE(1505), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37199] = 8, + [45433] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2795), 1, - anon_sym_SEMI, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, + ACTIONS(3285), 1, anon_sym_DOT, - STATE(936), 1, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3610), 1, + anon_sym_SEMI, + STATE(959), 1, sym_initializer_list, - STATE(1466), 3, + STATE(1506), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37226] = 8, + [45460] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, + ACTIONS(3285), 1, anon_sym_DOT, - ACTIONS(3450), 1, - anon_sym_COLON, - STATE(936), 1, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3612), 1, + anon_sym_SEMI, + STATE(959), 1, sym_initializer_list, - STATE(1467), 3, + STATE(1507), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37253] = 5, + [45487] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1468), 3, + STATE(1508), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3452), 4, + ACTIONS(3614), 4, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_SEMI, - [37274] = 8, + [45508] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, - anon_sym_LBRACE, - ACTIONS(3162), 1, - sym_const_ident, - STATE(1771), 1, - sym_label, - STATE(1903), 1, - sym_compound_stmt, - STATE(1469), 3, + ACTIONS(1237), 1, + anon_sym_RPAREN, + ACTIONS(1239), 1, + anon_sym_SEMI, + ACTIONS(3616), 1, + anon_sym_COMMA, + STATE(1611), 1, + aux_sym__call_arg_list_repeat1, + STATE(1509), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37301] = 6, - ACTIONS(3), 1, + [45535] = 7, + ACTIONS(3604), 1, aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, + ACTIONS(3606), 1, + anon_sym_LT_STAR, + ACTIONS(3608), 1, anon_sym_SLASH_STAR, - ACTIONS(3456), 1, - anon_sym_EQ, - ACTIONS(3454), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1470), 3, + ACTIONS(3618), 1, + sym_escape_sequence, + ACTIONS(3621), 1, + anon_sym_DQUOTE, + ACTIONS(3623), 1, + aux_sym_string_literal_token1, + STATE(1510), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [37324] = 8, + aux_sym_string_literal_repeat1, + [45560] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - sym_const_ident, - ACTIONS(3386), 1, - anon_sym_LPAREN, - STATE(125), 1, - sym_foreach_cond, - STATE(1870), 1, - sym_label, - STATE(1471), 3, + ACTIONS(3281), 1, + sym_ident, + ACTIONS(3283), 1, + sym_ct_ident, + STATE(1639), 1, + sym_local_decl_after_type, + STATE(2166), 1, + sym__decl_statement_after_type, + STATE(1511), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37351] = 8, + [45587] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3458), 1, - anon_sym_fn, - ACTIONS(3460), 1, + ACTIONS(3047), 1, + anon_sym_EQ, + STATE(1752), 1, + sym_enum_arg, + ACTIONS(3626), 2, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(1439), 1, - aux_sym_interface_body_repeat1, - STATE(1809), 1, - sym_func_declaration, - STATE(1472), 3, + STATE(1512), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37378] = 7, + [45612] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, - anon_sym_EQ, - STATE(1624), 1, - sym__assign_right_expr, - ACTIONS(3454), 2, - anon_sym_COMMA, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3628), 1, anon_sym_SEMI, - STATE(1473), 3, + STATE(959), 1, + sym_initializer_list, + STATE(1513), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37403] = 8, + [45639] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3285), 1, - anon_sym_DOLLARcase, - ACTIONS(3287), 1, - anon_sym_DOLLARdefault, - STATE(1372), 1, - aux_sym__ct_switch_body, - STATE(1632), 1, - sym_ct_case_stmt, - STATE(1474), 3, + ACTIONS(3630), 1, + anon_sym_LBRACE, + ACTIONS(3632), 1, + anon_sym_if, + STATE(781), 1, + sym_compound_stmt, + STATE(782), 1, + sym_if_stmt, + STATE(1514), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37430] = 8, + [45666] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 1, - sym_ident, - ACTIONS(3372), 1, - sym_ct_ident, - STATE(1625), 1, - sym_local_decl_after_type, - STATE(1971), 1, - sym__decl_statement_after_type, - STATE(1475), 3, + STATE(1515), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37457] = 8, + ACTIONS(3634), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [45687] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1219), 1, - anon_sym_RPAREN, - ACTIONS(1221), 1, - anon_sym_SEMI, - ACTIONS(3462), 1, - anon_sym_COMMA, - STATE(1501), 1, - aux_sym_enum_arg_repeat1, - STATE(1476), 3, + STATE(1516), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37484] = 7, + ACTIONS(3636), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + [45708] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3464), 1, - anon_sym_SEMI, - ACTIONS(3466), 1, - anon_sym_COLON, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1477), 3, + STATE(1517), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3638), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + [45729] = 8, + ACTIONS(3598), 1, + sym_escape_sequence, + ACTIONS(3602), 1, + aux_sym_string_literal_token1, + ACTIONS(3604), 1, + aux_sym_line_comment_token1, + ACTIONS(3606), 1, + anon_sym_LT_STAR, + ACTIONS(3608), 1, + anon_sym_SLASH_STAR, + ACTIONS(3640), 1, + anon_sym_DQUOTE, + STATE(1510), 1, + aux_sym_string_literal_repeat1, + STATE(1518), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37509] = 5, + [45756] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1478), 3, + ACTIONS(3538), 1, + sym_at_ident, + ACTIONS(3642), 1, + anon_sym_STAR_GT, + STATE(1494), 1, + aux_sym_doc_comment_repeat1, + STATE(1887), 1, + sym_doc_comment_contract, + STATE(1519), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2919), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_SEMI, - [37530] = 8, + [45783] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, - anon_sym_LBRACE, - ACTIONS(3468), 1, - anon_sym_EQ_GT, - STATE(936), 1, - sym_compound_stmt, - STATE(996), 1, - sym_implies_body, - STATE(1479), 3, + STATE(1520), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37557] = 8, + ACTIONS(3644), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [45804] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2737), 1, - anon_sym_SEMI, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, + ACTIONS(3285), 1, anon_sym_DOT, - STATE(936), 1, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3646), 1, + anon_sym_SEMI, + STATE(959), 1, sym_initializer_list, - STATE(1480), 3, + STATE(1521), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37584] = 8, + [45831] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3470), 1, + ACTIONS(2984), 1, sym_ident, - STATE(936), 1, - sym_initializer_list, - STATE(1481), 3, + ACTIONS(3273), 1, + sym_type_ident, + STATE(1371), 1, + aux_sym__module_path, + STATE(1461), 1, + sym_module_resolution, + STATE(1522), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37611] = 8, + [45858] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3472), 1, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, anon_sym_LBRACE, - ACTIONS(3474), 1, - anon_sym_if, - STATE(733), 1, - sym_compound_stmt, - STATE(735), 1, - sym_if_stmt, - STATE(1482), 3, + ACTIONS(3648), 1, + anon_sym_RPAREN, + STATE(959), 1, + sym_initializer_list, + STATE(1523), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37638] = 8, + [45885] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2745), 1, + ACTIONS(3650), 1, + anon_sym_COMMA, + ACTIONS(3653), 2, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_DOT, - STATE(936), 1, - sym_initializer_list, - STATE(1483), 3, + STATE(1524), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [37665] = 7, + aux_sym_assert_stmt_repeat1, + [45908] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3476), 1, - anon_sym_RBRACK, - STATE(1243), 1, - sym__additive_op, - ACTIONS(3478), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1484), 3, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3655), 1, + anon_sym_LPAREN, + STATE(135), 1, + sym_for_cond, + STATE(1908), 1, + sym_label, + STATE(1525), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37690] = 8, + [45935] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2877), 1, + ACTIONS(3294), 1, + sym_const_ident, + ACTIONS(3657), 1, sym_ident, - ACTIONS(3480), 1, - sym_at_ident, - STATE(1293), 1, - aux_sym__module_path, - STATE(1399), 1, + STATE(1796), 1, sym_module_resolution, - STATE(1485), 3, + STATE(1526), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [37717] = 8, + aux_sym__module_path, + [45960] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, - anon_sym_LBRACE, - ACTIONS(3482), 1, - anon_sym_EQ_GT, - STATE(936), 1, - sym_compound_stmt, - STATE(996), 1, - sym_implies_body, - STATE(1486), 3, + STATE(1527), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37744] = 8, + ACTIONS(3660), 4, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_SEMI, + [45981] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 1, - sym_ident, - ACTIONS(3372), 1, - sym_ct_ident, - STATE(1625), 1, - sym_local_decl_after_type, - STATE(1987), 1, - sym__decl_statement_after_type, - STATE(1487), 3, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + STATE(1456), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, + STATE(1528), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37771] = 5, + [46008] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1488), 3, + STATE(1529), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3484), 4, + ACTIONS(3662), 4, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_SEMI, - [37792] = 8, + [46029] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_RPAREN, - ACTIONS(3378), 1, - anon_sym_QMARK, - ACTIONS(3486), 1, - anon_sym_COMMA, - STATE(1749), 1, - aux_sym_catch_unwrap_list_repeat1, - STATE(1489), 3, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3664), 1, + anon_sym_SEMI, + STATE(959), 1, + sym_initializer_list, + STATE(1530), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37819] = 5, + [46056] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1490), 3, + STATE(1531), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3488), 4, + ACTIONS(3666), 4, sym_ident, sym_at_ident, sym_at_type_ident, - anon_sym_SEMI, - [37840] = 6, + anon_sym_LBRACE, + [46077] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2615), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(3490), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1491), 3, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3668), 1, + anon_sym_LPAREN, + STATE(99), 1, + sym_foreach_cond, + STATE(1919), 1, + sym_label, + STATE(1532), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37863] = 8, + [46104] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, - anon_sym_LBRACE, - ACTIONS(3492), 1, - anon_sym_EQ_GT, - STATE(936), 1, - sym_compound_stmt, - STATE(996), 1, - sym_implies_body, - STATE(1492), 3, + ACTIONS(3449), 1, + sym_ident, + ACTIONS(3670), 1, + sym_const_ident, + STATE(1526), 1, + aux_sym__module_path, + STATE(1796), 1, + sym_module_resolution, + STATE(1533), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37890] = 8, + [46131] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, + ACTIONS(3285), 1, anon_sym_DOT, - ACTIONS(3494), 1, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3672), 1, sym_ident, - STATE(936), 1, + STATE(959), 1, sym_initializer_list, - STATE(1493), 3, + STATE(1534), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37917] = 6, + [46158] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3378), 1, - anon_sym_QMARK, - ACTIONS(3496), 3, - anon_sym_RPAREN, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3674), 1, anon_sym_SEMI, - anon_sym_AMP_AMP, - STATE(1494), 3, + STATE(959), 1, + sym_initializer_list, + STATE(1535), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37940] = 6, + [46185] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 1, - anon_sym_COMMA, - ACTIONS(3501), 2, - anon_sym_RPAREN, + ACTIONS(3676), 1, + anon_sym_LBRACE, + ACTIONS(3678), 1, + anon_sym_if, + STATE(444), 1, + sym_compound_stmt, + STATE(445), 1, + sym_if_stmt, + STATE(1536), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [46212] = 8, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3680), 1, anon_sym_SEMI, - STATE(1495), 4, + STATE(959), 1, + sym_initializer_list, + STATE(1537), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__parameters_repeat1, - [37963] = 8, + [46239] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, + ACTIONS(3682), 1, anon_sym_LBRACE, - ACTIONS(3503), 1, - anon_sym_EQ_GT, - STATE(936), 1, + ACTIONS(3684), 1, + anon_sym_if, + STATE(635), 1, sym_compound_stmt, - STATE(996), 1, - sym_implies_body, - STATE(1496), 3, + STATE(636), 1, + sym_if_stmt, + STATE(1538), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [37990] = 8, + [46266] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2809), 1, - anon_sym_SEMI, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, + ACTIONS(3285), 1, anon_sym_DOT, - STATE(936), 1, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3686), 1, + sym_ident, + STATE(959), 1, sym_initializer_list, - STATE(1497), 3, + STATE(1539), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38017] = 7, + [46293] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3505), 1, - anon_sym_SEMI, - ACTIONS(3507), 1, - anon_sym_COLON, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1498), 3, + STATE(1540), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38042] = 8, + ACTIONS(1707), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + [46314] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3164), 1, - anon_sym_LPAREN, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(407), 1, - sym_switch_body, - STATE(1845), 1, - sym_paren_cond, - STATE(1499), 3, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(3308), 1, + sym_type_ident, + STATE(1371), 1, + aux_sym__module_path, + STATE(1461), 1, + sym_module_resolution, + STATE(1541), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38069] = 8, + [46341] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2811), 1, + ACTIONS(3690), 1, + anon_sym_AMP_AMP, + STATE(1497), 1, + aux_sym__try_unwrap_chain_repeat1, + ACTIONS(3688), 2, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_DOT, - STATE(936), 1, - sym_initializer_list, - STATE(1500), 3, + STATE(1542), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38096] = 6, + [46366] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3509), 1, + ACTIONS(3692), 1, anon_sym_COMMA, - ACTIONS(3419), 2, + STATE(1498), 1, + aux_sym__cond_repeat1, + ACTIONS(3694), 2, anon_sym_RPAREN, anon_sym_SEMI, - STATE(1501), 4, + STATE(1543), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_enum_arg_repeat1, - [38119] = 8, + [46391] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3512), 1, - sym_ident, - STATE(1225), 1, - sym_path_ident, - STATE(1399), 1, - sym_module_resolution, - STATE(1658), 1, - aux_sym__module_path, - STATE(1502), 3, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3696), 1, + anon_sym_RPAREN, + STATE(959), 1, + sym_initializer_list, + STATE(1544), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38146] = 8, + [46418] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(117), 1, + sym_paren_cond, + STATE(1926), 1, + sym_label, + STATE(1545), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [46445] = 8, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3285), 1, anon_sym_DOT, - ACTIONS(3514), 1, - sym_ident, - STATE(936), 1, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3698), 1, + anon_sym_COLON, + STATE(959), 1, sym_initializer_list, - STATE(1503), 3, + STATE(1546), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38173] = 5, + [46472] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1504), 3, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(67), 1, + sym_paren_cond, + STATE(1831), 1, + sym_label, + STATE(1547), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2858), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_SEMI, - [38194] = 7, + [46499] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3516), 1, - anon_sym_COMMA, - STATE(1495), 1, - aux_sym__parameters_repeat1, - ACTIONS(2380), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1505), 3, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3655), 1, + anon_sym_LPAREN, + STATE(101), 1, + sym_for_cond, + STATE(1838), 1, + sym_label, + STATE(1548), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38219] = 7, + [46526] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3518), 1, - anon_sym_EQ, - STATE(1654), 1, - sym__assign_right_constant_expr, - ACTIONS(2921), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1506), 3, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3668), 1, + anon_sym_LPAREN, + STATE(102), 1, + sym_foreach_cond, + STATE(1839), 1, + sym_label, + STATE(1549), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38244] = 8, + [46553] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3313), 1, - sym_ident, - ACTIONS(3520), 1, + ACTIONS(3035), 1, sym_const_ident, - STATE(1515), 1, - aux_sym__module_path, - STATE(1887), 1, - sym_module_resolution, - STATE(1507), 3, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(103), 1, + sym_paren_cond, + STATE(1840), 1, + sym_label, + STATE(1550), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38271] = 8, + [46580] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3285), 1, - anon_sym_DOLLARcase, - ACTIONS(3287), 1, - anon_sym_DOLLARdefault, - STATE(1404), 1, - aux_sym__ct_switch_body, - STATE(1632), 1, - sym_ct_case_stmt, - STATE(1508), 3, + ACTIONS(1978), 1, + anon_sym_LBRACE, + ACTIONS(3035), 1, + sym_const_ident, + STATE(1841), 1, + sym_label, + STATE(1852), 1, + sym_compound_stmt, + STATE(1551), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38298] = 5, + [46607] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1509), 3, + ACTIONS(3700), 1, + anon_sym_fn, + ACTIONS(3702), 1, + anon_sym_RBRACE, + STATE(1590), 1, + aux_sym_interface_body_repeat1, + STATE(1792), 1, + sym_func_declaration, + STATE(1552), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3522), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [38319] = 8, + [46634] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3524), 1, - sym_ident, - STATE(936), 1, - sym_initializer_list, - STATE(1510), 3, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + STATE(1482), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, + STATE(1553), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38346] = 8, + [46661] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2799), 1, - anon_sym_SEMI, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_DOT, - STATE(936), 1, - sym_initializer_list, - STATE(1511), 3, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(3704), 1, + sym_at_type_ident, + STATE(1371), 1, + aux_sym__module_path, + STATE(1461), 1, + sym_module_resolution, + STATE(1554), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38373] = 8, + [46688] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3164), 1, - anon_sym_LPAREN, - ACTIONS(3259), 1, - anon_sym_LBRACE, - STATE(661), 1, - sym_switch_body, - STATE(1902), 1, - sym_paren_cond, - STATE(1512), 3, + ACTIONS(3281), 1, + sym_ident, + ACTIONS(3283), 1, + sym_ct_ident, + STATE(1639), 1, + sym_local_decl_after_type, + STATE(2134), 1, + sym__decl_statement_after_type, + STATE(1555), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38400] = 8, + [46715] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3164), 1, - anon_sym_LPAREN, - ACTIONS(3166), 1, + ACTIONS(1978), 1, anon_sym_LBRACE, - STATE(640), 1, - sym_switch_body, - STATE(1774), 1, - sym_paren_cond, - STATE(1513), 3, + ACTIONS(3027), 1, + anon_sym_EQ_GT, + STATE(908), 1, + sym_implies_body, + STATE(909), 1, + sym_compound_stmt, + STATE(1556), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38427] = 7, + [46742] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3526), 1, + ACTIONS(3706), 1, anon_sym_LPAREN, - STATE(1846), 1, + STATE(1761), 1, sym_ct_switch_cond, - ACTIONS(3528), 2, + ACTIONS(3708), 2, anon_sym_DOLLARcase, anon_sym_DOLLARdefault, - STATE(1514), 3, + STATE(1557), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38452] = 7, + [46767] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3114), 1, - sym_const_ident, - ACTIONS(3530), 1, - sym_ident, - STATE(1887), 1, - sym_module_resolution, - STATE(1515), 4, + ACTIONS(3690), 1, + anon_sym_AMP_AMP, + STATE(1542), 1, + aux_sym__try_unwrap_chain_repeat1, + ACTIONS(3710), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1558), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__module_path, - [38477] = 8, + [46792] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, - anon_sym_LBRACE, - ACTIONS(3162), 1, - sym_const_ident, - STATE(1847), 1, - sym_compound_stmt, - STATE(1848), 1, - sym_label, - STATE(1516), 3, + ACTIONS(3712), 1, + anon_sym_EQ, + ACTIONS(3500), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1559), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38504] = 8, + [46815] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3382), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - STATE(97), 1, + STATE(92), 1, sym_paren_cond, - STATE(1850), 1, + STATE(1814), 1, sym_label, - STATE(1517), 3, + STATE(1560), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38531] = 8, + [46842] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3386), 1, + ACTIONS(3655), 1, anon_sym_LPAREN, - STATE(105), 1, - sym_foreach_cond, - STATE(1852), 1, + STATE(98), 1, + sym_for_cond, + STATE(1856), 1, sym_label, - STATE(1518), 3, + STATE(1561), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38558] = 8, + [46869] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3384), 1, + ACTIONS(3668), 1, anon_sym_LPAREN, - STATE(110), 1, - sym_for_cond, - STATE(1856), 1, + STATE(111), 1, + sym_foreach_cond, + STATE(1857), 1, sym_label, - STATE(1519), 3, + STATE(1562), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38585] = 8, + [46896] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3382), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - STATE(75), 1, + STATE(112), 1, sym_paren_cond, - STATE(1859), 1, + STATE(1858), 1, sym_label, - STATE(1520), 3, + STATE(1563), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38612] = 8, + [46923] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3533), 1, + ACTIONS(1978), 1, anon_sym_LBRACE, - ACTIONS(3535), 1, - anon_sym_if, - STATE(611), 1, - sym_if_stmt, - STATE(612), 1, + ACTIONS(3035), 1, + sym_const_ident, + STATE(1823), 1, sym_compound_stmt, - STATE(1521), 3, + STATE(1859), 1, + sym_label, + STATE(1564), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38639] = 8, + [46950] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2433), 1, - anon_sym_RPAREN, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, + ACTIONS(3285), 1, anon_sym_DOT, - STATE(936), 1, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3714), 1, + anon_sym_SEMI, + STATE(959), 1, sym_initializer_list, - STATE(1522), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [38666] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1523), 3, + STATE(1565), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3537), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - [38687] = 8, + [46977] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2817), 1, - anon_sym_SEMI, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_DOT, - STATE(936), 1, - sym_initializer_list, - STATE(1524), 3, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + STATE(1481), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, + STATE(1566), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38714] = 8, + [47004] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3539), 1, + ACTIONS(3716), 1, anon_sym_LBRACE, - ACTIONS(3541), 1, + ACTIONS(3718), 1, anon_sym_if, - STATE(495), 1, + STATE(388), 1, sym_compound_stmt, - STATE(496), 1, + STATE(389), 1, sym_if_stmt, - STATE(1525), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [38741] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1526), 3, + STATE(1567), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3543), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LBRACE, - [38762] = 8, + [47031] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2877), 1, + ACTIONS(3281), 1, sym_ident, - ACTIONS(3120), 1, - sym_type_ident, - STATE(1293), 1, - aux_sym__module_path, - STATE(1399), 1, - sym_module_resolution, - STATE(1527), 3, + ACTIONS(3283), 1, + sym_ct_ident, + STATE(1639), 1, + sym_local_decl_after_type, + STATE(2073), 1, + sym__decl_statement_after_type, + STATE(1568), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38789] = 5, + [47058] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1528), 3, + STATE(1569), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3545), 4, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_RPAREN, + ACTIONS(3720), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, anon_sym_SEMI, - [38810] = 8, + [47079] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2821), 1, - anon_sym_SEMI, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_DOT, - STATE(936), 1, - sym_initializer_list, - STATE(1529), 3, + ACTIONS(3722), 1, + anon_sym_fn, + ACTIONS(3725), 1, + anon_sym_RBRACE, + STATE(1792), 1, + sym_func_declaration, + STATE(1570), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [38837] = 6, + aux_sym_interface_body_repeat1, + [47104] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3378), 1, - anon_sym_QMARK, - ACTIONS(3547), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1530), 3, + ACTIONS(3544), 1, + sym_ident, + STATE(1450), 1, + sym_path_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1683), 1, + aux_sym__module_path, + STATE(1571), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38860] = 8, + [47131] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2781), 1, - anon_sym_SEMI, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_DOT, - STATE(936), 1, - sym_initializer_list, - STATE(1531), 3, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(66), 1, + sym_paren_cond, + STATE(1892), 1, + sym_label, + STATE(1572), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38887] = 7, + [47158] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3549), 1, - anon_sym_SEMI, - ACTIONS(3551), 1, - anon_sym_COLON, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1532), 3, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3655), 1, + anon_sym_LPAREN, + STATE(139), 1, + sym_for_cond, + STATE(1875), 1, + sym_label, + STATE(1573), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38912] = 8, + [47185] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3553), 1, - anon_sym_LBRACE, - ACTIONS(3555), 1, - anon_sym_if, - STATE(384), 1, - sym_if_stmt, - STATE(385), 1, - sym_compound_stmt, - STATE(1533), 3, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3668), 1, + anon_sym_LPAREN, + STATE(118), 1, + sym_foreach_cond, + STATE(1876), 1, + sym_label, + STATE(1574), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38939] = 5, + [47212] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1534), 3, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(119), 1, + sym_paren_cond, + STATE(1877), 1, + sym_label, + STATE(1575), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3557), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [38960] = 8, + [47239] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3164), 1, - anon_sym_LPAREN, - ACTIONS(3224), 1, + ACTIONS(1978), 1, anon_sym_LBRACE, - STATE(521), 1, - sym_switch_body, - STATE(1844), 1, - sym_paren_cond, - STATE(1535), 3, + ACTIONS(3035), 1, + sym_const_ident, + STATE(1878), 1, + sym_label, + STATE(1897), 1, + sym_compound_stmt, + STATE(1576), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [38987] = 5, + [47266] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1536), 3, + STATE(1577), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(2901), 4, + ACTIONS(3051), 4, anon_sym_COMMA, anon_sym_EQ, anon_sym_RPAREN, anon_sym_SEMI, - [39008] = 7, + [47287] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3559), 1, - anon_sym_SEMI, - ACTIONS(3561), 1, - anon_sym_COLON, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1537), 3, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + STATE(1460), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, + STATE(1578), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39033] = 8, + [47314] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3512), 1, - sym_ident, - STATE(1226), 1, - sym_path_ident, - STATE(1399), 1, - sym_module_resolution, - STATE(1658), 1, - aux_sym__module_path, - STATE(1538), 3, + ACTIONS(3538), 1, + sym_at_ident, + ACTIONS(3642), 1, + anon_sym_STAR_GT, + STATE(1495), 1, + aux_sym_doc_comment_repeat1, + STATE(1887), 1, + sym_doc_comment_contract, + STATE(1579), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39060] = 8, + [47341] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3458), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_RBRACE, - STATE(1472), 1, - aux_sym_interface_body_repeat1, - STATE(1809), 1, - sym_func_declaration, - STATE(1539), 3, + ACTIONS(3727), 1, + anon_sym_COMMA, + STATE(1498), 1, + aux_sym__cond_repeat1, + ACTIONS(3729), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1580), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39087] = 5, + [47366] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1540), 3, + ACTIONS(3281), 1, + sym_ident, + ACTIONS(3283), 1, + sym_ct_ident, + STATE(1639), 1, + sym_local_decl_after_type, + STATE(2201), 1, + sym__decl_statement_after_type, + STATE(1581), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3565), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_LBRACE, - [39108] = 8, + [47393] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 1, - sym_ident, - ACTIONS(3372), 1, - sym_ct_ident, - STATE(1625), 1, - sym_local_decl_after_type, - STATE(2055), 1, - sym__decl_statement_after_type, - STATE(1541), 3, + ACTIONS(3731), 1, + anon_sym_COMMA, + STATE(1491), 1, + aux_sym__parameters_repeat1, + ACTIONS(2809), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1582), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39135] = 8, + [47418] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3567), 1, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, anon_sym_LBRACE, - ACTIONS(3569), 1, - anon_sym_if, - STATE(548), 1, - sym_compound_stmt, - STATE(549), 1, - sym_if_stmt, - STATE(1542), 3, + ACTIONS(3733), 1, + anon_sym_SEMI, + STATE(959), 1, + sym_initializer_list, + STATE(1583), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39162] = 7, + [47445] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2923), 1, - anon_sym_EQ, - STATE(1624), 1, - sym__assign_right_expr, - ACTIONS(3454), 2, + ACTIONS(3735), 1, anon_sym_COMMA, + STATE(1543), 1, + aux_sym__cond_repeat1, + ACTIONS(3737), 2, anon_sym_RPAREN, - STATE(1543), 3, + anon_sym_SEMI, + STATE(1584), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39187] = 8, + [47470] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2771), 1, - anon_sym_SEMI, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_DOT, - STATE(936), 1, - sym_initializer_list, - STATE(1544), 3, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(58), 1, + sym_paren_cond, + STATE(1771), 1, + sym_label, + STATE(1585), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39214] = 5, + [47497] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - STATE(1545), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - ACTIONS(3571), 4, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - [39235] = 8, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3406), 1, - aux_sym_line_comment_token1, - ACTIONS(3408), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(3573), 1, - sym_escape_sequence, - ACTIONS(3575), 1, - anon_sym_DQUOTE, - ACTIONS(3577), 1, - aux_sym_string_literal_token1, - STATE(1560), 1, - aux_sym_string_literal_repeat1, - STATE(1546), 3, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3655), 1, + anon_sym_LPAREN, + STATE(124), 1, + sym_for_cond, + STATE(1898), 1, + sym_label, + STATE(1586), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39262] = 5, + [47524] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1547), 3, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3668), 1, + anon_sym_LPAREN, + STATE(125), 1, + sym_foreach_cond, + STATE(1899), 1, + sym_label, + STATE(1587), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3579), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [39283] = 6, + [47551] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2615), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(3410), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1548), 3, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(126), 1, + sym_paren_cond, + STATE(1900), 1, + sym_label, + STATE(1588), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39306] = 8, + [47578] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2739), 1, - anon_sym_SEMI, - ACTIONS(3089), 1, + ACTIONS(1978), 1, anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_DOT, - STATE(936), 1, - sym_initializer_list, - STATE(1549), 3, + ACTIONS(3035), 1, + sym_const_ident, + STATE(1774), 1, + sym_compound_stmt, + STATE(1901), 1, + sym_label, + STATE(1589), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39333] = 5, + [47605] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1550), 3, + ACTIONS(3700), 1, + anon_sym_fn, + ACTIONS(3739), 1, + anon_sym_RBRACE, + STATE(1570), 1, + aux_sym_interface_body_repeat1, + STATE(1792), 1, + sym_func_declaration, + STATE(1590), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3581), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [39354] = 7, + [47632] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3583), 1, - anon_sym_COMMA, - STATE(1505), 1, - aux_sym__parameters_repeat1, - ACTIONS(3585), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1551), 3, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + STATE(1479), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, + STATE(1591), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39379] = 8, + [47659] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_DOT, - ACTIONS(3587), 1, - anon_sym_RPAREN, - STATE(936), 1, - sym_initializer_list, - STATE(1552), 3, + ACTIONS(3741), 1, + sym_ident, + ACTIONS(3743), 1, + sym_type_ident, + STATE(1371), 1, + aux_sym__module_path, + STATE(1461), 1, + sym_module_resolution, + STATE(1592), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39406] = 8, + [47686] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 1, + ACTIONS(3281), 1, sym_ident, - ACTIONS(3372), 1, + ACTIONS(3283), 1, sym_ct_ident, - STATE(1625), 1, + STATE(1639), 1, sym_local_decl_after_type, - STATE(2148), 1, + STATE(1977), 1, sym__decl_statement_after_type, - STATE(1553), 3, + STATE(1593), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39433] = 5, + [47713] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1554), 3, + ACTIONS(3745), 1, + anon_sym_LBRACE, + ACTIONS(3747), 1, + anon_sym_if, + STATE(526), 1, + sym_if_stmt, + STATE(547), 1, + sym_compound_stmt, + STATE(1594), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3589), 4, - sym_ident, - sym_at_ident, - sym_at_type_ident, - anon_sym_SEMI, - [39454] = 8, + [47740] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3512), 1, - sym_ident, - STATE(1335), 1, - sym_path_ident, - STATE(1399), 1, - sym_module_resolution, - STATE(1658), 1, - aux_sym__module_path, - STATE(1555), 3, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3749), 1, + anon_sym_SEMI, + STATE(959), 1, + sym_initializer_list, + STATE(1595), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39481] = 8, + [47767] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, + ACTIONS(3285), 1, anon_sym_DOT, - ACTIONS(3591), 1, - anon_sym_RPAREN, - STATE(936), 1, + ACTIONS(3287), 1, + anon_sym_LBRACE, + ACTIONS(3751), 1, + anon_sym_COLON, + STATE(959), 1, sym_initializer_list, - STATE(1556), 3, + STATE(1596), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39508] = 8, + [47794] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3512), 1, - sym_ident, - STATE(1399), 1, - sym_module_resolution, - STATE(1403), 1, - sym_path_ident, - STATE(1658), 1, - aux_sym__module_path, - STATE(1557), 3, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(89), 1, + sym_paren_cond, + STATE(1741), 1, + sym_label, + STATE(1597), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39535] = 6, + [47821] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3378), 1, - anon_sym_QMARK, - ACTIONS(3593), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - STATE(1558), 3, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3655), 1, + anon_sym_LPAREN, + STATE(132), 1, + sym_for_cond, + STATE(1915), 1, + sym_label, + STATE(1598), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39558] = 8, + [47848] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3285), 1, - anon_sym_DOLLARcase, - ACTIONS(3287), 1, - anon_sym_DOLLARdefault, - STATE(1379), 1, - aux_sym__ct_switch_body, - STATE(1632), 1, - sym_ct_case_stmt, - STATE(1559), 3, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3668), 1, + anon_sym_LPAREN, + STATE(133), 1, + sym_foreach_cond, + STATE(1916), 1, + sym_label, + STATE(1599), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39585] = 8, + [47875] = 8, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3406), 1, - aux_sym_line_comment_token1, - ACTIONS(3408), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(3573), 1, - sym_escape_sequence, - ACTIONS(3577), 1, - aux_sym_string_literal_token1, - ACTIONS(3595), 1, - anon_sym_DQUOTE, - STATE(1420), 1, - aux_sym_string_literal_repeat1, - STATE(1560), 3, + ACTIONS(3035), 1, + sym_const_ident, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(134), 1, + sym_paren_cond, + STATE(1917), 1, + sym_label, + STATE(1600), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39612] = 8, + [47902] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, + ACTIONS(1978), 1, anon_sym_LBRACE, - ACTIONS(3162), 1, + ACTIONS(3035), 1, sym_const_ident, - STATE(1786), 1, + STATE(1803), 1, sym_compound_stmt, - STATE(1867), 1, + STATE(1918), 1, sym_label, - STATE(1561), 3, + STATE(1601), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39639] = 8, + [47929] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2382), 1, - anon_sym_RPAREN, - ACTIONS(3597), 1, - anon_sym_COMMA, - ACTIONS(3599), 1, - anon_sym_SEMI, - STATE(1476), 1, - aux_sym_enum_arg_repeat1, - STATE(1562), 3, + ACTIONS(3467), 1, + anon_sym_DOLLARcase, + ACTIONS(3469), 1, + anon_sym_DOLLARdefault, + STATE(1455), 1, + aux_sym__ct_switch_body, + STATE(1631), 1, + sym_ct_case_stmt, + STATE(1602), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39666] = 8, + [47956] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, + ACTIONS(1978), 1, + anon_sym_LBRACE, + ACTIONS(3035), 1, sym_const_ident, - ACTIONS(3382), 1, - anon_sym_LPAREN, - STATE(126), 1, - sym_paren_cond, - STATE(1868), 1, + STATE(1928), 1, sym_label, - STATE(1563), 3, + STATE(1932), 1, + sym_compound_stmt, + STATE(1603), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39693] = 7, + [47983] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3601), 1, + STATE(1604), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3753), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, anon_sym_SEMI, - ACTIONS(3603), 1, - anon_sym_DOT_DOT, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1564), 3, + [48004] = 8, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3281), 1, + sym_ident, + ACTIONS(3283), 1, + sym_ct_ident, + STATE(1639), 1, + sym_local_decl_after_type, + STATE(2052), 1, + sym__decl_statement_after_type, + STATE(1605), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39718] = 5, + [48031] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(1565), 3, + STATE(1606), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - ACTIONS(3605), 4, + ACTIONS(3755), 4, sym_ident, sym_at_ident, sym_at_type_ident, anon_sym_SEMI, - [39739] = 8, + [48052] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2877), 1, + STATE(1607), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3757), 4, sym_ident, - ACTIONS(3607), 1, - sym_type_ident, - STATE(1293), 1, - aux_sym__module_path, - STATE(1399), 1, - sym_module_resolution, - STATE(1566), 3, + sym_at_ident, + sym_at_type_ident, + anon_sym_LBRACE, + [48073] = 7, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3727), 1, + anon_sym_COMMA, + STATE(1580), 1, + aux_sym__cond_repeat1, + ACTIONS(3759), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1608), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39766] = 8, + [48098] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2877), 1, - sym_ident, - ACTIONS(3609), 1, - sym_type_ident, - STATE(1293), 1, - aux_sym__module_path, - STATE(1399), 1, - sym_module_resolution, - STATE(1567), 3, + STATE(1609), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39793] = 7, + ACTIONS(3761), 4, + sym_ident, + sym_at_ident, + sym_at_type_ident, + anon_sym_SEMI, + [48119] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, - anon_sym_RPAREN, - ACTIONS(3611), 1, - anon_sym_COMMA, - STATE(1429), 1, - aux_sym_enum_arg_repeat1, - STATE(1568), 3, + ACTIONS(3763), 1, + anon_sym_RBRACK, + STATE(1292), 1, + sym__additive_op, + ACTIONS(3765), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1610), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39817] = 6, + [48144] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3388), 1, + ACTIONS(3767), 1, + anon_sym_COMMA, + ACTIONS(3770), 2, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1569), 3, + STATE(1611), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [39839] = 7, + aux_sym__call_arg_list_repeat1, + [48167] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, + STATE(1612), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + ACTIONS(3772), 4, + anon_sym_COMMA, anon_sym_EQ, - ACTIONS(3613), 1, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(2204), 1, - sym__assign_right_expr, - STATE(1570), 3, + [48188] = 7, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(2533), 1, + anon_sym_COMMA, + STATE(1524), 1, + aux_sym_assert_stmt_repeat1, + ACTIONS(3774), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1613), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39863] = 7, + [48213] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3615), 1, - anon_sym_COMMA, - ACTIONS(3617), 1, - anon_sym_RBRACE, - STATE(1714), 1, - aux_sym_enum_arg_repeat1, - STATE(1571), 3, + ACTIONS(3544), 1, + sym_ident, + STATE(1277), 1, + sym_path_ident, + STATE(1461), 1, + sym_module_resolution, + STATE(1683), 1, + aux_sym__module_path, + STATE(1614), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39887] = 6, + [48240] = 8, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3619), 1, - anon_sym_RBRACK, - ACTIONS(3621), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1572), 3, + ACTIONS(2984), 1, + sym_ident, + ACTIONS(3776), 1, + sym_type_ident, + STATE(1371), 1, + aux_sym__module_path, + STATE(1461), 1, + sym_module_resolution, + STATE(1615), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39909] = 7, + [48267] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3623), 1, - sym_const_ident, - ACTIONS(3625), 1, + ACTIONS(3778), 1, + anon_sym_COMMA, + STATE(1582), 1, + aux_sym__parameters_repeat1, + ACTIONS(3780), 2, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(2196), 1, - sym_label_target, - STATE(1573), 3, + STATE(1616), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39933] = 7, + [48292] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3623), 1, - sym_const_ident, - ACTIONS(3627), 1, - anon_sym_SEMI, - STATE(2193), 1, - sym_label_target, - STATE(1574), 3, + ACTIONS(3782), 3, + anon_sym_DOLLARcase, + anon_sym_DOLLARdefault, + anon_sym_DOLLARendswitch, + STATE(1617), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39957] = 7, + [48312] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3323), 1, + ACTIONS(3784), 3, anon_sym_COMMA, - ACTIONS(3629), 1, + anon_sym_LPAREN_LT, anon_sym_RPAREN, - STATE(1659), 1, - aux_sym_ct_exec_stmt_repeat1, - STATE(1575), 3, + STATE(1618), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [39981] = 7, + [48332] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(3013), 1, - anon_sym_SEMI, - STATE(2016), 1, - sym__assign_right_expr, - STATE(1576), 3, + ACTIONS(2533), 1, + anon_sym_COMMA, + ACTIONS(3786), 1, + anon_sym_RPAREN, + STATE(1524), 1, + aux_sym_assert_stmt_repeat1, + STATE(1619), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40005] = 6, + [48356] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3633), 1, - anon_sym_EQ, - ACTIONS(3631), 2, + ACTIONS(3788), 3, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1577), 3, + anon_sym_SEMI, + STATE(1620), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40027] = 7, + [48376] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3635), 1, + ACTIONS(3788), 3, anon_sym_COMMA, - ACTIONS(3637), 1, anon_sym_RPAREN, - STATE(1669), 1, - aux_sym_attribute_repeat1, - STATE(1578), 3, + anon_sym_SEMI, + STATE(1621), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40051] = 6, + [48396] = 7, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3406), 1, - aux_sym_line_comment_token1, - ACTIONS(3408), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(3641), 1, - aux_sym_string_literal_token1, - ACTIONS(3639), 2, - sym_escape_sequence, - anon_sym_DQUOTE, - STATE(1579), 3, + ACTIONS(3281), 1, + sym_ident, + ACTIONS(3283), 1, + sym_ct_ident, + STATE(1889), 1, + sym_local_decl_after_type, + STATE(1622), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40073] = 6, + [48420] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2717), 1, - anon_sym_GT_RPAREN, - ACTIONS(3643), 1, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1580), 4, + ACTIONS(3792), 1, + anon_sym_SEMI, + STATE(1729), 1, + aux_sym__decl_statement_after_type_repeat1, + STATE(1623), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__generic_arg_list_repeat1, - [40095] = 6, + [48444] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(2018), 1, - sym__func_macro_name, - ACTIONS(2439), 2, - sym_ident, - sym_at_ident, - STATE(1581), 3, + ACTIONS(3794), 1, + sym_const_ident, + ACTIONS(3796), 1, + anon_sym_RBRACE, + STATE(1759), 1, + sym_enum_constant, + STATE(1624), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40117] = 6, + [48468] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2773), 1, + ACTIONS(3798), 1, + anon_sym_COMMA, + ACTIONS(3801), 1, anon_sym_RPAREN, - ACTIONS(2615), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1582), 3, + STATE(1625), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [40139] = 6, + aux_sym_enum_param_list_repeat1, + [48490] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1780), 1, - anon_sym_RBRACK, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1583), 3, + ACTIONS(3803), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1626), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40161] = 6, + [48510] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1780), 1, - anon_sym_GT_RBRACK, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1584), 3, + ACTIONS(3803), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1627), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40183] = 7, + [48530] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3646), 1, - sym_type_ident, - ACTIONS(3648), 1, - sym_const_ident, - STATE(1893), 1, - sym__module_param, - STATE(1585), 3, + ACTIONS(3805), 1, + anon_sym_COMMA, + ACTIONS(3807), 1, + anon_sym_RPAREN, + STATE(1681), 1, + aux_sym_interface_impl_repeat1, + STATE(1628), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40207] = 7, + [48554] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2677), 1, - anon_sym_COMMA, - ACTIONS(3650), 1, - anon_sym_RPAREN, - STATE(1736), 1, - aux_sym_assert_stmt_repeat1, - STATE(1586), 3, + ACTIONS(3809), 1, + sym_at_ident, + ACTIONS(3811), 1, + anon_sym_LPAREN, + ACTIONS(3813), 1, + anon_sym_LBRACE, + STATE(1629), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40231] = 7, + [48578] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, + ACTIONS(3009), 1, anon_sym_EQ, - ACTIONS(3652), 1, + ACTIONS(3815), 1, anon_sym_SEMI, - STATE(2118), 1, + STATE(2196), 1, sym__assign_right_expr, - STATE(1587), 3, + STATE(1630), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40255] = 6, + [48602] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3654), 1, - anon_sym_RPAREN, - ACTIONS(2615), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1588), 3, + ACTIONS(3817), 3, + anon_sym_DOLLARcase, + anon_sym_DOLLARdefault, + anon_sym_DOLLARendswitch, + STATE(1631), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40277] = 7, + [48622] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_COMMA, - ACTIONS(3658), 1, - anon_sym_GT_RPAREN, - STATE(1670), 1, - aux_sym_generic_module_parameters_repeat1, - STATE(1589), 3, + ACTIONS(3819), 1, + sym_const_ident, + ACTIONS(3821), 1, + anon_sym_SEMI, + STATE(1943), 1, + sym_label_target, + STATE(1632), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40301] = 5, + [48646] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3660), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3819), 1, + sym_const_ident, + ACTIONS(3823), 1, anon_sym_SEMI, - STATE(1590), 3, + STATE(1947), 1, + sym_label_target, + STATE(1633), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40321] = 5, + [48670] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3662), 3, - anon_sym_COMMA, + ACTIONS(3825), 3, anon_sym_RPAREN, anon_sym_SEMI, - STATE(1591), 3, + anon_sym_AMP_AMP, + STATE(1634), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40341] = 6, + [48690] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3549), 1, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3827), 1, anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1592), 3, + STATE(2017), 1, + sym__assign_right_expr, + STATE(1635), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40363] = 7, + [48714] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2380), 1, - anon_sym_RPAREN, - ACTIONS(3664), 1, + ACTIONS(3829), 3, anon_sym_COMMA, - STATE(1672), 1, - aux_sym__parameters_repeat1, - STATE(1593), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1636), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40387] = 7, + [48734] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3666), 1, - sym_at_ident, - ACTIONS(3668), 1, - anon_sym_LPAREN, - ACTIONS(3670), 1, - anon_sym_LBRACE, - STATE(1594), 3, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3831), 1, + anon_sym_SEMI, + STATE(2041), 1, + sym__assign_right_expr, + STATE(1637), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40411] = 6, + [48758] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3672), 1, - anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1595), 3, + ACTIONS(3794), 1, + sym_const_ident, + ACTIONS(3833), 1, + anon_sym_RBRACE, + STATE(1642), 1, + sym_enum_constant, + STATE(1638), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40433] = 5, + [48782] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3674), 3, + ACTIONS(3790), 1, anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_RPAREN, - STATE(1596), 3, + ACTIONS(3835), 1, + anon_sym_SEMI, + STATE(1623), 1, + aux_sym__decl_statement_after_type_repeat1, + STATE(1639), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40453] = 7, + [48806] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3837), 1, anon_sym_COMMA, - ACTIONS(3676), 1, - anon_sym_GT_RPAREN, - STATE(1589), 1, - aux_sym_generic_module_parameters_repeat1, - STATE(1597), 3, + ACTIONS(3839), 1, + anon_sym_RBRACE, + STATE(1660), 1, + aux_sym_fault_body_repeat1, + STATE(1640), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40477] = 7, + [48830] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3678), 1, - anon_sym_COMMA, - ACTIONS(3680), 1, - anon_sym_RPAREN, - STATE(1677), 1, - aux_sym_interface_impl_repeat1, - STATE(1598), 3, + ACTIONS(3843), 1, + sym_doc_comment_contract_text, + ACTIONS(3841), 2, + anon_sym_STAR_GT, + sym_at_ident, + STATE(1641), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40501] = 7, + [48852] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2677), 1, + ACTIONS(3845), 1, anon_sym_COMMA, - ACTIONS(3682), 1, - anon_sym_RPAREN, - STATE(1736), 1, - aux_sym_assert_stmt_repeat1, - STATE(1599), 3, + ACTIONS(3847), 1, + anon_sym_RBRACE, + STATE(1643), 1, + aux_sym_enum_body_repeat1, + STATE(1642), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40525] = 6, + [48876] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3684), 1, - anon_sym_RPAREN, - ACTIONS(2615), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1600), 3, + ACTIONS(3796), 1, + anon_sym_RBRACE, + ACTIONS(3849), 1, + anon_sym_COMMA, + STATE(1680), 1, + aux_sym_enum_body_repeat1, + STATE(1643), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40547] = 7, + [48900] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3686), 1, + ACTIONS(3851), 1, anon_sym_COMMA, - ACTIONS(3688), 1, - anon_sym_RBRACE, - STATE(1678), 1, - aux_sym_fault_body_repeat1, - STATE(1601), 3, + ACTIONS(3854), 1, + anon_sym_RPAREN, + STATE(1644), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [40571] = 7, + aux_sym_ct_exec_stmt_repeat1, + [48922] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3690), 1, - sym_ident, - ACTIONS(3692), 1, - sym_ct_ident, - ACTIONS(3694), 1, - sym_ct_type_ident, - STATE(1602), 3, + ACTIONS(3856), 1, + anon_sym_COMMA, + ACTIONS(3858), 1, + anon_sym_RPAREN, + STATE(1740), 1, + aux_sym_enum_param_list_repeat1, + STATE(1645), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40595] = 7, + [48946] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3696), 1, - sym_at_ident, - ACTIONS(3698), 1, - anon_sym_LPAREN, - ACTIONS(3700), 1, - anon_sym_LBRACE, - STATE(1603), 3, + ACTIONS(3862), 1, + anon_sym_RBRACE, + ACTIONS(3860), 2, + sym_ident, + anon_sym_int, + STATE(1646), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40619] = 7, + [48968] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3623), 1, - sym_const_ident, - ACTIONS(3702), 1, + ACTIONS(3864), 1, + anon_sym_COMMA, + ACTIONS(3866), 1, anon_sym_SEMI, - STATE(2033), 1, - sym_label_target, - STATE(1604), 3, + STATE(1672), 1, + aux_sym_asm_stmt_repeat1, + STATE(1647), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40643] = 7, + [48992] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3623), 1, - sym_const_ident, - ACTIONS(3704), 1, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3868), 1, anon_sym_SEMI, - STATE(2035), 1, - sym_label_target, - STATE(1605), 3, + STATE(1966), 1, + sym__assign_right_expr, + STATE(1648), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40667] = 7, + [49016] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3706), 1, + ACTIONS(3819), 1, sym_const_ident, - ACTIONS(3708), 1, - anon_sym_RBRACE, - STATE(1757), 1, - sym_enum_constant, - STATE(1606), 3, + ACTIONS(3870), 1, + anon_sym_SEMI, + STATE(1983), 1, + sym_label_target, + STATE(1649), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40691] = 7, + [49040] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3708), 1, - anon_sym_RBRACE, - ACTIONS(3710), 1, - anon_sym_COMMA, - STATE(1685), 1, - aux_sym_enum_body_repeat1, - STATE(1607), 3, + ACTIONS(3819), 1, + sym_const_ident, + ACTIONS(3872), 1, + anon_sym_SEMI, + STATE(1986), 1, + sym_label_target, + STATE(1650), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40715] = 7, + [49064] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3712), 1, - sym_at_ident, - ACTIONS(3714), 1, - anon_sym_LPAREN, - ACTIONS(3716), 1, - anon_sym_LBRACE, - STATE(1608), 3, + ACTIONS(3874), 3, + anon_sym_DOLLARcase, + anon_sym_DOLLARdefault, + anon_sym_DOLLARendswitch, + STATE(1651), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40739] = 7, + [49084] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2505), 1, - anon_sym_LPAREN, - ACTIONS(3718), 1, - anon_sym_RPAREN, - STATE(1947), 1, - sym_fn_parameter_list, - STATE(1609), 3, + ACTIONS(3285), 1, + anon_sym_DOT, + ACTIONS(3287), 1, + anon_sym_LBRACE, + STATE(959), 1, + sym_initializer_list, + STATE(1652), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40763] = 7, + [49108] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2677), 1, + ACTIONS(3876), 3, anon_sym_COMMA, - ACTIONS(3720), 1, anon_sym_RPAREN, - STATE(1736), 1, - aux_sym_assert_stmt_repeat1, - STATE(1610), 3, + anon_sym_SEMI, + STATE(1653), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40787] = 6, + [49128] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3722), 1, + ACTIONS(3878), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2615), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1611), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [40809] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3724), 1, anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1612), 3, + STATE(1654), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40831] = 6, + [49148] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2735), 1, - anon_sym_RPAREN, - ACTIONS(2615), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1613), 3, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3880), 1, + anon_sym_SEMI, + STATE(2038), 1, + sym__assign_right_expr, + STATE(1655), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40853] = 7, + [49172] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3726), 1, + ACTIONS(3882), 1, anon_sym_COMMA, - ACTIONS(3728), 1, + ACTIONS(3885), 1, anon_sym_RPAREN, - STATE(1695), 1, - aux_sym__cond_repeat1, - STATE(1614), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [40877] = 7, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(3005), 1, - anon_sym_SEMI, - STATE(2224), 1, - sym__assign_right_expr, - STATE(1615), 3, + STATE(1656), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [40901] = 7, + aux_sym_attribute_param_list_repeat1, + [49194] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3730), 1, - sym_at_ident, - ACTIONS(3732), 1, - anon_sym_LPAREN, - ACTIONS(3734), 1, - anon_sym_LBRACE, - STATE(1616), 3, + ACTIONS(3887), 1, + anon_sym_COMMA, + ACTIONS(3890), 1, + anon_sym_GT_RPAREN, + STATE(1657), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [40925] = 6, + aux_sym_generic_module_parameters_repeat1, + [49216] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3736), 1, + ACTIONS(3559), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1617), 3, + STATE(1658), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40947] = 6, + [49236] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1782), 1, + ACTIONS(3892), 1, anon_sym_RBRACK, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1618), 3, + ACTIONS(3894), 1, + anon_sym_COLON, + ACTIONS(3896), 1, + anon_sym_DOT_DOT, + STATE(1659), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40969] = 6, + [49260] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1782), 1, - anon_sym_GT_RBRACK, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1619), 3, + ACTIONS(3898), 1, + anon_sym_COMMA, + ACTIONS(3900), 1, + anon_sym_RBRACE, + STATE(1674), 1, + aux_sym_fault_body_repeat1, + STATE(1660), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [40991] = 5, + [49284] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3738), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1620), 3, + ACTIONS(3902), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + STATE(1661), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41011] = 7, + [49304] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3323), 1, - anon_sym_COMMA, - ACTIONS(3740), 1, + ACTIONS(2825), 1, + anon_sym_LPAREN, + ACTIONS(3904), 1, anon_sym_RPAREN, - STATE(1659), 1, - aux_sym_ct_exec_stmt_repeat1, - STATE(1621), 3, + STATE(1952), 1, + sym_fn_parameter_list, + STATE(1662), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41035] = 7, + [49328] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, + ACTIONS(3009), 1, anon_sym_EQ, - ACTIONS(3055), 1, + ACTIONS(3906), 1, anon_sym_SEMI, - STATE(2213), 1, + STATE(2141), 1, sym__assign_right_expr, - STATE(1622), 3, + STATE(1663), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41059] = 5, + [49352] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3742), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3819), 1, + sym_const_ident, + ACTIONS(3908), 1, anon_sym_SEMI, - STATE(1623), 3, + STATE(2147), 1, + sym_label_target, + STATE(1664), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41079] = 5, + [49376] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3742), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3819), 1, + sym_const_ident, + ACTIONS(3910), 1, anon_sym_SEMI, - STATE(1624), 3, + STATE(2148), 1, + sym_label_target, + STATE(1665), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41099] = 7, + [49400] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3746), 1, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3912), 1, anon_sym_SEMI, - STATE(1656), 1, - aux_sym__decl_statement_after_type_repeat1, - STATE(1625), 3, + STATE(2181), 1, + sym__assign_right_expr, + STATE(1666), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41123] = 7, + [49424] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2677), 1, - anon_sym_COMMA, - ACTIONS(3748), 1, - anon_sym_RPAREN, - STATE(1736), 1, - aux_sym_assert_stmt_repeat1, - STATE(1626), 3, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3914), 1, + anon_sym_SEMI, + STATE(2027), 1, + sym__assign_right_expr, + STATE(1667), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41147] = 7, + [49448] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3635), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - ACTIONS(3750), 1, + ACTIONS(3919), 1, anon_sym_RPAREN, - STATE(1578), 1, - aux_sym_attribute_repeat1, - STATE(1627), 3, + STATE(1668), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [41171] = 7, + aux_sym_interface_impl_repeat1, + [49470] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2681), 1, - anon_sym_COMMA, - ACTIONS(3752), 1, - anon_sym_GT_RPAREN, - STATE(1580), 1, - aux_sym__generic_arg_list_repeat1, - STATE(1628), 3, + STATE(1968), 1, + sym__func_macro_name, + ACTIONS(2819), 2, + sym_ident, + sym_at_ident, + STATE(1669), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41195] = 6, + [49492] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3754), 1, - anon_sym_RPAREN, - ACTIONS(2615), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1629), 3, + STATE(2163), 1, + sym__func_macro_name, + ACTIONS(2819), 2, + sym_ident, + sym_at_ident, + STATE(1670), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41217] = 7, + [49514] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3728), 1, - anon_sym_SEMI, - ACTIONS(3756), 1, - anon_sym_COMMA, - STATE(1657), 1, - aux_sym__cond_repeat1, - STATE(1630), 3, + ACTIONS(3923), 1, + anon_sym_RBRACE, + ACTIONS(3921), 2, + sym_ident, + anon_sym_int, + STATE(1671), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41241] = 7, + [49536] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3758), 1, + ACTIONS(3925), 1, anon_sym_COMMA, - ACTIONS(3760), 1, - anon_sym_RPAREN, - STATE(1704), 1, - aux_sym__cond_repeat1, - STATE(1631), 3, + ACTIONS(3928), 1, + anon_sym_SEMI, + STATE(1672), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [41265] = 5, - ACTIONS(3), 1, + aux_sym_asm_stmt_repeat1, + [49558] = 6, + ACTIONS(3604), 1, aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, + ACTIONS(3606), 1, + anon_sym_LT_STAR, + ACTIONS(3608), 1, anon_sym_SLASH_STAR, - ACTIONS(3762), 3, - anon_sym_DOLLARcase, - anon_sym_DOLLARdefault, - anon_sym_DOLLARendswitch, - STATE(1632), 3, + ACTIONS(3932), 1, + aux_sym_string_literal_token1, + ACTIONS(3930), 2, + sym_escape_sequence, + anon_sym_DQUOTE, + STATE(1673), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41285] = 7, + [49580] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3764), 1, - sym_at_ident, - ACTIONS(3766), 1, - anon_sym_LPAREN, - ACTIONS(3768), 1, - anon_sym_LBRACE, - STATE(1633), 3, + ACTIONS(3934), 1, + anon_sym_COMMA, + ACTIONS(3937), 1, + anon_sym_RBRACE, + STATE(1674), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [41309] = 5, + aux_sym_fault_body_repeat1, + [49602] = 7, ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(3770), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - STATE(1634), 3, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3939), 1, + anon_sym_SEMI, + STATE(2263), 1, + sym__assign_right_expr, + STATE(1675), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41329] = 6, + [49626] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3772), 1, - anon_sym_COLON, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1635), 3, + ACTIONS(3819), 1, + sym_const_ident, + ACTIONS(3941), 1, + anon_sym_SEMI, + STATE(1939), 1, + sym_label_target, + STATE(1676), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41351] = 7, + [49650] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(3774), 1, + ACTIONS(3819), 1, + sym_const_ident, + ACTIONS(3943), 1, anon_sym_SEMI, - STATE(2052), 1, - sym__assign_right_expr, - STATE(1636), 3, + STATE(1940), 1, + sym_label_target, + STATE(1677), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41375] = 7, + [49674] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2158), 1, - anon_sym_COLON_COLON, - ACTIONS(3776), 1, - anon_sym_COMMA, - ACTIONS(3778), 1, - anon_sym_COLON, - STATE(1637), 3, + ACTIONS(3794), 1, + sym_const_ident, + ACTIONS(3945), 1, + anon_sym_RBRACE, + STATE(1759), 1, + sym_enum_constant, + STATE(1678), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41399] = 6, + [49698] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(2181), 1, - sym__func_macro_name, - ACTIONS(2439), 2, - sym_ident, - sym_at_ident, - STATE(1638), 3, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3947), 1, + anon_sym_SEMI, + STATE(1961), 1, + sym__assign_right_expr, + STATE(1679), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41421] = 7, + [49722] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2677), 1, + ACTIONS(3949), 1, anon_sym_COMMA, - ACTIONS(3780), 1, - anon_sym_RPAREN, - STATE(1736), 1, - aux_sym_assert_stmt_repeat1, - STATE(1639), 3, + ACTIONS(3952), 1, + anon_sym_RBRACE, + STATE(1680), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [41445] = 6, + aux_sym_enum_body_repeat1, + [49744] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3782), 1, + ACTIONS(3805), 1, + anon_sym_COMMA, + ACTIONS(3954), 1, anon_sym_RPAREN, - ACTIONS(2615), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1640), 3, + STATE(1668), 1, + aux_sym_interface_impl_repeat1, + STATE(1681), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41467] = 7, + [49768] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3585), 1, - anon_sym_RPAREN, - ACTIONS(3784), 1, - anon_sym_COMMA, - STATE(1593), 1, - aux_sym__parameters_repeat1, - STATE(1641), 3, + STATE(2212), 1, + sym__func_macro_name, + ACTIONS(2819), 2, + sym_ident, + sym_at_ident, + STATE(1682), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41491] = 7, + [49790] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(2891), 1, - anon_sym_SEMI, - STATE(2219), 1, - sym__assign_right_expr, - STATE(1642), 3, + ACTIONS(3956), 1, + sym_ident, + STATE(1371), 1, + aux_sym__module_path, + STATE(1461), 1, + sym_module_resolution, + STATE(1683), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41515] = 7, + [49814] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3760), 1, - anon_sym_SEMI, - ACTIONS(3786), 1, + ACTIONS(3958), 1, anon_sym_COMMA, - STATE(1665), 1, - aux_sym__cond_repeat1, - STATE(1643), 3, + ACTIONS(3960), 1, + anon_sym_RPAREN, + STATE(1710), 1, + aux_sym_attribute_param_list_repeat1, + STATE(1684), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41539] = 7, + [49838] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3788), 1, - anon_sym_SEMI, - ACTIONS(3790), 1, - anon_sym_AMP_AMP, - STATE(1663), 1, - aux_sym__try_unwrap_chain_repeat1, - STATE(1644), 3, + ACTIONS(1223), 1, + anon_sym_RBRACE, + ACTIONS(3962), 1, + anon_sym_COMMA, + STATE(1704), 1, + aux_sym_initializer_list_repeat1, + STATE(1685), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41563] = 6, + [49862] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3792), 1, + ACTIONS(3964), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(2615), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1645), 3, + anon_sym_SEMI, + STATE(1686), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41585] = 6, + [49882] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3796), 1, - anon_sym_RBRACE, - ACTIONS(3794), 2, - sym_ident, - anon_sym_int, - STATE(1646), 3, + ACTIONS(2533), 1, + anon_sym_COMMA, + ACTIONS(3966), 1, + anon_sym_RPAREN, + STATE(1524), 1, + aux_sym_assert_stmt_repeat1, + STATE(1687), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41607] = 6, + [49906] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3587), 1, - anon_sym_RPAREN, - ACTIONS(2615), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1647), 3, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3968), 1, + anon_sym_SEMI, + STATE(2009), 1, + sym__assign_right_expr, + STATE(1688), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41629] = 7, + [49930] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 1, - sym_ident, - ACTIONS(3372), 1, - sym_ct_ident, - STATE(1620), 1, - sym_local_decl_after_type, - STATE(1648), 3, + STATE(2004), 1, + sym__additive_op, + ACTIONS(3243), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1689), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41653] = 7, + [49952] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3756), 1, - anon_sym_COMMA, - ACTIONS(3798), 1, + ACTIONS(3819), 1, + sym_const_ident, + ACTIONS(3970), 1, anon_sym_SEMI, - STATE(1630), 1, - aux_sym__cond_repeat1, - STATE(1649), 3, + STATE(2014), 1, + sym_label_target, + STATE(1690), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41677] = 7, + [49976] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3800), 1, - sym_at_ident, - ACTIONS(3802), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_LBRACE, - STATE(1650), 3, + ACTIONS(3819), 1, + sym_const_ident, + ACTIONS(3972), 1, + anon_sym_SEMI, + STATE(2015), 1, + sym_label_target, + STATE(1691), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41701] = 6, + [50000] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3450), 1, - anon_sym_COLON, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1651), 3, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3974), 1, + anon_sym_SEMI, + STATE(2037), 1, + sym__assign_right_expr, + STATE(1692), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41723] = 5, + [50024] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3806), 3, + ACTIONS(3976), 1, anon_sym_COMMA, + ACTIONS(3978), 1, anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1652), 3, + STATE(1644), 1, + aux_sym_ct_exec_stmt_repeat1, + STATE(1693), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41743] = 7, + [50048] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3694), 1, - sym_ct_type_ident, - ACTIONS(3808), 1, - sym_ident, - ACTIONS(3810), 1, - sym_ct_ident, - STATE(1653), 3, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + ACTIONS(3980), 1, + anon_sym_COMMA, + ACTIONS(3982), 1, + anon_sym_COLON, + STATE(1694), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41767] = 5, + [50072] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3806), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3984), 1, anon_sym_SEMI, - STATE(1654), 3, + STATE(2111), 1, + sym__assign_right_expr, + STATE(1695), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41787] = 7, + [50096] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 1, - sym_ident, - ACTIONS(3372), 1, - sym_ct_ident, - STATE(1866), 1, - sym_local_decl_after_type, - STATE(1655), 3, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3986), 1, + anon_sym_SEMI, + STATE(2008), 1, + sym__assign_right_expr, + STATE(1696), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41811] = 7, + [50120] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3988), 3, anon_sym_COMMA, - ACTIONS(3812), 1, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(1731), 1, - aux_sym__decl_statement_after_type_repeat1, - STATE(1656), 3, + STATE(1697), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41835] = 6, + [50140] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3814), 1, - anon_sym_COMMA, - ACTIONS(3817), 1, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(3990), 1, anon_sym_SEMI, - STATE(1657), 4, + STATE(2175), 1, + sym__assign_right_expr, + STATE(1698), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__cond_repeat1, - [41857] = 7, + [50164] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3819), 1, - sym_ident, - STATE(1293), 1, - aux_sym__module_path, - STATE(1399), 1, - sym_module_resolution, - STATE(1658), 3, + ACTIONS(3017), 1, + anon_sym_LPAREN, + ACTIONS(3992), 1, + anon_sym_COLON, + STATE(2262), 1, + sym_interface_impl, + STATE(1699), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41881] = 6, + [50188] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3490), 1, - anon_sym_RPAREN, - ACTIONS(3821), 1, + ACTIONS(3996), 1, + anon_sym_EQ, + ACTIONS(3994), 2, anon_sym_COMMA, - STATE(1659), 4, + anon_sym_RBRACE, + STATE(1700), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_ct_exec_stmt_repeat1, - [41903] = 6, + [50210] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3824), 1, - anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1660), 3, + ACTIONS(3998), 1, + anon_sym_COMMA, + ACTIONS(4000), 1, + anon_sym_RBRACE, + STATE(1685), 1, + aux_sym_initializer_list_repeat1, + STATE(1701), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41925] = 6, + [50234] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3093), 1, - anon_sym_BANG, - ACTIONS(2673), 2, - sym_ident, - sym_ct_ident, - STATE(1661), 3, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(4002), 1, + anon_sym_SEMI, + STATE(2076), 1, + sym__assign_right_expr, + STATE(1702), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41947] = 7, + [50258] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, + ACTIONS(3009), 1, anon_sym_EQ, - ACTIONS(3826), 1, + ACTIONS(4004), 1, anon_sym_SEMI, - STATE(2015), 1, + STATE(2081), 1, sym__assign_right_expr, - STATE(1662), 3, + STATE(1703), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [41971] = 7, + [50282] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3790), 1, - anon_sym_AMP_AMP, - ACTIONS(3828), 1, - anon_sym_SEMI, - STATE(1683), 1, - aux_sym__try_unwrap_chain_repeat1, - STATE(1663), 3, + ACTIONS(4006), 1, + anon_sym_COMMA, + ACTIONS(4009), 1, + anon_sym_RBRACE, + STATE(1704), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [41995] = 7, + aux_sym_initializer_list_repeat1, + [50304] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(3830), 1, - anon_sym_SEMI, - STATE(2010), 1, - sym__assign_right_expr, - STATE(1664), 3, + ACTIONS(4011), 1, + sym_at_ident, + ACTIONS(4013), 1, + anon_sym_LPAREN, + ACTIONS(4015), 1, + anon_sym_LBRACE, + STATE(1705), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42019] = 7, + [50328] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, + ACTIONS(3976), 1, anon_sym_COMMA, - ACTIONS(3834), 1, - anon_sym_SEMI, - STATE(1657), 1, - aux_sym__cond_repeat1, - STATE(1665), 3, + ACTIONS(4017), 1, + anon_sym_RPAREN, + STATE(1693), 1, + aux_sym_ct_exec_stmt_repeat1, + STATE(1706), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42043] = 6, + [50352] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3836), 1, - anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1666), 3, + ACTIONS(4019), 1, + sym_type_ident, + ACTIONS(4021), 1, + sym_const_ident, + STATE(1736), 1, + sym__module_param, + STATE(1707), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42065] = 6, + [50376] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3505), 1, - anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1667), 3, + ACTIONS(2533), 1, + anon_sym_COMMA, + ACTIONS(4023), 1, + anon_sym_RPAREN, + STATE(1524), 1, + aux_sym_assert_stmt_repeat1, + STATE(1708), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42087] = 7, + [50400] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3788), 1, + ACTIONS(4027), 1, + anon_sym_EQ, + ACTIONS(4025), 2, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3838), 1, - anon_sym_AMP_AMP, - STATE(1699), 1, - aux_sym__try_unwrap_chain_repeat1, - STATE(1668), 3, + STATE(1709), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42111] = 6, + [50422] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3840), 1, + ACTIONS(3958), 1, anon_sym_COMMA, - ACTIONS(3843), 1, + ACTIONS(4029), 1, anon_sym_RPAREN, - STATE(1669), 4, + STATE(1656), 1, + aux_sym_attribute_param_list_repeat1, + STATE(1710), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_attribute_repeat1, - [42133] = 6, + [50446] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3845), 1, + ACTIONS(2541), 1, anon_sym_COMMA, - ACTIONS(3848), 1, + ACTIONS(4031), 1, anon_sym_GT_RPAREN, - STATE(1670), 4, + STATE(1714), 1, + aux_sym__generic_arg_list_repeat1, + STATE(1711), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_generic_module_parameters_repeat1, - [42155] = 5, + [50470] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3501), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1671), 3, + ACTIONS(4033), 1, + sym_at_ident, + ACTIONS(4035), 1, + anon_sym_LPAREN, + ACTIONS(4037), 1, + anon_sym_LBRACE, + STATE(1712), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42175] = 6, + [50494] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3501), 1, - anon_sym_RPAREN, - ACTIONS(3850), 1, - anon_sym_COMMA, - STATE(1672), 4, + ACTIONS(4041), 1, + anon_sym_RBRACE, + ACTIONS(4039), 2, + sym_ident, + anon_sym_int, + STATE(1713), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__parameters_repeat1, - [42197] = 6, + [50516] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3853), 1, - anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1673), 3, + ACTIONS(4043), 1, + anon_sym_COMMA, + ACTIONS(4046), 1, + anon_sym_GT_RPAREN, + STATE(1714), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [42219] = 6, + aux_sym__generic_arg_list_repeat1, + [50538] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - STATE(2005), 1, - sym__additive_op, - ACTIONS(3099), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1674), 3, + ACTIONS(4050), 1, + anon_sym_RBRACE, + ACTIONS(4048), 2, + sym_ident, + anon_sym_int, + STATE(1715), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42241] = 6, + [50560] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3855), 1, - anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1675), 3, + ACTIONS(4019), 1, + sym_type_ident, + ACTIONS(4021), 1, + sym_const_ident, + STATE(1818), 1, + sym__module_param, + STATE(1716), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42263] = 7, + [50584] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2885), 1, - anon_sym_LPAREN, - ACTIONS(3857), 1, - anon_sym_COLON, - STATE(2109), 1, - sym_interface_impl, - STATE(1676), 3, + ACTIONS(3864), 1, + anon_sym_COMMA, + ACTIONS(4052), 1, + anon_sym_SEMI, + STATE(1647), 1, + aux_sym_asm_stmt_repeat1, + STATE(1717), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42287] = 6, + [50608] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3859), 1, + ACTIONS(2533), 1, anon_sym_COMMA, - ACTIONS(3862), 1, + ACTIONS(4054), 1, anon_sym_RPAREN, - STATE(1677), 4, + STATE(1524), 1, + aux_sym_assert_stmt_repeat1, + STATE(1718), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_interface_impl_repeat1, - [42309] = 6, + [50632] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3864), 1, + ACTIONS(4056), 1, anon_sym_COMMA, - ACTIONS(3867), 1, - anon_sym_RBRACE, - STATE(1678), 4, + ACTIONS(4058), 1, + anon_sym_GT_RPAREN, + STATE(1657), 1, + aux_sym_generic_module_parameters_repeat1, + STATE(1719), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_fault_body_repeat1, - [42331] = 7, + [50656] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3869), 1, - anon_sym_COMMA, - ACTIONS(3871), 1, - anon_sym_RPAREN, - STATE(1568), 1, - aux_sym_enum_arg_repeat1, - STATE(1679), 3, + ACTIONS(3009), 1, + anon_sym_EQ, + ACTIONS(4060), 1, + anon_sym_SEMI, + STATE(2028), 1, + sym__assign_right_expr, + STATE(1720), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42355] = 5, + [50680] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3873), 3, - anon_sym_COMMA, - anon_sym_LPAREN_LT, - anon_sym_RPAREN, - STATE(1680), 3, + ACTIONS(4062), 1, + sym_at_ident, + ACTIONS(4064), 1, + anon_sym_LPAREN, + ACTIONS(4066), 1, + anon_sym_LBRACE, + STATE(1721), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42375] = 7, + [50704] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(3875), 1, - anon_sym_SEMI, - STATE(1973), 1, - sym__assign_right_expr, - STATE(1681), 3, + ACTIONS(4068), 1, + sym_ident, + ACTIONS(4070), 1, + sym_ct_ident, + ACTIONS(4072), 1, + sym_ct_type_ident, + STATE(1722), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42399] = 7, + [50728] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3374), 1, + ACTIONS(2541), 1, anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_SEMI, - STATE(1692), 1, - aux_sym_catch_unwrap_list_repeat1, - STATE(1682), 3, + ACTIONS(4074), 1, + anon_sym_GT_RPAREN, + STATE(1714), 1, + aux_sym__generic_arg_list_repeat1, + STATE(1723), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42423] = 6, + [50752] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3879), 1, + ACTIONS(4076), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(3881), 1, - anon_sym_AMP_AMP, - STATE(1683), 4, + STATE(1724), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__try_unwrap_chain_repeat1, - [42445] = 7, + [50772] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3706), 1, - sym_const_ident, - ACTIONS(3884), 1, - anon_sym_RBRACE, - STATE(1757), 1, - sym_enum_constant, - STATE(1684), 3, + ACTIONS(4078), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1725), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42469] = 6, + [50792] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3886), 1, + ACTIONS(2533), 1, anon_sym_COMMA, - ACTIONS(3889), 1, - anon_sym_RBRACE, - STATE(1685), 4, + ACTIONS(4080), 1, + anon_sym_RPAREN, + STATE(1524), 1, + aux_sym_assert_stmt_repeat1, + STATE(1726), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_enum_body_repeat1, - [42491] = 7, + [50816] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3891), 1, - anon_sym_COMMA, - ACTIONS(3893), 1, - anon_sym_RPAREN, - STATE(1753), 1, - aux_sym_enum_param_list_repeat1, - STATE(1686), 3, + ACTIONS(4082), 3, + anon_sym_DOLLARcase, + anon_sym_DOLLARdefault, + anon_sym_DOLLARendswitch, + STATE(1727), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42515] = 7, + [50836] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3623), 1, - sym_const_ident, - ACTIONS(3895), 1, + ACTIONS(4084), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(1960), 1, - sym_label_target, - STATE(1687), 3, + STATE(1728), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42539] = 7, + [50856] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3623), 1, - sym_const_ident, - ACTIONS(3897), 1, + ACTIONS(4086), 1, + anon_sym_COMMA, + ACTIONS(4089), 1, anon_sym_SEMI, - STATE(1959), 1, - sym_label_target, - STATE(1688), 3, + STATE(1729), 4, sym_line_comment, sym_doc_comment, sym_block_comment, - [42563] = 7, + aux_sym__decl_statement_after_type_repeat1, + [50878] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(3899), 1, - anon_sym_SEMI, - STATE(1955), 1, - sym__assign_right_expr, - STATE(1689), 3, + ACTIONS(4091), 1, + sym_at_ident, + ACTIONS(4093), 1, + anon_sym_LPAREN, + ACTIONS(4095), 1, + anon_sym_LBRACE, + STATE(1730), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42587] = 6, + [50902] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3819), 1, + sym_const_ident, + ACTIONS(4097), 1, anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1690), 3, + STATE(2093), 1, + sym_label_target, + STATE(1731), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42609] = 5, + [50926] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3903), 3, + ACTIONS(4099), 3, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - STATE(1691), 3, + STATE(1732), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42629] = 6, + [50946] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3547), 1, - anon_sym_SEMI, - ACTIONS(3905), 1, + ACTIONS(2533), 1, anon_sym_COMMA, - STATE(1692), 4, + ACTIONS(4101), 1, + anon_sym_RPAREN, + STATE(1524), 1, + aux_sym_assert_stmt_repeat1, + STATE(1733), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_catch_unwrap_list_repeat1, - [42651] = 6, + [50970] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3559), 1, + ACTIONS(3819), 1, + sym_const_ident, + ACTIONS(4103), 1, anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1693), 3, + STATE(2097), 1, + sym_label_target, + STATE(1734), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42673] = 5, + [50994] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3817), 3, + ACTIONS(3770), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - STATE(1694), 3, + STATE(1735), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42693] = 6, + [51014] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3817), 1, - anon_sym_RPAREN, - ACTIONS(3908), 1, + ACTIONS(4056), 1, anon_sym_COMMA, - STATE(1695), 4, + ACTIONS(4105), 1, + anon_sym_GT_RPAREN, + STATE(1719), 1, + aux_sym_generic_module_parameters_repeat1, + STATE(1736), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__cond_repeat1, - [42715] = 5, + [51038] = 7, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(4107), 1, + sym_at_ident, + ACTIONS(4109), 1, + anon_sym_LPAREN, + ACTIONS(4111), 1, + anon_sym_LBRACE, + STATE(1737), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [51062] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3911), 3, + ACTIONS(2533), 1, anon_sym_COMMA, + ACTIONS(4113), 1, anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1696), 3, + STATE(1524), 1, + aux_sym_assert_stmt_repeat1, + STATE(1738), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42735] = 7, + [51086] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2677), 1, + ACTIONS(4115), 3, anon_sym_COMMA, - ACTIONS(3913), 1, + anon_sym_LPAREN_LT, anon_sym_RPAREN, - STATE(1736), 1, - aux_sym_assert_stmt_repeat1, - STATE(1697), 3, + STATE(1739), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42759] = 5, + [51106] = 7, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3915), 3, + ACTIONS(3856), 1, + anon_sym_COMMA, + ACTIONS(4117), 1, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_AMP_AMP, - STATE(1698), 3, + STATE(1625), 1, + aux_sym_enum_param_list_repeat1, + STATE(1740), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42779] = 7, + [51130] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3828), 1, - anon_sym_RPAREN, - ACTIONS(3838), 1, - anon_sym_AMP_AMP, - STATE(1737), 1, - aux_sym__try_unwrap_chain_repeat1, - STATE(1699), 3, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym_paren_cond, + STATE(1741), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42803] = 6, + [51151] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3917), 1, - anon_sym_COMMA, - ACTIONS(3920), 1, - anon_sym_SEMI, - STATE(1700), 4, + ACTIONS(4119), 1, + anon_sym_DOLLARendif, + ACTIONS(4121), 1, + anon_sym_DOLLARelse, + STATE(1742), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_asm_stmt_repeat1, - [42825] = 6, + [51172] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, + ACTIONS(4123), 1, anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1701), 3, + ACTIONS(4125), 1, + anon_sym_while, + STATE(1743), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42847] = 6, + [51193] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3922), 1, - anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1702), 3, + ACTIONS(3123), 1, + anon_sym_LBRACE, + STATE(984), 1, + sym_bitstruct_body, + STATE(1744), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42869] = 6, + [51214] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3926), 1, + ACTIONS(3937), 2, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3924), 2, - sym_ident, - anon_sym_int, - STATE(1703), 3, + STATE(1745), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42891] = 7, + [51233] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3834), 1, - anon_sym_RPAREN, - ACTIONS(3928), 1, - anon_sym_COMMA, - STATE(1695), 1, - aux_sym__cond_repeat1, - STATE(1704), 3, + ACTIONS(4127), 1, + anon_sym_DOLLARendif, + ACTIONS(4129), 1, + anon_sym_DOLLARelse, + STATE(1746), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42915] = 7, + [51254] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3930), 1, - sym_ident, - ACTIONS(3932), 1, - sym_ct_ident, - STATE(1620), 1, - sym_local_decl_after_type, - STATE(1705), 3, + ACTIONS(3900), 1, + anon_sym_RBRACE, + ACTIONS(4131), 1, + sym_const_ident, + STATE(1747), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42939] = 7, + [51275] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(3934), 1, - anon_sym_SEMI, - STATE(2057), 1, - sym__assign_right_expr, - STATE(1706), 3, + ACTIONS(3053), 1, + anon_sym_LBRACE, + STATE(707), 1, + sym_switch_body, + STATE(1748), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42963] = 6, + [51296] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3936), 1, - anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1707), 3, + ACTIONS(4131), 1, + sym_const_ident, + ACTIONS(4133), 1, + anon_sym_RBRACE, + STATE(1749), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [42985] = 7, + [51317] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3678), 1, - anon_sym_COMMA, - ACTIONS(3938), 1, + ACTIONS(4135), 2, anon_sym_RPAREN, - STATE(1598), 1, - aux_sym_interface_impl_repeat1, - STATE(1708), 3, + anon_sym_SEMI, + STATE(1750), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43009] = 7, + [51336] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3726), 1, - anon_sym_COMMA, - ACTIONS(3798), 1, - anon_sym_RPAREN, - STATE(1614), 1, - aux_sym__cond_repeat1, - STATE(1709), 3, + ACTIONS(4137), 1, + sym_at_ident, + ACTIONS(4139), 1, + anon_sym_SEMI, + STATE(1751), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43033] = 7, + [51357] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3623), 1, - sym_const_ident, - ACTIONS(3940), 1, - anon_sym_SEMI, - STATE(2078), 1, - sym_label_target, - STATE(1710), 3, + ACTIONS(4141), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1752), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43057] = 7, + [51376] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3623), 1, - sym_const_ident, - ACTIONS(3942), 1, + ACTIONS(4143), 1, anon_sym_SEMI, - STATE(2113), 1, - sym_label_target, - STATE(1711), 3, + ACTIONS(4145), 1, + anon_sym_COLON, + STATE(1753), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43081] = 5, + [51397] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2715), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1712), 3, + ACTIONS(3067), 1, + anon_sym_LBRACE, + STATE(569), 1, + sym_switch_body, + STATE(1754), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43101] = 7, + [51418] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3646), 1, - sym_type_ident, - ACTIONS(3648), 1, - sym_const_ident, - STATE(1597), 1, - sym__module_param, - STATE(1713), 3, + ACTIONS(4147), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(1755), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43125] = 7, + [51437] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, - anon_sym_RBRACE, - ACTIONS(3944), 1, - anon_sym_COMMA, - STATE(1429), 1, - aux_sym_enum_arg_repeat1, - STATE(1714), 3, + ACTIONS(3121), 1, + anon_sym_LBRACE, + STATE(1214), 1, + sym_bitstruct_body, + STATE(1756), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43149] = 7, + [51458] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(3946), 1, - anon_sym_SEMI, - STATE(1975), 1, - sym__assign_right_expr, - STATE(1715), 3, + ACTIONS(3019), 1, + anon_sym_LBRACE, + STATE(1012), 1, + sym_enum_body, + STATE(1757), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43173] = 6, + [51479] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3950), 1, - anon_sym_RBRACE, - ACTIONS(3948), 2, - sym_ident, - anon_sym_int, - STATE(1716), 3, + ACTIONS(4149), 1, + sym_at_ident, + ACTIONS(4151), 1, + anon_sym_SEMI, + STATE(1758), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43195] = 7, + [51500] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3952), 1, + ACTIONS(3952), 2, anon_sym_COMMA, - ACTIONS(3954), 1, - anon_sym_SEMI, - STATE(1741), 1, - aux_sym_asm_stmt_repeat1, - STATE(1717), 3, + anon_sym_RBRACE, + STATE(1759), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43219] = 7, + [51519] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3623), 1, - sym_const_ident, - ACTIONS(3956), 1, + ACTIONS(4153), 1, anon_sym_SEMI, - STATE(2029), 1, - sym_label_target, - STATE(1718), 3, + ACTIONS(4155), 1, + anon_sym_DOT_DOT, + STATE(1760), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43243] = 6, + [51540] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3547), 1, - anon_sym_RPAREN, - ACTIONS(3958), 1, - anon_sym_COMMA, - STATE(1719), 4, + ACTIONS(4157), 2, + anon_sym_DOLLARcase, + anon_sym_DOLLARdefault, + STATE(1761), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_catch_unwrap_list_repeat1, - [43265] = 6, + [51559] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2813), 1, + ACTIONS(4159), 2, anon_sym_RPAREN, - ACTIONS(2615), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1720), 3, + anon_sym_SEMI, + STATE(1762), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43287] = 7, + [51578] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3623), 1, - sym_const_ident, - ACTIONS(3961), 1, - anon_sym_SEMI, - STATE(2030), 1, - sym_label_target, - STATE(1721), 3, + ACTIONS(4161), 1, + anon_sym_LPAREN, + STATE(36), 1, + sym_for_cond, + STATE(1763), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43311] = 6, + [51599] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1778), 1, - anon_sym_RBRACK, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1722), 3, + ACTIONS(4163), 2, + anon_sym_STAR_GT, + sym_at_ident, + STATE(1764), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43333] = 5, + [51618] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3963), 3, - anon_sym_RPAREN, + ACTIONS(4165), 1, anon_sym_SEMI, - anon_sym_AMP_AMP, - STATE(1723), 3, + ACTIONS(4167), 1, + anon_sym_COLON, + STATE(1765), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43353] = 6, + [51639] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1778), 1, - anon_sym_GT_RBRACK, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1724), 3, + ACTIONS(4169), 1, + anon_sym_LBRACE, + STATE(971), 1, + sym_interface_body, + STATE(1766), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43375] = 7, + [51660] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(3965), 1, - anon_sym_SEMI, - STATE(2043), 1, - sym__assign_right_expr, - STATE(1725), 3, + ACTIONS(4171), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(1767), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43399] = 6, + [51679] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3967), 1, - anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1726), 3, + ACTIONS(3039), 1, + anon_sym_LBRACE, + STATE(747), 1, + sym_switch_body, + STATE(1768), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43421] = 7, + [51700] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(3969), 1, - anon_sym_SEMI, - STATE(2189), 1, - sym__assign_right_expr, - STATE(1727), 3, + ACTIONS(4173), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1769), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43445] = 6, + [51719] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3392), 1, - anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1728), 3, + ACTIONS(3083), 1, + anon_sym_LBRACE, + STATE(1202), 1, + sym_struct_body, + STATE(1770), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43467] = 5, + [51740] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3971), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1729), 3, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(72), 1, + sym_paren_cond, + STATE(1771), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43487] = 5, + [51761] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3973), 3, - anon_sym_DOLLARcase, - anon_sym_DOLLARdefault, - anon_sym_DOLLARendswitch, - STATE(1730), 3, + ACTIONS(4175), 1, + sym_at_ident, + STATE(1955), 1, + sym_trailing_block_param, + STATE(1772), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43507] = 6, + [51782] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3975), 1, - anon_sym_COMMA, - ACTIONS(3978), 1, - anon_sym_SEMI, - STATE(1731), 4, + ACTIONS(3794), 1, + sym_const_ident, + STATE(1759), 1, + sym_enum_constant, + STATE(1773), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__decl_statement_after_type_repeat1, - [43529] = 7, + [51803] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_DOT, - STATE(936), 1, - sym_initializer_list, - STATE(1732), 3, + ACTIONS(4177), 1, + anon_sym_SEMI, + ACTIONS(4179), 1, + anon_sym_while, + STATE(1774), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43553] = 7, + [51824] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3623), 1, - sym_const_ident, - ACTIONS(3980), 1, - anon_sym_SEMI, - STATE(2137), 1, - sym_label_target, - STATE(1733), 3, + ACTIONS(4181), 1, + anon_sym_LPAREN, + ACTIONS(4183), 1, + anon_sym_LBRACK, + STATE(1775), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43577] = 7, + [51845] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3623), 1, - sym_const_ident, - ACTIONS(3982), 1, - anon_sym_SEMI, - STATE(2135), 1, - sym_label_target, - STATE(1734), 3, + ACTIONS(3039), 1, + anon_sym_LBRACE, + STATE(763), 1, + sym_switch_body, + STATE(1776), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43601] = 6, + [51866] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3984), 1, + ACTIONS(3801), 2, anon_sym_COMMA, - ACTIONS(3987), 1, anon_sym_RPAREN, - STATE(1735), 4, + STATE(1777), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_enum_param_list_repeat1, - [43623] = 6, + [51885] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2723), 1, - anon_sym_RPAREN, - ACTIONS(3989), 1, - anon_sym_COMMA, - STATE(1736), 4, + ACTIONS(3039), 1, + anon_sym_LBRACE, + STATE(765), 1, + sym_switch_body, + STATE(1778), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym_assert_stmt_repeat1, - [43645] = 6, + [51906] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3879), 1, - anon_sym_RPAREN, - ACTIONS(3992), 1, - anon_sym_AMP_AMP, - STATE(1737), 4, + ACTIONS(4185), 1, + anon_sym_SEMI, + ACTIONS(4187), 1, + anon_sym_COLON, + STATE(1779), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - aux_sym__try_unwrap_chain_repeat1, - [43667] = 7, + [51927] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(3995), 1, + ACTIONS(4189), 1, anon_sym_SEMI, - STATE(2164), 1, - sym__assign_right_expr, - STATE(1738), 3, + ACTIONS(4191), 1, + anon_sym_while, + STATE(1780), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43691] = 7, + [51948] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1233), 1, - anon_sym_RBRACE, - ACTIONS(3997), 1, - anon_sym_COMMA, - STATE(1429), 1, - aux_sym_enum_arg_repeat1, - STATE(1739), 3, + ACTIONS(4193), 1, + anon_sym_LPAREN, + STATE(39), 1, + sym_ct_foreach_cond, + STATE(1781), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43715] = 7, + [51969] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3999), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_RBRACE, - STATE(1601), 1, - aux_sym_fault_body_repeat1, - STATE(1740), 3, + ACTIONS(4195), 1, + anon_sym_DOLLARendif, + ACTIONS(4197), 1, + anon_sym_DOLLARelse, + STATE(1782), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43739] = 7, + [51990] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3952), 1, - anon_sym_COMMA, - ACTIONS(4003), 1, - anon_sym_SEMI, - STATE(1700), 1, - aux_sym_asm_stmt_repeat1, - STATE(1741), 3, + ACTIONS(3039), 1, + anon_sym_LBRACE, + STATE(780), 1, + sym_switch_body, + STATE(1783), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43763] = 6, + [52011] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4007), 1, + ACTIONS(4199), 1, + sym_const_ident, + ACTIONS(4201), 1, anon_sym_RBRACE, - ACTIONS(4005), 2, - sym_ident, - anon_sym_int, - STATE(1742), 3, + STATE(1784), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43785] = 5, + [52032] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3879), 3, - anon_sym_RPAREN, + ACTIONS(4203), 1, + sym_at_ident, + ACTIONS(4205), 1, anon_sym_SEMI, - anon_sym_AMP_AMP, - STATE(1743), 3, + STATE(1785), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43805] = 7, + [52053] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, - anon_sym_RBRACE, - ACTIONS(4009), 1, - anon_sym_COMMA, - STATE(1739), 1, - aux_sym_enum_arg_repeat1, - STATE(1744), 3, + ACTIONS(2825), 1, + anon_sym_LPAREN, + STATE(1244), 1, + sym_fn_parameter_list, + STATE(1786), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43829] = 6, + [52074] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4011), 1, + ACTIONS(4207), 1, anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1745), 3, + ACTIONS(4209), 1, + anon_sym_COLON, + STATE(1787), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43851] = 7, + [52095] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4013), 1, - anon_sym_COMMA, - ACTIONS(4015), 1, - anon_sym_RBRACE, - STATE(1607), 1, - aux_sym_enum_body_repeat1, - STATE(1746), 3, + ACTIONS(3019), 1, + anon_sym_LBRACE, + STATE(1005), 1, + sym_enum_body, + STATE(1788), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43875] = 6, + [52116] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3464), 1, - anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1747), 3, + ACTIONS(4211), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1789), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43897] = 6, - ACTIONS(3), 1, + [52135] = 5, + ACTIONS(3604), 1, aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, + ACTIONS(3606), 1, + anon_sym_LT_STAR, + ACTIONS(3608), 1, anon_sym_SLASH_STAR, - ACTIONS(4017), 1, - anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1748), 3, + ACTIONS(4213), 2, + sym_escape_sequence, + aux_sym_char_literal_token1, + STATE(1790), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43919] = 7, + [52154] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3486), 1, - anon_sym_COMMA, - ACTIONS(3877), 1, - anon_sym_RPAREN, - STATE(1719), 1, - aux_sym_catch_unwrap_list_repeat1, - STATE(1749), 3, + ACTIONS(3067), 1, + anon_sym_LBRACE, + STATE(544), 1, + sym_switch_body, + STATE(1791), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43943] = 6, + [52175] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4019), 1, - anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1750), 3, + ACTIONS(4215), 2, + anon_sym_fn, + anon_sym_RBRACE, + STATE(1792), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43965] = 7, + [52194] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(4021), 1, - anon_sym_SEMI, - STATE(2143), 1, - sym__assign_right_expr, - STATE(1751), 3, + ACTIONS(4217), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(1793), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [43989] = 6, + [52213] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4023), 1, + ACTIONS(4219), 2, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1752), 3, + STATE(1794), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44011] = 7, + [52232] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3891), 1, - anon_sym_COMMA, - ACTIONS(4025), 1, - anon_sym_RPAREN, - STATE(1735), 1, - aux_sym_enum_param_list_repeat1, - STATE(1753), 3, + ACTIONS(3121), 1, + anon_sym_LBRACE, + STATE(1211), 1, + sym_bitstruct_body, + STATE(1795), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44035] = 5, + [52253] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4027), 3, - anon_sym_DOLLARcase, - anon_sym_DOLLARdefault, - anon_sym_DOLLARendswitch, - STATE(1754), 3, + ACTIONS(3486), 2, + sym_ident, + sym_const_ident, + STATE(1796), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44055] = 7, + [52272] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, - anon_sym_EQ, - ACTIONS(4029), 1, - anon_sym_SEMI, - STATE(2123), 1, - sym__assign_right_expr, - STATE(1755), 3, + ACTIONS(2825), 1, + anon_sym_LPAREN, + STATE(1288), 1, + sym_fn_parameter_list, + STATE(1797), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44079] = 5, + [52293] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3987), 2, - anon_sym_COMMA, + ACTIONS(4221), 2, anon_sym_RPAREN, - STATE(1756), 3, + anon_sym_SEMI, + STATE(1798), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44098] = 5, + [52312] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3889), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1757), 3, + ACTIONS(4175), 1, + sym_at_ident, + STATE(2135), 1, + sym_trailing_block_param, + STATE(1799), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44117] = 5, + [52333] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4031), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1758), 3, + ACTIONS(3043), 1, + anon_sym_LBRACE, + STATE(470), 1, + sym_switch_body, + STATE(1800), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44136] = 6, + [52354] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2505), 1, - anon_sym_LPAREN, - STATE(1252), 1, - sym_fn_parameter_list, - STATE(1759), 3, + ACTIONS(3083), 1, + anon_sym_LBRACE, + STATE(1205), 1, + sym_struct_body, + STATE(1801), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44157] = 6, + [52375] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, - anon_sym_LBRACE, - STATE(638), 1, - sym_switch_body, - STATE(1760), 3, + ACTIONS(3520), 2, + sym_ident, + sym_const_ident, + STATE(1802), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44178] = 6, + [52394] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, - anon_sym_LPAREN, - STATE(63), 1, - sym_paren_cond, - STATE(1761), 3, + ACTIONS(4223), 1, + anon_sym_SEMI, + ACTIONS(4225), 1, + anon_sym_while, + STATE(1803), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44199] = 6, + [52415] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4033), 1, - sym_ident, - ACTIONS(4035), 1, + ACTIONS(4227), 1, + anon_sym_COMMA, + ACTIONS(4229), 1, anon_sym_COLON, - STATE(1762), 3, + STATE(1804), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44220] = 6, + [52436] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4037), 1, + ACTIONS(4231), 1, sym_ident, - STATE(1267), 1, - sym_identifier_list, - STATE(1763), 3, + ACTIONS(4233), 1, + anon_sym_AMP, + STATE(1805), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44241] = 6, + [52457] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2927), 1, - anon_sym_LBRACE, - STATE(860), 1, - sym_struct_body, - STATE(1764), 3, + ACTIONS(4235), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1806), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44262] = 6, + [52476] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4039), 1, - anon_sym_SEMI, - ACTIONS(4041), 1, - anon_sym_while, - STATE(1765), 3, + ACTIONS(3063), 1, + anon_sym_LBRACE, + STATE(604), 1, + sym_switch_body, + STATE(1807), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44283] = 6, + [52497] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2931), 1, - anon_sym_LPAREN, - STATE(1920), 1, - sym_paren_expr, - STATE(1766), 3, + ACTIONS(3043), 1, + anon_sym_LBRACE, + STATE(424), 1, + sym_switch_body, + STATE(1808), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44304] = 6, + [52518] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2923), 1, - anon_sym_EQ, - STATE(1623), 1, - sym__assign_right_expr, - STATE(1767), 3, + ACTIONS(3885), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1809), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44325] = 6, + [52537] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, + ACTIONS(3043), 1, anon_sym_LBRACE, - STATE(1091), 1, - sym_bitstruct_body, - STATE(1768), 3, + STATE(426), 1, + sym_switch_body, + STATE(1810), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44346] = 5, + [52558] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2503), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1769), 3, + ACTIONS(3737), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1811), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44365] = 6, + [52577] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2931), 1, - anon_sym_LPAREN, - STATE(1993), 1, - sym_paren_expr, - STATE(1770), 3, + ACTIONS(4237), 1, + anon_sym_SEMI, + ACTIONS(4239), 1, + anon_sym_while, + STATE(1812), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44386] = 6, + [52598] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, - anon_sym_LBRACE, - STATE(1897), 1, - sym_compound_stmt, - STATE(1771), 3, + ACTIONS(4241), 1, + anon_sym_DOLLARendif, + ACTIONS(4243), 1, + anon_sym_DOLLARelse, + STATE(1813), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44407] = 6, + [52619] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - STATE(98), 1, + STATE(84), 1, sym_paren_cond, - STATE(1772), 3, + STATE(1814), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44428] = 6, + [52640] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3386), 1, - anon_sym_LPAREN, - STATE(99), 1, - sym_foreach_cond, - STATE(1773), 3, + ACTIONS(3061), 1, + anon_sym_LBRACE, + STATE(995), 1, + sym_fault_body, + STATE(1815), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44449] = 6, + [52661] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3166), 1, + ACTIONS(3043), 1, anon_sym_LBRACE, - STATE(686), 1, + STATE(443), 1, sym_switch_body, - STATE(1774), 3, + STATE(1816), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44470] = 6, + [52682] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3384), 1, - anon_sym_LPAREN, - STATE(100), 1, - sym_for_cond, - STATE(1775), 3, + ACTIONS(4245), 1, + anon_sym_SEMI, + ACTIONS(4247), 1, + anon_sym_while, + STATE(1817), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44491] = 6, + [52703] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3224), 1, - anon_sym_LBRACE, - STATE(520), 1, - sym_switch_body, - STATE(1776), 3, + ACTIONS(3890), 2, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + STATE(1818), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44512] = 6, + [52722] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4043), 1, - anon_sym_LPAREN, - STATE(37), 1, - sym_ct_foreach_cond, - STATE(1777), 3, + ACTIONS(4249), 1, + sym_at_ident, + ACTIONS(4251), 1, + anon_sym_SEMI, + STATE(1819), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44533] = 6, + [52743] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4045), 1, - anon_sym_LPAREN, - STATE(35), 1, - sym_for_cond, - STATE(1778), 3, + ACTIONS(3055), 1, + anon_sym_LBRACE, + STATE(387), 1, + sym_switch_body, + STATE(1820), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44554] = 6, + [52764] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4047), 1, - anon_sym_SEMI, - ACTIONS(4049), 1, - anon_sym_while, - STATE(1779), 3, + ACTIONS(3009), 1, + anon_sym_EQ, + STATE(1626), 1, + sym__assign_right_expr, + STATE(1821), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44575] = 6, + [52785] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4051), 1, - anon_sym_DOLLARendif, - ACTIONS(4053), 1, - anon_sym_DOLLARelse, - STATE(1780), 3, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(4255), 1, + anon_sym_COLON, + STATE(1822), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44596] = 6, + [52806] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, - anon_sym_LPAREN, - STATE(81), 1, - sym_paren_cond, - STATE(1781), 3, + ACTIONS(4257), 1, + anon_sym_SEMI, + ACTIONS(4259), 1, + anon_sym_while, + STATE(1823), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44617] = 6, + [52827] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2505), 1, - anon_sym_LPAREN, - STATE(1547), 1, - sym_fn_parameter_list, - STATE(1782), 3, + ACTIONS(4261), 1, + sym_ident, + ACTIONS(4263), 1, + anon_sym_COLON, + STATE(1824), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44638] = 5, + [52848] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4055), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1783), 3, + ACTIONS(3019), 1, + anon_sym_LBRACE, + STATE(949), 1, + sym_enum_body, + STATE(1825), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44657] = 6, + [52869] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2887), 1, - anon_sym_LBRACE, - STATE(839), 1, - sym_enum_body, - STATE(1784), 3, + ACTIONS(3075), 1, + anon_sym_LPAREN, + STATE(2129), 1, + sym_paren_expr, + STATE(1826), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44678] = 6, + [52890] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2931), 1, - anon_sym_LPAREN, - STATE(1938), 1, - sym_paren_expr, - STATE(1785), 3, + ACTIONS(4009), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1827), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44699] = 6, + [52909] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4057), 1, - anon_sym_SEMI, - ACTIONS(4059), 1, - anon_sym_while, - STATE(1786), 3, + ACTIONS(4265), 1, + sym_ident, + STATE(1312), 1, + sym_identifier_list, + STATE(1828), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44720] = 6, + [52930] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2925), 1, + ACTIONS(3049), 1, anon_sym_LBRACE, - STATE(871), 1, - sym_fault_body, - STATE(1787), 3, + STATE(939), 1, + sym_struct_body, + STATE(1829), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44741] = 6, + [52951] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2931), 1, - anon_sym_LPAREN, - STATE(1933), 1, - sym_paren_expr, - STATE(1788), 3, + ACTIONS(3123), 1, + anon_sym_LBRACE, + STATE(946), 1, + sym_bitstruct_body, + STATE(1830), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44762] = 6, + [52972] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2993), 1, - anon_sym_LBRACE, - STATE(813), 1, - sym_bitstruct_body, - STATE(1789), 3, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(73), 1, + sym_paren_cond, + STATE(1831), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44783] = 5, + [52993] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4061), 2, + ACTIONS(4267), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(1790), 3, + STATE(1832), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44802] = 6, + [53012] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3218), 1, - anon_sym_SEMI, - ACTIONS(4063), 1, - sym_at_ident, - STATE(1791), 3, + ACTIONS(2825), 1, + anon_sym_LPAREN, + STATE(1317), 1, + sym_fn_parameter_list, + STATE(1833), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44823] = 6, + [53033] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, - anon_sym_LBRACE, - STATE(1907), 1, - sym_compound_stmt, - STATE(1792), 3, + ACTIONS(4161), 1, + anon_sym_LPAREN, + STATE(35), 1, + sym_for_cond, + STATE(1834), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44844] = 6, + [53054] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, + ACTIONS(4193), 1, anon_sym_LPAREN, - STATE(107), 1, - sym_paren_cond, - STATE(1793), 3, + STATE(32), 1, + sym_ct_foreach_cond, + STATE(1835), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44865] = 6, + [53075] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3386), 1, - anon_sym_LPAREN, - STATE(108), 1, - sym_foreach_cond, - STATE(1794), 3, + ACTIONS(4269), 1, + anon_sym_SEMI, + ACTIONS(4271), 1, + anon_sym_COLON, + STATE(1836), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44886] = 6, + [53096] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3384), 1, - anon_sym_LPAREN, - STATE(109), 1, - sym_for_cond, - STATE(1795), 3, + ACTIONS(3063), 1, + anon_sym_LBRACE, + STATE(618), 1, + sym_switch_body, + STATE(1837), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44907] = 6, + [53117] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3688), 1, - anon_sym_RBRACE, - ACTIONS(4065), 1, - sym_const_ident, - STATE(1796), 3, + ACTIONS(3655), 1, + anon_sym_LPAREN, + STATE(104), 1, + sym_for_cond, + STATE(1838), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44928] = 6, + [53138] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3706), 1, - sym_const_ident, - STATE(1746), 1, - sym_enum_constant, - STATE(1797), 3, + ACTIONS(3668), 1, + anon_sym_LPAREN, + STATE(105), 1, + sym_foreach_cond, + STATE(1839), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44949] = 6, + [53159] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4043), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - STATE(47), 1, - sym_ct_foreach_cond, - STATE(1798), 3, + STATE(106), 1, + sym_paren_cond, + STATE(1840), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44970] = 6, + [53180] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4045), 1, - anon_sym_LPAREN, - STATE(49), 1, - sym_for_cond, - STATE(1799), 3, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(1906), 1, + sym_compound_stmt, + STATE(1841), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [44991] = 5, + [53201] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4067), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1800), 3, + ACTIONS(3075), 1, + anon_sym_LPAREN, + STATE(2177), 1, + sym_paren_expr, + STATE(1842), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45010] = 6, + [53222] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4045), 1, - anon_sym_LPAREN, - STATE(51), 1, - sym_for_cond, - STATE(1801), 3, + ACTIONS(4273), 1, + anon_sym_RPAREN, + ACTIONS(4275), 1, + anon_sym_SEMI, + STATE(1843), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45031] = 6, + [53243] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2887), 1, - anon_sym_LBRACE, - STATE(826), 1, - sym_enum_body, - STATE(1802), 3, + ACTIONS(3075), 1, + anon_sym_LPAREN, + STATE(2197), 1, + sym_paren_expr, + STATE(1844), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45052] = 6, + [53264] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2887), 1, - anon_sym_LBRACE, - STATE(868), 1, - sym_enum_body, - STATE(1803), 3, + ACTIONS(4277), 1, + anon_sym_LPAREN, + ACTIONS(4279), 1, + anon_sym_LBRACK, + STATE(1845), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45073] = 5, + [53285] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4069), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1804), 3, + ACTIONS(3063), 1, + anon_sym_LBRACE, + STATE(620), 1, + sym_switch_body, + STATE(1846), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45092] = 6, + [53306] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2505), 1, + ACTIONS(3075), 1, anon_sym_LPAREN, - STATE(1276), 1, - sym_fn_parameter_list, - STATE(1805), 3, + STATE(2088), 1, + sym_paren_expr, + STATE(1847), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45113] = 6, + [53327] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4043), 1, - anon_sym_LPAREN, - STATE(50), 1, - sym_ct_foreach_cond, - STATE(1806), 3, + ACTIONS(3061), 1, + anon_sym_LBRACE, + STATE(1001), 1, + sym_fault_body, + STATE(1848), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45134] = 6, + [53348] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4071), 1, - sym_at_ident, - STATE(1942), 1, - sym_trailing_block_param, - STATE(1807), 3, + ACTIONS(4281), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1849), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45155] = 6, + [53367] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2931), 1, - anon_sym_LPAREN, - STATE(2073), 1, - sym_paren_expr, - STATE(1808), 3, + ACTIONS(4283), 1, + sym_at_ident, + ACTIONS(4285), 1, + anon_sym_SEMI, + STATE(1850), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45176] = 5, + [53388] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4073), 2, - anon_sym_fn, - anon_sym_RBRACE, - STATE(1809), 3, + ACTIONS(4287), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1851), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45195] = 6, + [53407] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2931), 1, - anon_sym_LPAREN, - STATE(2087), 1, - sym_paren_expr, - STATE(1810), 3, + ACTIONS(4289), 1, + anon_sym_SEMI, + ACTIONS(4291), 1, + anon_sym_while, + STATE(1852), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45216] = 5, + [53428] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4075), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(1811), 3, + ACTIONS(4161), 1, + anon_sym_LPAREN, + STATE(40), 1, + sym_for_cond, + STATE(1853), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45235] = 5, + [53449] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4077), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1812), 3, + ACTIONS(4193), 1, + anon_sym_LPAREN, + STATE(41), 1, + sym_ct_foreach_cond, + STATE(1854), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45254] = 6, + [53470] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4071), 1, - sym_at_ident, - STATE(2142), 1, - sym_trailing_block_param, - STATE(1813), 3, + ACTIONS(4293), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1855), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45275] = 6, + [53489] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, - anon_sym_LBRACE, - STATE(1834), 1, - sym_compound_stmt, - STATE(1814), 3, + ACTIONS(3655), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_for_cond, + STATE(1856), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45296] = 6, + [53510] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4079), 1, - anon_sym_RPAREN, - ACTIONS(4081), 1, - anon_sym_SEMI, - STATE(1815), 3, + ACTIONS(3668), 1, + anon_sym_LPAREN, + STATE(114), 1, + sym_foreach_cond, + STATE(1857), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45317] = 6, + [53531] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - STATE(117), 1, + STATE(115), 1, sym_paren_cond, - STATE(1816), 3, + STATE(1858), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45338] = 6, + [53552] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3226), 1, + ACTIONS(1978), 1, anon_sym_LBRACE, - STATE(755), 1, - sym_switch_body, - STATE(1817), 3, + STATE(1934), 1, + sym_compound_stmt, + STATE(1859), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45359] = 6, + [53573] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3386), 1, - anon_sym_LPAREN, - STATE(118), 1, - sym_foreach_cond, - STATE(1818), 3, + ACTIONS(4295), 1, + anon_sym_DOLLARendif, + ACTIONS(4297), 1, + anon_sym_DOLLARelse, + STATE(1860), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45380] = 6, + [53594] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, - anon_sym_LPAREN, - STATE(73), 1, - sym_paren_cond, - STATE(1819), 3, + ACTIONS(3063), 1, + anon_sym_LBRACE, + STATE(576), 1, + sym_switch_body, + STATE(1861), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45401] = 6, + [53615] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3706), 1, - sym_const_ident, - STATE(1757), 1, - sym_enum_constant, - STATE(1820), 3, + ACTIONS(4299), 1, + anon_sym_LPAREN, + STATE(1246), 1, + sym_macro_parameter_list, + STATE(1862), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45422] = 6, + [53636] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3384), 1, + ACTIONS(3075), 1, anon_sym_LPAREN, - STATE(119), 1, - sym_for_cond, - STATE(1821), 3, + STATE(2091), 1, + sym_paren_expr, + STATE(1863), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45443] = 6, + [53657] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4083), 1, + ACTIONS(4301), 1, + sym_at_ident, + ACTIONS(4303), 1, anon_sym_SEMI, - ACTIONS(4085), 1, - anon_sym_while, - STATE(1822), 3, + STATE(1864), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45464] = 6, + [53678] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4043), 1, + ACTIONS(3075), 1, anon_sym_LPAREN, - STATE(34), 1, - sym_ct_foreach_cond, - STATE(1823), 3, + STATE(2102), 1, + sym_paren_expr, + STATE(1865), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45485] = 6, + [53699] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4087), 1, + ACTIONS(4305), 2, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(4089), 1, - anon_sym_COLON, - STATE(1824), 3, + STATE(1866), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45506] = 6, + [53718] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4045), 1, - anon_sym_LPAREN, - STATE(31), 1, - sym_for_cond, - STATE(1825), 3, + ACTIONS(4307), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1867), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45527] = 6, + [53737] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2927), 1, - anon_sym_LBRACE, - STATE(853), 1, - sym_struct_body, - STATE(1826), 3, + ACTIONS(4309), 2, + anon_sym_DOLLARcase, + anon_sym_DOLLARdefault, + STATE(1868), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45548] = 6, + [53756] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2925), 1, - anon_sym_LBRACE, - STATE(825), 1, - sym_fault_body, - STATE(1827), 3, + ACTIONS(4311), 2, + anon_sym_DOLLARcase, + anon_sym_DOLLARdefault, + STATE(1869), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45569] = 5, + [53775] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3442), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1828), 3, + ACTIONS(4313), 1, + anon_sym_SEMI, + ACTIONS(4315), 1, + anon_sym_COLON, + STATE(1870), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45588] = 6, + [53796] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3226), 1, - anon_sym_LBRACE, - STATE(724), 1, - sym_switch_body, - STATE(1829), 3, + ACTIONS(4161), 1, + anon_sym_LPAREN, + STATE(57), 1, + sym_for_cond, + STATE(1871), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45609] = 5, + [53817] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4091), 2, + ACTIONS(4193), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - STATE(1830), 3, + STATE(45), 1, + sym_ct_foreach_cond, + STATE(1872), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45628] = 6, + [53838] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2931), 1, - anon_sym_LPAREN, - STATE(2159), 1, - sym_paren_expr, - STATE(1831), 3, + ACTIONS(4317), 1, + anon_sym_SEMI, + ACTIONS(4319), 1, + anon_sym_COLON, + STATE(1873), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45649] = 6, + [53859] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2931), 1, - anon_sym_LPAREN, - STATE(2166), 1, - sym_paren_expr, - STATE(1832), 3, + ACTIONS(4321), 1, + anon_sym_DOLLARendif, + ACTIONS(4323), 1, + anon_sym_DOLLARelse, + STATE(1874), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45670] = 5, + [53880] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3760), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1833), 3, + ACTIONS(3655), 1, + anon_sym_LPAREN, + STATE(120), 1, + sym_for_cond, + STATE(1875), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45689] = 6, + [53901] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4093), 1, - anon_sym_SEMI, - ACTIONS(4095), 1, - anon_sym_while, - STATE(1834), 3, + ACTIONS(3668), 1, + anon_sym_LPAREN, + STATE(121), 1, + sym_foreach_cond, + STATE(1876), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45710] = 6, + [53922] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2969), 1, - anon_sym_LBRACE, - STATE(1093), 1, - sym_struct_body, - STATE(1835), 3, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(122), 1, + sym_paren_cond, + STATE(1877), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45731] = 6, + [53943] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, + ACTIONS(1978), 1, anon_sym_LBRACE, - STATE(1779), 1, + STATE(1743), 1, sym_compound_stmt, - STATE(1836), 3, + STATE(1878), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45752] = 5, + [53964] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4097), 2, + ACTIONS(4325), 2, anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(1837), 3, + anon_sym_SEMI, + STATE(1879), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45771] = 6, + [53983] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(4099), 1, - anon_sym_DOLLARendif, - ACTIONS(4101), 1, - anon_sym_DOLLARelse, - STATE(1838), 3, + anon_sym_SLASH_STAR, + ACTIONS(3067), 1, + anon_sym_LBRACE, + STATE(564), 1, + sym_switch_body, + STATE(1880), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45792] = 6, + [54004] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, - anon_sym_LPAREN, - STATE(136), 1, - sym_paren_cond, - STATE(1839), 3, + ACTIONS(3067), 1, + anon_sym_LBRACE, + STATE(567), 1, + sym_switch_body, + STATE(1881), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45813] = 6, + [54025] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3386), 1, + ACTIONS(3075), 1, anon_sym_LPAREN, - STATE(135), 1, - sym_foreach_cond, - STATE(1840), 3, + STATE(2216), 1, + sym_paren_expr, + STATE(1882), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45834] = 6, + [54046] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3384), 1, - anon_sym_LPAREN, - STATE(134), 1, - sym_for_cond, - STATE(1841), 3, + ACTIONS(3055), 1, + anon_sym_LBRACE, + STATE(362), 1, + sym_switch_body, + STATE(1883), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45855] = 6, + [54067] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4043), 1, + ACTIONS(3075), 1, anon_sym_LPAREN, - STATE(53), 1, - sym_ct_foreach_cond, - STATE(1842), 3, + STATE(2225), 1, + sym_paren_expr, + STATE(1884), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45876] = 6, + [54088] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4045), 1, - anon_sym_LPAREN, - STATE(52), 1, - sym_for_cond, - STATE(1843), 3, + ACTIONS(3049), 1, + anon_sym_LBRACE, + STATE(1017), 1, + sym_struct_body, + STATE(1885), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45897] = 6, + [54109] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3224), 1, + ACTIONS(3055), 1, anon_sym_LBRACE, - STATE(534), 1, + STATE(345), 1, sym_switch_body, - STATE(1844), 3, + STATE(1886), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45918] = 6, + [54130] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(421), 1, - sym_switch_body, - STATE(1845), 3, + ACTIONS(4327), 2, + anon_sym_STAR_GT, + sym_at_ident, + STATE(1887), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45939] = 5, + [54149] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4103), 2, - anon_sym_DOLLARcase, - anon_sym_DOLLARdefault, - STATE(1846), 3, + ACTIONS(3053), 1, + anon_sym_LBRACE, + STATE(674), 1, + sym_switch_body, + STATE(1888), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45958] = 6, + [54170] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4105), 1, + ACTIONS(4089), 2, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4107), 1, - anon_sym_while, - STATE(1847), 3, + STATE(1889), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [45979] = 6, + [54189] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, - anon_sym_LBRACE, - STATE(1860), 1, - sym_compound_stmt, - STATE(1848), 3, + ACTIONS(4329), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1890), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46000] = 6, + [54208] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3263), 1, - anon_sym_SEMI, - ACTIONS(4109), 1, - sym_at_ident, - STATE(1849), 3, + ACTIONS(4331), 2, + anon_sym_COMMA, + anon_sym_GT_RPAREN, + STATE(1891), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46021] = 6, + [54227] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - STATE(116), 1, + STATE(77), 1, sym_paren_cond, - STATE(1850), 3, + STATE(1892), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46042] = 6, + [54248] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2931), 1, - anon_sym_LPAREN, - STATE(1951), 1, - sym_paren_expr, - STATE(1851), 3, + ACTIONS(3919), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1893), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46063] = 6, + [54267] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3386), 1, + ACTIONS(4161), 1, anon_sym_LPAREN, - STATE(115), 1, - sym_foreach_cond, - STATE(1852), 3, + STATE(49), 1, + sym_for_cond, + STATE(1894), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46084] = 6, + [54288] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4111), 1, - anon_sym_COMMA, - ACTIONS(4113), 1, - anon_sym_COLON, - STATE(1853), 3, + ACTIONS(4193), 1, + anon_sym_LPAREN, + STATE(50), 1, + sym_ct_foreach_cond, + STATE(1895), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46105] = 6, + [54309] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4115), 1, - sym_ident, - ACTIONS(4117), 1, - anon_sym_AMP, - STATE(1854), 3, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(62), 1, + sym_paren_cond, + STATE(1896), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46126] = 6, + [54330] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4119), 1, + ACTIONS(4333), 1, anon_sym_SEMI, - ACTIONS(4121), 1, + ACTIONS(4335), 1, anon_sym_while, - STATE(1855), 3, + STATE(1897), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46147] = 6, + [54351] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3384), 1, + ACTIONS(3655), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(127), 1, sym_for_cond, - STATE(1856), 3, + STATE(1898), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46168] = 6, + [54372] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2931), 1, + ACTIONS(3668), 1, anon_sym_LPAREN, - STATE(2002), 1, - sym_paren_expr, - STATE(1857), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [46189] = 6, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(4123), 1, - anon_sym_DOLLARendif, - ACTIONS(4125), 1, - anon_sym_DOLLARelse, - STATE(1858), 3, + STATE(128), 1, + sym_foreach_cond, + STATE(1899), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46210] = 6, + [54393] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, + ACTIONS(3588), 1, anon_sym_LPAREN, - STATE(58), 1, + STATE(129), 1, sym_paren_cond, - STATE(1859), 3, + STATE(1900), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46231] = 6, + [54414] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4127), 1, - anon_sym_SEMI, - ACTIONS(4129), 1, - anon_sym_while, - STATE(1860), 3, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(1780), 1, + sym_compound_stmt, + STATE(1901), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46252] = 6, + [54435] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_LBRACE, - STATE(405), 1, - sym_switch_body, - STATE(1861), 3, + ACTIONS(3894), 1, + anon_sym_COLON, + ACTIONS(3896), 1, + anon_sym_DOT_DOT, + STATE(1902), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46273] = 5, + [54456] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 2, - anon_sym_DOLLARcase, - anon_sym_DOLLARdefault, - STATE(1862), 3, + ACTIONS(3075), 1, + anon_sym_LPAREN, + STATE(1984), 1, + sym_paren_expr, + STATE(1903), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46292] = 6, + [54477] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2931), 1, - anon_sym_LPAREN, - STATE(2038), 1, - sym_paren_expr, - STATE(1863), 3, + ACTIONS(4171), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(1904), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46313] = 5, + [54496] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2999), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(1864), 3, + ACTIONS(3075), 1, + anon_sym_LPAREN, + STATE(1990), 1, + sym_paren_expr, + STATE(1905), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46332] = 6, + [54517] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4133), 1, - anon_sym_DOLLARendif, - ACTIONS(4135), 1, - anon_sym_DOLLARelse, - STATE(1865), 3, + ACTIONS(4337), 1, + anon_sym_SEMI, + ACTIONS(4339), 1, + anon_sym_while, + STATE(1906), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46353] = 5, + [54538] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3978), 2, + ACTIONS(3928), 2, anon_sym_COMMA, anon_sym_SEMI, - STATE(1866), 3, + STATE(1907), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46372] = 6, + [54557] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2125), 1, - anon_sym_LBRACE, - STATE(1855), 1, - sym_compound_stmt, - STATE(1867), 3, + ACTIONS(3655), 1, + anon_sym_LPAREN, + STATE(107), 1, + sym_for_cond, + STATE(1908), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46393] = 6, + [54578] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, - anon_sym_LPAREN, - STATE(130), 1, - sym_paren_cond, - STATE(1868), 3, + ACTIONS(4341), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(1909), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46414] = 5, + [54597] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4137), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1869), 3, + ACTIONS(3053), 1, + anon_sym_LBRACE, + STATE(690), 1, + sym_switch_body, + STATE(1910), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46433] = 6, + [54618] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3386), 1, + ACTIONS(4161), 1, anon_sym_LPAREN, - STATE(129), 1, - sym_foreach_cond, - STATE(1870), 3, + STATE(54), 1, + sym_for_cond, + STATE(1911), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46454] = 6, + [54639] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3384), 1, + ACTIONS(4193), 1, anon_sym_LPAREN, - STATE(95), 1, - sym_for_cond, - STATE(1871), 3, + STATE(55), 1, + sym_ct_foreach_cond, + STATE(1912), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46475] = 6, + [54660] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4139), 1, - anon_sym_COMMA, - ACTIONS(4141), 1, - anon_sym_COLON, - STATE(1872), 3, + ACTIONS(4343), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(1913), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46496] = 6, + [54679] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4043), 1, - anon_sym_LPAREN, - STATE(42), 1, - sym_ct_foreach_cond, - STATE(1873), 3, + ACTIONS(4343), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(1914), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46517] = 6, + [54698] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4045), 1, + ACTIONS(3655), 1, anon_sym_LPAREN, - STATE(41), 1, + STATE(136), 1, sym_for_cond, - STATE(1874), 3, + STATE(1915), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46538] = 5, + [54719] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4143), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1875), 3, + ACTIONS(3668), 1, + anon_sym_LPAREN, + STATE(137), 1, + sym_foreach_cond, + STATE(1916), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46557] = 6, + [54740] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3267), 1, - anon_sym_SEMI, - ACTIONS(4145), 1, - sym_at_ident, - STATE(1876), 3, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(138), 1, + sym_paren_cond, + STATE(1917), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46578] = 5, + [54761] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2701), 2, - sym_ident, - sym_ct_ident, - STATE(1877), 3, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(1812), 1, + sym_compound_stmt, + STATE(1918), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46597] = 5, + [54782] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3342), 2, - sym_ident, - sym_const_ident, - STATE(1878), 3, + ACTIONS(3668), 1, + anon_sym_LPAREN, + STATE(108), 1, + sym_foreach_cond, + STATE(1919), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46616] = 5, + [54803] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2615), 2, - anon_sym_QMARK_COLON, - anon_sym_QMARK_QMARK, - STATE(1879), 3, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + ACTIONS(4345), 1, + anon_sym_LPAREN, + STATE(1920), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46635] = 6, + [54824] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2931), 1, + ACTIONS(3075), 1, anon_sym_LPAREN, - STATE(2168), 1, + STATE(2059), 1, sym_paren_expr, - STATE(1880), 3, + STATE(1921), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46656] = 5, + [54845] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1273), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(1881), 3, + ACTIONS(3055), 1, + anon_sym_LBRACE, + STATE(364), 1, + sym_switch_body, + STATE(1922), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46675] = 6, + [54866] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2881), 1, - anon_sym_EQ, - STATE(1623), 1, - sym__assign_right_expr, - STATE(1882), 3, + ACTIONS(3075), 1, + anon_sym_LPAREN, + STATE(2065), 1, + sym_paren_expr, + STATE(1923), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46696] = 6, + [54887] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2505), 1, + ACTIONS(2825), 1, anon_sym_LPAREN, - STATE(1201), 1, + STATE(1502), 1, sym_fn_parameter_list, - STATE(1883), 3, + STATE(1924), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46717] = 5, + [54908] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4147), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(1884), 3, + ACTIONS(4347), 1, + anon_sym_LPAREN, + ACTIONS(4349), 1, + anon_sym_LBRACK, + STATE(1925), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46736] = 6, + [54929] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3259), 1, - anon_sym_LBRACE, - STATE(662), 1, - sym_switch_body, - STATE(1885), 3, + ACTIONS(3588), 1, + anon_sym_LPAREN, + STATE(109), 1, + sym_paren_cond, + STATE(1926), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46757] = 5, + [54950] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2673), 2, - sym_ident, - sym_ct_ident, - STATE(1886), 3, + ACTIONS(4351), 1, + anon_sym_COMMA, + ACTIONS(4353), 1, + anon_sym_COLON, + STATE(1927), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46776] = 5, + [54971] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3358), 2, - sym_ident, - sym_const_ident, - STATE(1887), 3, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(1817), 1, + sym_compound_stmt, + STATE(1928), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46795] = 6, + [54992] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, + ACTIONS(4355), 1, anon_sym_LPAREN, - STATE(87), 1, - sym_paren_cond, - STATE(1888), 3, + ACTIONS(4357), 1, + anon_sym_LBRACK, + STATE(1929), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46816] = 6, + [55013] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2969), 1, + ACTIONS(3053), 1, anon_sym_LBRACE, - STATE(1090), 1, - sym_struct_body, - STATE(1889), 3, + STATE(692), 1, + sym_switch_body, + STATE(1930), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46837] = 5, + [55034] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3843), 2, + ACTIONS(4359), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1890), 3, + STATE(1931), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46856] = 6, + [55053] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3190), 1, + ACTIONS(4361), 1, anon_sym_SEMI, - ACTIONS(4149), 1, - sym_at_ident, - STATE(1891), 3, + ACTIONS(4363), 1, + anon_sym_while, + STATE(1932), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46877] = 6, + [55074] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4151), 1, - anon_sym_SEMI, - ACTIONS(4153), 1, - anon_sym_while, - STATE(1892), 3, + ACTIONS(4365), 2, + sym_ident, + sym_ct_ident, + STATE(1933), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46898] = 5, + [55093] = 6, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3848), 2, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - STATE(1893), 3, + ACTIONS(4367), 1, + anon_sym_SEMI, + ACTIONS(4369), 1, + anon_sym_while, + STATE(1934), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46917] = 6, + [55114] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3172), 1, + ACTIONS(3646), 1, anon_sym_SEMI, - ACTIONS(4155), 1, - sym_at_ident, - STATE(1894), 3, + STATE(1935), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46938] = 6, + [55132] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4157), 1, + ACTIONS(4371), 1, anon_sym_DOLLARendif, - ACTIONS(4159), 1, - anon_sym_DOLLARelse, - STATE(1895), 3, + STATE(1936), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46959] = 5, + [55150] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4161), 2, - anon_sym_COMMA, - anon_sym_GT_RPAREN, - STATE(1896), 3, + ACTIONS(4373), 1, + anon_sym_COLON, + STATE(1937), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46978] = 6, + [55168] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4163), 1, + ACTIONS(4375), 1, anon_sym_SEMI, - ACTIONS(4165), 1, - anon_sym_while, - STATE(1897), 3, + STATE(1938), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [46999] = 5, + [55186] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4167), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1898), 3, + ACTIONS(4377), 1, + anon_sym_SEMI, + STATE(1939), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47018] = 6, + [55204] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3170), 1, - anon_sym_LBRACE, - STATE(464), 1, - sym_switch_body, - STATE(1899), 3, + ACTIONS(4379), 1, + anon_sym_SEMI, + STATE(1940), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47039] = 5, + [55222] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3862), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1900), 3, + ACTIONS(3572), 1, + anon_sym_SEMI, + STATE(1941), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47058] = 5, + [55240] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3920), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1901), 3, + ACTIONS(4381), 1, + anon_sym_RPAREN, + STATE(1942), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47077] = 6, + [55258] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3259), 1, - anon_sym_LBRACE, - STATE(637), 1, - sym_switch_body, - STATE(1902), 3, + ACTIONS(4383), 1, + anon_sym_SEMI, + STATE(1943), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47098] = 6, + [55276] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4169), 1, + ACTIONS(4385), 1, anon_sym_SEMI, - ACTIONS(4171), 1, - anon_sym_while, - STATE(1903), 3, + STATE(1944), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47119] = 6, + [55294] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - anon_sym_LBRACE, - STATE(866), 1, - sym_interface_body, - STATE(1904), 3, + ACTIONS(2039), 1, + anon_sym_COLON_COLON, + STATE(1945), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47140] = 6, + [55312] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3192), 1, + ACTIONS(4387), 1, anon_sym_SEMI, - ACTIONS(4175), 1, - sym_at_ident, - STATE(1905), 3, + STATE(1946), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47161] = 6, + [55330] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4065), 1, - sym_const_ident, - ACTIONS(4177), 1, - anon_sym_RBRACE, - STATE(1906), 3, + ACTIONS(4389), 1, + anon_sym_SEMI, + STATE(1947), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47182] = 6, + [55348] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4179), 1, + ACTIONS(4391), 1, anon_sym_SEMI, - ACTIONS(4181), 1, - anon_sym_while, - STATE(1907), 3, + STATE(1948), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47203] = 5, + [55366] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4183), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1908), 3, + ACTIONS(4181), 1, + anon_sym_LPAREN, + STATE(1949), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47222] = 5, + [55384] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1909), 3, + ACTIONS(4393), 1, + anon_sym_SEMI, + STATE(1950), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47241] = 5, + [55402] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4185), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1910), 3, + ACTIONS(4395), 1, + anon_sym_RPAREN, + STATE(1951), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47260] = 6, + [55420] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4187), 1, - anon_sym_DOLLARendif, - ACTIONS(4189), 1, - anon_sym_DOLLARelse, - STATE(1911), 3, + ACTIONS(4397), 1, + anon_sym_RPAREN, + STATE(1952), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47281] = 6, + [55438] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3170), 1, - anon_sym_LBRACE, - STATE(468), 1, - sym_switch_body, - STATE(1912), 3, + ACTIONS(3612), 1, + anon_sym_SEMI, + STATE(1953), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47302] = 6, + [55456] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2993), 1, - anon_sym_LBRACE, - STATE(870), 1, - sym_bitstruct_body, - STATE(1913), 3, + ACTIONS(4399), 1, + anon_sym_DOT, + STATE(1954), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47323] = 5, + [55474] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4191), 2, + ACTIONS(4401), 1, anon_sym_RPAREN, - anon_sym_SEMI, - STATE(1914), 3, + STATE(1955), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47342] = 5, + [55492] = 5, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3406), 1, - aux_sym_line_comment_token1, - ACTIONS(3408), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(4193), 2, - sym_escape_sequence, - aux_sym_char_literal_token1, - STATE(1915), 3, + ACTIONS(4403), 1, + anon_sym_SEMI, + STATE(1956), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47361] = 6, + [55510] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2158), 1, - anon_sym_COLON_COLON, - ACTIONS(4195), 1, - anon_sym_LPAREN, - STATE(1916), 3, + ACTIONS(4405), 1, + anon_sym_BQUOTE, + STATE(1957), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47382] = 6, + [55528] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_LBRACE, - STATE(1087), 1, - sym_bitstruct_body, - STATE(1917), 3, + ACTIONS(2803), 1, + anon_sym_RPAREN, + STATE(1958), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47403] = 6, + [55546] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4197), 1, - anon_sym_LPAREN, - STATE(1209), 1, - sym_macro_parameter_list, - STATE(1918), 3, + ACTIONS(4407), 1, + anon_sym_SEMI, + STATE(1959), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47424] = 6, + [55564] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, - anon_sym_LPAREN, - STATE(93), 1, - sym_paren_cond, - STATE(1919), 3, + ACTIONS(4409), 1, + anon_sym_SEMI, + STATE(1960), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47445] = 5, + [55582] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4199), 1, + ACTIONS(4411), 1, anon_sym_SEMI, - STATE(1920), 3, + STATE(1961), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47463] = 5, + [55600] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4201), 1, - anon_sym_DOLLARendif, - STATE(1921), 3, + ACTIONS(4413), 1, + ts_builtin_sym_end, + STATE(1962), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47481] = 5, + [55618] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_EQ, - STATE(1922), 3, + ACTIONS(4415), 1, + anon_sym_SEMI, + STATE(1963), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47499] = 5, + [55636] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1687), 1, - anon_sym_LBRACE, - STATE(1923), 3, + ACTIONS(4417), 1, + anon_sym_RPAREN, + STATE(1964), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47517] = 5, + [55654] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4205), 1, + ACTIONS(1237), 1, anon_sym_RPAREN, - STATE(1924), 3, + STATE(1965), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47535] = 5, + [55672] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2811), 1, + ACTIONS(4419), 1, anon_sym_SEMI, - STATE(1925), 3, + STATE(1966), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47553] = 5, + [55690] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4207), 1, - anon_sym_DOLLARendfor, - STATE(1926), 3, + ACTIONS(4421), 1, + anon_sym_SEMI, + STATE(1967), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47571] = 5, + [55708] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4209), 1, - anon_sym_DOLLARendforeach, - STATE(1927), 3, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1968), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47589] = 5, + [55726] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4211), 1, - anon_sym_SEMI, - STATE(1928), 3, + ACTIONS(4425), 1, + sym_integer_literal, + STATE(1969), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47607] = 5, + [55744] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4213), 1, + ACTIONS(4427), 1, anon_sym_SEMI, - STATE(1929), 3, + STATE(1970), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47625] = 5, + [55762] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2799), 1, - anon_sym_SEMI, - STATE(1930), 3, + ACTIONS(4429), 1, + anon_sym_RPAREN, + STATE(1971), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47643] = 5, + [55780] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4215), 1, - anon_sym_SEMI, - STATE(1931), 3, + ACTIONS(4431), 1, + anon_sym_LPAREN, + STATE(1972), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47661] = 5, + [55798] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4217), 1, - anon_sym_RPAREN, - STATE(1932), 3, + ACTIONS(4433), 1, + sym_integer_literal, + STATE(1973), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47679] = 5, + [55816] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4219), 1, - anon_sym_SEMI, - STATE(1933), 3, + ACTIONS(4435), 1, + anon_sym_GT_RPAREN, + STATE(1974), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47697] = 5, + [55834] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4221), 1, - anon_sym_RPAREN, - STATE(1934), 3, + ACTIONS(4437), 1, + anon_sym_DOLLARendfor, + STATE(1975), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47715] = 5, + [55852] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4223), 1, - anon_sym_DOLLARendif, - STATE(1935), 3, + ACTIONS(4439), 1, + anon_sym_DOLLARendforeach, + STATE(1976), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47733] = 5, + [55870] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4225), 1, - anon_sym_RBRACE, - STATE(1936), 3, + ACTIONS(4441), 1, + anon_sym_SEMI, + STATE(1977), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47751] = 5, + [55888] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4227), 1, + ACTIONS(4443), 1, anon_sym_SEMI, - STATE(1937), 3, + STATE(1978), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47769] = 5, + [55906] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4229), 1, + ACTIONS(3628), 1, anon_sym_SEMI, - STATE(1938), 3, + STATE(1979), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47787] = 5, + [55924] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4231), 1, - anon_sym_SEMI, - STATE(1939), 3, + ACTIONS(4445), 1, + sym_integer_literal, + STATE(1980), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47805] = 5, + [55942] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, - anon_sym_DOLLARendif, - STATE(1940), 3, + ACTIONS(4447), 1, + anon_sym_SEMI, + STATE(1981), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47823] = 5, + [55960] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4235), 1, - anon_sym_RPAREN, - STATE(1941), 3, + ACTIONS(4449), 1, + anon_sym_SEMI, + STATE(1982), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47841] = 5, + [55978] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4237), 1, - anon_sym_RPAREN, - STATE(1942), 3, + ACTIONS(4451), 1, + anon_sym_SEMI, + STATE(1983), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47859] = 5, + [55996] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4239), 1, - anon_sym_RPAREN, - STATE(1943), 3, + ACTIONS(4453), 1, + anon_sym_SEMI, + STATE(1984), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47877] = 5, + [56014] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4241), 1, + ACTIONS(3664), 1, anon_sym_SEMI, - STATE(1944), 3, + STATE(1985), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47895] = 5, + [56032] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4243), 1, + ACTIONS(4455), 1, anon_sym_SEMI, - STATE(1945), 3, + STATE(1986), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47913] = 5, + [56050] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4245), 1, + ACTIONS(4457), 1, anon_sym_DOLLARendif, - STATE(1946), 3, + STATE(1987), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47931] = 5, + [56068] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4247), 1, - anon_sym_RPAREN, - STATE(1947), 3, + ACTIONS(4459), 1, + anon_sym_SEMI, + STATE(1988), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47949] = 5, + [56086] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4249), 1, - sym_ident, - STATE(1948), 3, + ACTIONS(4461), 1, + anon_sym_SEMI, + STATE(1989), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47967] = 5, + [56104] = 5, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3406), 1, - aux_sym_line_comment_token1, - ACTIONS(3408), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(4251), 1, - aux_sym_raw_string_literal_token1, - STATE(1949), 3, + ACTIONS(4463), 1, + anon_sym_SEMI, + STATE(1990), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [47985] = 5, + [56122] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4253), 1, + ACTIONS(4465), 1, anon_sym_SEMI, - STATE(1950), 3, + STATE(1991), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48003] = 5, + [56140] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4255), 1, - anon_sym_SEMI, - STATE(1951), 3, + ACTIONS(4467), 1, + anon_sym_DOLLARendif, + STATE(1992), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48021] = 5, + [56158] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4257), 1, - anon_sym_RPAREN, - STATE(1952), 3, + ACTIONS(4469), 1, + anon_sym_SEMI, + STATE(1993), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48039] = 5, + [56176] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4259), 1, + ACTIONS(3610), 1, anon_sym_SEMI, - STATE(1953), 3, + STATE(1994), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48057] = 5, + [56194] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4261), 1, - anon_sym_RPAREN, - STATE(1954), 3, + ACTIONS(4471), 1, + anon_sym_SEMI, + STATE(1995), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48075] = 5, + [56212] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4263), 1, + ACTIONS(4473), 1, anon_sym_SEMI, - STATE(1955), 3, + STATE(1996), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48093] = 5, + [56230] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4265), 1, + ACTIONS(4475), 1, anon_sym_SEMI, - STATE(1956), 3, + STATE(1997), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48111] = 5, + [56248] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4267), 1, - anon_sym_LPAREN, - STATE(1957), 3, + ACTIONS(4477), 1, + anon_sym_COLON, + STATE(1998), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48129] = 5, + [56266] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4269), 1, - anon_sym_DOT, - STATE(1958), 3, + ACTIONS(3229), 1, + sym_integer_literal, + STATE(1999), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48147] = 5, + [56284] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4271), 1, + ACTIONS(4479), 1, + anon_sym_RBRACK, + STATE(2000), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [56302] = 5, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(4481), 1, anon_sym_SEMI, - STATE(1959), 3, + STATE(2001), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48165] = 5, + [56320] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4273), 1, + ACTIONS(4483), 1, anon_sym_SEMI, - STATE(1960), 3, + STATE(2002), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48183] = 5, + [56338] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2809), 1, + ACTIONS(4485), 1, anon_sym_SEMI, - STATE(1961), 3, + STATE(2003), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48201] = 5, + [56356] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4275), 1, + ACTIONS(4487), 1, sym_integer_literal, - STATE(1962), 3, + STATE(2004), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48219] = 5, + [56374] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4277), 1, - anon_sym_LPAREN, - STATE(1963), 3, + ACTIONS(4489), 1, + anon_sym_RPAREN, + STATE(2005), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48237] = 5, + [56392] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4195), 1, - anon_sym_LPAREN, - STATE(1964), 3, + ACTIONS(4491), 1, + anon_sym_SEMI, + STATE(2006), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48255] = 5, + [56410] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4279), 1, - anon_sym_SEMI, - STATE(1965), 3, + ACTIONS(4493), 1, + anon_sym_RBRACK, + STATE(2007), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48273] = 5, + [56428] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4281), 1, - sym_ident, - STATE(1966), 3, + ACTIONS(4495), 1, + anon_sym_SEMI, + STATE(2008), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48291] = 5, + [56446] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4283), 1, + ACTIONS(4497), 1, anon_sym_SEMI, - STATE(1967), 3, + STATE(2009), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48309] = 5, + [56464] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4285), 1, - sym_integer_literal, - STATE(1968), 3, + ACTIONS(4499), 1, + anon_sym_SEMI, + STATE(2010), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48327] = 5, + [56482] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4287), 1, + ACTIONS(4501), 1, anon_sym_SEMI, - STATE(1969), 3, + STATE(2011), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48345] = 5, + [56500] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2725), 1, - anon_sym_COLON, - STATE(1970), 3, + ACTIONS(4345), 1, + anon_sym_LPAREN, + STATE(2012), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48363] = 5, + [56518] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4289), 1, - anon_sym_SEMI, - STATE(1971), 3, + ACTIONS(4503), 1, + sym_block_comment_text, + STATE(2013), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48381] = 5, + [56536] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4291), 1, - sym_integer_literal, - STATE(1972), 3, + ACTIONS(4505), 1, + anon_sym_SEMI, + STATE(2014), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48399] = 5, + [56554] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4293), 1, + ACTIONS(4507), 1, anon_sym_SEMI, - STATE(1973), 3, + STATE(2015), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48417] = 5, + [56572] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4295), 1, - anon_sym_RBRACE, - STATE(1974), 3, + ACTIONS(4509), 1, + anon_sym_DOT, + STATE(2016), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48435] = 5, + [56590] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4297), 1, + ACTIONS(4511), 1, anon_sym_SEMI, - STATE(1975), 3, + STATE(2017), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48453] = 5, + [56608] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4299), 1, - sym_const_ident, - STATE(1976), 3, + ACTIONS(4513), 1, + anon_sym_COLON, + STATE(2018), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48471] = 5, + [56626] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3031), 1, - anon_sym_SEMI, - STATE(1977), 3, + ACTIONS(4515), 1, + anon_sym_RPAREN, + STATE(2019), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48489] = 5, + [56644] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4301), 1, - anon_sym_LBRACE, - STATE(1978), 3, + ACTIONS(3163), 1, + anon_sym_RBRACE, + STATE(2020), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48507] = 5, + [56662] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4303), 1, - anon_sym_STAR_SLASH, - STATE(1979), 3, + ACTIONS(4517), 1, + anon_sym_LPAREN, + STATE(2021), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48525] = 5, + [56680] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4305), 1, - anon_sym_SEMI, - STATE(1980), 3, + ACTIONS(4519), 1, + anon_sym_EQ, + STATE(2022), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48543] = 5, + [56698] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4307), 1, - anon_sym_SEMI, - STATE(1981), 3, + ACTIONS(4231), 1, + sym_ident, + STATE(2023), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48561] = 5, + [56716] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4309), 1, + ACTIONS(4521), 1, anon_sym_EQ, - STATE(1982), 3, + STATE(2024), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48579] = 5, + [56734] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4311), 1, - anon_sym_EQ, - STATE(1983), 3, + ACTIONS(4523), 1, + anon_sym_SEMI, + STATE(2025), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48597] = 5, + [56752] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4313), 1, - anon_sym_LPAREN, - STATE(1984), 3, + ACTIONS(4525), 1, + anon_sym_SEMI, + STATE(2026), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48615] = 5, + [56770] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4315), 1, - anon_sym_DOLLARendfor, - STATE(1985), 3, + ACTIONS(4527), 1, + anon_sym_SEMI, + STATE(2027), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48633] = 5, + [56788] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4317), 1, - anon_sym_DOLLARendforeach, - STATE(1986), 3, + ACTIONS(4529), 1, + anon_sym_SEMI, + STATE(2028), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48651] = 5, + [56806] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4319), 1, - anon_sym_SEMI, - STATE(1987), 3, + ACTIONS(4531), 1, + anon_sym_RPAREN, + STATE(2029), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48669] = 5, + [56824] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4321), 1, + ACTIONS(4533), 1, anon_sym_SEMI, - STATE(1988), 3, + STATE(2030), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48687] = 5, + [56842] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2781), 1, + ACTIONS(4535), 1, anon_sym_SEMI, - STATE(1989), 3, + STATE(2031), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48705] = 5, + [56860] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4323), 1, - anon_sym_DOLLARendif, - STATE(1990), 3, + ACTIONS(4537), 1, + anon_sym_EQ, + STATE(2032), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48723] = 5, + [56878] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4325), 1, - anon_sym_LPAREN, - STATE(1991), 3, + ACTIONS(4539), 1, + anon_sym_SEMI, + STATE(2033), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48741] = 5, + [56896] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, - anon_sym_LPAREN, - STATE(1992), 3, + ACTIONS(4541), 1, + sym_type_ident, + STATE(2034), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48759] = 5, + [56914] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4329), 1, + ACTIONS(4543), 1, anon_sym_SEMI, - STATE(1993), 3, + STATE(2035), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48777] = 5, + [56932] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4331), 1, - anon_sym_RBRACK, - STATE(1994), 3, + ACTIONS(4545), 1, + anon_sym_SEMI, + STATE(2036), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48795] = 5, + [56950] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4333), 1, - anon_sym_RPAREN, - STATE(1995), 3, + ACTIONS(4547), 1, + anon_sym_SEMI, + STATE(2037), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48813] = 5, + [56968] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4335), 1, - anon_sym_DOLLARendif, - STATE(1996), 3, + ACTIONS(4549), 1, + anon_sym_SEMI, + STATE(2038), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48831] = 5, + [56986] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4337), 1, - anon_sym_LPAREN, - STATE(1997), 3, + ACTIONS(4551), 1, + anon_sym_SEMI, + STATE(2039), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48849] = 5, + [57004] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4339), 1, + ACTIONS(4553), 1, anon_sym_SEMI, - STATE(1998), 3, + STATE(2040), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48867] = 5, + [57022] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2817), 1, + ACTIONS(4555), 1, anon_sym_SEMI, - STATE(1999), 3, + STATE(2041), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48885] = 5, + [57040] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4341), 1, + ACTIONS(4557), 1, anon_sym_SEMI, - STATE(2000), 3, + STATE(2042), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48903] = 5, + [57058] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4343), 1, - anon_sym_DOLLARendif, - STATE(2001), 3, + ACTIONS(4559), 1, + anon_sym_SEMI, + STATE(2043), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48921] = 5, + [57076] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4345), 1, + ACTIONS(4561), 1, anon_sym_SEMI, - STATE(2002), 3, + STATE(2044), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48939] = 5, + [57094] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - STATE(2003), 3, + ACTIONS(4563), 1, + anon_sym_COLON, + STATE(2045), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48957] = 5, + [57112] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4349), 1, - anon_sym_LBRACE, - STATE(2004), 3, + ACTIONS(4565), 1, + anon_sym_RPAREN, + STATE(2046), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48975] = 5, + [57130] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4351), 1, - sym_integer_literal, - STATE(2005), 3, + ACTIONS(3698), 1, + anon_sym_COLON, + STATE(2047), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [48993] = 5, + [57148] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_SEMI, - STATE(2006), 3, + ACTIONS(4567), 1, + anon_sym_LBRACE, + STATE(2048), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49011] = 5, + [57166] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4355), 1, + ACTIONS(4569), 1, anon_sym_RBRACK, - STATE(2007), 3, + STATE(2049), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49029] = 5, + [57184] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4357), 1, - anon_sym_COLON, - STATE(2008), 3, + ACTIONS(4571), 1, + anon_sym_DOLLARendfor, + STATE(2050), 3, + sym_line_comment, + sym_doc_comment, + sym_block_comment, + [57202] = 5, + ACTIONS(3), 1, + aux_sym_line_comment_token1, + ACTIONS(5), 1, + anon_sym_LT_STAR, + ACTIONS(7), 1, + anon_sym_SLASH_STAR, + ACTIONS(4573), 1, + anon_sym_DOLLARendforeach, + STATE(2051), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49047] = 5, + [57220] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4359), 1, + ACTIONS(4575), 1, anon_sym_SEMI, - STATE(2009), 3, + STATE(2052), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49065] = 5, + [57238] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4361), 1, + ACTIONS(4577), 1, anon_sym_SEMI, - STATE(2010), 3, + STATE(2053), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49083] = 5, + [57256] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4363), 1, + ACTIONS(3674), 1, anon_sym_SEMI, - STATE(2011), 3, + STATE(2054), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49101] = 5, + [57274] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4365), 1, - anon_sym_EQ, - STATE(2012), 3, + ACTIONS(4579), 1, + anon_sym_SEMI, + STATE(2055), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49119] = 5, + [57292] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4367), 1, - anon_sym_EQ, - STATE(2013), 3, + ACTIONS(4581), 1, + sym_ident, + STATE(2056), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49137] = 5, + [57310] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4369), 1, - anon_sym_LPAREN, - STATE(2014), 3, + ACTIONS(4583), 1, + anon_sym_SEMI, + STATE(2057), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49155] = 5, + [57328] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4371), 1, + ACTIONS(3407), 1, anon_sym_SEMI, - STATE(2015), 3, + STATE(2058), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49173] = 5, + [57346] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4373), 1, + ACTIONS(4585), 1, anon_sym_SEMI, - STATE(2016), 3, + STATE(2059), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49191] = 5, + [57364] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4375), 1, - anon_sym_EQ, - STATE(2017), 3, + ACTIONS(4587), 1, + anon_sym_SEMI, + STATE(2060), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49209] = 5, + [57382] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4377), 1, - anon_sym_LPAREN, - STATE(2018), 3, + ACTIONS(4589), 1, + anon_sym_EQ, + STATE(2061), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49227] = 5, + [57400] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2801), 1, - anon_sym_RPAREN, - STATE(2019), 3, + ACTIONS(4591), 1, + anon_sym_DOLLARendif, + STATE(2062), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49245] = 5, + [57418] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4379), 1, + ACTIONS(4593), 1, anon_sym_SEMI, - STATE(2020), 3, + STATE(2063), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49263] = 5, + [57436] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4381), 1, - sym_const_ident, - STATE(2021), 3, + ACTIONS(4595), 1, + anon_sym_SEMI, + STATE(2064), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49281] = 5, + [57454] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4383), 1, + ACTIONS(4597), 1, anon_sym_SEMI, - STATE(2022), 3, + STATE(2065), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49299] = 5, + [57472] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4385), 1, - sym_ident, - STATE(2023), 3, + ACTIONS(4599), 1, + anon_sym_SEMI, + STATE(2066), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49317] = 5, + [57490] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1219), 1, - anon_sym_RPAREN, - STATE(2024), 3, + ACTIONS(4601), 1, + anon_sym_DOLLARendif, + STATE(2067), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49335] = 5, + [57508] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2821), 1, - anon_sym_SEMI, - STATE(2025), 3, + ACTIONS(4603), 1, + anon_sym_DOLLARendfor, + STATE(2068), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49353] = 5, + [57526] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2497), 1, - anon_sym_SEMI, - STATE(2026), 3, + ACTIONS(4605), 1, + anon_sym_DOLLARendforeach, + STATE(2069), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49371] = 5, + [57544] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4387), 1, + ACTIONS(4607), 1, anon_sym_SEMI, - STATE(2027), 3, + STATE(2070), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49389] = 5, + [57562] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2737), 1, + ACTIONS(4609), 1, anon_sym_SEMI, - STATE(2028), 3, + STATE(2071), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49407] = 5, + [57580] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4389), 1, + ACTIONS(4611), 1, anon_sym_SEMI, - STATE(2029), 3, + STATE(2072), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49425] = 5, + [57598] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4391), 1, + ACTIONS(4613), 1, anon_sym_SEMI, - STATE(2030), 3, + STATE(2073), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49443] = 5, + [57616] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4393), 1, + ACTIONS(4615), 1, anon_sym_EQ, - STATE(2031), 3, + STATE(2074), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49461] = 5, + [57634] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4395), 1, - anon_sym_LBRACE, - STATE(2032), 3, + ACTIONS(4617), 1, + anon_sym_SEMI, + STATE(2075), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49479] = 5, + [57652] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4397), 1, + ACTIONS(4619), 1, anon_sym_SEMI, - STATE(2033), 3, + STATE(2076), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49497] = 5, + [57670] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4399), 1, - anon_sym_RPAREN, - STATE(2034), 3, + ACTIONS(4621), 1, + anon_sym_SEMI, + STATE(2077), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49515] = 5, + [57688] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4401), 1, + ACTIONS(3680), 1, anon_sym_SEMI, - STATE(2035), 3, + STATE(2078), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49533] = 5, + [57706] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4403), 1, + ACTIONS(4623), 1, anon_sym_SEMI, - STATE(2036), 3, + STATE(2079), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49551] = 5, + [57724] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4405), 1, + ACTIONS(4625), 1, anon_sym_SEMI, - STATE(2037), 3, + STATE(2080), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49569] = 5, + [57742] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(4627), 1, anon_sym_SEMI, - STATE(2038), 3, + STATE(2081), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49587] = 5, + [57760] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4409), 1, - anon_sym_DOLLARendforeach, - STATE(2039), 3, + ACTIONS(4629), 1, + anon_sym_COLON, + STATE(2082), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49605] = 5, + [57778] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4411), 1, - anon_sym_RPAREN, - STATE(2040), 3, + ACTIONS(4631), 1, + anon_sym_GT_RPAREN, + STATE(2083), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49623] = 5, + [57796] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4413), 1, - anon_sym_SEMI, - STATE(2041), 3, + ACTIONS(4633), 1, + anon_sym_LPAREN, + STATE(2084), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49641] = 5, + [57814] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2771), 1, - anon_sym_SEMI, - STATE(2042), 3, + ACTIONS(4635), 1, + anon_sym_RPAREN, + STATE(2085), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49659] = 5, + [57832] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4415), 1, - anon_sym_SEMI, - STATE(2043), 3, + ACTIONS(4637), 1, + sym_type_ident, + STATE(2086), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49677] = 5, + [57850] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4417), 1, - anon_sym_DOLLARendfor, - STATE(2044), 3, + ACTIONS(4639), 1, + sym_const_ident, + STATE(2087), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49695] = 5, + [57868] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4419), 1, - anon_sym_COLON, - STATE(2045), 3, + ACTIONS(4641), 1, + anon_sym_SEMI, + STATE(2088), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49713] = 5, + [57886] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4421), 1, + ACTIONS(2770), 1, anon_sym_SEMI, - STATE(2046), 3, + STATE(2089), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49731] = 5, + [57904] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3071), 1, - sym_integer_literal, - STATE(2047), 3, + ACTIONS(4643), 1, + anon_sym_SEMI, + STATE(2090), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49749] = 5, + [57922] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4423), 1, + ACTIONS(4645), 1, anon_sym_SEMI, - STATE(2048), 3, + STATE(2091), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49767] = 5, + [57940] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4425), 1, + ACTIONS(4647), 1, sym_ident, - STATE(2049), 3, + STATE(2092), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49785] = 5, + [57958] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4427), 1, - sym_ident, - STATE(2050), 3, + ACTIONS(4649), 1, + anon_sym_SEMI, + STATE(2093), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49803] = 5, + [57976] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4429), 1, - anon_sym_SEMI, - STATE(2051), 3, + ACTIONS(4651), 1, + sym_ident, + STATE(2094), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49821] = 5, + [57994] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4431), 1, + ACTIONS(4653), 1, anon_sym_SEMI, - STATE(2052), 3, + STATE(2095), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49839] = 5, + [58012] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4433), 1, - anon_sym_LBRACE, - STATE(2053), 3, + ACTIONS(4655), 1, + anon_sym_DOLLARendif, + STATE(2096), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49857] = 5, + [58030] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4435), 1, - anon_sym_QMARK, - STATE(2054), 3, + ACTIONS(4657), 1, + anon_sym_SEMI, + STATE(2097), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49875] = 5, + [58048] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4437), 1, - anon_sym_SEMI, - STATE(2055), 3, + ACTIONS(4659), 1, + anon_sym_EQ, + STATE(2098), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49893] = 5, + [58066] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4439), 1, - anon_sym_DOLLARendforeach, - STATE(2056), 3, + ACTIONS(4661), 1, + anon_sym_SEMI, + STATE(2099), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49911] = 5, + [58084] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4441), 1, - anon_sym_SEMI, - STATE(2057), 3, + ACTIONS(4663), 1, + anon_sym_LPAREN, + STATE(2100), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49929] = 5, + [58102] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_DOLLARendif, - STATE(2058), 3, + ACTIONS(4665), 1, + sym_ident, + STATE(2101), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49947] = 5, + [58120] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, + ACTIONS(4667), 1, anon_sym_SEMI, - STATE(2059), 3, + STATE(2102), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49965] = 5, + [58138] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4447), 1, + ACTIONS(4669), 1, anon_sym_SEMI, - STATE(2060), 3, + STATE(2103), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [49983] = 5, + [58156] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_DOLLARendfor, - STATE(2061), 3, + ACTIONS(4671), 1, + anon_sym_DOLLARendif, + STATE(2104), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50001] = 5, + [58174] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4451), 1, - sym_ident, - STATE(2062), 3, + ACTIONS(4673), 1, + anon_sym_SEMI, + STATE(2105), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50019] = 5, + [58192] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3015), 1, + ACTIONS(3169), 1, anon_sym_EQ, - STATE(2063), 3, + STATE(2106), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50037] = 5, + [58210] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4453), 1, + ACTIONS(4675), 1, anon_sym_SEMI, - STATE(2064), 3, + STATE(2107), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50055] = 5, + [58228] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4455), 1, - anon_sym_RPAREN, - STATE(2065), 3, + ACTIONS(4677), 1, + anon_sym_LBRACE, + STATE(2108), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50073] = 5, + [58246] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4457), 1, - sym_ct_ident, - STATE(2066), 3, + ACTIONS(4679), 1, + sym_const_ident, + STATE(2109), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50091] = 5, + [58264] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4459), 1, + ACTIONS(4681), 1, anon_sym_EQ, - STATE(2067), 3, + STATE(2110), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50109] = 5, + [58282] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4461), 1, - anon_sym_DOLLARendif, - STATE(2068), 3, + ACTIONS(4683), 1, + anon_sym_SEMI, + STATE(2111), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50127] = 5, + [58300] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(3187), 1, anon_sym_SEMI, - STATE(2069), 3, + STATE(2112), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50145] = 5, + [58318] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4115), 1, - sym_ident, - STATE(2070), 3, + ACTIONS(4685), 1, + anon_sym_SEMI, + STATE(2113), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50163] = 5, + [58336] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2854), 1, - sym_ident, - STATE(2071), 3, + ACTIONS(4687), 1, + anon_sym_RPAREN, + STATE(2114), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50181] = 5, + [58354] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4465), 1, + ACTIONS(4689), 1, anon_sym_SEMI, - STATE(2072), 3, + STATE(2115), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50199] = 5, + [58372] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4467), 1, + ACTIONS(4691), 1, anon_sym_SEMI, - STATE(2073), 3, + STATE(2116), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50217] = 5, + [58390] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4469), 1, + ACTIONS(4693), 1, anon_sym_SEMI, - STATE(2074), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [50235] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(4471), 1, - anon_sym_EQ, - STATE(2075), 3, + STATE(2117), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50253] = 5, + [58408] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4473), 1, - anon_sym_EQ, - STATE(2076), 3, + ACTIONS(4695), 1, + anon_sym_COLON, + STATE(2118), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50271] = 5, + [58426] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4475), 1, + ACTIONS(4697), 1, anon_sym_SEMI, - STATE(2077), 3, + STATE(2119), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50289] = 5, + [58444] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4477), 1, - anon_sym_SEMI, - STATE(2078), 3, + ACTIONS(4699), 1, + sym_at_ident, + STATE(2120), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50307] = 5, + [58462] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4479), 1, - anon_sym_SEMI, - STATE(2079), 3, + ACTIONS(4277), 1, + anon_sym_LPAREN, + STATE(2121), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50325] = 5, + [58480] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4481), 1, - anon_sym_SEMI, - STATE(2080), 3, + ACTIONS(4027), 1, + anon_sym_RBRACK, + STATE(2122), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50343] = 5, + [58498] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4483), 1, - anon_sym_SEMI, - STATE(2081), 3, + ACTIONS(4701), 1, + anon_sym_EQ, + STATE(2123), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50361] = 5, + [58516] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4485), 1, - anon_sym_GT_RPAREN, - STATE(2082), 3, + ACTIONS(4703), 1, + anon_sym_DOLLARendforeach, + STATE(2124), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50379] = 5, + [58534] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4487), 1, + ACTIONS(4705), 1, sym_const_ident, - STATE(2083), 3, + STATE(2125), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50397] = 5, + [58552] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4489), 1, - sym_ident, - STATE(2084), 3, + ACTIONS(4707), 1, + anon_sym_LPAREN, + STATE(2126), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50415] = 5, + [58570] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4491), 1, - anon_sym_LBRACE, - STATE(2085), 3, + ACTIONS(4709), 1, + anon_sym_DOLLARendfor, + STATE(2127), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50433] = 5, + [58588] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4493), 1, + ACTIONS(4711), 1, anon_sym_SEMI, - STATE(2086), 3, + STATE(2128), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50451] = 5, + [58606] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4495), 1, + ACTIONS(4713), 1, anon_sym_SEMI, - STATE(2087), 3, + STATE(2129), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50469] = 5, + [58624] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - sym_ct_ident, - STATE(2088), 3, + ACTIONS(3749), 1, + anon_sym_SEMI, + STATE(2130), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50487] = 5, + [58642] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4499), 1, - anon_sym_GT_RPAREN, - STATE(2089), 3, + ACTIONS(4715), 1, + anon_sym_DOLLARendforeach, + STATE(2131), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50505] = 5, + [58660] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(1215), 1, - anon_sym_RPAREN, - STATE(2090), 3, + ACTIONS(4717), 1, + sym_type_ident, + STATE(2132), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50523] = 5, + [58678] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4501), 1, - anon_sym_COLON, - STATE(2091), 3, + ACTIONS(4719), 1, + sym_ident, + STATE(2133), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50541] = 5, + [58696] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(4721), 1, anon_sym_SEMI, - STATE(2092), 3, + STATE(2134), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50559] = 5, + [58714] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4505), 1, - anon_sym_COLON, - STATE(2093), 3, + ACTIONS(4723), 1, + anon_sym_RPAREN, + STATE(2135), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50577] = 5, + [58732] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4507), 1, + ACTIONS(4725), 1, anon_sym_SEMI, - STATE(2094), 3, + STATE(2136), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50595] = 5, + [58750] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2755), 1, + ACTIONS(4727), 1, anon_sym_SEMI, - STATE(2095), 3, + STATE(2137), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50613] = 5, + [58768] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_RPAREN, - STATE(2096), 3, + ACTIONS(4729), 1, + sym_ident, + STATE(2138), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50631] = 5, + [58786] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4511), 1, - anon_sym_SEMI, - STATE(2097), 3, + ACTIONS(4731), 1, + anon_sym_RPAREN, + STATE(2139), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50649] = 5, + [58804] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2158), 1, - anon_sym_COLON_COLON, - STATE(2098), 3, + ACTIONS(4733), 1, + anon_sym_RPAREN, + STATE(2140), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50667] = 5, + [58822] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4513), 1, + ACTIONS(4735), 1, anon_sym_SEMI, - STATE(2099), 3, + STATE(2141), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50685] = 5, + [58840] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4515), 1, + ACTIONS(4737), 1, anon_sym_SEMI, - STATE(2100), 3, + STATE(2142), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50703] = 5, + [58858] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOLLARendforeach, - STATE(2101), 3, + ACTIONS(4739), 1, + anon_sym_SEMI, + STATE(2143), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50721] = 5, + [58876] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4519), 1, - anon_sym_DOLLARendfor, - STATE(2102), 3, + ACTIONS(4741), 1, + sym_ident, + STATE(2144), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50739] = 5, + [58894] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4521), 1, + ACTIONS(4743), 1, anon_sym_LBRACE, - STATE(2103), 3, + STATE(2145), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50757] = 5, + [58912] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, - anon_sym_LPAREN, - STATE(2104), 3, + ACTIONS(4745), 1, + anon_sym_RPAREN, + STATE(2146), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50775] = 5, + [58930] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(4747), 1, anon_sym_SEMI, - STATE(2105), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [50793] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(4525), 1, - anon_sym_STAR_SLASH, - STATE(2106), 3, + STATE(2147), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50811] = 5, + [58948] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4527), 1, + ACTIONS(4749), 1, anon_sym_SEMI, - STATE(2107), 3, + STATE(2148), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50829] = 5, + [58966] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4529), 1, - anon_sym_EQ, - STATE(2108), 3, + ACTIONS(4751), 1, + anon_sym_SEMI, + STATE(2149), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50847] = 5, + [58984] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4531), 1, - anon_sym_COLON, - STATE(2109), 3, + ACTIONS(4753), 1, + anon_sym_RPAREN, + STATE(2150), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50865] = 5, + [59002] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4533), 1, - anon_sym_LBRACE, - STATE(2110), 3, + ACTIONS(3714), 1, + anon_sym_SEMI, + STATE(2151), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50883] = 5, + [59020] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4535), 1, - anon_sym_RPAREN, - STATE(2111), 3, + ACTIONS(4755), 1, + anon_sym_SEMI, + STATE(2152), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50901] = 5, + [59038] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4537), 1, - anon_sym_LPAREN, - STATE(2112), 3, + ACTIONS(4757), 1, + anon_sym_LBRACE, + STATE(2153), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50919] = 5, + [59056] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4539), 1, - anon_sym_SEMI, - STATE(2113), 3, + ACTIONS(4759), 1, + anon_sym_EQ, + STATE(2154), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50937] = 5, + [59074] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4541), 1, - anon_sym_SEMI, - STATE(2114), 3, + ACTIONS(4761), 1, + anon_sym_RPAREN, + STATE(2155), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50955] = 5, + [59092] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4543), 1, - sym_ident, - STATE(2115), 3, + ACTIONS(4763), 1, + anon_sym_COLON, + STATE(2156), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50973] = 5, + [59110] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4545), 1, + ACTIONS(4765), 1, sym_const_ident, - STATE(2116), 3, + STATE(2157), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [50991] = 5, + [59128] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4547), 1, - anon_sym_SEMI, - STATE(2117), 3, + ACTIONS(4767), 1, + anon_sym_DOLLARendif, + STATE(2158), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51009] = 5, + [59146] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4549), 1, - anon_sym_SEMI, - STATE(2118), 3, + ACTIONS(4769), 1, + anon_sym_LPAREN, + STATE(2159), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51027] = 5, + [59164] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4551), 1, - anon_sym_RBRACK, - STATE(2119), 3, + ACTIONS(4771), 1, + anon_sym_RBRACE, + STATE(2160), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51045] = 5, + [59182] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4553), 1, - sym_ident, - STATE(2120), 3, + ACTIONS(4773), 1, + anon_sym_SEMI, + STATE(2161), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51063] = 5, + [59200] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4555), 1, - sym_const_ident, - STATE(2121), 3, + ACTIONS(4775), 1, + anon_sym_LBRACE, + STATE(2162), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51081] = 5, + [59218] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4557), 1, - sym_ident, - STATE(2122), 3, + ACTIONS(4777), 1, + anon_sym_LPAREN, + STATE(2163), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51099] = 5, + [59236] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4559), 1, - anon_sym_SEMI, - STATE(2123), 3, + ACTIONS(4779), 1, + sym_ct_ident, + STATE(2164), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51117] = 5, + [59254] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4561), 1, + ACTIONS(3733), 1, anon_sym_SEMI, - STATE(2124), 3, + STATE(2165), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51135] = 5, + [59272] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4563), 1, - sym_ident, - STATE(2125), 3, + ACTIONS(4781), 1, + anon_sym_SEMI, + STATE(2166), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51153] = 5, + [59290] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, - anon_sym_RPAREN, - STATE(2126), 3, + ACTIONS(4783), 1, + anon_sym_COLON, + STATE(2167), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51171] = 5, + [59308] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4567), 1, - anon_sym_SEMI, - STATE(2127), 3, + ACTIONS(4785), 1, + sym_ct_ident, + STATE(2168), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51189] = 5, + [59326] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4569), 1, - anon_sym_RPAREN, - STATE(2128), 3, + ACTIONS(4787), 1, + sym_type_ident, + STATE(2169), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51207] = 5, + [59344] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4065), 1, - sym_const_ident, - STATE(2129), 3, + ACTIONS(4789), 1, + sym_ident, + STATE(2170), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51225] = 5, + [59362] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4571), 1, - anon_sym_SEMI, - STATE(2130), 3, + ACTIONS(4791), 1, + anon_sym_COLON_COLON, + STATE(2171), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51243] = 5, + [59380] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_SEMI, - STATE(2131), 3, + ACTIONS(4793), 1, + sym_ident, + STATE(2172), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51261] = 5, + [59398] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4573), 1, + ACTIONS(4795), 1, anon_sym_SEMI, - STATE(2132), 3, + STATE(2173), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51279] = 5, + [59416] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4575), 1, + ACTIONS(4797), 1, anon_sym_LBRACE, - STATE(2133), 3, + STATE(2174), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51297] = 5, + [59434] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2795), 1, + ACTIONS(4799), 1, anon_sym_SEMI, - STATE(2134), 3, + STATE(2175), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51315] = 5, + [59452] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4577), 1, - anon_sym_SEMI, - STATE(2135), 3, + ACTIONS(4801), 1, + anon_sym_EQ, + STATE(2176), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51333] = 5, + [59470] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4579), 1, - sym_type_ident, - STATE(2136), 3, + ACTIONS(4803), 1, + anon_sym_SEMI, + STATE(2177), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51351] = 5, + [59488] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4581), 1, + ACTIONS(4805), 1, anon_sym_SEMI, - STATE(2137), 3, + STATE(2178), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51369] = 5, + [59506] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4583), 1, - anon_sym_SEMI, - STATE(2138), 3, + ACTIONS(4807), 1, + anon_sym_RPAREN, + STATE(2179), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51387] = 5, + [59524] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4585), 1, + ACTIONS(4809), 1, anon_sym_SEMI, - STATE(2139), 3, + STATE(2180), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51405] = 5, + [59542] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4587), 1, - anon_sym_EQ, - STATE(2140), 3, + ACTIONS(4811), 1, + anon_sym_SEMI, + STATE(2181), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51423] = 5, + [59560] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4589), 1, - anon_sym_SEMI, - STATE(2141), 3, + ACTIONS(4813), 1, + anon_sym_LPAREN, + STATE(2182), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51441] = 5, + [59578] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4591), 1, - anon_sym_RPAREN, - STATE(2142), 3, + ACTIONS(4815), 1, + anon_sym_SEMI, + STATE(2183), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51459] = 5, + [59596] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4593), 1, - anon_sym_SEMI, - STATE(2143), 3, + ACTIONS(4131), 1, + sym_const_ident, + STATE(2184), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51477] = 5, + [59614] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_EQ, - STATE(2144), 3, + ACTIONS(4817), 1, + anon_sym_DOLLARendif, + STATE(2185), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51495] = 5, + [59632] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4597), 1, + ACTIONS(4819), 1, sym_const_ident, - STATE(2145), 3, + STATE(2186), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51513] = 5, + [59650] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4599), 1, - anon_sym_SEMI, - STATE(2146), 3, + ACTIONS(4821), 1, + sym_ident, + STATE(2187), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51531] = 5, + [59668] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4601), 1, + ACTIONS(4823), 1, anon_sym_SEMI, - STATE(2147), 3, + STATE(2188), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51549] = 5, + [59686] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4603), 1, - anon_sym_SEMI, - STATE(2148), 3, + ACTIONS(4825), 1, + sym_ident, + STATE(2189), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51567] = 5, + [59704] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4605), 1, - anon_sym_RPAREN, - STATE(2149), 3, + ACTIONS(4827), 1, + anon_sym_LPAREN, + STATE(2190), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51585] = 5, + [59722] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4607), 1, - anon_sym_COLON, - STATE(2150), 3, + ACTIONS(4829), 1, + anon_sym_RPAREN, + STATE(2191), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51603] = 5, + [59740] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4609), 1, - anon_sym_LPAREN, - STATE(2151), 3, + ACTIONS(4831), 1, + anon_sym_DOT, + STATE(2192), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51621] = 5, + [59758] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4611), 1, - anon_sym_LBRACE, - STATE(2152), 3, + ACTIONS(4833), 1, + anon_sym_RPAREN, + STATE(2193), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51639] = 5, + [59776] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4613), 1, - anon_sym_SEMI, - STATE(2153), 3, + ACTIONS(4835), 1, + anon_sym_SQUOTE, + STATE(2194), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51657] = 5, + [59794] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4615), 1, - anon_sym_GT_RPAREN, - STATE(2154), 3, + ACTIONS(4837), 1, + anon_sym_COLON, + STATE(2195), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51675] = 5, + [59812] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4617), 1, + ACTIONS(4839), 1, anon_sym_SEMI, - STATE(2155), 3, + STATE(2196), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51693] = 5, + [59830] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4619), 1, - anon_sym_DOLLARendif, - STATE(2156), 3, + ACTIONS(4841), 1, + anon_sym_SEMI, + STATE(2197), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51711] = 5, + [59848] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4621), 1, - ts_builtin_sym_end, - STATE(2157), 3, + ACTIONS(3508), 1, + sym_ident, + STATE(2198), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51729] = 5, + [59866] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4623), 1, - anon_sym_SEMI, - STATE(2158), 3, + ACTIONS(4843), 1, + anon_sym_DOLLARendfor, + STATE(2199), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51747] = 5, + [59884] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4625), 1, - anon_sym_SEMI, - STATE(2159), 3, + ACTIONS(4845), 1, + anon_sym_DOLLARendforeach, + STATE(2200), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51765] = 5, + [59902] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4627), 1, + ACTIONS(4847), 1, anon_sym_SEMI, - STATE(2160), 3, + STATE(2201), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51783] = 5, + [59920] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4629), 1, - anon_sym_COLON, - STATE(2161), 3, + ACTIONS(4849), 1, + anon_sym_SEMI, + STATE(2202), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51801] = 5, + [59938] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4631), 1, + ACTIONS(4851), 1, anon_sym_LBRACE, - STATE(2162), 3, + STATE(2203), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51819] = 5, + [59956] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4633), 1, - anon_sym_DOLLARendif, - STATE(2163), 3, + ACTIONS(3546), 1, + anon_sym_SEMI, + STATE(2204), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51837] = 5, + [59974] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4635), 1, + ACTIONS(4853), 1, anon_sym_SEMI, - STATE(2164), 3, + STATE(2205), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51855] = 5, + [59992] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4637), 1, - anon_sym_LPAREN, - STATE(2165), 3, + ACTIONS(4855), 1, + anon_sym_RPAREN, + STATE(2206), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51873] = 5, + [60010] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4639), 1, - anon_sym_SEMI, - STATE(2166), 3, + ACTIONS(4857), 1, + anon_sym_RPAREN, + STATE(2207), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51891] = 5, + [60028] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - STATE(2167), 3, + ACTIONS(4859), 1, + anon_sym_RPAREN, + STATE(2208), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51909] = 5, + [60046] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4643), 1, + ACTIONS(4861), 1, anon_sym_SEMI, - STATE(2168), 3, + STATE(2209), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51927] = 5, + [60064] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4645), 1, - anon_sym_SEMI, - STATE(2169), 3, + ACTIONS(4863), 1, + anon_sym_DOLLARendif, + STATE(2210), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51945] = 5, + [60082] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(2745), 1, - anon_sym_SEMI, - STATE(2170), 3, + ACTIONS(4855), 1, + anon_sym_RBRACK, + STATE(2211), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51963] = 5, + [60100] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4647), 1, + ACTIONS(4865), 1, anon_sym_LPAREN, - STATE(2171), 3, + STATE(2212), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51981] = 5, + [60118] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4649), 1, - anon_sym_LPAREN, - STATE(2172), 3, + ACTIONS(4867), 1, + sym_ident, + STATE(2213), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [51999] = 5, + [60136] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4651), 1, - anon_sym_SEMI, - STATE(2173), 3, + ACTIONS(4869), 1, + anon_sym_RPAREN, + STATE(2214), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52017] = 5, + [60154] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4653), 1, + ACTIONS(4871), 1, sym_const_ident, - STATE(2174), 3, + STATE(2215), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52035] = 5, + [60172] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4655), 1, - sym_const_ident, - STATE(2175), 3, + ACTIONS(4873), 1, + anon_sym_SEMI, + STATE(2216), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52053] = 5, + [60190] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4657), 1, - anon_sym_SEMI, - STATE(2176), 3, + ACTIONS(1241), 1, + anon_sym_RPAREN, + STATE(2217), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52071] = 5, + [60208] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3019), 1, - anon_sym_RBRACE, - STATE(2177), 3, + ACTIONS(4875), 1, + anon_sym_RPAREN, + STATE(2218), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52089] = 5, + [60226] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3047), 1, + ACTIONS(4877), 1, anon_sym_SEMI, - STATE(2178), 3, + STATE(2219), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52107] = 5, + [60244] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4659), 1, - anon_sym_SEMI, - STATE(2179), 3, + ACTIONS(4879), 1, + sym_type_ident, + STATE(2220), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52125] = 5, + [60262] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4661), 1, - anon_sym_DOLLARendforeach, - STATE(2180), 3, + ACTIONS(4881), 1, + anon_sym_DOLLARendif, + STATE(2221), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52143] = 5, + [60280] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4663), 1, - anon_sym_LPAREN, - STATE(2181), 3, + ACTIONS(4883), 1, + anon_sym_DOT, + STATE(2222), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52161] = 5, - ACTIONS(3), 1, + [60298] = 5, + ACTIONS(3604), 1, aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, + ACTIONS(3606), 1, + anon_sym_LT_STAR, + ACTIONS(3608), 1, anon_sym_SLASH_STAR, - ACTIONS(4665), 1, - anon_sym_DOLLARendfor, - STATE(2182), 3, + ACTIONS(4885), 1, + aux_sym_raw_string_literal_token1, + STATE(2223), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52179] = 5, + [60316] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, - anon_sym_LPAREN, - STATE(2183), 3, + ACTIONS(4887), 1, + anon_sym_SEMI, + STATE(2224), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52197] = 5, + [60334] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4669), 1, - sym_ident, - STATE(2184), 3, + ACTIONS(4889), 1, + anon_sym_SEMI, + STATE(2225), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52215] = 5, + [60352] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4671), 1, - anon_sym_GT_RPAREN, - STATE(2185), 3, + ACTIONS(4891), 1, + anon_sym_SEMI, + STATE(2226), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52233] = 5, + [60370] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4673), 1, + ACTIONS(4893), 1, anon_sym_LPAREN, - STATE(2186), 3, + STATE(2227), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52251] = 5, + [60388] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, + ACTIONS(4895), 1, anon_sym_DOLLARendif, - STATE(2187), 3, + STATE(2228), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52269] = 5, + [60406] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4677), 1, - anon_sym_COLON, - STATE(2188), 3, + ACTIONS(4897), 1, + anon_sym_RPAREN, + STATE(2229), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52287] = 5, + [60424] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, + ACTIONS(4899), 1, anon_sym_SEMI, - STATE(2189), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [52305] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2429), 1, - anon_sym_RPAREN, - STATE(2190), 3, + STATE(2230), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52323] = 5, + [60442] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4681), 1, + ACTIONS(4901), 1, anon_sym_LBRACE, - STATE(2191), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [52341] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(2739), 1, - anon_sym_SEMI, - STATE(2192), 3, + STATE(2231), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52359] = 5, + [60460] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4683), 1, + ACTIONS(4903), 1, anon_sym_SEMI, - STATE(2193), 3, + STATE(2232), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52377] = 5, + [60478] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - sym_type_ident, - STATE(2194), 3, + ACTIONS(4905), 1, + sym_at_ident, + STATE(2233), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52395] = 5, + [60496] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, + ACTIONS(4907), 1, anon_sym_SEMI, - STATE(2195), 3, + STATE(2234), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52413] = 5, + [60514] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4689), 1, - anon_sym_SEMI, - STATE(2196), 3, + ACTIONS(4909), 1, + anon_sym_RBRACK, + STATE(2235), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52431] = 5, + [60532] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4691), 1, - anon_sym_SEMI, - STATE(2197), 3, + ACTIONS(4911), 1, + anon_sym_RPAREN, + STATE(2236), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52449] = 5, + [60550] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_RBRACE, - STATE(2198), 3, + ACTIONS(4913), 1, + anon_sym_LBRACE, + STATE(2237), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52467] = 5, + [60568] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4693), 1, + ACTIONS(4915), 1, anon_sym_SEMI, - STATE(2199), 3, + STATE(2238), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52485] = 5, + [60586] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4695), 1, - sym_type_ident, - STATE(2200), 3, + ACTIONS(4917), 1, + anon_sym_DOT, + STATE(2239), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52503] = 5, + [60604] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4697), 1, - sym_type_ident, - STATE(2201), 3, + ACTIONS(4919), 1, + anon_sym_SEMI, + STATE(2240), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52521] = 5, + [60622] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4699), 1, - sym_type_ident, - STATE(2202), 3, + ACTIONS(3197), 1, + anon_sym_SEMI, + STATE(2241), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52539] = 5, + [60640] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4701), 1, + ACTIONS(4921), 1, sym_const_ident, - STATE(2203), 3, + STATE(2242), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52557] = 5, + [60658] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, - anon_sym_SEMI, - STATE(2204), 3, + ACTIONS(4923), 1, + anon_sym_DOLLARendfor, + STATE(2243), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52575] = 5, + [60676] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4705), 1, + ACTIONS(4347), 1, anon_sym_LPAREN, - STATE(2205), 3, + STATE(2244), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52593] = 5, + [60694] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4707), 1, - anon_sym_LPAREN, - STATE(2206), 3, + ACTIONS(4925), 1, + anon_sym_SEMI, + STATE(2245), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52611] = 5, + [60712] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4709), 1, - anon_sym_SQUOTE, - STATE(2207), 3, + ACTIONS(4927), 1, + anon_sym_STAR_SLASH, + STATE(2246), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52629] = 5, + [60730] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4711), 1, - anon_sym_BQUOTE, - STATE(2208), 3, + ACTIONS(3201), 1, + anon_sym_RBRACE, + STATE(2247), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52647] = 5, + [60748] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4713), 1, - sym_type_ident, - STATE(2209), 3, + ACTIONS(4929), 1, + anon_sym_COLON, + STATE(2248), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52665] = 5, + [60766] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3633), 1, - anon_sym_RBRACK, - STATE(2210), 3, + ACTIONS(4931), 1, + anon_sym_GT_RPAREN, + STATE(2249), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52683] = 5, + [60784] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4715), 1, - anon_sym_COLON, - STATE(2211), 3, + ACTIONS(4933), 1, + anon_sym_RBRACE, + STATE(2250), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52701] = 5, + [60802] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4717), 1, + ACTIONS(4935), 1, anon_sym_SEMI, - STATE(2212), 3, + STATE(2251), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52719] = 5, + [60820] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4719), 1, - anon_sym_SEMI, - STATE(2213), 3, + ACTIONS(4355), 1, + anon_sym_LPAREN, + STATE(2252), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52737] = 5, + [60838] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4721), 1, + ACTIONS(4937), 1, anon_sym_SEMI, - STATE(2214), 3, + STATE(2253), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52755] = 5, + [60856] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4089), 1, - anon_sym_COLON, - STATE(2215), 3, + ACTIONS(3137), 1, + anon_sym_SEMI, + STATE(2254), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52773] = 5, + [60874] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4087), 1, + ACTIONS(4939), 1, anon_sym_SEMI, - STATE(2216), 3, + STATE(2255), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52791] = 5, + [60892] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4723), 1, - anon_sym_LPAREN, - STATE(2217), 3, + ACTIONS(4941), 1, + anon_sym_COLON, + STATE(2256), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52809] = 5, + [60910] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4725), 1, + ACTIONS(4943), 1, anon_sym_LPAREN, - STATE(2218), 3, + STATE(2257), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52827] = 5, + [60928] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, + ACTIONS(4945), 1, anon_sym_SEMI, - STATE(2219), 3, + STATE(2258), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52845] = 5, + [60946] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3005), 1, + ACTIONS(4947), 1, anon_sym_SEMI, - STATE(2220), 3, + STATE(2259), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52863] = 5, + [60964] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4729), 1, + ACTIONS(4949), 1, anon_sym_COLON, - STATE(2221), 3, + STATE(2260), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52881] = 5, + [60982] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4951), 1, anon_sym_SEMI, - STATE(2222), 3, + STATE(2261), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52899] = 5, + [61000] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4733), 1, - anon_sym_SEMI, - STATE(2223), 3, + ACTIONS(4953), 1, + anon_sym_COLON, + STATE(2262), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52917] = 5, + [61018] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4735), 1, + ACTIONS(4955), 1, anon_sym_SEMI, - STATE(2224), 3, + STATE(2263), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52935] = 5, + [61036] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4737), 1, + ACTIONS(4957), 1, anon_sym_COLON, - STATE(2225), 3, + STATE(2264), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52953] = 5, + [61054] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4739), 1, - anon_sym_SEMI, - STATE(2226), 3, + ACTIONS(4959), 1, + anon_sym_DOT, + STATE(2265), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52971] = 5, + [61072] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4741), 1, + ACTIONS(4961), 1, anon_sym_SEMI, - STATE(2227), 3, + STATE(2266), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [52989] = 5, + [61090] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4743), 1, - anon_sym_RBRACK, - STATE(2228), 3, + ACTIONS(4963), 1, + anon_sym_LBRACE, + STATE(2267), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53007] = 5, + [61108] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4745), 1, + ACTIONS(4965), 1, anon_sym_COLON, - STATE(2229), 3, - sym_line_comment, - sym_doc_comment, - sym_block_comment, - [53025] = 5, - ACTIONS(3), 1, - aux_sym_line_comment_token1, - ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, - ACTIONS(7), 1, - anon_sym_SLASH_STAR, - ACTIONS(4747), 1, - anon_sym_LPAREN, - STATE(2230), 3, + STATE(2268), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53043] = 5, + [61126] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4749), 1, - anon_sym_RPAREN, - STATE(2231), 3, + ACTIONS(4967), 1, + sym_const_ident, + STATE(2269), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53061] = 5, + [61144] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4751), 1, - sym_block_comment_text, - STATE(2232), 3, + ACTIONS(4969), 1, + anon_sym_LPAREN, + STATE(2270), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53079] = 5, + [61162] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4753), 1, - anon_sym_COLON, - STATE(2233), 3, + ACTIONS(4971), 1, + anon_sym_LPAREN, + STATE(2271), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53097] = 5, + [61180] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4755), 1, - sym_doc_comment_text, - STATE(2234), 3, + ACTIONS(4973), 1, + anon_sym_LPAREN, + STATE(2272), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53115] = 5, + [61198] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(3378), 1, - anon_sym_QMARK, - STATE(2235), 3, + ACTIONS(4975), 1, + anon_sym_LPAREN, + STATE(2273), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53133] = 5, + [61216] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4757), 1, + ACTIONS(4977), 1, anon_sym_LPAREN, - STATE(2236), 3, + STATE(2274), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53151] = 5, + [61234] = 5, ACTIONS(3), 1, aux_sym_line_comment_token1, ACTIONS(5), 1, - anon_sym_SLASH_STAR_STAR, + anon_sym_LT_STAR, ACTIONS(7), 1, anon_sym_SLASH_STAR, - ACTIONS(4759), 1, - anon_sym_LPAREN, - STATE(2237), 3, + ACTIONS(4979), 1, + sym_type_ident, + STATE(2275), 3, sym_line_comment, sym_doc_comment, sym_block_comment, - [53169] = 1, - ACTIONS(4761), 1, + [61252] = 1, + ACTIONS(4981), 1, ts_builtin_sym_end, - [53173] = 1, - ACTIONS(4763), 1, + [61256] = 1, + ACTIONS(4983), 1, ts_builtin_sym_end, - [53177] = 1, - ACTIONS(4765), 1, + [61260] = 1, + ACTIONS(4985), 1, + ts_builtin_sym_end, + [61264] = 1, + ACTIONS(4987), 1, + ts_builtin_sym_end, + [61268] = 1, + ACTIONS(4989), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(804)] = 0, - [SMALL_STATE(805)] = 79, - [SMALL_STATE(806)] = 160, - [SMALL_STATE(807)] = 232, - [SMALL_STATE(808)] = 310, - [SMALL_STATE(809)] = 382, - [SMALL_STATE(810)] = 460, - [SMALL_STATE(811)] = 531, - [SMALL_STATE(812)] = 602, - [SMALL_STATE(813)] = 673, - [SMALL_STATE(814)] = 744, - [SMALL_STATE(815)] = 815, - [SMALL_STATE(816)] = 886, - [SMALL_STATE(817)] = 957, - [SMALL_STATE(818)] = 1028, - [SMALL_STATE(819)] = 1099, - [SMALL_STATE(820)] = 1170, - [SMALL_STATE(821)] = 1241, - [SMALL_STATE(822)] = 1312, - [SMALL_STATE(823)] = 1383, - [SMALL_STATE(824)] = 1458, - [SMALL_STATE(825)] = 1529, - [SMALL_STATE(826)] = 1600, - [SMALL_STATE(827)] = 1671, - [SMALL_STATE(828)] = 1742, - [SMALL_STATE(829)] = 1813, - [SMALL_STATE(830)] = 1884, - [SMALL_STATE(831)] = 1955, - [SMALL_STATE(832)] = 2026, - [SMALL_STATE(833)] = 2097, - [SMALL_STATE(834)] = 2168, - [SMALL_STATE(835)] = 2239, - [SMALL_STATE(836)] = 2310, - [SMALL_STATE(837)] = 2381, - [SMALL_STATE(838)] = 2452, - [SMALL_STATE(839)] = 2523, - [SMALL_STATE(840)] = 2594, - [SMALL_STATE(841)] = 2665, - [SMALL_STATE(842)] = 2736, - [SMALL_STATE(843)] = 2807, - [SMALL_STATE(844)] = 2878, - [SMALL_STATE(845)] = 2949, - [SMALL_STATE(846)] = 3020, - [SMALL_STATE(847)] = 3091, - [SMALL_STATE(848)] = 3162, - [SMALL_STATE(849)] = 3233, - [SMALL_STATE(850)] = 3304, - [SMALL_STATE(851)] = 3375, - [SMALL_STATE(852)] = 3446, - [SMALL_STATE(853)] = 3517, - [SMALL_STATE(854)] = 3588, - [SMALL_STATE(855)] = 3659, - [SMALL_STATE(856)] = 3730, - [SMALL_STATE(857)] = 3801, - [SMALL_STATE(858)] = 3872, - [SMALL_STATE(859)] = 3943, - [SMALL_STATE(860)] = 4014, - [SMALL_STATE(861)] = 4085, - [SMALL_STATE(862)] = 4156, - [SMALL_STATE(863)] = 4227, - [SMALL_STATE(864)] = 4298, - [SMALL_STATE(865)] = 4369, - [SMALL_STATE(866)] = 4440, - [SMALL_STATE(867)] = 4511, - [SMALL_STATE(868)] = 4582, - [SMALL_STATE(869)] = 4653, - [SMALL_STATE(870)] = 4724, - [SMALL_STATE(871)] = 4795, - [SMALL_STATE(872)] = 4866, - [SMALL_STATE(873)] = 4937, - [SMALL_STATE(874)] = 5008, - [SMALL_STATE(875)] = 5079, - [SMALL_STATE(876)] = 5150, - [SMALL_STATE(877)] = 5221, - [SMALL_STATE(878)] = 5292, - [SMALL_STATE(879)] = 5363, - [SMALL_STATE(880)] = 5434, - [SMALL_STATE(881)] = 5505, - [SMALL_STATE(882)] = 5576, - [SMALL_STATE(883)] = 5647, - [SMALL_STATE(884)] = 5718, - [SMALL_STATE(885)] = 5789, - [SMALL_STATE(886)] = 5860, - [SMALL_STATE(887)] = 5931, - [SMALL_STATE(888)] = 6002, - [SMALL_STATE(889)] = 6073, - [SMALL_STATE(890)] = 6144, - [SMALL_STATE(891)] = 6215, - [SMALL_STATE(892)] = 6286, - [SMALL_STATE(893)] = 6357, - [SMALL_STATE(894)] = 6428, - [SMALL_STATE(895)] = 6501, - [SMALL_STATE(896)] = 6571, - [SMALL_STATE(897)] = 6641, - [SMALL_STATE(898)] = 6715, - [SMALL_STATE(899)] = 6785, - [SMALL_STATE(900)] = 6859, - [SMALL_STATE(901)] = 6929, - [SMALL_STATE(902)] = 7001, - [SMALL_STATE(903)] = 7073, - [SMALL_STATE(904)] = 7143, - [SMALL_STATE(905)] = 7212, - [SMALL_STATE(906)] = 7283, - [SMALL_STATE(907)] = 7352, - [SMALL_STATE(908)] = 7421, - [SMALL_STATE(909)] = 7489, - [SMALL_STATE(910)] = 7557, - [SMALL_STATE(911)] = 7625, - [SMALL_STATE(912)] = 7693, - [SMALL_STATE(913)] = 7765, - [SMALL_STATE(914)] = 7833, - [SMALL_STATE(915)] = 7901, - [SMALL_STATE(916)] = 7969, - [SMALL_STATE(917)] = 8037, - [SMALL_STATE(918)] = 8105, - [SMALL_STATE(919)] = 8173, - [SMALL_STATE(920)] = 8241, - [SMALL_STATE(921)] = 8309, - [SMALL_STATE(922)] = 8377, - [SMALL_STATE(923)] = 8445, - [SMALL_STATE(924)] = 8521, - [SMALL_STATE(925)] = 8589, - [SMALL_STATE(926)] = 8657, - [SMALL_STATE(927)] = 8725, - [SMALL_STATE(928)] = 8793, - [SMALL_STATE(929)] = 8861, - [SMALL_STATE(930)] = 8939, - [SMALL_STATE(931)] = 9015, - [SMALL_STATE(932)] = 9083, - [SMALL_STATE(933)] = 9161, - [SMALL_STATE(934)] = 9229, - [SMALL_STATE(935)] = 9303, - [SMALL_STATE(936)] = 9371, - [SMALL_STATE(937)] = 9439, - [SMALL_STATE(938)] = 9507, - [SMALL_STATE(939)] = 9575, - [SMALL_STATE(940)] = 9643, - [SMALL_STATE(941)] = 9711, - [SMALL_STATE(942)] = 9779, - [SMALL_STATE(943)] = 9847, - [SMALL_STATE(944)] = 9922, - [SMALL_STATE(945)] = 9989, - [SMALL_STATE(946)] = 10055, - [SMALL_STATE(947)] = 10121, - [SMALL_STATE(948)] = 10187, - [SMALL_STATE(949)] = 10253, - [SMALL_STATE(950)] = 10319, - [SMALL_STATE(951)] = 10419, - [SMALL_STATE(952)] = 10485, - [SMALL_STATE(953)] = 10551, - [SMALL_STATE(954)] = 10617, - [SMALL_STATE(955)] = 10683, - [SMALL_STATE(956)] = 10752, - [SMALL_STATE(957)] = 10827, - [SMALL_STATE(958)] = 10900, - [SMALL_STATE(959)] = 11003, - [SMALL_STATE(960)] = 11078, - [SMALL_STATE(961)] = 11176, - [SMALL_STATE(962)] = 11276, - [SMALL_STATE(963)] = 11372, - [SMALL_STATE(964)] = 11472, - [SMALL_STATE(965)] = 11572, - [SMALL_STATE(966)] = 11670, - [SMALL_STATE(967)] = 11768, - [SMALL_STATE(968)] = 11832, - [SMALL_STATE(969)] = 11930, - [SMALL_STATE(970)] = 12028, - [SMALL_STATE(971)] = 12128, - [SMALL_STATE(972)] = 12228, - [SMALL_STATE(973)] = 12326, - [SMALL_STATE(974)] = 12389, - [SMALL_STATE(975)] = 12472, - [SMALL_STATE(976)] = 12569, - [SMALL_STATE(977)] = 12632, - [SMALL_STATE(978)] = 12695, - [SMALL_STATE(979)] = 12758, - [SMALL_STATE(980)] = 12821, - [SMALL_STATE(981)] = 12918, - [SMALL_STATE(982)] = 13015, - [SMALL_STATE(983)] = 13078, - [SMALL_STATE(984)] = 13141, - [SMALL_STATE(985)] = 13204, - [SMALL_STATE(986)] = 13267, - [SMALL_STATE(987)] = 13361, - [SMALL_STATE(988)] = 13453, - [SMALL_STATE(989)] = 13519, - [SMALL_STATE(990)] = 13591, - [SMALL_STATE(991)] = 13685, - [SMALL_STATE(992)] = 13751, - [SMALL_STATE(993)] = 13821, - [SMALL_STATE(994)] = 13884, - [SMALL_STATE(995)] = 13965, - [SMALL_STATE(996)] = 14026, - [SMALL_STATE(997)] = 14087, - [SMALL_STATE(998)] = 14152, - [SMALL_STATE(999)] = 14217, - [SMALL_STATE(1000)] = 14294, - [SMALL_STATE(1001)] = 14373, - [SMALL_STATE(1002)] = 14458, - [SMALL_STATE(1003)] = 14523, - [SMALL_STATE(1004)] = 14584, - [SMALL_STATE(1005)] = 14645, - [SMALL_STATE(1006)] = 14708, - [SMALL_STATE(1007)] = 14773, - [SMALL_STATE(1008)] = 14842, - [SMALL_STATE(1009)] = 14907, - [SMALL_STATE(1010)] = 14970, - [SMALL_STATE(1011)] = 15041, - [SMALL_STATE(1012)] = 15106, - [SMALL_STATE(1013)] = 15177, - [SMALL_STATE(1014)] = 15250, - [SMALL_STATE(1015)] = 15317, - [SMALL_STATE(1016)] = 15379, - [SMALL_STATE(1017)] = 15467, - [SMALL_STATE(1018)] = 15531, - [SMALL_STATE(1019)] = 15593, - [SMALL_STATE(1020)] = 15681, - [SMALL_STATE(1021)] = 15769, - [SMALL_STATE(1022)] = 15831, - [SMALL_STATE(1023)] = 15901, - [SMALL_STATE(1024)] = 15984, - [SMALL_STATE(1025)] = 16069, - [SMALL_STATE(1026)] = 16152, - [SMALL_STATE(1027)] = 16237, - [SMALL_STATE(1028)] = 16308, - [SMALL_STATE(1029)] = 16393, - [SMALL_STATE(1030)] = 16478, - [SMALL_STATE(1031)] = 16560, - [SMALL_STATE(1032)] = 16642, - [SMALL_STATE(1033)] = 16722, - [SMALL_STATE(1034)] = 16804, - [SMALL_STATE(1035)] = 16886, - [SMALL_STATE(1036)] = 16968, - [SMALL_STATE(1037)] = 17050, - [SMALL_STATE(1038)] = 17132, - [SMALL_STATE(1039)] = 17214, - [SMALL_STATE(1040)] = 17296, - [SMALL_STATE(1041)] = 17378, - [SMALL_STATE(1042)] = 17460, - [SMALL_STATE(1043)] = 17542, - [SMALL_STATE(1044)] = 17621, - [SMALL_STATE(1045)] = 17700, - [SMALL_STATE(1046)] = 17779, - [SMALL_STATE(1047)] = 17858, - [SMALL_STATE(1048)] = 17923, - [SMALL_STATE(1049)] = 17984, - [SMALL_STATE(1050)] = 18063, - [SMALL_STATE(1051)] = 18144, - [SMALL_STATE(1052)] = 18221, - [SMALL_STATE(1053)] = 18300, - [SMALL_STATE(1054)] = 18361, - [SMALL_STATE(1055)] = 18440, - [SMALL_STATE(1056)] = 18517, - [SMALL_STATE(1057)] = 18596, - [SMALL_STATE(1058)] = 18675, - [SMALL_STATE(1059)] = 18754, - [SMALL_STATE(1060)] = 18827, - [SMALL_STATE(1061)] = 18906, - [SMALL_STATE(1062)] = 18985, - [SMALL_STATE(1063)] = 19052, - [SMALL_STATE(1064)] = 19131, - [SMALL_STATE(1065)] = 19206, - [SMALL_STATE(1066)] = 19275, - [SMALL_STATE(1067)] = 19336, - [SMALL_STATE(1068)] = 19399, - [SMALL_STATE(1069)] = 19475, - [SMALL_STATE(1070)] = 19533, - [SMALL_STATE(1071)] = 19609, - [SMALL_STATE(1072)] = 19685, - [SMALL_STATE(1073)] = 19761, - [SMALL_STATE(1074)] = 19837, - [SMALL_STATE(1075)] = 19913, - [SMALL_STATE(1076)] = 19971, - [SMALL_STATE(1077)] = 20047, - [SMALL_STATE(1078)] = 20123, - [SMALL_STATE(1079)] = 20199, - [SMALL_STATE(1080)] = 20275, - [SMALL_STATE(1081)] = 20351, - [SMALL_STATE(1082)] = 20427, - [SMALL_STATE(1083)] = 20482, - [SMALL_STATE(1084)] = 20537, - [SMALL_STATE(1085)] = 20598, - [SMALL_STATE(1086)] = 20653, - [SMALL_STATE(1087)] = 20708, - [SMALL_STATE(1088)] = 20763, - [SMALL_STATE(1089)] = 20818, - [SMALL_STATE(1090)] = 20873, - [SMALL_STATE(1091)] = 20928, - [SMALL_STATE(1092)] = 20983, - [SMALL_STATE(1093)] = 21038, - [SMALL_STATE(1094)] = 21093, - [SMALL_STATE(1095)] = 21148, - [SMALL_STATE(1096)] = 21203, - [SMALL_STATE(1097)] = 21262, - [SMALL_STATE(1098)] = 21317, - [SMALL_STATE(1099)] = 21372, - [SMALL_STATE(1100)] = 21428, - [SMALL_STATE(1101)] = 21484, - [SMALL_STATE(1102)] = 21544, - [SMALL_STATE(1103)] = 21623, - [SMALL_STATE(1104)] = 21702, - [SMALL_STATE(1105)] = 21781, - [SMALL_STATE(1106)] = 21856, - [SMALL_STATE(1107)] = 21909, - [SMALL_STATE(1108)] = 21988, - [SMALL_STATE(1109)] = 22067, - [SMALL_STATE(1110)] = 22144, - [SMALL_STATE(1111)] = 22201, - [SMALL_STATE(1112)] = 22254, - [SMALL_STATE(1113)] = 22329, - [SMALL_STATE(1114)] = 22404, - [SMALL_STATE(1115)] = 22479, - [SMALL_STATE(1116)] = 22554, - [SMALL_STATE(1117)] = 22633, - [SMALL_STATE(1118)] = 22708, - [SMALL_STATE(1119)] = 22783, - [SMALL_STATE(1120)] = 22858, - [SMALL_STATE(1121)] = 22937, - [SMALL_STATE(1122)] = 23012, - [SMALL_STATE(1123)] = 23084, - [SMALL_STATE(1124)] = 23158, - [SMALL_STATE(1125)] = 23232, - [SMALL_STATE(1126)] = 23306, - [SMALL_STATE(1127)] = 23382, - [SMALL_STATE(1128)] = 23456, - [SMALL_STATE(1129)] = 23530, - [SMALL_STATE(1130)] = 23606, - [SMALL_STATE(1131)] = 23679, - [SMALL_STATE(1132)] = 23752, - [SMALL_STATE(1133)] = 23803, - [SMALL_STATE(1134)] = 23876, - [SMALL_STATE(1135)] = 23949, - [SMALL_STATE(1136)] = 24022, - [SMALL_STATE(1137)] = 24095, - [SMALL_STATE(1138)] = 24168, - [SMALL_STATE(1139)] = 24241, - [SMALL_STATE(1140)] = 24292, - [SMALL_STATE(1141)] = 24365, - [SMALL_STATE(1142)] = 24438, - [SMALL_STATE(1143)] = 24511, - [SMALL_STATE(1144)] = 24584, - [SMALL_STATE(1145)] = 24657, - [SMALL_STATE(1146)] = 24730, - [SMALL_STATE(1147)] = 24803, - [SMALL_STATE(1148)] = 24876, - [SMALL_STATE(1149)] = 24949, - [SMALL_STATE(1150)] = 25022, - [SMALL_STATE(1151)] = 25095, - [SMALL_STATE(1152)] = 25168, - [SMALL_STATE(1153)] = 25241, - [SMALL_STATE(1154)] = 25314, - [SMALL_STATE(1155)] = 25387, - [SMALL_STATE(1156)] = 25460, - [SMALL_STATE(1157)] = 25533, - [SMALL_STATE(1158)] = 25606, - [SMALL_STATE(1159)] = 25679, - [SMALL_STATE(1160)] = 25752, - [SMALL_STATE(1161)] = 25825, - [SMALL_STATE(1162)] = 25876, - [SMALL_STATE(1163)] = 25949, - [SMALL_STATE(1164)] = 26022, - [SMALL_STATE(1165)] = 26095, - [SMALL_STATE(1166)] = 26168, - [SMALL_STATE(1167)] = 26241, - [SMALL_STATE(1168)] = 26292, - [SMALL_STATE(1169)] = 26365, - [SMALL_STATE(1170)] = 26438, - [SMALL_STATE(1171)] = 26511, - [SMALL_STATE(1172)] = 26584, - [SMALL_STATE(1173)] = 26657, - [SMALL_STATE(1174)] = 26730, - [SMALL_STATE(1175)] = 26803, - [SMALL_STATE(1176)] = 26876, - [SMALL_STATE(1177)] = 26949, - [SMALL_STATE(1178)] = 26999, - [SMALL_STATE(1179)] = 27069, - [SMALL_STATE(1180)] = 27119, - [SMALL_STATE(1181)] = 27189, - [SMALL_STATE(1182)] = 27239, - [SMALL_STATE(1183)] = 27287, - [SMALL_STATE(1184)] = 27331, - [SMALL_STATE(1185)] = 27381, - [SMALL_STATE(1186)] = 27420, - [SMALL_STATE(1187)] = 27458, - [SMALL_STATE(1188)] = 27496, - [SMALL_STATE(1189)] = 27534, - [SMALL_STATE(1190)] = 27572, - [SMALL_STATE(1191)] = 27610, - [SMALL_STATE(1192)] = 27648, - [SMALL_STATE(1193)] = 27686, - [SMALL_STATE(1194)] = 27724, - [SMALL_STATE(1195)] = 27762, - [SMALL_STATE(1196)] = 27825, - [SMALL_STATE(1197)] = 27876, - [SMALL_STATE(1198)] = 27939, - [SMALL_STATE(1199)] = 27996, - [SMALL_STATE(1200)] = 28059, - [SMALL_STATE(1201)] = 28122, - [SMALL_STATE(1202)] = 28185, - [SMALL_STATE(1203)] = 28238, - [SMALL_STATE(1204)] = 28292, - [SMALL_STATE(1205)] = 28328, - [SMALL_STATE(1206)] = 28388, - [SMALL_STATE(1207)] = 28448, - [SMALL_STATE(1208)] = 28506, - [SMALL_STATE(1209)] = 28560, - [SMALL_STATE(1210)] = 28620, - [SMALL_STATE(1211)] = 28674, - [SMALL_STATE(1212)] = 28729, - [SMALL_STATE(1213)] = 28780, - [SMALL_STATE(1214)] = 28831, - [SMALL_STATE(1215)] = 28888, - [SMALL_STATE(1216)] = 28939, - [SMALL_STATE(1217)] = 28996, - [SMALL_STATE(1218)] = 29051, - [SMALL_STATE(1219)] = 29108, - [SMALL_STATE(1220)] = 29150, - [SMALL_STATE(1221)] = 29204, - [SMALL_STATE(1222)] = 29258, - [SMALL_STATE(1223)] = 29312, - [SMALL_STATE(1224)] = 29366, - [SMALL_STATE(1225)] = 29420, - [SMALL_STATE(1226)] = 29474, - [SMALL_STATE(1227)] = 29528, - [SMALL_STATE(1228)] = 29582, - [SMALL_STATE(1229)] = 29636, - [SMALL_STATE(1230)] = 29690, - [SMALL_STATE(1231)] = 29744, - [SMALL_STATE(1232)] = 29798, - [SMALL_STATE(1233)] = 29852, - [SMALL_STATE(1234)] = 29906, - [SMALL_STATE(1235)] = 29960, - [SMALL_STATE(1236)] = 30014, - [SMALL_STATE(1237)] = 30068, - [SMALL_STATE(1238)] = 30122, - [SMALL_STATE(1239)] = 30176, - [SMALL_STATE(1240)] = 30227, - [SMALL_STATE(1241)] = 30278, - [SMALL_STATE(1242)] = 30327, - [SMALL_STATE(1243)] = 30366, - [SMALL_STATE(1244)] = 30405, - [SMALL_STATE(1245)] = 30456, - [SMALL_STATE(1246)] = 30507, - [SMALL_STATE(1247)] = 30558, - [SMALL_STATE(1248)] = 30609, - [SMALL_STATE(1249)] = 30660, - [SMALL_STATE(1250)] = 30711, - [SMALL_STATE(1251)] = 30760, - [SMALL_STATE(1252)] = 30811, - [SMALL_STATE(1253)] = 30860, - [SMALL_STATE(1254)] = 30911, - [SMALL_STATE(1255)] = 30950, - [SMALL_STATE(1256)] = 31001, - [SMALL_STATE(1257)] = 31031, - [SMALL_STATE(1258)] = 31079, - [SMALL_STATE(1259)] = 31127, - [SMALL_STATE(1260)] = 31175, - [SMALL_STATE(1261)] = 31223, - [SMALL_STATE(1262)] = 31271, - [SMALL_STATE(1263)] = 31319, - [SMALL_STATE(1264)] = 31367, - [SMALL_STATE(1265)] = 31397, - [SMALL_STATE(1266)] = 31445, - [SMALL_STATE(1267)] = 31493, - [SMALL_STATE(1268)] = 31541, - [SMALL_STATE(1269)] = 31589, - [SMALL_STATE(1270)] = 31619, - [SMALL_STATE(1271)] = 31667, - [SMALL_STATE(1272)] = 31715, - [SMALL_STATE(1273)] = 31763, - [SMALL_STATE(1274)] = 31793, - [SMALL_STATE(1275)] = 31841, - [SMALL_STATE(1276)] = 31889, - [SMALL_STATE(1277)] = 31937, - [SMALL_STATE(1278)] = 31969, - [SMALL_STATE(1279)] = 32017, - [SMALL_STATE(1280)] = 32046, - [SMALL_STATE(1281)] = 32073, - [SMALL_STATE(1282)] = 32102, - [SMALL_STATE(1283)] = 32131, - [SMALL_STATE(1284)] = 32157, - [SMALL_STATE(1285)] = 32197, - [SMALL_STATE(1286)] = 32222, - [SMALL_STATE(1287)] = 32247, - [SMALL_STATE(1288)] = 32282, - [SMALL_STATE(1289)] = 32307, - [SMALL_STATE(1290)] = 32340, - [SMALL_STATE(1291)] = 32365, - [SMALL_STATE(1292)] = 32390, - [SMALL_STATE(1293)] = 32415, - [SMALL_STATE(1294)] = 32445, - [SMALL_STATE(1295)] = 32481, - [SMALL_STATE(1296)] = 32511, - [SMALL_STATE(1297)] = 32537, - [SMALL_STATE(1298)] = 32573, - [SMALL_STATE(1299)] = 32597, - [SMALL_STATE(1300)] = 32629, - [SMALL_STATE(1301)] = 32653, - [SMALL_STATE(1302)] = 32679, - [SMALL_STATE(1303)] = 32715, - [SMALL_STATE(1304)] = 32749, - [SMALL_STATE(1305)] = 32779, - [SMALL_STATE(1306)] = 32810, - [SMALL_STATE(1307)] = 32837, - [SMALL_STATE(1308)] = 32870, - [SMALL_STATE(1309)] = 32899, - [SMALL_STATE(1310)] = 32932, - [SMALL_STATE(1311)] = 32963, - [SMALL_STATE(1312)] = 32994, - [SMALL_STATE(1313)] = 33025, - [SMALL_STATE(1314)] = 33056, - [SMALL_STATE(1315)] = 33089, - [SMALL_STATE(1316)] = 33120, - [SMALL_STATE(1317)] = 33151, - [SMALL_STATE(1318)] = 33182, - [SMALL_STATE(1319)] = 33215, - [SMALL_STATE(1320)] = 33246, - [SMALL_STATE(1321)] = 33277, - [SMALL_STATE(1322)] = 33308, - [SMALL_STATE(1323)] = 33335, - [SMALL_STATE(1324)] = 33366, - [SMALL_STATE(1325)] = 33389, - [SMALL_STATE(1326)] = 33418, - [SMALL_STATE(1327)] = 33449, - [SMALL_STATE(1328)] = 33474, - [SMALL_STATE(1329)] = 33505, - [SMALL_STATE(1330)] = 33532, - [SMALL_STATE(1331)] = 33563, - [SMALL_STATE(1332)] = 33594, - [SMALL_STATE(1333)] = 33625, - [SMALL_STATE(1334)] = 33650, - [SMALL_STATE(1335)] = 33681, - [SMALL_STATE(1336)] = 33708, - [SMALL_STATE(1337)] = 33739, - [SMALL_STATE(1338)] = 33772, - [SMALL_STATE(1339)] = 33805, - [SMALL_STATE(1340)] = 33828, - [SMALL_STATE(1341)] = 33861, - [SMALL_STATE(1342)] = 33892, - [SMALL_STATE(1343)] = 33923, - [SMALL_STATE(1344)] = 33950, - [SMALL_STATE(1345)] = 33981, - [SMALL_STATE(1346)] = 34012, - [SMALL_STATE(1347)] = 34043, - [SMALL_STATE(1348)] = 34076, - [SMALL_STATE(1349)] = 34099, - [SMALL_STATE(1350)] = 34130, - [SMALL_STATE(1351)] = 34157, - [SMALL_STATE(1352)] = 34188, - [SMALL_STATE(1353)] = 34217, - [SMALL_STATE(1354)] = 34248, - [SMALL_STATE(1355)] = 34279, - [SMALL_STATE(1356)] = 34312, - [SMALL_STATE(1357)] = 34343, - [SMALL_STATE(1358)] = 34374, - [SMALL_STATE(1359)] = 34405, - [SMALL_STATE(1360)] = 34436, - [SMALL_STATE(1361)] = 34465, - [SMALL_STATE(1362)] = 34496, - [SMALL_STATE(1363)] = 34527, - [SMALL_STATE(1364)] = 34558, - [SMALL_STATE(1365)] = 34589, - [SMALL_STATE(1366)] = 34612, - [SMALL_STATE(1367)] = 34643, - [SMALL_STATE(1368)] = 34674, - [SMALL_STATE(1369)] = 34704, - [SMALL_STATE(1370)] = 34732, - [SMALL_STATE(1371)] = 34760, - [SMALL_STATE(1372)] = 34782, - [SMALL_STATE(1373)] = 34812, - [SMALL_STATE(1374)] = 34842, - [SMALL_STATE(1375)] = 34864, - [SMALL_STATE(1376)] = 34886, - [SMALL_STATE(1377)] = 34916, - [SMALL_STATE(1378)] = 34946, - [SMALL_STATE(1379)] = 34976, - [SMALL_STATE(1380)] = 35006, - [SMALL_STATE(1381)] = 35028, - [SMALL_STATE(1382)] = 35056, - [SMALL_STATE(1383)] = 35078, - [SMALL_STATE(1384)] = 35102, - [SMALL_STATE(1385)] = 35124, - [SMALL_STATE(1386)] = 35146, - [SMALL_STATE(1387)] = 35174, - [SMALL_STATE(1388)] = 35202, - [SMALL_STATE(1389)] = 35230, - [SMALL_STATE(1390)] = 35252, - [SMALL_STATE(1391)] = 35274, - [SMALL_STATE(1392)] = 35304, - [SMALL_STATE(1393)] = 35334, - [SMALL_STATE(1394)] = 35358, - [SMALL_STATE(1395)] = 35386, - [SMALL_STATE(1396)] = 35408, - [SMALL_STATE(1397)] = 35436, - [SMALL_STATE(1398)] = 35466, - [SMALL_STATE(1399)] = 35488, - [SMALL_STATE(1400)] = 35512, - [SMALL_STATE(1401)] = 35534, - [SMALL_STATE(1402)] = 35556, - [SMALL_STATE(1403)] = 35578, - [SMALL_STATE(1404)] = 35600, - [SMALL_STATE(1405)] = 35630, - [SMALL_STATE(1406)] = 35657, - [SMALL_STATE(1407)] = 35684, - [SMALL_STATE(1408)] = 35711, - [SMALL_STATE(1409)] = 35738, - [SMALL_STATE(1410)] = 35765, - [SMALL_STATE(1411)] = 35792, - [SMALL_STATE(1412)] = 35819, - [SMALL_STATE(1413)] = 35846, - [SMALL_STATE(1414)] = 35873, - [SMALL_STATE(1415)] = 35900, - [SMALL_STATE(1416)] = 35927, - [SMALL_STATE(1417)] = 35954, - [SMALL_STATE(1418)] = 35979, - [SMALL_STATE(1419)] = 36004, - [SMALL_STATE(1420)] = 36029, - [SMALL_STATE(1421)] = 36054, - [SMALL_STATE(1422)] = 36077, - [SMALL_STATE(1423)] = 36104, - [SMALL_STATE(1424)] = 36131, - [SMALL_STATE(1425)] = 36158, - [SMALL_STATE(1426)] = 36185, - [SMALL_STATE(1427)] = 36212, - [SMALL_STATE(1428)] = 36239, - [SMALL_STATE(1429)] = 36266, - [SMALL_STATE(1430)] = 36289, - [SMALL_STATE(1431)] = 36316, - [SMALL_STATE(1432)] = 36337, - [SMALL_STATE(1433)] = 36364, - [SMALL_STATE(1434)] = 36391, - [SMALL_STATE(1435)] = 36412, - [SMALL_STATE(1436)] = 36433, - [SMALL_STATE(1437)] = 36460, - [SMALL_STATE(1438)] = 36485, - [SMALL_STATE(1439)] = 36512, - [SMALL_STATE(1440)] = 36537, - [SMALL_STATE(1441)] = 36564, - [SMALL_STATE(1442)] = 36585, - [SMALL_STATE(1443)] = 36612, - [SMALL_STATE(1444)] = 36639, - [SMALL_STATE(1445)] = 36666, - [SMALL_STATE(1446)] = 36693, - [SMALL_STATE(1447)] = 36720, - [SMALL_STATE(1448)] = 36747, - [SMALL_STATE(1449)] = 36774, - [SMALL_STATE(1450)] = 36795, - [SMALL_STATE(1451)] = 36820, - [SMALL_STATE(1452)] = 36847, - [SMALL_STATE(1453)] = 36872, - [SMALL_STATE(1454)] = 36893, - [SMALL_STATE(1455)] = 36920, - [SMALL_STATE(1456)] = 36947, - [SMALL_STATE(1457)] = 36972, - [SMALL_STATE(1458)] = 36999, - [SMALL_STATE(1459)] = 37022, - [SMALL_STATE(1460)] = 37049, - [SMALL_STATE(1461)] = 37076, - [SMALL_STATE(1462)] = 37103, - [SMALL_STATE(1463)] = 37124, - [SMALL_STATE(1464)] = 37145, - [SMALL_STATE(1465)] = 37172, - [SMALL_STATE(1466)] = 37199, - [SMALL_STATE(1467)] = 37226, - [SMALL_STATE(1468)] = 37253, - [SMALL_STATE(1469)] = 37274, - [SMALL_STATE(1470)] = 37301, - [SMALL_STATE(1471)] = 37324, - [SMALL_STATE(1472)] = 37351, - [SMALL_STATE(1473)] = 37378, - [SMALL_STATE(1474)] = 37403, - [SMALL_STATE(1475)] = 37430, - [SMALL_STATE(1476)] = 37457, - [SMALL_STATE(1477)] = 37484, - [SMALL_STATE(1478)] = 37509, - [SMALL_STATE(1479)] = 37530, - [SMALL_STATE(1480)] = 37557, - [SMALL_STATE(1481)] = 37584, - [SMALL_STATE(1482)] = 37611, - [SMALL_STATE(1483)] = 37638, - [SMALL_STATE(1484)] = 37665, - [SMALL_STATE(1485)] = 37690, - [SMALL_STATE(1486)] = 37717, - [SMALL_STATE(1487)] = 37744, - [SMALL_STATE(1488)] = 37771, - [SMALL_STATE(1489)] = 37792, - [SMALL_STATE(1490)] = 37819, - [SMALL_STATE(1491)] = 37840, - [SMALL_STATE(1492)] = 37863, - [SMALL_STATE(1493)] = 37890, - [SMALL_STATE(1494)] = 37917, - [SMALL_STATE(1495)] = 37940, - [SMALL_STATE(1496)] = 37963, - [SMALL_STATE(1497)] = 37990, - [SMALL_STATE(1498)] = 38017, - [SMALL_STATE(1499)] = 38042, - [SMALL_STATE(1500)] = 38069, - [SMALL_STATE(1501)] = 38096, - [SMALL_STATE(1502)] = 38119, - [SMALL_STATE(1503)] = 38146, - [SMALL_STATE(1504)] = 38173, - [SMALL_STATE(1505)] = 38194, - [SMALL_STATE(1506)] = 38219, - [SMALL_STATE(1507)] = 38244, - [SMALL_STATE(1508)] = 38271, - [SMALL_STATE(1509)] = 38298, - [SMALL_STATE(1510)] = 38319, - [SMALL_STATE(1511)] = 38346, - [SMALL_STATE(1512)] = 38373, - [SMALL_STATE(1513)] = 38400, - [SMALL_STATE(1514)] = 38427, - [SMALL_STATE(1515)] = 38452, - [SMALL_STATE(1516)] = 38477, - [SMALL_STATE(1517)] = 38504, - [SMALL_STATE(1518)] = 38531, - [SMALL_STATE(1519)] = 38558, - [SMALL_STATE(1520)] = 38585, - [SMALL_STATE(1521)] = 38612, - [SMALL_STATE(1522)] = 38639, - [SMALL_STATE(1523)] = 38666, - [SMALL_STATE(1524)] = 38687, - [SMALL_STATE(1525)] = 38714, - [SMALL_STATE(1526)] = 38741, - [SMALL_STATE(1527)] = 38762, - [SMALL_STATE(1528)] = 38789, - [SMALL_STATE(1529)] = 38810, - [SMALL_STATE(1530)] = 38837, - [SMALL_STATE(1531)] = 38860, - [SMALL_STATE(1532)] = 38887, - [SMALL_STATE(1533)] = 38912, - [SMALL_STATE(1534)] = 38939, - [SMALL_STATE(1535)] = 38960, - [SMALL_STATE(1536)] = 38987, - [SMALL_STATE(1537)] = 39008, - [SMALL_STATE(1538)] = 39033, - [SMALL_STATE(1539)] = 39060, - [SMALL_STATE(1540)] = 39087, - [SMALL_STATE(1541)] = 39108, - [SMALL_STATE(1542)] = 39135, - [SMALL_STATE(1543)] = 39162, - [SMALL_STATE(1544)] = 39187, - [SMALL_STATE(1545)] = 39214, - [SMALL_STATE(1546)] = 39235, - [SMALL_STATE(1547)] = 39262, - [SMALL_STATE(1548)] = 39283, - [SMALL_STATE(1549)] = 39306, - [SMALL_STATE(1550)] = 39333, - [SMALL_STATE(1551)] = 39354, - [SMALL_STATE(1552)] = 39379, - [SMALL_STATE(1553)] = 39406, - [SMALL_STATE(1554)] = 39433, - [SMALL_STATE(1555)] = 39454, - [SMALL_STATE(1556)] = 39481, - [SMALL_STATE(1557)] = 39508, - [SMALL_STATE(1558)] = 39535, - [SMALL_STATE(1559)] = 39558, - [SMALL_STATE(1560)] = 39585, - [SMALL_STATE(1561)] = 39612, - [SMALL_STATE(1562)] = 39639, - [SMALL_STATE(1563)] = 39666, - [SMALL_STATE(1564)] = 39693, - [SMALL_STATE(1565)] = 39718, - [SMALL_STATE(1566)] = 39739, - [SMALL_STATE(1567)] = 39766, - [SMALL_STATE(1568)] = 39793, - [SMALL_STATE(1569)] = 39817, - [SMALL_STATE(1570)] = 39839, - [SMALL_STATE(1571)] = 39863, - [SMALL_STATE(1572)] = 39887, - [SMALL_STATE(1573)] = 39909, - [SMALL_STATE(1574)] = 39933, - [SMALL_STATE(1575)] = 39957, - [SMALL_STATE(1576)] = 39981, - [SMALL_STATE(1577)] = 40005, - [SMALL_STATE(1578)] = 40027, - [SMALL_STATE(1579)] = 40051, - [SMALL_STATE(1580)] = 40073, - [SMALL_STATE(1581)] = 40095, - [SMALL_STATE(1582)] = 40117, - [SMALL_STATE(1583)] = 40139, - [SMALL_STATE(1584)] = 40161, - [SMALL_STATE(1585)] = 40183, - [SMALL_STATE(1586)] = 40207, - [SMALL_STATE(1587)] = 40231, - [SMALL_STATE(1588)] = 40255, - [SMALL_STATE(1589)] = 40277, - [SMALL_STATE(1590)] = 40301, - [SMALL_STATE(1591)] = 40321, - [SMALL_STATE(1592)] = 40341, - [SMALL_STATE(1593)] = 40363, - [SMALL_STATE(1594)] = 40387, - [SMALL_STATE(1595)] = 40411, - [SMALL_STATE(1596)] = 40433, - [SMALL_STATE(1597)] = 40453, - [SMALL_STATE(1598)] = 40477, - [SMALL_STATE(1599)] = 40501, - [SMALL_STATE(1600)] = 40525, - [SMALL_STATE(1601)] = 40547, - [SMALL_STATE(1602)] = 40571, - [SMALL_STATE(1603)] = 40595, - [SMALL_STATE(1604)] = 40619, - [SMALL_STATE(1605)] = 40643, - [SMALL_STATE(1606)] = 40667, - [SMALL_STATE(1607)] = 40691, - [SMALL_STATE(1608)] = 40715, - [SMALL_STATE(1609)] = 40739, - [SMALL_STATE(1610)] = 40763, - [SMALL_STATE(1611)] = 40787, - [SMALL_STATE(1612)] = 40809, - [SMALL_STATE(1613)] = 40831, - [SMALL_STATE(1614)] = 40853, - [SMALL_STATE(1615)] = 40877, - [SMALL_STATE(1616)] = 40901, - [SMALL_STATE(1617)] = 40925, - [SMALL_STATE(1618)] = 40947, - [SMALL_STATE(1619)] = 40969, - [SMALL_STATE(1620)] = 40991, - [SMALL_STATE(1621)] = 41011, - [SMALL_STATE(1622)] = 41035, - [SMALL_STATE(1623)] = 41059, - [SMALL_STATE(1624)] = 41079, - [SMALL_STATE(1625)] = 41099, - [SMALL_STATE(1626)] = 41123, - [SMALL_STATE(1627)] = 41147, - [SMALL_STATE(1628)] = 41171, - [SMALL_STATE(1629)] = 41195, - [SMALL_STATE(1630)] = 41217, - [SMALL_STATE(1631)] = 41241, - [SMALL_STATE(1632)] = 41265, - [SMALL_STATE(1633)] = 41285, - [SMALL_STATE(1634)] = 41309, - [SMALL_STATE(1635)] = 41329, - [SMALL_STATE(1636)] = 41351, - [SMALL_STATE(1637)] = 41375, - [SMALL_STATE(1638)] = 41399, - [SMALL_STATE(1639)] = 41421, - [SMALL_STATE(1640)] = 41445, - [SMALL_STATE(1641)] = 41467, - [SMALL_STATE(1642)] = 41491, - [SMALL_STATE(1643)] = 41515, - [SMALL_STATE(1644)] = 41539, - [SMALL_STATE(1645)] = 41563, - [SMALL_STATE(1646)] = 41585, - [SMALL_STATE(1647)] = 41607, - [SMALL_STATE(1648)] = 41629, - [SMALL_STATE(1649)] = 41653, - [SMALL_STATE(1650)] = 41677, - [SMALL_STATE(1651)] = 41701, - [SMALL_STATE(1652)] = 41723, - [SMALL_STATE(1653)] = 41743, - [SMALL_STATE(1654)] = 41767, - [SMALL_STATE(1655)] = 41787, - [SMALL_STATE(1656)] = 41811, - [SMALL_STATE(1657)] = 41835, - [SMALL_STATE(1658)] = 41857, - [SMALL_STATE(1659)] = 41881, - [SMALL_STATE(1660)] = 41903, - [SMALL_STATE(1661)] = 41925, - [SMALL_STATE(1662)] = 41947, - [SMALL_STATE(1663)] = 41971, - [SMALL_STATE(1664)] = 41995, - [SMALL_STATE(1665)] = 42019, - [SMALL_STATE(1666)] = 42043, - [SMALL_STATE(1667)] = 42065, - [SMALL_STATE(1668)] = 42087, - [SMALL_STATE(1669)] = 42111, - [SMALL_STATE(1670)] = 42133, - [SMALL_STATE(1671)] = 42155, - [SMALL_STATE(1672)] = 42175, - [SMALL_STATE(1673)] = 42197, - [SMALL_STATE(1674)] = 42219, - [SMALL_STATE(1675)] = 42241, - [SMALL_STATE(1676)] = 42263, - [SMALL_STATE(1677)] = 42287, - [SMALL_STATE(1678)] = 42309, - [SMALL_STATE(1679)] = 42331, - [SMALL_STATE(1680)] = 42355, - [SMALL_STATE(1681)] = 42375, - [SMALL_STATE(1682)] = 42399, - [SMALL_STATE(1683)] = 42423, - [SMALL_STATE(1684)] = 42445, - [SMALL_STATE(1685)] = 42469, - [SMALL_STATE(1686)] = 42491, - [SMALL_STATE(1687)] = 42515, - [SMALL_STATE(1688)] = 42539, - [SMALL_STATE(1689)] = 42563, - [SMALL_STATE(1690)] = 42587, - [SMALL_STATE(1691)] = 42609, - [SMALL_STATE(1692)] = 42629, - [SMALL_STATE(1693)] = 42651, - [SMALL_STATE(1694)] = 42673, - [SMALL_STATE(1695)] = 42693, - [SMALL_STATE(1696)] = 42715, - [SMALL_STATE(1697)] = 42735, - [SMALL_STATE(1698)] = 42759, - [SMALL_STATE(1699)] = 42779, - [SMALL_STATE(1700)] = 42803, - [SMALL_STATE(1701)] = 42825, - [SMALL_STATE(1702)] = 42847, - [SMALL_STATE(1703)] = 42869, - [SMALL_STATE(1704)] = 42891, - [SMALL_STATE(1705)] = 42915, - [SMALL_STATE(1706)] = 42939, - [SMALL_STATE(1707)] = 42963, - [SMALL_STATE(1708)] = 42985, - [SMALL_STATE(1709)] = 43009, - [SMALL_STATE(1710)] = 43033, - [SMALL_STATE(1711)] = 43057, - [SMALL_STATE(1712)] = 43081, - [SMALL_STATE(1713)] = 43101, - [SMALL_STATE(1714)] = 43125, - [SMALL_STATE(1715)] = 43149, - [SMALL_STATE(1716)] = 43173, - [SMALL_STATE(1717)] = 43195, - [SMALL_STATE(1718)] = 43219, - [SMALL_STATE(1719)] = 43243, - [SMALL_STATE(1720)] = 43265, - [SMALL_STATE(1721)] = 43287, - [SMALL_STATE(1722)] = 43311, - [SMALL_STATE(1723)] = 43333, - [SMALL_STATE(1724)] = 43353, - [SMALL_STATE(1725)] = 43375, - [SMALL_STATE(1726)] = 43399, - [SMALL_STATE(1727)] = 43421, - [SMALL_STATE(1728)] = 43445, - [SMALL_STATE(1729)] = 43467, - [SMALL_STATE(1730)] = 43487, - [SMALL_STATE(1731)] = 43507, - [SMALL_STATE(1732)] = 43529, - [SMALL_STATE(1733)] = 43553, - [SMALL_STATE(1734)] = 43577, - [SMALL_STATE(1735)] = 43601, - [SMALL_STATE(1736)] = 43623, - [SMALL_STATE(1737)] = 43645, - [SMALL_STATE(1738)] = 43667, - [SMALL_STATE(1739)] = 43691, - [SMALL_STATE(1740)] = 43715, - [SMALL_STATE(1741)] = 43739, - [SMALL_STATE(1742)] = 43763, - [SMALL_STATE(1743)] = 43785, - [SMALL_STATE(1744)] = 43805, - [SMALL_STATE(1745)] = 43829, - [SMALL_STATE(1746)] = 43851, - [SMALL_STATE(1747)] = 43875, - [SMALL_STATE(1748)] = 43897, - [SMALL_STATE(1749)] = 43919, - [SMALL_STATE(1750)] = 43943, - [SMALL_STATE(1751)] = 43965, - [SMALL_STATE(1752)] = 43989, - [SMALL_STATE(1753)] = 44011, - [SMALL_STATE(1754)] = 44035, - [SMALL_STATE(1755)] = 44055, - [SMALL_STATE(1756)] = 44079, - [SMALL_STATE(1757)] = 44098, - [SMALL_STATE(1758)] = 44117, - [SMALL_STATE(1759)] = 44136, - [SMALL_STATE(1760)] = 44157, - [SMALL_STATE(1761)] = 44178, - [SMALL_STATE(1762)] = 44199, - [SMALL_STATE(1763)] = 44220, - [SMALL_STATE(1764)] = 44241, - [SMALL_STATE(1765)] = 44262, - [SMALL_STATE(1766)] = 44283, - [SMALL_STATE(1767)] = 44304, - [SMALL_STATE(1768)] = 44325, - [SMALL_STATE(1769)] = 44346, - [SMALL_STATE(1770)] = 44365, - [SMALL_STATE(1771)] = 44386, - [SMALL_STATE(1772)] = 44407, - [SMALL_STATE(1773)] = 44428, - [SMALL_STATE(1774)] = 44449, - [SMALL_STATE(1775)] = 44470, - [SMALL_STATE(1776)] = 44491, - [SMALL_STATE(1777)] = 44512, - [SMALL_STATE(1778)] = 44533, - [SMALL_STATE(1779)] = 44554, - [SMALL_STATE(1780)] = 44575, - [SMALL_STATE(1781)] = 44596, - [SMALL_STATE(1782)] = 44617, - [SMALL_STATE(1783)] = 44638, - [SMALL_STATE(1784)] = 44657, - [SMALL_STATE(1785)] = 44678, - [SMALL_STATE(1786)] = 44699, - [SMALL_STATE(1787)] = 44720, - [SMALL_STATE(1788)] = 44741, - [SMALL_STATE(1789)] = 44762, - [SMALL_STATE(1790)] = 44783, - [SMALL_STATE(1791)] = 44802, - [SMALL_STATE(1792)] = 44823, - [SMALL_STATE(1793)] = 44844, - [SMALL_STATE(1794)] = 44865, - [SMALL_STATE(1795)] = 44886, - [SMALL_STATE(1796)] = 44907, - [SMALL_STATE(1797)] = 44928, - [SMALL_STATE(1798)] = 44949, - [SMALL_STATE(1799)] = 44970, - [SMALL_STATE(1800)] = 44991, - [SMALL_STATE(1801)] = 45010, - [SMALL_STATE(1802)] = 45031, - [SMALL_STATE(1803)] = 45052, - [SMALL_STATE(1804)] = 45073, - [SMALL_STATE(1805)] = 45092, - [SMALL_STATE(1806)] = 45113, - [SMALL_STATE(1807)] = 45134, - [SMALL_STATE(1808)] = 45155, - [SMALL_STATE(1809)] = 45176, - [SMALL_STATE(1810)] = 45195, - [SMALL_STATE(1811)] = 45216, - [SMALL_STATE(1812)] = 45235, - [SMALL_STATE(1813)] = 45254, - [SMALL_STATE(1814)] = 45275, - [SMALL_STATE(1815)] = 45296, - [SMALL_STATE(1816)] = 45317, - [SMALL_STATE(1817)] = 45338, - [SMALL_STATE(1818)] = 45359, - [SMALL_STATE(1819)] = 45380, - [SMALL_STATE(1820)] = 45401, - [SMALL_STATE(1821)] = 45422, - [SMALL_STATE(1822)] = 45443, - [SMALL_STATE(1823)] = 45464, - [SMALL_STATE(1824)] = 45485, - [SMALL_STATE(1825)] = 45506, - [SMALL_STATE(1826)] = 45527, - [SMALL_STATE(1827)] = 45548, - [SMALL_STATE(1828)] = 45569, - [SMALL_STATE(1829)] = 45588, - [SMALL_STATE(1830)] = 45609, - [SMALL_STATE(1831)] = 45628, - [SMALL_STATE(1832)] = 45649, - [SMALL_STATE(1833)] = 45670, - [SMALL_STATE(1834)] = 45689, - [SMALL_STATE(1835)] = 45710, - [SMALL_STATE(1836)] = 45731, - [SMALL_STATE(1837)] = 45752, - [SMALL_STATE(1838)] = 45771, - [SMALL_STATE(1839)] = 45792, - [SMALL_STATE(1840)] = 45813, - [SMALL_STATE(1841)] = 45834, - [SMALL_STATE(1842)] = 45855, - [SMALL_STATE(1843)] = 45876, - [SMALL_STATE(1844)] = 45897, - [SMALL_STATE(1845)] = 45918, - [SMALL_STATE(1846)] = 45939, - [SMALL_STATE(1847)] = 45958, - [SMALL_STATE(1848)] = 45979, - [SMALL_STATE(1849)] = 46000, - [SMALL_STATE(1850)] = 46021, - [SMALL_STATE(1851)] = 46042, - [SMALL_STATE(1852)] = 46063, - [SMALL_STATE(1853)] = 46084, - [SMALL_STATE(1854)] = 46105, - [SMALL_STATE(1855)] = 46126, - [SMALL_STATE(1856)] = 46147, - [SMALL_STATE(1857)] = 46168, - [SMALL_STATE(1858)] = 46189, - [SMALL_STATE(1859)] = 46210, - [SMALL_STATE(1860)] = 46231, - [SMALL_STATE(1861)] = 46252, - [SMALL_STATE(1862)] = 46273, - [SMALL_STATE(1863)] = 46292, - [SMALL_STATE(1864)] = 46313, - [SMALL_STATE(1865)] = 46332, - [SMALL_STATE(1866)] = 46353, - [SMALL_STATE(1867)] = 46372, - [SMALL_STATE(1868)] = 46393, - [SMALL_STATE(1869)] = 46414, - [SMALL_STATE(1870)] = 46433, - [SMALL_STATE(1871)] = 46454, - [SMALL_STATE(1872)] = 46475, - [SMALL_STATE(1873)] = 46496, - [SMALL_STATE(1874)] = 46517, - [SMALL_STATE(1875)] = 46538, - [SMALL_STATE(1876)] = 46557, - [SMALL_STATE(1877)] = 46578, - [SMALL_STATE(1878)] = 46597, - [SMALL_STATE(1879)] = 46616, - [SMALL_STATE(1880)] = 46635, - [SMALL_STATE(1881)] = 46656, - [SMALL_STATE(1882)] = 46675, - [SMALL_STATE(1883)] = 46696, - [SMALL_STATE(1884)] = 46717, - [SMALL_STATE(1885)] = 46736, - [SMALL_STATE(1886)] = 46757, - [SMALL_STATE(1887)] = 46776, - [SMALL_STATE(1888)] = 46795, - [SMALL_STATE(1889)] = 46816, - [SMALL_STATE(1890)] = 46837, - [SMALL_STATE(1891)] = 46856, - [SMALL_STATE(1892)] = 46877, - [SMALL_STATE(1893)] = 46898, - [SMALL_STATE(1894)] = 46917, - [SMALL_STATE(1895)] = 46938, - [SMALL_STATE(1896)] = 46959, - [SMALL_STATE(1897)] = 46978, - [SMALL_STATE(1898)] = 46999, - [SMALL_STATE(1899)] = 47018, - [SMALL_STATE(1900)] = 47039, - [SMALL_STATE(1901)] = 47058, - [SMALL_STATE(1902)] = 47077, - [SMALL_STATE(1903)] = 47098, - [SMALL_STATE(1904)] = 47119, - [SMALL_STATE(1905)] = 47140, - [SMALL_STATE(1906)] = 47161, - [SMALL_STATE(1907)] = 47182, - [SMALL_STATE(1908)] = 47203, - [SMALL_STATE(1909)] = 47222, - [SMALL_STATE(1910)] = 47241, - [SMALL_STATE(1911)] = 47260, - [SMALL_STATE(1912)] = 47281, - [SMALL_STATE(1913)] = 47302, - [SMALL_STATE(1914)] = 47323, - [SMALL_STATE(1915)] = 47342, - [SMALL_STATE(1916)] = 47361, - [SMALL_STATE(1917)] = 47382, - [SMALL_STATE(1918)] = 47403, - [SMALL_STATE(1919)] = 47424, - [SMALL_STATE(1920)] = 47445, - [SMALL_STATE(1921)] = 47463, - [SMALL_STATE(1922)] = 47481, - [SMALL_STATE(1923)] = 47499, - [SMALL_STATE(1924)] = 47517, - [SMALL_STATE(1925)] = 47535, - [SMALL_STATE(1926)] = 47553, - [SMALL_STATE(1927)] = 47571, - [SMALL_STATE(1928)] = 47589, - [SMALL_STATE(1929)] = 47607, - [SMALL_STATE(1930)] = 47625, - [SMALL_STATE(1931)] = 47643, - [SMALL_STATE(1932)] = 47661, - [SMALL_STATE(1933)] = 47679, - [SMALL_STATE(1934)] = 47697, - [SMALL_STATE(1935)] = 47715, - [SMALL_STATE(1936)] = 47733, - [SMALL_STATE(1937)] = 47751, - [SMALL_STATE(1938)] = 47769, - [SMALL_STATE(1939)] = 47787, - [SMALL_STATE(1940)] = 47805, - [SMALL_STATE(1941)] = 47823, - [SMALL_STATE(1942)] = 47841, - [SMALL_STATE(1943)] = 47859, - [SMALL_STATE(1944)] = 47877, - [SMALL_STATE(1945)] = 47895, - [SMALL_STATE(1946)] = 47913, - [SMALL_STATE(1947)] = 47931, - [SMALL_STATE(1948)] = 47949, - [SMALL_STATE(1949)] = 47967, - [SMALL_STATE(1950)] = 47985, - [SMALL_STATE(1951)] = 48003, - [SMALL_STATE(1952)] = 48021, - [SMALL_STATE(1953)] = 48039, - [SMALL_STATE(1954)] = 48057, - [SMALL_STATE(1955)] = 48075, - [SMALL_STATE(1956)] = 48093, - [SMALL_STATE(1957)] = 48111, - [SMALL_STATE(1958)] = 48129, - [SMALL_STATE(1959)] = 48147, - [SMALL_STATE(1960)] = 48165, - [SMALL_STATE(1961)] = 48183, - [SMALL_STATE(1962)] = 48201, - [SMALL_STATE(1963)] = 48219, - [SMALL_STATE(1964)] = 48237, - [SMALL_STATE(1965)] = 48255, - [SMALL_STATE(1966)] = 48273, - [SMALL_STATE(1967)] = 48291, - [SMALL_STATE(1968)] = 48309, - [SMALL_STATE(1969)] = 48327, - [SMALL_STATE(1970)] = 48345, - [SMALL_STATE(1971)] = 48363, - [SMALL_STATE(1972)] = 48381, - [SMALL_STATE(1973)] = 48399, - [SMALL_STATE(1974)] = 48417, - [SMALL_STATE(1975)] = 48435, - [SMALL_STATE(1976)] = 48453, - [SMALL_STATE(1977)] = 48471, - [SMALL_STATE(1978)] = 48489, - [SMALL_STATE(1979)] = 48507, - [SMALL_STATE(1980)] = 48525, - [SMALL_STATE(1981)] = 48543, - [SMALL_STATE(1982)] = 48561, - [SMALL_STATE(1983)] = 48579, - [SMALL_STATE(1984)] = 48597, - [SMALL_STATE(1985)] = 48615, - [SMALL_STATE(1986)] = 48633, - [SMALL_STATE(1987)] = 48651, - [SMALL_STATE(1988)] = 48669, - [SMALL_STATE(1989)] = 48687, - [SMALL_STATE(1990)] = 48705, - [SMALL_STATE(1991)] = 48723, - [SMALL_STATE(1992)] = 48741, - [SMALL_STATE(1993)] = 48759, - [SMALL_STATE(1994)] = 48777, - [SMALL_STATE(1995)] = 48795, - [SMALL_STATE(1996)] = 48813, - [SMALL_STATE(1997)] = 48831, - [SMALL_STATE(1998)] = 48849, - [SMALL_STATE(1999)] = 48867, - [SMALL_STATE(2000)] = 48885, - [SMALL_STATE(2001)] = 48903, - [SMALL_STATE(2002)] = 48921, - [SMALL_STATE(2003)] = 48939, - [SMALL_STATE(2004)] = 48957, - [SMALL_STATE(2005)] = 48975, - [SMALL_STATE(2006)] = 48993, - [SMALL_STATE(2007)] = 49011, - [SMALL_STATE(2008)] = 49029, - [SMALL_STATE(2009)] = 49047, - [SMALL_STATE(2010)] = 49065, - [SMALL_STATE(2011)] = 49083, - [SMALL_STATE(2012)] = 49101, - [SMALL_STATE(2013)] = 49119, - [SMALL_STATE(2014)] = 49137, - [SMALL_STATE(2015)] = 49155, - [SMALL_STATE(2016)] = 49173, - [SMALL_STATE(2017)] = 49191, - [SMALL_STATE(2018)] = 49209, - [SMALL_STATE(2019)] = 49227, - [SMALL_STATE(2020)] = 49245, - [SMALL_STATE(2021)] = 49263, - [SMALL_STATE(2022)] = 49281, - [SMALL_STATE(2023)] = 49299, - [SMALL_STATE(2024)] = 49317, - [SMALL_STATE(2025)] = 49335, - [SMALL_STATE(2026)] = 49353, - [SMALL_STATE(2027)] = 49371, - [SMALL_STATE(2028)] = 49389, - [SMALL_STATE(2029)] = 49407, - [SMALL_STATE(2030)] = 49425, - [SMALL_STATE(2031)] = 49443, - [SMALL_STATE(2032)] = 49461, - [SMALL_STATE(2033)] = 49479, - [SMALL_STATE(2034)] = 49497, - [SMALL_STATE(2035)] = 49515, - [SMALL_STATE(2036)] = 49533, - [SMALL_STATE(2037)] = 49551, - [SMALL_STATE(2038)] = 49569, - [SMALL_STATE(2039)] = 49587, - [SMALL_STATE(2040)] = 49605, - [SMALL_STATE(2041)] = 49623, - [SMALL_STATE(2042)] = 49641, - [SMALL_STATE(2043)] = 49659, - [SMALL_STATE(2044)] = 49677, - [SMALL_STATE(2045)] = 49695, - [SMALL_STATE(2046)] = 49713, - [SMALL_STATE(2047)] = 49731, - [SMALL_STATE(2048)] = 49749, - [SMALL_STATE(2049)] = 49767, - [SMALL_STATE(2050)] = 49785, - [SMALL_STATE(2051)] = 49803, - [SMALL_STATE(2052)] = 49821, - [SMALL_STATE(2053)] = 49839, - [SMALL_STATE(2054)] = 49857, - [SMALL_STATE(2055)] = 49875, - [SMALL_STATE(2056)] = 49893, - [SMALL_STATE(2057)] = 49911, - [SMALL_STATE(2058)] = 49929, - [SMALL_STATE(2059)] = 49947, - [SMALL_STATE(2060)] = 49965, - [SMALL_STATE(2061)] = 49983, - [SMALL_STATE(2062)] = 50001, - [SMALL_STATE(2063)] = 50019, - [SMALL_STATE(2064)] = 50037, - [SMALL_STATE(2065)] = 50055, - [SMALL_STATE(2066)] = 50073, - [SMALL_STATE(2067)] = 50091, - [SMALL_STATE(2068)] = 50109, - [SMALL_STATE(2069)] = 50127, - [SMALL_STATE(2070)] = 50145, - [SMALL_STATE(2071)] = 50163, - [SMALL_STATE(2072)] = 50181, - [SMALL_STATE(2073)] = 50199, - [SMALL_STATE(2074)] = 50217, - [SMALL_STATE(2075)] = 50235, - [SMALL_STATE(2076)] = 50253, - [SMALL_STATE(2077)] = 50271, - [SMALL_STATE(2078)] = 50289, - [SMALL_STATE(2079)] = 50307, - [SMALL_STATE(2080)] = 50325, - [SMALL_STATE(2081)] = 50343, - [SMALL_STATE(2082)] = 50361, - [SMALL_STATE(2083)] = 50379, - [SMALL_STATE(2084)] = 50397, - [SMALL_STATE(2085)] = 50415, - [SMALL_STATE(2086)] = 50433, - [SMALL_STATE(2087)] = 50451, - [SMALL_STATE(2088)] = 50469, - [SMALL_STATE(2089)] = 50487, - [SMALL_STATE(2090)] = 50505, - [SMALL_STATE(2091)] = 50523, - [SMALL_STATE(2092)] = 50541, - [SMALL_STATE(2093)] = 50559, - [SMALL_STATE(2094)] = 50577, - [SMALL_STATE(2095)] = 50595, - [SMALL_STATE(2096)] = 50613, - [SMALL_STATE(2097)] = 50631, - [SMALL_STATE(2098)] = 50649, - [SMALL_STATE(2099)] = 50667, - [SMALL_STATE(2100)] = 50685, - [SMALL_STATE(2101)] = 50703, - [SMALL_STATE(2102)] = 50721, - [SMALL_STATE(2103)] = 50739, - [SMALL_STATE(2104)] = 50757, - [SMALL_STATE(2105)] = 50775, - [SMALL_STATE(2106)] = 50793, - [SMALL_STATE(2107)] = 50811, - [SMALL_STATE(2108)] = 50829, - [SMALL_STATE(2109)] = 50847, - [SMALL_STATE(2110)] = 50865, - [SMALL_STATE(2111)] = 50883, - [SMALL_STATE(2112)] = 50901, - [SMALL_STATE(2113)] = 50919, - [SMALL_STATE(2114)] = 50937, - [SMALL_STATE(2115)] = 50955, - [SMALL_STATE(2116)] = 50973, - [SMALL_STATE(2117)] = 50991, - [SMALL_STATE(2118)] = 51009, - [SMALL_STATE(2119)] = 51027, - [SMALL_STATE(2120)] = 51045, - [SMALL_STATE(2121)] = 51063, - [SMALL_STATE(2122)] = 51081, - [SMALL_STATE(2123)] = 51099, - [SMALL_STATE(2124)] = 51117, - [SMALL_STATE(2125)] = 51135, - [SMALL_STATE(2126)] = 51153, - [SMALL_STATE(2127)] = 51171, - [SMALL_STATE(2128)] = 51189, - [SMALL_STATE(2129)] = 51207, - [SMALL_STATE(2130)] = 51225, - [SMALL_STATE(2131)] = 51243, - [SMALL_STATE(2132)] = 51261, - [SMALL_STATE(2133)] = 51279, - [SMALL_STATE(2134)] = 51297, - [SMALL_STATE(2135)] = 51315, - [SMALL_STATE(2136)] = 51333, - [SMALL_STATE(2137)] = 51351, - [SMALL_STATE(2138)] = 51369, - [SMALL_STATE(2139)] = 51387, - [SMALL_STATE(2140)] = 51405, - [SMALL_STATE(2141)] = 51423, - [SMALL_STATE(2142)] = 51441, - [SMALL_STATE(2143)] = 51459, - [SMALL_STATE(2144)] = 51477, - [SMALL_STATE(2145)] = 51495, - [SMALL_STATE(2146)] = 51513, - [SMALL_STATE(2147)] = 51531, - [SMALL_STATE(2148)] = 51549, - [SMALL_STATE(2149)] = 51567, - [SMALL_STATE(2150)] = 51585, - [SMALL_STATE(2151)] = 51603, - [SMALL_STATE(2152)] = 51621, - [SMALL_STATE(2153)] = 51639, - [SMALL_STATE(2154)] = 51657, - [SMALL_STATE(2155)] = 51675, - [SMALL_STATE(2156)] = 51693, - [SMALL_STATE(2157)] = 51711, - [SMALL_STATE(2158)] = 51729, - [SMALL_STATE(2159)] = 51747, - [SMALL_STATE(2160)] = 51765, - [SMALL_STATE(2161)] = 51783, - [SMALL_STATE(2162)] = 51801, - [SMALL_STATE(2163)] = 51819, - [SMALL_STATE(2164)] = 51837, - [SMALL_STATE(2165)] = 51855, - [SMALL_STATE(2166)] = 51873, - [SMALL_STATE(2167)] = 51891, - [SMALL_STATE(2168)] = 51909, - [SMALL_STATE(2169)] = 51927, - [SMALL_STATE(2170)] = 51945, - [SMALL_STATE(2171)] = 51963, - [SMALL_STATE(2172)] = 51981, - [SMALL_STATE(2173)] = 51999, - [SMALL_STATE(2174)] = 52017, - [SMALL_STATE(2175)] = 52035, - [SMALL_STATE(2176)] = 52053, - [SMALL_STATE(2177)] = 52071, - [SMALL_STATE(2178)] = 52089, - [SMALL_STATE(2179)] = 52107, - [SMALL_STATE(2180)] = 52125, - [SMALL_STATE(2181)] = 52143, - [SMALL_STATE(2182)] = 52161, - [SMALL_STATE(2183)] = 52179, - [SMALL_STATE(2184)] = 52197, - [SMALL_STATE(2185)] = 52215, - [SMALL_STATE(2186)] = 52233, - [SMALL_STATE(2187)] = 52251, - [SMALL_STATE(2188)] = 52269, - [SMALL_STATE(2189)] = 52287, - [SMALL_STATE(2190)] = 52305, - [SMALL_STATE(2191)] = 52323, - [SMALL_STATE(2192)] = 52341, - [SMALL_STATE(2193)] = 52359, - [SMALL_STATE(2194)] = 52377, - [SMALL_STATE(2195)] = 52395, - [SMALL_STATE(2196)] = 52413, - [SMALL_STATE(2197)] = 52431, - [SMALL_STATE(2198)] = 52449, - [SMALL_STATE(2199)] = 52467, - [SMALL_STATE(2200)] = 52485, - [SMALL_STATE(2201)] = 52503, - [SMALL_STATE(2202)] = 52521, - [SMALL_STATE(2203)] = 52539, - [SMALL_STATE(2204)] = 52557, - [SMALL_STATE(2205)] = 52575, - [SMALL_STATE(2206)] = 52593, - [SMALL_STATE(2207)] = 52611, - [SMALL_STATE(2208)] = 52629, - [SMALL_STATE(2209)] = 52647, - [SMALL_STATE(2210)] = 52665, - [SMALL_STATE(2211)] = 52683, - [SMALL_STATE(2212)] = 52701, - [SMALL_STATE(2213)] = 52719, - [SMALL_STATE(2214)] = 52737, - [SMALL_STATE(2215)] = 52755, - [SMALL_STATE(2216)] = 52773, - [SMALL_STATE(2217)] = 52791, - [SMALL_STATE(2218)] = 52809, - [SMALL_STATE(2219)] = 52827, - [SMALL_STATE(2220)] = 52845, - [SMALL_STATE(2221)] = 52863, - [SMALL_STATE(2222)] = 52881, - [SMALL_STATE(2223)] = 52899, - [SMALL_STATE(2224)] = 52917, - [SMALL_STATE(2225)] = 52935, - [SMALL_STATE(2226)] = 52953, - [SMALL_STATE(2227)] = 52971, - [SMALL_STATE(2228)] = 52989, - [SMALL_STATE(2229)] = 53007, - [SMALL_STATE(2230)] = 53025, - [SMALL_STATE(2231)] = 53043, - [SMALL_STATE(2232)] = 53061, - [SMALL_STATE(2233)] = 53079, - [SMALL_STATE(2234)] = 53097, - [SMALL_STATE(2235)] = 53115, - [SMALL_STATE(2236)] = 53133, - [SMALL_STATE(2237)] = 53151, - [SMALL_STATE(2238)] = 53169, - [SMALL_STATE(2239)] = 53173, - [SMALL_STATE(2240)] = 53177, + [SMALL_STATE(831)] = 0, + [SMALL_STATE(832)] = 84, + [SMALL_STATE(833)] = 166, + [SMALL_STATE(834)] = 247, + [SMALL_STATE(835)] = 328, + [SMALL_STATE(836)] = 434, + [SMALL_STATE(837)] = 552, + [SMALL_STATE(838)] = 670, + [SMALL_STATE(839)] = 788, + [SMALL_STATE(840)] = 906, + [SMALL_STATE(841)] = 1024, + [SMALL_STATE(842)] = 1158, + [SMALL_STATE(843)] = 1292, + [SMALL_STATE(844)] = 1378, + [SMALL_STATE(845)] = 1508, + [SMALL_STATE(846)] = 1620, + [SMALL_STATE(847)] = 1766, + [SMALL_STATE(848)] = 1848, + [SMALL_STATE(849)] = 1944, + [SMALL_STATE(850)] = 2090, + [SMALL_STATE(851)] = 2168, + [SMALL_STATE(852)] = 2274, + [SMALL_STATE(853)] = 2404, + [SMALL_STATE(854)] = 2516, + [SMALL_STATE(855)] = 2612, + [SMALL_STATE(856)] = 2724, + [SMALL_STATE(857)] = 2826, + [SMALL_STATE(858)] = 2928, + [SMALL_STATE(859)] = 3024, + [SMALL_STATE(860)] = 3100, + [SMALL_STATE(861)] = 3244, + [SMALL_STATE(862)] = 3388, + [SMALL_STATE(863)] = 3532, + [SMALL_STATE(864)] = 3628, + [SMALL_STATE(865)] = 3724, + [SMALL_STATE(866)] = 3830, + [SMALL_STATE(867)] = 3916, + [SMALL_STATE(868)] = 4034, + [SMALL_STATE(869)] = 4107, + [SMALL_STATE(870)] = 4184, + [SMALL_STATE(871)] = 4259, + [SMALL_STATE(872)] = 4336, + [SMALL_STATE(873)] = 4411, + [SMALL_STATE(874)] = 4488, + [SMALL_STATE(875)] = 4561, + [SMALL_STATE(876)] = 4634, + [SMALL_STATE(877)] = 4707, + [SMALL_STATE(878)] = 4780, + [SMALL_STATE(879)] = 4852, + [SMALL_STATE(880)] = 4924, + [SMALL_STATE(881)] = 4996, + [SMALL_STATE(882)] = 5068, + [SMALL_STATE(883)] = 5140, + [SMALL_STATE(884)] = 5212, + [SMALL_STATE(885)] = 5284, + [SMALL_STATE(886)] = 5356, + [SMALL_STATE(887)] = 5430, + [SMALL_STATE(888)] = 5502, + [SMALL_STATE(889)] = 5574, + [SMALL_STATE(890)] = 5646, + [SMALL_STATE(891)] = 5718, + [SMALL_STATE(892)] = 5790, + [SMALL_STATE(893)] = 5862, + [SMALL_STATE(894)] = 5934, + [SMALL_STATE(895)] = 6006, + [SMALL_STATE(896)] = 6078, + [SMALL_STATE(897)] = 6150, + [SMALL_STATE(898)] = 6221, + [SMALL_STATE(899)] = 6292, + [SMALL_STATE(900)] = 6363, + [SMALL_STATE(901)] = 6434, + [SMALL_STATE(902)] = 6505, + [SMALL_STATE(903)] = 6576, + [SMALL_STATE(904)] = 6647, + [SMALL_STATE(905)] = 6718, + [SMALL_STATE(906)] = 6789, + [SMALL_STATE(907)] = 6860, + [SMALL_STATE(908)] = 6931, + [SMALL_STATE(909)] = 7002, + [SMALL_STATE(910)] = 7073, + [SMALL_STATE(911)] = 7144, + [SMALL_STATE(912)] = 7215, + [SMALL_STATE(913)] = 7286, + [SMALL_STATE(914)] = 7357, + [SMALL_STATE(915)] = 7428, + [SMALL_STATE(916)] = 7499, + [SMALL_STATE(917)] = 7570, + [SMALL_STATE(918)] = 7641, + [SMALL_STATE(919)] = 7712, + [SMALL_STATE(920)] = 7783, + [SMALL_STATE(921)] = 7854, + [SMALL_STATE(922)] = 7925, + [SMALL_STATE(923)] = 7996, + [SMALL_STATE(924)] = 8067, + [SMALL_STATE(925)] = 8138, + [SMALL_STATE(926)] = 8209, + [SMALL_STATE(927)] = 8280, + [SMALL_STATE(928)] = 8351, + [SMALL_STATE(929)] = 8422, + [SMALL_STATE(930)] = 8493, + [SMALL_STATE(931)] = 8564, + [SMALL_STATE(932)] = 8635, + [SMALL_STATE(933)] = 8706, + [SMALL_STATE(934)] = 8777, + [SMALL_STATE(935)] = 8848, + [SMALL_STATE(936)] = 8919, + [SMALL_STATE(937)] = 8990, + [SMALL_STATE(938)] = 9061, + [SMALL_STATE(939)] = 9132, + [SMALL_STATE(940)] = 9203, + [SMALL_STATE(941)] = 9274, + [SMALL_STATE(942)] = 9345, + [SMALL_STATE(943)] = 9416, + [SMALL_STATE(944)] = 9487, + [SMALL_STATE(945)] = 9558, + [SMALL_STATE(946)] = 9629, + [SMALL_STATE(947)] = 9700, + [SMALL_STATE(948)] = 9771, + [SMALL_STATE(949)] = 9842, + [SMALL_STATE(950)] = 9913, + [SMALL_STATE(951)] = 9984, + [SMALL_STATE(952)] = 10055, + [SMALL_STATE(953)] = 10126, + [SMALL_STATE(954)] = 10197, + [SMALL_STATE(955)] = 10268, + [SMALL_STATE(956)] = 10339, + [SMALL_STATE(957)] = 10410, + [SMALL_STATE(958)] = 10481, + [SMALL_STATE(959)] = 10552, + [SMALL_STATE(960)] = 10623, + [SMALL_STATE(961)] = 10694, + [SMALL_STATE(962)] = 10765, + [SMALL_STATE(963)] = 10836, + [SMALL_STATE(964)] = 10907, + [SMALL_STATE(965)] = 10978, + [SMALL_STATE(966)] = 11049, + [SMALL_STATE(967)] = 11120, + [SMALL_STATE(968)] = 11191, + [SMALL_STATE(969)] = 11262, + [SMALL_STATE(970)] = 11333, + [SMALL_STATE(971)] = 11404, + [SMALL_STATE(972)] = 11475, + [SMALL_STATE(973)] = 11546, + [SMALL_STATE(974)] = 11617, + [SMALL_STATE(975)] = 11688, + [SMALL_STATE(976)] = 11759, + [SMALL_STATE(977)] = 11830, + [SMALL_STATE(978)] = 11901, + [SMALL_STATE(979)] = 11972, + [SMALL_STATE(980)] = 12043, + [SMALL_STATE(981)] = 12114, + [SMALL_STATE(982)] = 12185, + [SMALL_STATE(983)] = 12256, + [SMALL_STATE(984)] = 12327, + [SMALL_STATE(985)] = 12398, + [SMALL_STATE(986)] = 12469, + [SMALL_STATE(987)] = 12540, + [SMALL_STATE(988)] = 12611, + [SMALL_STATE(989)] = 12682, + [SMALL_STATE(990)] = 12753, + [SMALL_STATE(991)] = 12824, + [SMALL_STATE(992)] = 12895, + [SMALL_STATE(993)] = 12966, + [SMALL_STATE(994)] = 13037, + [SMALL_STATE(995)] = 13108, + [SMALL_STATE(996)] = 13179, + [SMALL_STATE(997)] = 13250, + [SMALL_STATE(998)] = 13321, + [SMALL_STATE(999)] = 13392, + [SMALL_STATE(1000)] = 13463, + [SMALL_STATE(1001)] = 13534, + [SMALL_STATE(1002)] = 13605, + [SMALL_STATE(1003)] = 13676, + [SMALL_STATE(1004)] = 13747, + [SMALL_STATE(1005)] = 13818, + [SMALL_STATE(1006)] = 13889, + [SMALL_STATE(1007)] = 13960, + [SMALL_STATE(1008)] = 14031, + [SMALL_STATE(1009)] = 14102, + [SMALL_STATE(1010)] = 14173, + [SMALL_STATE(1011)] = 14244, + [SMALL_STATE(1012)] = 14315, + [SMALL_STATE(1013)] = 14386, + [SMALL_STATE(1014)] = 14457, + [SMALL_STATE(1015)] = 14528, + [SMALL_STATE(1016)] = 14599, + [SMALL_STATE(1017)] = 14670, + [SMALL_STATE(1018)] = 14741, + [SMALL_STATE(1019)] = 14812, + [SMALL_STATE(1020)] = 14883, + [SMALL_STATE(1021)] = 14954, + [SMALL_STATE(1022)] = 15025, + [SMALL_STATE(1023)] = 15096, + [SMALL_STATE(1024)] = 15167, + [SMALL_STATE(1025)] = 15238, + [SMALL_STATE(1026)] = 15309, + [SMALL_STATE(1027)] = 15380, + [SMALL_STATE(1028)] = 15451, + [SMALL_STATE(1029)] = 15522, + [SMALL_STATE(1030)] = 15593, + [SMALL_STATE(1031)] = 15734, + [SMALL_STATE(1032)] = 15875, + [SMALL_STATE(1033)] = 16020, + [SMALL_STATE(1034)] = 16164, + [SMALL_STATE(1035)] = 16304, + [SMALL_STATE(1036)] = 16448, + [SMALL_STATE(1037)] = 16588, + [SMALL_STATE(1038)] = 16732, + [SMALL_STATE(1039)] = 16872, + [SMALL_STATE(1040)] = 17016, + [SMALL_STATE(1041)] = 17156, + [SMALL_STATE(1042)] = 17296, + [SMALL_STATE(1043)] = 17436, + [SMALL_STATE(1044)] = 17580, + [SMALL_STATE(1045)] = 17724, + [SMALL_STATE(1046)] = 17864, + [SMALL_STATE(1047)] = 18008, + [SMALL_STATE(1048)] = 18152, + [SMALL_STATE(1049)] = 18294, + [SMALL_STATE(1050)] = 18433, + [SMALL_STATE(1051)] = 18504, + [SMALL_STATE(1052)] = 18645, + [SMALL_STATE(1053)] = 18786, + [SMALL_STATE(1054)] = 18925, + [SMALL_STATE(1055)] = 19000, + [SMALL_STATE(1056)] = 19139, + [SMALL_STATE(1057)] = 19278, + [SMALL_STATE(1058)] = 19417, + [SMALL_STATE(1059)] = 19556, + [SMALL_STATE(1060)] = 19695, + [SMALL_STATE(1061)] = 19762, + [SMALL_STATE(1062)] = 19831, + [SMALL_STATE(1063)] = 19900, + [SMALL_STATE(1064)] = 19971, + [SMALL_STATE(1065)] = 20110, + [SMALL_STATE(1066)] = 20248, + [SMALL_STATE(1067)] = 20386, + [SMALL_STATE(1068)] = 20524, + [SMALL_STATE(1069)] = 20602, + [SMALL_STATE(1070)] = 20740, + [SMALL_STATE(1071)] = 20878, + [SMALL_STATE(1072)] = 21016, + [SMALL_STATE(1073)] = 21154, + [SMALL_STATE(1074)] = 21292, + [SMALL_STATE(1075)] = 21430, + [SMALL_STATE(1076)] = 21568, + [SMALL_STATE(1077)] = 21706, + [SMALL_STATE(1078)] = 21844, + [SMALL_STATE(1079)] = 21982, + [SMALL_STATE(1080)] = 22120, + [SMALL_STATE(1081)] = 22198, + [SMALL_STATE(1082)] = 22268, + [SMALL_STATE(1083)] = 22406, + [SMALL_STATE(1084)] = 22474, + [SMALL_STATE(1085)] = 22612, + [SMALL_STATE(1086)] = 22750, + [SMALL_STATE(1087)] = 22888, + [SMALL_STATE(1088)] = 23026, + [SMALL_STATE(1089)] = 23164, + [SMALL_STATE(1090)] = 23302, + [SMALL_STATE(1091)] = 23440, + [SMALL_STATE(1092)] = 23578, + [SMALL_STATE(1093)] = 23716, + [SMALL_STATE(1094)] = 23854, + [SMALL_STATE(1095)] = 23992, + [SMALL_STATE(1096)] = 24130, + [SMALL_STATE(1097)] = 24268, + [SMALL_STATE(1098)] = 24406, + [SMALL_STATE(1099)] = 24544, + [SMALL_STATE(1100)] = 24682, + [SMALL_STATE(1101)] = 24820, + [SMALL_STATE(1102)] = 24958, + [SMALL_STATE(1103)] = 25096, + [SMALL_STATE(1104)] = 25234, + [SMALL_STATE(1105)] = 25372, + [SMALL_STATE(1106)] = 25510, + [SMALL_STATE(1107)] = 25648, + [SMALL_STATE(1108)] = 25786, + [SMALL_STATE(1109)] = 25924, + [SMALL_STATE(1110)] = 26062, + [SMALL_STATE(1111)] = 26200, + [SMALL_STATE(1112)] = 26338, + [SMALL_STATE(1113)] = 26476, + [SMALL_STATE(1114)] = 26614, + [SMALL_STATE(1115)] = 26752, + [SMALL_STATE(1116)] = 26830, + [SMALL_STATE(1117)] = 26896, + [SMALL_STATE(1118)] = 27034, + [SMALL_STATE(1119)] = 27172, + [SMALL_STATE(1120)] = 27310, + [SMALL_STATE(1121)] = 27445, + [SMALL_STATE(1122)] = 27510, + [SMALL_STATE(1123)] = 27575, + [SMALL_STATE(1124)] = 27640, + [SMALL_STATE(1125)] = 27705, + [SMALL_STATE(1126)] = 27770, + [SMALL_STATE(1127)] = 27835, + [SMALL_STATE(1128)] = 27900, + [SMALL_STATE(1129)] = 27965, + [SMALL_STATE(1130)] = 28068, + [SMALL_STATE(1131)] = 28137, + [SMALL_STATE(1132)] = 28202, + [SMALL_STATE(1133)] = 28267, + [SMALL_STATE(1134)] = 28332, + [SMALL_STATE(1135)] = 28397, + [SMALL_STATE(1136)] = 28497, + [SMALL_STATE(1137)] = 28595, + [SMALL_STATE(1138)] = 28693, + [SMALL_STATE(1139)] = 28791, + [SMALL_STATE(1140)] = 28889, + [SMALL_STATE(1141)] = 28989, + [SMALL_STATE(1142)] = 29083, + [SMALL_STATE(1143)] = 29149, + [SMALL_STATE(1144)] = 29247, + [SMALL_STATE(1145)] = 29343, + [SMALL_STATE(1146)] = 29443, + [SMALL_STATE(1147)] = 29543, + [SMALL_STATE(1148)] = 29643, + [SMALL_STATE(1149)] = 29711, + [SMALL_STATE(1150)] = 29809, + [SMALL_STATE(1151)] = 29906, + [SMALL_STATE(1152)] = 29971, + [SMALL_STATE(1153)] = 30065, + [SMALL_STATE(1154)] = 30152, + [SMALL_STATE(1155)] = 30235, + [SMALL_STATE(1156)] = 30320, + [SMALL_STATE(1157)] = 30403, + [SMALL_STATE(1158)] = 30488, + [SMALL_STATE(1159)] = 30570, + [SMALL_STATE(1160)] = 30652, + [SMALL_STATE(1161)] = 30734, + [SMALL_STATE(1162)] = 30816, + [SMALL_STATE(1163)] = 30896, + [SMALL_STATE(1164)] = 30978, + [SMALL_STATE(1165)] = 31060, + [SMALL_STATE(1166)] = 31142, + [SMALL_STATE(1167)] = 31224, + [SMALL_STATE(1168)] = 31306, + [SMALL_STATE(1169)] = 31385, + [SMALL_STATE(1170)] = 31464, + [SMALL_STATE(1171)] = 31543, + [SMALL_STATE(1172)] = 31622, + [SMALL_STATE(1173)] = 31701, + [SMALL_STATE(1174)] = 31780, + [SMALL_STATE(1175)] = 31859, + [SMALL_STATE(1176)] = 31938, + [SMALL_STATE(1177)] = 32017, + [SMALL_STATE(1178)] = 32096, + [SMALL_STATE(1179)] = 32175, + [SMALL_STATE(1180)] = 32254, + [SMALL_STATE(1181)] = 32333, + [SMALL_STATE(1182)] = 32409, + [SMALL_STATE(1183)] = 32485, + [SMALL_STATE(1184)] = 32561, + [SMALL_STATE(1185)] = 32637, + [SMALL_STATE(1186)] = 32713, + [SMALL_STATE(1187)] = 32789, + [SMALL_STATE(1188)] = 32865, + [SMALL_STATE(1189)] = 32941, + [SMALL_STATE(1190)] = 33017, + [SMALL_STATE(1191)] = 33093, + [SMALL_STATE(1192)] = 33169, + [SMALL_STATE(1193)] = 33245, + [SMALL_STATE(1194)] = 33321, + [SMALL_STATE(1195)] = 33397, + [SMALL_STATE(1196)] = 33473, + [SMALL_STATE(1197)] = 33549, + [SMALL_STATE(1198)] = 33625, + [SMALL_STATE(1199)] = 33701, + [SMALL_STATE(1200)] = 33777, + [SMALL_STATE(1201)] = 33832, + [SMALL_STATE(1202)] = 33887, + [SMALL_STATE(1203)] = 33942, + [SMALL_STATE(1204)] = 33997, + [SMALL_STATE(1205)] = 34052, + [SMALL_STATE(1206)] = 34107, + [SMALL_STATE(1207)] = 34162, + [SMALL_STATE(1208)] = 34217, + [SMALL_STATE(1209)] = 34272, + [SMALL_STATE(1210)] = 34327, + [SMALL_STATE(1211)] = 34382, + [SMALL_STATE(1212)] = 34437, + [SMALL_STATE(1213)] = 34492, + [SMALL_STATE(1214)] = 34547, + [SMALL_STATE(1215)] = 34602, + [SMALL_STATE(1216)] = 34653, + [SMALL_STATE(1217)] = 34704, + [SMALL_STATE(1218)] = 34755, + [SMALL_STATE(1219)] = 34806, + [SMALL_STATE(1220)] = 34856, + [SMALL_STATE(1221)] = 34906, + [SMALL_STATE(1222)] = 34955, + [SMALL_STATE(1223)] = 34996, + [SMALL_STATE(1224)] = 35041, + [SMALL_STATE(1225)] = 35090, + [SMALL_STATE(1226)] = 35126, + [SMALL_STATE(1227)] = 35161, + [SMALL_STATE(1228)] = 35196, + [SMALL_STATE(1229)] = 35231, + [SMALL_STATE(1230)] = 35288, + [SMALL_STATE(1231)] = 35323, + [SMALL_STATE(1232)] = 35358, + [SMALL_STATE(1233)] = 35409, + [SMALL_STATE(1234)] = 35444, + [SMALL_STATE(1235)] = 35507, + [SMALL_STATE(1236)] = 35542, + [SMALL_STATE(1237)] = 35577, + [SMALL_STATE(1238)] = 35612, + [SMALL_STATE(1239)] = 35647, + [SMALL_STATE(1240)] = 35700, + [SMALL_STATE(1241)] = 35735, + [SMALL_STATE(1242)] = 35798, + [SMALL_STATE(1243)] = 35833, + [SMALL_STATE(1244)] = 35896, + [SMALL_STATE(1245)] = 35959, + [SMALL_STATE(1246)] = 36019, + [SMALL_STATE(1247)] = 36079, + [SMALL_STATE(1248)] = 36135, + [SMALL_STATE(1249)] = 36195, + [SMALL_STATE(1250)] = 36252, + [SMALL_STATE(1251)] = 36303, + [SMALL_STATE(1252)] = 36354, + [SMALL_STATE(1253)] = 36411, + [SMALL_STATE(1254)] = 36466, + [SMALL_STATE(1255)] = 36523, + [SMALL_STATE(1256)] = 36574, + [SMALL_STATE(1257)] = 36631, + [SMALL_STATE(1258)] = 36688, + [SMALL_STATE(1259)] = 36745, + [SMALL_STATE(1260)] = 36796, + [SMALL_STATE(1261)] = 36831, + [SMALL_STATE(1262)] = 36888, + [SMALL_STATE(1263)] = 36945, + [SMALL_STATE(1264)] = 36996, + [SMALL_STATE(1265)] = 37053, + [SMALL_STATE(1266)] = 37107, + [SMALL_STATE(1267)] = 37161, + [SMALL_STATE(1268)] = 37203, + [SMALL_STATE(1269)] = 37257, + [SMALL_STATE(1270)] = 37311, + [SMALL_STATE(1271)] = 37365, + [SMALL_STATE(1272)] = 37419, + [SMALL_STATE(1273)] = 37473, + [SMALL_STATE(1274)] = 37527, + [SMALL_STATE(1275)] = 37581, + [SMALL_STATE(1276)] = 37635, + [SMALL_STATE(1277)] = 37689, + [SMALL_STATE(1278)] = 37743, + [SMALL_STATE(1279)] = 37797, + [SMALL_STATE(1280)] = 37851, + [SMALL_STATE(1281)] = 37905, + [SMALL_STATE(1282)] = 37959, + [SMALL_STATE(1283)] = 38013, + [SMALL_STATE(1284)] = 38067, + [SMALL_STATE(1285)] = 38121, + [SMALL_STATE(1286)] = 38172, + [SMALL_STATE(1287)] = 38223, + [SMALL_STATE(1288)] = 38274, + [SMALL_STATE(1289)] = 38323, + [SMALL_STATE(1290)] = 38372, + [SMALL_STATE(1291)] = 38407, + [SMALL_STATE(1292)] = 38458, + [SMALL_STATE(1293)] = 38497, + [SMALL_STATE(1294)] = 38536, + [SMALL_STATE(1295)] = 38587, + [SMALL_STATE(1296)] = 38638, + [SMALL_STATE(1297)] = 38689, + [SMALL_STATE(1298)] = 38740, + [SMALL_STATE(1299)] = 38791, + [SMALL_STATE(1300)] = 38842, + [SMALL_STATE(1301)] = 38873, + [SMALL_STATE(1302)] = 38924, + [SMALL_STATE(1303)] = 38975, + [SMALL_STATE(1304)] = 39026, + [SMALL_STATE(1305)] = 39057, + [SMALL_STATE(1306)] = 39108, + [SMALL_STATE(1307)] = 39159, + [SMALL_STATE(1308)] = 39198, + [SMALL_STATE(1309)] = 39249, + [SMALL_STATE(1310)] = 39300, + [SMALL_STATE(1311)] = 39348, + [SMALL_STATE(1312)] = 39396, + [SMALL_STATE(1313)] = 39444, + [SMALL_STATE(1314)] = 39474, + [SMALL_STATE(1315)] = 39504, + [SMALL_STATE(1316)] = 39534, + [SMALL_STATE(1317)] = 39582, + [SMALL_STATE(1318)] = 39630, + [SMALL_STATE(1319)] = 39678, + [SMALL_STATE(1320)] = 39726, + [SMALL_STATE(1321)] = 39774, + [SMALL_STATE(1322)] = 39804, + [SMALL_STATE(1323)] = 39852, + [SMALL_STATE(1324)] = 39900, + [SMALL_STATE(1325)] = 39948, + [SMALL_STATE(1326)] = 39996, + [SMALL_STATE(1327)] = 40044, + [SMALL_STATE(1328)] = 40092, + [SMALL_STATE(1329)] = 40140, + [SMALL_STATE(1330)] = 40188, + [SMALL_STATE(1331)] = 40236, + [SMALL_STATE(1332)] = 40284, + [SMALL_STATE(1333)] = 40332, + [SMALL_STATE(1334)] = 40380, + [SMALL_STATE(1335)] = 40428, + [SMALL_STATE(1336)] = 40457, + [SMALL_STATE(1337)] = 40502, + [SMALL_STATE(1338)] = 40547, + [SMALL_STATE(1339)] = 40592, + [SMALL_STATE(1340)] = 40637, + [SMALL_STATE(1341)] = 40682, + [SMALL_STATE(1342)] = 40727, + [SMALL_STATE(1343)] = 40772, + [SMALL_STATE(1344)] = 40801, + [SMALL_STATE(1345)] = 40846, + [SMALL_STATE(1346)] = 40875, + [SMALL_STATE(1347)] = 40904, + [SMALL_STATE(1348)] = 40949, + [SMALL_STATE(1349)] = 40994, + [SMALL_STATE(1350)] = 41039, + [SMALL_STATE(1351)] = 41084, + [SMALL_STATE(1352)] = 41111, + [SMALL_STATE(1353)] = 41143, + [SMALL_STATE(1354)] = 41169, + [SMALL_STATE(1355)] = 41204, + [SMALL_STATE(1356)] = 41229, + [SMALL_STATE(1357)] = 41262, + [SMALL_STATE(1358)] = 41299, + [SMALL_STATE(1359)] = 41324, + [SMALL_STATE(1360)] = 41349, + [SMALL_STATE(1361)] = 41374, + [SMALL_STATE(1362)] = 41411, + [SMALL_STATE(1363)] = 41436, + [SMALL_STATE(1364)] = 41461, + [SMALL_STATE(1365)] = 41485, + [SMALL_STATE(1366)] = 41519, + [SMALL_STATE(1367)] = 41555, + [SMALL_STATE(1368)] = 41581, + [SMALL_STATE(1369)] = 41617, + [SMALL_STATE(1370)] = 41653, + [SMALL_STATE(1371)] = 41685, + [SMALL_STATE(1372)] = 41715, + [SMALL_STATE(1373)] = 41751, + [SMALL_STATE(1374)] = 41787, + [SMALL_STATE(1375)] = 41823, + [SMALL_STATE(1376)] = 41853, + [SMALL_STATE(1377)] = 41889, + [SMALL_STATE(1378)] = 41925, + [SMALL_STATE(1379)] = 41957, + [SMALL_STATE(1380)] = 41981, + [SMALL_STATE(1381)] = 42017, + [SMALL_STATE(1382)] = 42043, + [SMALL_STATE(1383)] = 42076, + [SMALL_STATE(1384)] = 42103, + [SMALL_STATE(1385)] = 42134, + [SMALL_STATE(1386)] = 42157, + [SMALL_STATE(1387)] = 42180, + [SMALL_STATE(1388)] = 42211, + [SMALL_STATE(1389)] = 42242, + [SMALL_STATE(1390)] = 42273, + [SMALL_STATE(1391)] = 42304, + [SMALL_STATE(1392)] = 42335, + [SMALL_STATE(1393)] = 42366, + [SMALL_STATE(1394)] = 42397, + [SMALL_STATE(1395)] = 42428, + [SMALL_STATE(1396)] = 42459, + [SMALL_STATE(1397)] = 42482, + [SMALL_STATE(1398)] = 42511, + [SMALL_STATE(1399)] = 42540, + [SMALL_STATE(1400)] = 42565, + [SMALL_STATE(1401)] = 42596, + [SMALL_STATE(1402)] = 42623, + [SMALL_STATE(1403)] = 42654, + [SMALL_STATE(1404)] = 42685, + [SMALL_STATE(1405)] = 42716, + [SMALL_STATE(1406)] = 42747, + [SMALL_STATE(1407)] = 42778, + [SMALL_STATE(1408)] = 42805, + [SMALL_STATE(1409)] = 42834, + [SMALL_STATE(1410)] = 42865, + [SMALL_STATE(1411)] = 42892, + [SMALL_STATE(1412)] = 42923, + [SMALL_STATE(1413)] = 42956, + [SMALL_STATE(1414)] = 42987, + [SMALL_STATE(1415)] = 43018, + [SMALL_STATE(1416)] = 43049, + [SMALL_STATE(1417)] = 43080, + [SMALL_STATE(1418)] = 43111, + [SMALL_STATE(1419)] = 43134, + [SMALL_STATE(1420)] = 43165, + [SMALL_STATE(1421)] = 43196, + [SMALL_STATE(1422)] = 43219, + [SMALL_STATE(1423)] = 43250, + [SMALL_STATE(1424)] = 43281, + [SMALL_STATE(1425)] = 43312, + [SMALL_STATE(1426)] = 43343, + [SMALL_STATE(1427)] = 43374, + [SMALL_STATE(1428)] = 43405, + [SMALL_STATE(1429)] = 43436, + [SMALL_STATE(1430)] = 43467, + [SMALL_STATE(1431)] = 43498, + [SMALL_STATE(1432)] = 43531, + [SMALL_STATE(1433)] = 43562, + [SMALL_STATE(1434)] = 43595, + [SMALL_STATE(1435)] = 43618, + [SMALL_STATE(1436)] = 43641, + [SMALL_STATE(1437)] = 43670, + [SMALL_STATE(1438)] = 43695, + [SMALL_STATE(1439)] = 43726, + [SMALL_STATE(1440)] = 43751, + [SMALL_STATE(1441)] = 43780, + [SMALL_STATE(1442)] = 43805, + [SMALL_STATE(1443)] = 43836, + [SMALL_STATE(1444)] = 43863, + [SMALL_STATE(1445)] = 43892, + [SMALL_STATE(1446)] = 43925, + [SMALL_STATE(1447)] = 43952, + [SMALL_STATE(1448)] = 43974, + [SMALL_STATE(1449)] = 44004, + [SMALL_STATE(1450)] = 44026, + [SMALL_STATE(1451)] = 44048, + [SMALL_STATE(1452)] = 44070, + [SMALL_STATE(1453)] = 44098, + [SMALL_STATE(1454)] = 44128, + [SMALL_STATE(1455)] = 44154, + [SMALL_STATE(1456)] = 44184, + [SMALL_STATE(1457)] = 44214, + [SMALL_STATE(1458)] = 44236, + [SMALL_STATE(1459)] = 44262, + [SMALL_STATE(1460)] = 44290, + [SMALL_STATE(1461)] = 44320, + [SMALL_STATE(1462)] = 44344, + [SMALL_STATE(1463)] = 44370, + [SMALL_STATE(1464)] = 44400, + [SMALL_STATE(1465)] = 44422, + [SMALL_STATE(1466)] = 44444, + [SMALL_STATE(1467)] = 44466, + [SMALL_STATE(1468)] = 44488, + [SMALL_STATE(1469)] = 44514, + [SMALL_STATE(1470)] = 44542, + [SMALL_STATE(1471)] = 44564, + [SMALL_STATE(1472)] = 44586, + [SMALL_STATE(1473)] = 44616, + [SMALL_STATE(1474)] = 44640, + [SMALL_STATE(1475)] = 44662, + [SMALL_STATE(1476)] = 44684, + [SMALL_STATE(1477)] = 44706, + [SMALL_STATE(1478)] = 44728, + [SMALL_STATE(1479)] = 44752, + [SMALL_STATE(1480)] = 44782, + [SMALL_STATE(1481)] = 44804, + [SMALL_STATE(1482)] = 44834, + [SMALL_STATE(1483)] = 44864, + [SMALL_STATE(1484)] = 44894, + [SMALL_STATE(1485)] = 44924, + [SMALL_STATE(1486)] = 44945, + [SMALL_STATE(1487)] = 44972, + [SMALL_STATE(1488)] = 44999, + [SMALL_STATE(1489)] = 45026, + [SMALL_STATE(1490)] = 45053, + [SMALL_STATE(1491)] = 45074, + [SMALL_STATE(1492)] = 45097, + [SMALL_STATE(1493)] = 45118, + [SMALL_STATE(1494)] = 45139, + [SMALL_STATE(1495)] = 45166, + [SMALL_STATE(1496)] = 45191, + [SMALL_STATE(1497)] = 45218, + [SMALL_STATE(1498)] = 45241, + [SMALL_STATE(1499)] = 45264, + [SMALL_STATE(1500)] = 45291, + [SMALL_STATE(1501)] = 45318, + [SMALL_STATE(1502)] = 45343, + [SMALL_STATE(1503)] = 45364, + [SMALL_STATE(1504)] = 45385, + [SMALL_STATE(1505)] = 45406, + [SMALL_STATE(1506)] = 45433, + [SMALL_STATE(1507)] = 45460, + [SMALL_STATE(1508)] = 45487, + [SMALL_STATE(1509)] = 45508, + [SMALL_STATE(1510)] = 45535, + [SMALL_STATE(1511)] = 45560, + [SMALL_STATE(1512)] = 45587, + [SMALL_STATE(1513)] = 45612, + [SMALL_STATE(1514)] = 45639, + [SMALL_STATE(1515)] = 45666, + [SMALL_STATE(1516)] = 45687, + [SMALL_STATE(1517)] = 45708, + [SMALL_STATE(1518)] = 45729, + [SMALL_STATE(1519)] = 45756, + [SMALL_STATE(1520)] = 45783, + [SMALL_STATE(1521)] = 45804, + [SMALL_STATE(1522)] = 45831, + [SMALL_STATE(1523)] = 45858, + [SMALL_STATE(1524)] = 45885, + [SMALL_STATE(1525)] = 45908, + [SMALL_STATE(1526)] = 45935, + [SMALL_STATE(1527)] = 45960, + [SMALL_STATE(1528)] = 45981, + [SMALL_STATE(1529)] = 46008, + [SMALL_STATE(1530)] = 46029, + [SMALL_STATE(1531)] = 46056, + [SMALL_STATE(1532)] = 46077, + [SMALL_STATE(1533)] = 46104, + [SMALL_STATE(1534)] = 46131, + [SMALL_STATE(1535)] = 46158, + [SMALL_STATE(1536)] = 46185, + [SMALL_STATE(1537)] = 46212, + [SMALL_STATE(1538)] = 46239, + [SMALL_STATE(1539)] = 46266, + [SMALL_STATE(1540)] = 46293, + [SMALL_STATE(1541)] = 46314, + [SMALL_STATE(1542)] = 46341, + [SMALL_STATE(1543)] = 46366, + [SMALL_STATE(1544)] = 46391, + [SMALL_STATE(1545)] = 46418, + [SMALL_STATE(1546)] = 46445, + [SMALL_STATE(1547)] = 46472, + [SMALL_STATE(1548)] = 46499, + [SMALL_STATE(1549)] = 46526, + [SMALL_STATE(1550)] = 46553, + [SMALL_STATE(1551)] = 46580, + [SMALL_STATE(1552)] = 46607, + [SMALL_STATE(1553)] = 46634, + [SMALL_STATE(1554)] = 46661, + [SMALL_STATE(1555)] = 46688, + [SMALL_STATE(1556)] = 46715, + [SMALL_STATE(1557)] = 46742, + [SMALL_STATE(1558)] = 46767, + [SMALL_STATE(1559)] = 46792, + [SMALL_STATE(1560)] = 46815, + [SMALL_STATE(1561)] = 46842, + [SMALL_STATE(1562)] = 46869, + [SMALL_STATE(1563)] = 46896, + [SMALL_STATE(1564)] = 46923, + [SMALL_STATE(1565)] = 46950, + [SMALL_STATE(1566)] = 46977, + [SMALL_STATE(1567)] = 47004, + [SMALL_STATE(1568)] = 47031, + [SMALL_STATE(1569)] = 47058, + [SMALL_STATE(1570)] = 47079, + [SMALL_STATE(1571)] = 47104, + [SMALL_STATE(1572)] = 47131, + [SMALL_STATE(1573)] = 47158, + [SMALL_STATE(1574)] = 47185, + [SMALL_STATE(1575)] = 47212, + [SMALL_STATE(1576)] = 47239, + [SMALL_STATE(1577)] = 47266, + [SMALL_STATE(1578)] = 47287, + [SMALL_STATE(1579)] = 47314, + [SMALL_STATE(1580)] = 47341, + [SMALL_STATE(1581)] = 47366, + [SMALL_STATE(1582)] = 47393, + [SMALL_STATE(1583)] = 47418, + [SMALL_STATE(1584)] = 47445, + [SMALL_STATE(1585)] = 47470, + [SMALL_STATE(1586)] = 47497, + [SMALL_STATE(1587)] = 47524, + [SMALL_STATE(1588)] = 47551, + [SMALL_STATE(1589)] = 47578, + [SMALL_STATE(1590)] = 47605, + [SMALL_STATE(1591)] = 47632, + [SMALL_STATE(1592)] = 47659, + [SMALL_STATE(1593)] = 47686, + [SMALL_STATE(1594)] = 47713, + [SMALL_STATE(1595)] = 47740, + [SMALL_STATE(1596)] = 47767, + [SMALL_STATE(1597)] = 47794, + [SMALL_STATE(1598)] = 47821, + [SMALL_STATE(1599)] = 47848, + [SMALL_STATE(1600)] = 47875, + [SMALL_STATE(1601)] = 47902, + [SMALL_STATE(1602)] = 47929, + [SMALL_STATE(1603)] = 47956, + [SMALL_STATE(1604)] = 47983, + [SMALL_STATE(1605)] = 48004, + [SMALL_STATE(1606)] = 48031, + [SMALL_STATE(1607)] = 48052, + [SMALL_STATE(1608)] = 48073, + [SMALL_STATE(1609)] = 48098, + [SMALL_STATE(1610)] = 48119, + [SMALL_STATE(1611)] = 48144, + [SMALL_STATE(1612)] = 48167, + [SMALL_STATE(1613)] = 48188, + [SMALL_STATE(1614)] = 48213, + [SMALL_STATE(1615)] = 48240, + [SMALL_STATE(1616)] = 48267, + [SMALL_STATE(1617)] = 48292, + [SMALL_STATE(1618)] = 48312, + [SMALL_STATE(1619)] = 48332, + [SMALL_STATE(1620)] = 48356, + [SMALL_STATE(1621)] = 48376, + [SMALL_STATE(1622)] = 48396, + [SMALL_STATE(1623)] = 48420, + [SMALL_STATE(1624)] = 48444, + [SMALL_STATE(1625)] = 48468, + [SMALL_STATE(1626)] = 48490, + [SMALL_STATE(1627)] = 48510, + [SMALL_STATE(1628)] = 48530, + [SMALL_STATE(1629)] = 48554, + [SMALL_STATE(1630)] = 48578, + [SMALL_STATE(1631)] = 48602, + [SMALL_STATE(1632)] = 48622, + [SMALL_STATE(1633)] = 48646, + [SMALL_STATE(1634)] = 48670, + [SMALL_STATE(1635)] = 48690, + [SMALL_STATE(1636)] = 48714, + [SMALL_STATE(1637)] = 48734, + [SMALL_STATE(1638)] = 48758, + [SMALL_STATE(1639)] = 48782, + [SMALL_STATE(1640)] = 48806, + [SMALL_STATE(1641)] = 48830, + [SMALL_STATE(1642)] = 48852, + [SMALL_STATE(1643)] = 48876, + [SMALL_STATE(1644)] = 48900, + [SMALL_STATE(1645)] = 48922, + [SMALL_STATE(1646)] = 48946, + [SMALL_STATE(1647)] = 48968, + [SMALL_STATE(1648)] = 48992, + [SMALL_STATE(1649)] = 49016, + [SMALL_STATE(1650)] = 49040, + [SMALL_STATE(1651)] = 49064, + [SMALL_STATE(1652)] = 49084, + [SMALL_STATE(1653)] = 49108, + [SMALL_STATE(1654)] = 49128, + [SMALL_STATE(1655)] = 49148, + [SMALL_STATE(1656)] = 49172, + [SMALL_STATE(1657)] = 49194, + [SMALL_STATE(1658)] = 49216, + [SMALL_STATE(1659)] = 49236, + [SMALL_STATE(1660)] = 49260, + [SMALL_STATE(1661)] = 49284, + [SMALL_STATE(1662)] = 49304, + [SMALL_STATE(1663)] = 49328, + [SMALL_STATE(1664)] = 49352, + [SMALL_STATE(1665)] = 49376, + [SMALL_STATE(1666)] = 49400, + [SMALL_STATE(1667)] = 49424, + [SMALL_STATE(1668)] = 49448, + [SMALL_STATE(1669)] = 49470, + [SMALL_STATE(1670)] = 49492, + [SMALL_STATE(1671)] = 49514, + [SMALL_STATE(1672)] = 49536, + [SMALL_STATE(1673)] = 49558, + [SMALL_STATE(1674)] = 49580, + [SMALL_STATE(1675)] = 49602, + [SMALL_STATE(1676)] = 49626, + [SMALL_STATE(1677)] = 49650, + [SMALL_STATE(1678)] = 49674, + [SMALL_STATE(1679)] = 49698, + [SMALL_STATE(1680)] = 49722, + [SMALL_STATE(1681)] = 49744, + [SMALL_STATE(1682)] = 49768, + [SMALL_STATE(1683)] = 49790, + [SMALL_STATE(1684)] = 49814, + [SMALL_STATE(1685)] = 49838, + [SMALL_STATE(1686)] = 49862, + [SMALL_STATE(1687)] = 49882, + [SMALL_STATE(1688)] = 49906, + [SMALL_STATE(1689)] = 49930, + [SMALL_STATE(1690)] = 49952, + [SMALL_STATE(1691)] = 49976, + [SMALL_STATE(1692)] = 50000, + [SMALL_STATE(1693)] = 50024, + [SMALL_STATE(1694)] = 50048, + [SMALL_STATE(1695)] = 50072, + [SMALL_STATE(1696)] = 50096, + [SMALL_STATE(1697)] = 50120, + [SMALL_STATE(1698)] = 50140, + [SMALL_STATE(1699)] = 50164, + [SMALL_STATE(1700)] = 50188, + [SMALL_STATE(1701)] = 50210, + [SMALL_STATE(1702)] = 50234, + [SMALL_STATE(1703)] = 50258, + [SMALL_STATE(1704)] = 50282, + [SMALL_STATE(1705)] = 50304, + [SMALL_STATE(1706)] = 50328, + [SMALL_STATE(1707)] = 50352, + [SMALL_STATE(1708)] = 50376, + [SMALL_STATE(1709)] = 50400, + [SMALL_STATE(1710)] = 50422, + [SMALL_STATE(1711)] = 50446, + [SMALL_STATE(1712)] = 50470, + [SMALL_STATE(1713)] = 50494, + [SMALL_STATE(1714)] = 50516, + [SMALL_STATE(1715)] = 50538, + [SMALL_STATE(1716)] = 50560, + [SMALL_STATE(1717)] = 50584, + [SMALL_STATE(1718)] = 50608, + [SMALL_STATE(1719)] = 50632, + [SMALL_STATE(1720)] = 50656, + [SMALL_STATE(1721)] = 50680, + [SMALL_STATE(1722)] = 50704, + [SMALL_STATE(1723)] = 50728, + [SMALL_STATE(1724)] = 50752, + [SMALL_STATE(1725)] = 50772, + [SMALL_STATE(1726)] = 50792, + [SMALL_STATE(1727)] = 50816, + [SMALL_STATE(1728)] = 50836, + [SMALL_STATE(1729)] = 50856, + [SMALL_STATE(1730)] = 50878, + [SMALL_STATE(1731)] = 50902, + [SMALL_STATE(1732)] = 50926, + [SMALL_STATE(1733)] = 50946, + [SMALL_STATE(1734)] = 50970, + [SMALL_STATE(1735)] = 50994, + [SMALL_STATE(1736)] = 51014, + [SMALL_STATE(1737)] = 51038, + [SMALL_STATE(1738)] = 51062, + [SMALL_STATE(1739)] = 51086, + [SMALL_STATE(1740)] = 51106, + [SMALL_STATE(1741)] = 51130, + [SMALL_STATE(1742)] = 51151, + [SMALL_STATE(1743)] = 51172, + [SMALL_STATE(1744)] = 51193, + [SMALL_STATE(1745)] = 51214, + [SMALL_STATE(1746)] = 51233, + [SMALL_STATE(1747)] = 51254, + [SMALL_STATE(1748)] = 51275, + [SMALL_STATE(1749)] = 51296, + [SMALL_STATE(1750)] = 51317, + [SMALL_STATE(1751)] = 51336, + [SMALL_STATE(1752)] = 51357, + [SMALL_STATE(1753)] = 51376, + [SMALL_STATE(1754)] = 51397, + [SMALL_STATE(1755)] = 51418, + [SMALL_STATE(1756)] = 51437, + [SMALL_STATE(1757)] = 51458, + [SMALL_STATE(1758)] = 51479, + [SMALL_STATE(1759)] = 51500, + [SMALL_STATE(1760)] = 51519, + [SMALL_STATE(1761)] = 51540, + [SMALL_STATE(1762)] = 51559, + [SMALL_STATE(1763)] = 51578, + [SMALL_STATE(1764)] = 51599, + [SMALL_STATE(1765)] = 51618, + [SMALL_STATE(1766)] = 51639, + [SMALL_STATE(1767)] = 51660, + [SMALL_STATE(1768)] = 51679, + [SMALL_STATE(1769)] = 51700, + [SMALL_STATE(1770)] = 51719, + [SMALL_STATE(1771)] = 51740, + [SMALL_STATE(1772)] = 51761, + [SMALL_STATE(1773)] = 51782, + [SMALL_STATE(1774)] = 51803, + [SMALL_STATE(1775)] = 51824, + [SMALL_STATE(1776)] = 51845, + [SMALL_STATE(1777)] = 51866, + [SMALL_STATE(1778)] = 51885, + [SMALL_STATE(1779)] = 51906, + [SMALL_STATE(1780)] = 51927, + [SMALL_STATE(1781)] = 51948, + [SMALL_STATE(1782)] = 51969, + [SMALL_STATE(1783)] = 51990, + [SMALL_STATE(1784)] = 52011, + [SMALL_STATE(1785)] = 52032, + [SMALL_STATE(1786)] = 52053, + [SMALL_STATE(1787)] = 52074, + [SMALL_STATE(1788)] = 52095, + [SMALL_STATE(1789)] = 52116, + [SMALL_STATE(1790)] = 52135, + [SMALL_STATE(1791)] = 52154, + [SMALL_STATE(1792)] = 52175, + [SMALL_STATE(1793)] = 52194, + [SMALL_STATE(1794)] = 52213, + [SMALL_STATE(1795)] = 52232, + [SMALL_STATE(1796)] = 52253, + [SMALL_STATE(1797)] = 52272, + [SMALL_STATE(1798)] = 52293, + [SMALL_STATE(1799)] = 52312, + [SMALL_STATE(1800)] = 52333, + [SMALL_STATE(1801)] = 52354, + [SMALL_STATE(1802)] = 52375, + [SMALL_STATE(1803)] = 52394, + [SMALL_STATE(1804)] = 52415, + [SMALL_STATE(1805)] = 52436, + [SMALL_STATE(1806)] = 52457, + [SMALL_STATE(1807)] = 52476, + [SMALL_STATE(1808)] = 52497, + [SMALL_STATE(1809)] = 52518, + [SMALL_STATE(1810)] = 52537, + [SMALL_STATE(1811)] = 52558, + [SMALL_STATE(1812)] = 52577, + [SMALL_STATE(1813)] = 52598, + [SMALL_STATE(1814)] = 52619, + [SMALL_STATE(1815)] = 52640, + [SMALL_STATE(1816)] = 52661, + [SMALL_STATE(1817)] = 52682, + [SMALL_STATE(1818)] = 52703, + [SMALL_STATE(1819)] = 52722, + [SMALL_STATE(1820)] = 52743, + [SMALL_STATE(1821)] = 52764, + [SMALL_STATE(1822)] = 52785, + [SMALL_STATE(1823)] = 52806, + [SMALL_STATE(1824)] = 52827, + [SMALL_STATE(1825)] = 52848, + [SMALL_STATE(1826)] = 52869, + [SMALL_STATE(1827)] = 52890, + [SMALL_STATE(1828)] = 52909, + [SMALL_STATE(1829)] = 52930, + [SMALL_STATE(1830)] = 52951, + [SMALL_STATE(1831)] = 52972, + [SMALL_STATE(1832)] = 52993, + [SMALL_STATE(1833)] = 53012, + [SMALL_STATE(1834)] = 53033, + [SMALL_STATE(1835)] = 53054, + [SMALL_STATE(1836)] = 53075, + [SMALL_STATE(1837)] = 53096, + [SMALL_STATE(1838)] = 53117, + [SMALL_STATE(1839)] = 53138, + [SMALL_STATE(1840)] = 53159, + [SMALL_STATE(1841)] = 53180, + [SMALL_STATE(1842)] = 53201, + [SMALL_STATE(1843)] = 53222, + [SMALL_STATE(1844)] = 53243, + [SMALL_STATE(1845)] = 53264, + [SMALL_STATE(1846)] = 53285, + [SMALL_STATE(1847)] = 53306, + [SMALL_STATE(1848)] = 53327, + [SMALL_STATE(1849)] = 53348, + [SMALL_STATE(1850)] = 53367, + [SMALL_STATE(1851)] = 53388, + [SMALL_STATE(1852)] = 53407, + [SMALL_STATE(1853)] = 53428, + [SMALL_STATE(1854)] = 53449, + [SMALL_STATE(1855)] = 53470, + [SMALL_STATE(1856)] = 53489, + [SMALL_STATE(1857)] = 53510, + [SMALL_STATE(1858)] = 53531, + [SMALL_STATE(1859)] = 53552, + [SMALL_STATE(1860)] = 53573, + [SMALL_STATE(1861)] = 53594, + [SMALL_STATE(1862)] = 53615, + [SMALL_STATE(1863)] = 53636, + [SMALL_STATE(1864)] = 53657, + [SMALL_STATE(1865)] = 53678, + [SMALL_STATE(1866)] = 53699, + [SMALL_STATE(1867)] = 53718, + [SMALL_STATE(1868)] = 53737, + [SMALL_STATE(1869)] = 53756, + [SMALL_STATE(1870)] = 53775, + [SMALL_STATE(1871)] = 53796, + [SMALL_STATE(1872)] = 53817, + [SMALL_STATE(1873)] = 53838, + [SMALL_STATE(1874)] = 53859, + [SMALL_STATE(1875)] = 53880, + [SMALL_STATE(1876)] = 53901, + [SMALL_STATE(1877)] = 53922, + [SMALL_STATE(1878)] = 53943, + [SMALL_STATE(1879)] = 53964, + [SMALL_STATE(1880)] = 53983, + [SMALL_STATE(1881)] = 54004, + [SMALL_STATE(1882)] = 54025, + [SMALL_STATE(1883)] = 54046, + [SMALL_STATE(1884)] = 54067, + [SMALL_STATE(1885)] = 54088, + [SMALL_STATE(1886)] = 54109, + [SMALL_STATE(1887)] = 54130, + [SMALL_STATE(1888)] = 54149, + [SMALL_STATE(1889)] = 54170, + [SMALL_STATE(1890)] = 54189, + [SMALL_STATE(1891)] = 54208, + [SMALL_STATE(1892)] = 54227, + [SMALL_STATE(1893)] = 54248, + [SMALL_STATE(1894)] = 54267, + [SMALL_STATE(1895)] = 54288, + [SMALL_STATE(1896)] = 54309, + [SMALL_STATE(1897)] = 54330, + [SMALL_STATE(1898)] = 54351, + [SMALL_STATE(1899)] = 54372, + [SMALL_STATE(1900)] = 54393, + [SMALL_STATE(1901)] = 54414, + [SMALL_STATE(1902)] = 54435, + [SMALL_STATE(1903)] = 54456, + [SMALL_STATE(1904)] = 54477, + [SMALL_STATE(1905)] = 54496, + [SMALL_STATE(1906)] = 54517, + [SMALL_STATE(1907)] = 54538, + [SMALL_STATE(1908)] = 54557, + [SMALL_STATE(1909)] = 54578, + [SMALL_STATE(1910)] = 54597, + [SMALL_STATE(1911)] = 54618, + [SMALL_STATE(1912)] = 54639, + [SMALL_STATE(1913)] = 54660, + [SMALL_STATE(1914)] = 54679, + [SMALL_STATE(1915)] = 54698, + [SMALL_STATE(1916)] = 54719, + [SMALL_STATE(1917)] = 54740, + [SMALL_STATE(1918)] = 54761, + [SMALL_STATE(1919)] = 54782, + [SMALL_STATE(1920)] = 54803, + [SMALL_STATE(1921)] = 54824, + [SMALL_STATE(1922)] = 54845, + [SMALL_STATE(1923)] = 54866, + [SMALL_STATE(1924)] = 54887, + [SMALL_STATE(1925)] = 54908, + [SMALL_STATE(1926)] = 54929, + [SMALL_STATE(1927)] = 54950, + [SMALL_STATE(1928)] = 54971, + [SMALL_STATE(1929)] = 54992, + [SMALL_STATE(1930)] = 55013, + [SMALL_STATE(1931)] = 55034, + [SMALL_STATE(1932)] = 55053, + [SMALL_STATE(1933)] = 55074, + [SMALL_STATE(1934)] = 55093, + [SMALL_STATE(1935)] = 55114, + [SMALL_STATE(1936)] = 55132, + [SMALL_STATE(1937)] = 55150, + [SMALL_STATE(1938)] = 55168, + [SMALL_STATE(1939)] = 55186, + [SMALL_STATE(1940)] = 55204, + [SMALL_STATE(1941)] = 55222, + [SMALL_STATE(1942)] = 55240, + [SMALL_STATE(1943)] = 55258, + [SMALL_STATE(1944)] = 55276, + [SMALL_STATE(1945)] = 55294, + [SMALL_STATE(1946)] = 55312, + [SMALL_STATE(1947)] = 55330, + [SMALL_STATE(1948)] = 55348, + [SMALL_STATE(1949)] = 55366, + [SMALL_STATE(1950)] = 55384, + [SMALL_STATE(1951)] = 55402, + [SMALL_STATE(1952)] = 55420, + [SMALL_STATE(1953)] = 55438, + [SMALL_STATE(1954)] = 55456, + [SMALL_STATE(1955)] = 55474, + [SMALL_STATE(1956)] = 55492, + [SMALL_STATE(1957)] = 55510, + [SMALL_STATE(1958)] = 55528, + [SMALL_STATE(1959)] = 55546, + [SMALL_STATE(1960)] = 55564, + [SMALL_STATE(1961)] = 55582, + [SMALL_STATE(1962)] = 55600, + [SMALL_STATE(1963)] = 55618, + [SMALL_STATE(1964)] = 55636, + [SMALL_STATE(1965)] = 55654, + [SMALL_STATE(1966)] = 55672, + [SMALL_STATE(1967)] = 55690, + [SMALL_STATE(1968)] = 55708, + [SMALL_STATE(1969)] = 55726, + [SMALL_STATE(1970)] = 55744, + [SMALL_STATE(1971)] = 55762, + [SMALL_STATE(1972)] = 55780, + [SMALL_STATE(1973)] = 55798, + [SMALL_STATE(1974)] = 55816, + [SMALL_STATE(1975)] = 55834, + [SMALL_STATE(1976)] = 55852, + [SMALL_STATE(1977)] = 55870, + [SMALL_STATE(1978)] = 55888, + [SMALL_STATE(1979)] = 55906, + [SMALL_STATE(1980)] = 55924, + [SMALL_STATE(1981)] = 55942, + [SMALL_STATE(1982)] = 55960, + [SMALL_STATE(1983)] = 55978, + [SMALL_STATE(1984)] = 55996, + [SMALL_STATE(1985)] = 56014, + [SMALL_STATE(1986)] = 56032, + [SMALL_STATE(1987)] = 56050, + [SMALL_STATE(1988)] = 56068, + [SMALL_STATE(1989)] = 56086, + [SMALL_STATE(1990)] = 56104, + [SMALL_STATE(1991)] = 56122, + [SMALL_STATE(1992)] = 56140, + [SMALL_STATE(1993)] = 56158, + [SMALL_STATE(1994)] = 56176, + [SMALL_STATE(1995)] = 56194, + [SMALL_STATE(1996)] = 56212, + [SMALL_STATE(1997)] = 56230, + [SMALL_STATE(1998)] = 56248, + [SMALL_STATE(1999)] = 56266, + [SMALL_STATE(2000)] = 56284, + [SMALL_STATE(2001)] = 56302, + [SMALL_STATE(2002)] = 56320, + [SMALL_STATE(2003)] = 56338, + [SMALL_STATE(2004)] = 56356, + [SMALL_STATE(2005)] = 56374, + [SMALL_STATE(2006)] = 56392, + [SMALL_STATE(2007)] = 56410, + [SMALL_STATE(2008)] = 56428, + [SMALL_STATE(2009)] = 56446, + [SMALL_STATE(2010)] = 56464, + [SMALL_STATE(2011)] = 56482, + [SMALL_STATE(2012)] = 56500, + [SMALL_STATE(2013)] = 56518, + [SMALL_STATE(2014)] = 56536, + [SMALL_STATE(2015)] = 56554, + [SMALL_STATE(2016)] = 56572, + [SMALL_STATE(2017)] = 56590, + [SMALL_STATE(2018)] = 56608, + [SMALL_STATE(2019)] = 56626, + [SMALL_STATE(2020)] = 56644, + [SMALL_STATE(2021)] = 56662, + [SMALL_STATE(2022)] = 56680, + [SMALL_STATE(2023)] = 56698, + [SMALL_STATE(2024)] = 56716, + [SMALL_STATE(2025)] = 56734, + [SMALL_STATE(2026)] = 56752, + [SMALL_STATE(2027)] = 56770, + [SMALL_STATE(2028)] = 56788, + [SMALL_STATE(2029)] = 56806, + [SMALL_STATE(2030)] = 56824, + [SMALL_STATE(2031)] = 56842, + [SMALL_STATE(2032)] = 56860, + [SMALL_STATE(2033)] = 56878, + [SMALL_STATE(2034)] = 56896, + [SMALL_STATE(2035)] = 56914, + [SMALL_STATE(2036)] = 56932, + [SMALL_STATE(2037)] = 56950, + [SMALL_STATE(2038)] = 56968, + [SMALL_STATE(2039)] = 56986, + [SMALL_STATE(2040)] = 57004, + [SMALL_STATE(2041)] = 57022, + [SMALL_STATE(2042)] = 57040, + [SMALL_STATE(2043)] = 57058, + [SMALL_STATE(2044)] = 57076, + [SMALL_STATE(2045)] = 57094, + [SMALL_STATE(2046)] = 57112, + [SMALL_STATE(2047)] = 57130, + [SMALL_STATE(2048)] = 57148, + [SMALL_STATE(2049)] = 57166, + [SMALL_STATE(2050)] = 57184, + [SMALL_STATE(2051)] = 57202, + [SMALL_STATE(2052)] = 57220, + [SMALL_STATE(2053)] = 57238, + [SMALL_STATE(2054)] = 57256, + [SMALL_STATE(2055)] = 57274, + [SMALL_STATE(2056)] = 57292, + [SMALL_STATE(2057)] = 57310, + [SMALL_STATE(2058)] = 57328, + [SMALL_STATE(2059)] = 57346, + [SMALL_STATE(2060)] = 57364, + [SMALL_STATE(2061)] = 57382, + [SMALL_STATE(2062)] = 57400, + [SMALL_STATE(2063)] = 57418, + [SMALL_STATE(2064)] = 57436, + [SMALL_STATE(2065)] = 57454, + [SMALL_STATE(2066)] = 57472, + [SMALL_STATE(2067)] = 57490, + [SMALL_STATE(2068)] = 57508, + [SMALL_STATE(2069)] = 57526, + [SMALL_STATE(2070)] = 57544, + [SMALL_STATE(2071)] = 57562, + [SMALL_STATE(2072)] = 57580, + [SMALL_STATE(2073)] = 57598, + [SMALL_STATE(2074)] = 57616, + [SMALL_STATE(2075)] = 57634, + [SMALL_STATE(2076)] = 57652, + [SMALL_STATE(2077)] = 57670, + [SMALL_STATE(2078)] = 57688, + [SMALL_STATE(2079)] = 57706, + [SMALL_STATE(2080)] = 57724, + [SMALL_STATE(2081)] = 57742, + [SMALL_STATE(2082)] = 57760, + [SMALL_STATE(2083)] = 57778, + [SMALL_STATE(2084)] = 57796, + [SMALL_STATE(2085)] = 57814, + [SMALL_STATE(2086)] = 57832, + [SMALL_STATE(2087)] = 57850, + [SMALL_STATE(2088)] = 57868, + [SMALL_STATE(2089)] = 57886, + [SMALL_STATE(2090)] = 57904, + [SMALL_STATE(2091)] = 57922, + [SMALL_STATE(2092)] = 57940, + [SMALL_STATE(2093)] = 57958, + [SMALL_STATE(2094)] = 57976, + [SMALL_STATE(2095)] = 57994, + [SMALL_STATE(2096)] = 58012, + [SMALL_STATE(2097)] = 58030, + [SMALL_STATE(2098)] = 58048, + [SMALL_STATE(2099)] = 58066, + [SMALL_STATE(2100)] = 58084, + [SMALL_STATE(2101)] = 58102, + [SMALL_STATE(2102)] = 58120, + [SMALL_STATE(2103)] = 58138, + [SMALL_STATE(2104)] = 58156, + [SMALL_STATE(2105)] = 58174, + [SMALL_STATE(2106)] = 58192, + [SMALL_STATE(2107)] = 58210, + [SMALL_STATE(2108)] = 58228, + [SMALL_STATE(2109)] = 58246, + [SMALL_STATE(2110)] = 58264, + [SMALL_STATE(2111)] = 58282, + [SMALL_STATE(2112)] = 58300, + [SMALL_STATE(2113)] = 58318, + [SMALL_STATE(2114)] = 58336, + [SMALL_STATE(2115)] = 58354, + [SMALL_STATE(2116)] = 58372, + [SMALL_STATE(2117)] = 58390, + [SMALL_STATE(2118)] = 58408, + [SMALL_STATE(2119)] = 58426, + [SMALL_STATE(2120)] = 58444, + [SMALL_STATE(2121)] = 58462, + [SMALL_STATE(2122)] = 58480, + [SMALL_STATE(2123)] = 58498, + [SMALL_STATE(2124)] = 58516, + [SMALL_STATE(2125)] = 58534, + [SMALL_STATE(2126)] = 58552, + [SMALL_STATE(2127)] = 58570, + [SMALL_STATE(2128)] = 58588, + [SMALL_STATE(2129)] = 58606, + [SMALL_STATE(2130)] = 58624, + [SMALL_STATE(2131)] = 58642, + [SMALL_STATE(2132)] = 58660, + [SMALL_STATE(2133)] = 58678, + [SMALL_STATE(2134)] = 58696, + [SMALL_STATE(2135)] = 58714, + [SMALL_STATE(2136)] = 58732, + [SMALL_STATE(2137)] = 58750, + [SMALL_STATE(2138)] = 58768, + [SMALL_STATE(2139)] = 58786, + [SMALL_STATE(2140)] = 58804, + [SMALL_STATE(2141)] = 58822, + [SMALL_STATE(2142)] = 58840, + [SMALL_STATE(2143)] = 58858, + [SMALL_STATE(2144)] = 58876, + [SMALL_STATE(2145)] = 58894, + [SMALL_STATE(2146)] = 58912, + [SMALL_STATE(2147)] = 58930, + [SMALL_STATE(2148)] = 58948, + [SMALL_STATE(2149)] = 58966, + [SMALL_STATE(2150)] = 58984, + [SMALL_STATE(2151)] = 59002, + [SMALL_STATE(2152)] = 59020, + [SMALL_STATE(2153)] = 59038, + [SMALL_STATE(2154)] = 59056, + [SMALL_STATE(2155)] = 59074, + [SMALL_STATE(2156)] = 59092, + [SMALL_STATE(2157)] = 59110, + [SMALL_STATE(2158)] = 59128, + [SMALL_STATE(2159)] = 59146, + [SMALL_STATE(2160)] = 59164, + [SMALL_STATE(2161)] = 59182, + [SMALL_STATE(2162)] = 59200, + [SMALL_STATE(2163)] = 59218, + [SMALL_STATE(2164)] = 59236, + [SMALL_STATE(2165)] = 59254, + [SMALL_STATE(2166)] = 59272, + [SMALL_STATE(2167)] = 59290, + [SMALL_STATE(2168)] = 59308, + [SMALL_STATE(2169)] = 59326, + [SMALL_STATE(2170)] = 59344, + [SMALL_STATE(2171)] = 59362, + [SMALL_STATE(2172)] = 59380, + [SMALL_STATE(2173)] = 59398, + [SMALL_STATE(2174)] = 59416, + [SMALL_STATE(2175)] = 59434, + [SMALL_STATE(2176)] = 59452, + [SMALL_STATE(2177)] = 59470, + [SMALL_STATE(2178)] = 59488, + [SMALL_STATE(2179)] = 59506, + [SMALL_STATE(2180)] = 59524, + [SMALL_STATE(2181)] = 59542, + [SMALL_STATE(2182)] = 59560, + [SMALL_STATE(2183)] = 59578, + [SMALL_STATE(2184)] = 59596, + [SMALL_STATE(2185)] = 59614, + [SMALL_STATE(2186)] = 59632, + [SMALL_STATE(2187)] = 59650, + [SMALL_STATE(2188)] = 59668, + [SMALL_STATE(2189)] = 59686, + [SMALL_STATE(2190)] = 59704, + [SMALL_STATE(2191)] = 59722, + [SMALL_STATE(2192)] = 59740, + [SMALL_STATE(2193)] = 59758, + [SMALL_STATE(2194)] = 59776, + [SMALL_STATE(2195)] = 59794, + [SMALL_STATE(2196)] = 59812, + [SMALL_STATE(2197)] = 59830, + [SMALL_STATE(2198)] = 59848, + [SMALL_STATE(2199)] = 59866, + [SMALL_STATE(2200)] = 59884, + [SMALL_STATE(2201)] = 59902, + [SMALL_STATE(2202)] = 59920, + [SMALL_STATE(2203)] = 59938, + [SMALL_STATE(2204)] = 59956, + [SMALL_STATE(2205)] = 59974, + [SMALL_STATE(2206)] = 59992, + [SMALL_STATE(2207)] = 60010, + [SMALL_STATE(2208)] = 60028, + [SMALL_STATE(2209)] = 60046, + [SMALL_STATE(2210)] = 60064, + [SMALL_STATE(2211)] = 60082, + [SMALL_STATE(2212)] = 60100, + [SMALL_STATE(2213)] = 60118, + [SMALL_STATE(2214)] = 60136, + [SMALL_STATE(2215)] = 60154, + [SMALL_STATE(2216)] = 60172, + [SMALL_STATE(2217)] = 60190, + [SMALL_STATE(2218)] = 60208, + [SMALL_STATE(2219)] = 60226, + [SMALL_STATE(2220)] = 60244, + [SMALL_STATE(2221)] = 60262, + [SMALL_STATE(2222)] = 60280, + [SMALL_STATE(2223)] = 60298, + [SMALL_STATE(2224)] = 60316, + [SMALL_STATE(2225)] = 60334, + [SMALL_STATE(2226)] = 60352, + [SMALL_STATE(2227)] = 60370, + [SMALL_STATE(2228)] = 60388, + [SMALL_STATE(2229)] = 60406, + [SMALL_STATE(2230)] = 60424, + [SMALL_STATE(2231)] = 60442, + [SMALL_STATE(2232)] = 60460, + [SMALL_STATE(2233)] = 60478, + [SMALL_STATE(2234)] = 60496, + [SMALL_STATE(2235)] = 60514, + [SMALL_STATE(2236)] = 60532, + [SMALL_STATE(2237)] = 60550, + [SMALL_STATE(2238)] = 60568, + [SMALL_STATE(2239)] = 60586, + [SMALL_STATE(2240)] = 60604, + [SMALL_STATE(2241)] = 60622, + [SMALL_STATE(2242)] = 60640, + [SMALL_STATE(2243)] = 60658, + [SMALL_STATE(2244)] = 60676, + [SMALL_STATE(2245)] = 60694, + [SMALL_STATE(2246)] = 60712, + [SMALL_STATE(2247)] = 60730, + [SMALL_STATE(2248)] = 60748, + [SMALL_STATE(2249)] = 60766, + [SMALL_STATE(2250)] = 60784, + [SMALL_STATE(2251)] = 60802, + [SMALL_STATE(2252)] = 60820, + [SMALL_STATE(2253)] = 60838, + [SMALL_STATE(2254)] = 60856, + [SMALL_STATE(2255)] = 60874, + [SMALL_STATE(2256)] = 60892, + [SMALL_STATE(2257)] = 60910, + [SMALL_STATE(2258)] = 60928, + [SMALL_STATE(2259)] = 60946, + [SMALL_STATE(2260)] = 60964, + [SMALL_STATE(2261)] = 60982, + [SMALL_STATE(2262)] = 61000, + [SMALL_STATE(2263)] = 61018, + [SMALL_STATE(2264)] = 61036, + [SMALL_STATE(2265)] = 61054, + [SMALL_STATE(2266)] = 61072, + [SMALL_STATE(2267)] = 61090, + [SMALL_STATE(2268)] = 61108, + [SMALL_STATE(2269)] = 61126, + [SMALL_STATE(2270)] = 61144, + [SMALL_STATE(2271)] = 61162, + [SMALL_STATE(2272)] = 61180, + [SMALL_STATE(2273)] = 61198, + [SMALL_STATE(2274)] = 61216, + [SMALL_STATE(2275)] = 61234, + [SMALL_STATE(2276)] = 61252, + [SMALL_STATE(2277)] = 61256, + [SMALL_STATE(2278)] = 61260, + [SMALL_STATE(2279)] = 61264, + [SMALL_STATE(2280)] = 61268, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), [9] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_case_stmt, 3, 0, 0), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_case_stmt, 2, 0, 0), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(905), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1915), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1546), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(907), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(935), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(942), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(935), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1183), - [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1204), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(942), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(325), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(803), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(397), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1016), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1057), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1602), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(234), - [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1604), - [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1605), - [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(92), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2151), - [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(194), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1318), - [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(803), - [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1520), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1519), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1518), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), - [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1516), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1193), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1608), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(321), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(319), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(317), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1514), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1801), - [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1806), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1984), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1991), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1992), - [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(916), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1997), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2003), - [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2014), - [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(79), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2205), - [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2206), - [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_stmt_body, 1, 0, 0), - [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_stmt, 2, 0, 0), - [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_stmt, 2, 0, 0), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_stmt, 4, 0, 51), - [473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_stmt, 4, 0, 51), - [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_stmt, 3, 0, 51), - [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_stmt, 3, 0, 51), - [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_stmt, 3, 0, 0), - [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_stmt, 3, 0, 0), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(477), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(10), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1060), - [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(220), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), - [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1687), - [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2112), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1309), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1457), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1460), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1464), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1465), - [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1469), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1594), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(280), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(278), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(275), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1777), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(505), - [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(8), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1063), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1573), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(61), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2236), - [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(199), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), - [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1455), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1438), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1471), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1563), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1561), - [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(311), - [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(309), - [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(308), - [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(240), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1874), - [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1873), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(759), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(13), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1049), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(241), - [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1733), - [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2186), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1338), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1422), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1426), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1427), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1616), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(293), - [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(292), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(291), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(212), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1825), - [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1823), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(694), - [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1058), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1721), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1718), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(91), - [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2183), - [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(196), - [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1355), - [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1442), - [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1443), - [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1445), - [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1446), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1447), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(288), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(287), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(284), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(216), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1799), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1798), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(599), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(9), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(237), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1710), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1711), - [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2237), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(190), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1307), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1408), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), - [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), - [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1412), - [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1413), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1633), - [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(296), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(295), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1842), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_case_stmt, 3, 0, 0), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(886), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(899), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1790), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1505), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2223), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(906), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(903), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1222), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1260), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(906), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(828), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1219), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(360), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1159), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1179), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(216), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1731), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2227), + [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), + [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), + [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(828), + [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1500), + [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1532), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1233), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1629), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), + [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1763), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2100), + [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(899), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2121), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2126), + [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2159), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2190), + [394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(68), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2244), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1925), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_case_stmt, 2, 0, 0), + [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_case_stmt, 3, 0, 14), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_stmt, 2, 0, 0), + [457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_stmt, 2, 0, 0), + [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_stmt, 3, 0, 81), + [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_stmt, 3, 0, 81), + [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_stmt, 3, 0, 82), + [465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_stmt, 3, 0, 82), + [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_stmt, 3, 0, 0), + [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_stmt, 3, 0, 0), + [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_stmt, 4, 0, 81), + [473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_stmt, 4, 0, 81), + [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_stmt, 4, 0, 82), + [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_stmt, 4, 0, 82), + [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_stmt_body, 1, 0, 0), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(475), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(13), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1176), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(248), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1691), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2274), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1252), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1597), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1598), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1599), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1600), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1601), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1737), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(257), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(258), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(259), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1911), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1912), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(508), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1169), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(236), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1632), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1633), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(74), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2270), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1264), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1548), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1549), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1550), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1551), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1705), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(266), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(233), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1834), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1835), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(719), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(11), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1173), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1676), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), + [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(97), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2273), + [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1249), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1586), + [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1587), + [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1588), + [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1589), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), + [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(251), + [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(252), + [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1894), + [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1895), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(586), + [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(9), + [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1171), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(228), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), + [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), + [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2271), + [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(191), + [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1262), + [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1560), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1561), + [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1562), + [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1563), + [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), + [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1712), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(239), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(240), + [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(241), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1853), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1854), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(646), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1175), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(232), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1664), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1665), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2272), + [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1256), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1572), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1573), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1575), + [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1576), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1721), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(245), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(246), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(247), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1871), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1872), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_suffix_expr, 2, 0, 8), - [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_suffix_expr, 2, 0, 8), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_stmt, 2, 0, 0), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_stmt, 2, 0, 0), - [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), - [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 3, 0, 0), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 2, 0, 0), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 2, 0, 0), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 1, 0, 0), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_op, 1, 0, 0), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_op, 1, 0, 0), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_suffix_expr, 3, 0, 21), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_suffix_expr, 3, 0, 21), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_body, 1, 0, 36), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_body, 1, 0, 36), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_stmt, 3, 0, 0), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_stmt, 3, 0, 0), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_stmt, 3, 0, 11), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_stmt, 3, 0, 11), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, 0, 15), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, 0, 15), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, 0, 0), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, 0, 0), - [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, 0, 12), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, 0, 12), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_echo_stmt, 3, 0, 0), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_echo_stmt, 3, 0, 0), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_assert_stmt, 3, 0, 0), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_assert_stmt, 3, 0, 0), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, 0, 0), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, 0, 0), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 6, 0, 0), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 6, 0, 0), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 6, 0, 0), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 6, 0, 0), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 6, 0, 57), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 6, 0, 57), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_stmt, 6, 0, 0), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_stmt, 6, 0, 0), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_stmt, 1, 0, 0), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_stmt, 1, 0, 0), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, 0, 27), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, 0, 27), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 5, 0, 0), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 5, 0, 0), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 5, 0, 0), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 5, 0, 0), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 5, 0, 52), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 5, 0, 52), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, 0, 28), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, 0, 28), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, 0, 15), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, 0, 15), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_part, 2, 0, 0), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_part, 2, 0, 0), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_part, 2, 0, 19), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_part, 2, 0, 19), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_assert_stmt, 5, 0, 0), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_assert_stmt, 5, 0, 0), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, 0, 43), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, 0, 43), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_stmt, 3, 0, 0), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_stmt, 3, 0, 0), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_stmt, 3, 0, 0), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_stmt, 3, 0, 0), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_stmt, 3, 0, 0), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_stmt, 3, 0, 0), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_stmt, 3, 0, 0), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_stmt, 3, 0, 0), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 3, 0, 33), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 3, 0, 33), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 5, 0, 50), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 5, 0, 50), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_stmt, 5, 0, 0), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_stmt, 5, 0, 0), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_stmt, 2, 0, 0), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_stmt, 2, 0, 0), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 1, 0, 0), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 1, 0, 0), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_stmt, 4, 0, 15), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_stmt, 4, 0, 15), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_stmt, 4, 0, 0), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_stmt, 4, 0, 0), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_for_stmt, 4, 0, 0), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_for_stmt, 4, 0, 0), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_stmt, 2, 0, 0), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_stmt, 2, 0, 0), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 4, 0, 0), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 4, 0, 0), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 3, 0, 34), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 3, 0, 34), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 4, 0, 0), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 4, 0, 0), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 3, 0, 35), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 3, 0, 35), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 4, 0, 0), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 4, 0, 0), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_stmt, 4, 0, 47), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_stmt, 4, 0, 47), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_stmt, 4, 0, 14), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_stmt, 4, 0, 14), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_stmt, 3, 0, 37), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_stmt, 3, 0, 37), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_stmt, 3, 0, 38), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_stmt, 3, 0, 38), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_stmt, 4, 0, 14), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_stmt, 4, 0, 14), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_stmt, 3, 0, 38), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_stmt, 3, 0, 38), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 2, 0, 19), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 2, 0, 19), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_stmt, 4, 0, 46), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_stmt, 4, 0, 46), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_body, 2, 0, 36), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_body, 2, 0, 36), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_stmt, 3, 0, 34), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_stmt, 3, 0, 34), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 4, 0, 45), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 4, 0, 45), - [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 3, 0, 0), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 3, 0, 0), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 3, 0, 0), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 3, 0, 0), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 3, 0, 0), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 3, 0, 0), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_for_stmt, 3, 0, 0), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_for_stmt, 3, 0, 0), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 2, 0, 0), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 2, 0, 0), - [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_stmt, 3, 0, 0), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_stmt, 3, 0, 0), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_stmt, 2, 0, 0), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_stmt, 2, 0, 0), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_stmt, 2, 0, 0), - [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_stmt, 2, 0, 0), - [1623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_switch_stmt, 3, 0, 0), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_switch_stmt, 3, 0, 0), - [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_stmt, 2, 0, 0), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_stmt, 2, 0, 0), - [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_stmt, 2, 0, 0), - [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_stmt, 2, 0, 0), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_cond, 2, 0, 0), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_cond, 2, 0, 0), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_cond, 5, 0, 56), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_cond, 5, 0, 56), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_cond, 7, 0, 63), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_cond, 7, 0, 63), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 4, 0, 0), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 4, 0, 0), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 5, 0, 53), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 5, 0, 53), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 5, 0, 54), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 5, 0, 54), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 5, 0, 55), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 5, 0, 55), - [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 6, 0, 58), - [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 6, 0, 58), - [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 6, 0, 59), - [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 6, 0, 59), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 6, 0, 60), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 6, 0, 60), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 7, 0, 62), - [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 7, 0, 62), - [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_cond, 3, 0, 0), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_cond, 3, 0, 0), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_cond, 5, 0, 56), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_cond, 5, 0, 56), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_cond, 7, 0, 63), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_cond, 7, 0, 63), - [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1197), - [1702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(912), - [1705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(953), - [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1179), - [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(950), - [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1538), - [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1502), - [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1026), - [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1303), - [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2209), - [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), - [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), - [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2202), - [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2201), - [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2200), - [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), - [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(987), - [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(945), - [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(285), - [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(286), - [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1346), - [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2172), - [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2171), - [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2165), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_op, 1, 0, 0), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_op, 1, 0, 0), - [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(1546), - [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_expr, 1, 0, 0), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_expr, 1, 0, 0), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_declaration, 5, 0, 0), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_declaration, 5, 0, 0), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_invocation, 2, 0, 0), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_invocation, 2, 0, 0), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_declaration, 4, 0, 0), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_declaration, 4, 0, 0), - [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_invocation, 3, 0, 0), - [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_invocation, 3, 0, 0), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 28), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 28), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_declaration, 6, 0, 29), - [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_declaration, 6, 0, 29), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 0), - [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 0), - [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 27), - [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 27), - [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_body, 4, 0, 0), - [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_body, 4, 0, 0), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 5, 0, 0), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 5, 0, 0), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 4, 0, 0), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 4, 0, 0), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 4), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 4), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 5, 0, 4), - [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 5, 0, 4), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 11), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 11), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_inline_attributes, 1, 0, 0), - [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_inline_attributes, 1, 0, 0), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 6, 0, 0), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 6, 0, 0), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_declaration, 4, 0, 16), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_declaration, 4, 0, 16), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, 0, 44), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, 0, 44), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 12), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 12), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 15), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 15), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_definition, 5, 0, 25), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_definition, 5, 0, 25), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_include_stmt, 3, 0, 0), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_include_stmt, 3, 0, 0), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2, 0, 0), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2, 0, 0), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_declaration, 3, 0, 6), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_declaration, 3, 0, 6), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 13), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 13), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 3, 0, 4), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 3, 0, 4), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 16), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 16), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 2, 0, 0), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_body, 2, 0, 0), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 2, 0, 0), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 2, 0, 0), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 4), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 4), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_func_body, 1, 0, 0), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_func_body, 1, 0, 0), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_func_body, 2, 0, 0), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_func_body, 2, 0, 0), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 15), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 15), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_definition, 4, 0, 14), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_definition, 4, 0, 14), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4, 0, 4), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 4, 0, 4), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 6, 0, 0), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 6, 0, 0), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 6), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 6), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 16), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, 0, 16), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 11), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 11), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 23), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 23), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 11), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 11), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 0), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 0), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 6, 0, 15), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 6, 0, 15), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_declaration, 5, 0, 25), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_declaration, 5, 0, 25), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, 0, 30), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, 0, 30), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 3, 0, 0), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 3, 0, 0), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_declaration, 4, 0, 14), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_declaration, 4, 0, 14), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3, 0, 0), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3, 0, 0), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_body, 5, 0, 0), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_body, 5, 0, 0), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 6), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 6), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 0), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 0), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 30), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 30), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 8, 0, 0), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 8, 0, 0), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_declaration, 7, 0, 29), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_declaration, 7, 0, 29), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_declaration, 5, 0, 30), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_declaration, 5, 0, 30), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_body, 3, 0, 0), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_body, 3, 0, 0), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_declaration, 5, 0, 29), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_declaration, 5, 0, 29), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 6), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, 0, 6), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 4, 0, 0), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 4, 0, 0), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 13), - [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 13), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 6, 0, 43), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 6, 0, 43), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 6, 0, 0), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 6, 0, 0), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 3), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 3), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_body, 3, 0, 0), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_body, 3, 0, 0), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 7, 0, 0), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 7, 0, 0), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 42), - [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 42), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 5, 0, 0), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 5, 0, 0), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 7, 0, 0), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 7, 0, 0), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 0), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 0), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 3, 0, 0), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_body, 3, 0, 0), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 5, 0, 0), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 5, 0, 0), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_body, 2, 0, 0), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_body, 2, 0, 0), - [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(903), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 2, 0, 0), - [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 2, 0, 0), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 2, 0, 9), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 2, 0, 9), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bytes_expr, 1, 0, 0), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bytes_expr, 1, 0, 0), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 1, 0, 0), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_expr_repeat1, 1, 0, 0), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 1, 0, 0), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 1, 0, 0), - [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bytes_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(907), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bytes_expr_repeat1, 2, 0, 0), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bytes_expr_repeat1, 2, 0, 0), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 1, 0, 0), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 1, 0, 0), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_invocation, 4, 0, 0), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_invocation, 4, 0, 0), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ident_expr, 1, 0, 0), - [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ident_expr, 1, 0, 0), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bytes_expr_repeat1, 1, 0, 0), - [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bytes_expr_repeat1, 1, 0, 0), - [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_block, 3, 0, 0), - [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_block, 3, 0, 0), - [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), - [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), - [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type, 1, 0, 0), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type, 1, 0, 0), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expr, 4, 0, 40), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expr, 4, 0, 40), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 3, 0, 22), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 3, 0, 22), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expr, 4, 0, 41), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expr, 4, 0, 41), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_ident, 4, 0, 0), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_ident, 4, 0, 0), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_generic_expr, 2, 0, 8), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_generic_expr, 2, 0, 8), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_expr, 3, 0, 0), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_expr, 3, 0, 0), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expr, 2, 0, 8), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expr, 2, 0, 8), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rethrow_expr, 2, 0, 8), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rethrow_expr, 2, 0, 8), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr, 1, 0, 0), - [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trailing_expr, 1, 0, 0), - [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr, 1, 0, 0), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trailing_expr, 1, 0, 0), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_expr, 1, 0, 0), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__relational_expr, 1, 0, 0), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 3, 0, 0), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 3, 0, 0), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_arguments, 3, 0, 0), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_arguments, 3, 0, 0), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_access_expr, 3, 0, 20), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_access_expr, 3, 0, 20), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 5, 0, 0), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 5, 0, 0), - [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 0), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 0), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), - [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(948), - [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(354), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expr, 3, 0, 20), - [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expr, 3, 0, 20), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_block, 2, 0, 0), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_block, 2, 0, 0), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant_expr, 1, 0, 0), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_ident_expr, 1, 0, 0), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_ident_expr, 1, 0, 0), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 2, 0, 0), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 2, 0, 0), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 6, 0, 0), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 6, 0, 0), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_ident_expr, 2, 0, 7), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_ident_expr, 2, 0, 7), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 4, 0, 0), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 4, 0, 0), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_ident, 1, 0, 0), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_ident, 1, 0, 0), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_ident, 2, 0, 0), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_ident, 2, 0, 0), - [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type_name, 1, 0, 0), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type_name, 1, 0, 0), - [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 3, 0, 0), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 3, 0, 0), - [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 2, 0, 0), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 2, 0, 0), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 1, 0, 0), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 1, 0, 0), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 1, 0, 0), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1, 0, 0), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type, 2, 0, 0), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type, 2, 0, 0), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type, 4, 0, 0), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type, 4, 0, 0), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(235), - [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(977), - [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(304), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 1, 0, 0), - [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2098), - [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(912), - [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(953), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), - [2395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1078), - [2398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), - [2401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1762), - [2404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(945), - [2407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2171), - [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2165), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 4, 0, 0), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_path, 1, 0, 0), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__relational_expr, 1, 0, 0), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implies_body, 2, 0, 19), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implies_body, 2, 0, 19), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expr, 3, 0, 18), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expr, 3, 0, 18), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 2, 0, 0), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 2, 0, 0), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expr, 3, 0, 18), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expr, 3, 0, 18), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expr, 2, 0, 10), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expr, 2, 0, 10), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expr, 4, 0, 32), - [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expr, 4, 0, 32), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_target, 1, 0, 0), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expr, 5, 0, 49), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expr, 5, 0, 49), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elvis_orelse_expr, 3, 0, 0), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elvis_orelse_expr, 3, 0, 0), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path_element, 2, 0, 0), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_path_element, 2, 0, 0), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bitstruct_defs, 2, 0, 0), SHIFT_REPEAT(2098), - [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bitstruct_defs, 2, 0, 0), SHIFT_REPEAT(912), - [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bitstruct_defs, 2, 0, 0), SHIFT_REPEAT(953), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bitstruct_defs, 2, 0, 0), - [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bitstruct_defs, 2, 0, 0), SHIFT_REPEAT(945), - [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bitstruct_defs, 2, 0, 0), SHIFT_REPEAT(2171), - [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bitstruct_defs, 2, 0, 0), SHIFT_REPEAT(2165), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bitstruct_simple_defs, 2, 0, 0), SHIFT_REPEAT(2098), - [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bitstruct_simple_defs, 2, 0, 0), SHIFT_REPEAT(912), - [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bitstruct_simple_defs, 2, 0, 0), SHIFT_REPEAT(953), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bitstruct_simple_defs, 2, 0, 0), - [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__bitstruct_simple_defs, 2, 0, 0), SHIFT_REPEAT(945), - [2597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bitstruct_simple_defs, 2, 0, 0), SHIFT_REPEAT(2171), - [2600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__bitstruct_simple_defs, 2, 0, 0), SHIFT_REPEAT(2165), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 2, 0, 19), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 2, 0, 19), - [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 3, 0, 15), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 3, 0, 15), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 6, 0, 61), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 6, 0, 61), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 4, 0, 15), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 4, 0, 15), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 5, 0, 15), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 5, 0, 15), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 3, 0, 38), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 3, 0, 38), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 5, 0, 25), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 5, 0, 25), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 3, 0, 11), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 3, 0, 11), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 4, 0, 14), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 4, 0, 14), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 4, 0, 11), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 4, 0, 11), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 1, 0, 0), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 1, 0, 0), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_or_optional_type, 1, 0, 0), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_or_optional_type, 1, 0, 0), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 1, 0, 0), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 3, 0, 0), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 1, 0, 0), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2, 0, 0), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_loc, 1, 0, 0), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_loc, 2, 0, 0), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 2, 0, 0), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_right_expr, 2, 0, 2), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_or_expr, 1, 0, 0), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 0), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_stmt_repeat1, 2, 0, 0), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bitstruct_defs, 1, 0, 0), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bitstruct_defs, 1, 0, 0), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_def, 5, 0, 0), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_def, 5, 0, 0), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_range, 3, 0, 0), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_def, 7, 0, 0), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_def, 7, 0, 0), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__bitstruct_simple_defs, 3, 0, 0), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__bitstruct_simple_defs, 3, 0, 0), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_decl_storage, 1, 0, 0), - [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_storage, 1, 0, 0), - [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_storage, 1, 0, 0), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_storage, 1, 0, 0), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1187), - [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(313), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 1, 0, 0), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [2864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(2098), - [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(1269), - [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(1256), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), - [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1, 0, 0), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributes, 1, 0, 0), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 3, 0, 0), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, 0, 1), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 2, 0, 0), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 1, 0, 1), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 2, 0, 0), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 31), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 3, 0, 0), - [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_at_type_ident, 1, 0, 0), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_at_type_ident, 1, 0, 0), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_at_type_ident, 2, 0, 0), - [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_at_type_ident, 2, 0, 0), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_name, 1, 0, 0), - [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_name, 1, 0, 0), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_instr, 1, 0, 0), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 1, 0, 1), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 1, 0, 0), - [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1, 0, 0), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_instr, 3, 0, 0), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 1), - [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 4, 0, 1), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, 0, 1), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 5, 0, 1), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__additive_op, 1, 0, 0), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 7, 0, 0), - [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_expr, 1, 0, 0), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 3, 0, 0), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 9, 0, 0), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_expr, 2, 0, 0), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 5, 0, 0), - [3111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_path, 2, 0, 0), SHIFT_REPEAT(2098), - [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__module_path, 2, 0, 0), - [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__module_path, 2, 0, 0), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_ident, 1, 0, 0), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fn_parameter_list, 3, 0, 0), - [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fn_parameter_list, 2, 0, 0), - [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_ident, 2, 0, 0), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 2, 0, 0), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1, 0, 0), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_declaration_repeat1, 2, 0, 0), - [3202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2120), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_declaration, 2, 0, 0), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), - [3215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_ident, 3, 0, 0), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_impl, 4, 0, 0), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_declaration, 3, 0, 0), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_impl, 3, 0, 0), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2, 0, 0), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1273), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 2, 0, 0), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [3271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(223), - [3274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2091), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_impl, 2, 0, 0), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_declaration, 2, 0, 11), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), - [3295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), SHIFT_REPEAT(342), - [3298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), SHIFT_REPEAT(338), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_arg, 5, 0, 0), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_arg, 6, 0, 0), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 4, 0, 0), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path, 1, 0, 0), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_arg, 4, 0, 0), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_const_ident, 1, 0, 0), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_or_union, 1, 0, 0), - [3329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), SHIFT_REPEAT(339), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_at_ident, 1, 0, 0), - [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 2, 0, 0), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_resolution, 2, 0, 0), - [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_resolution, 2, 0, 0), - [3346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 2, 0, 0), SHIFT_REPEAT(265), - [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 2, 0, 0), SHIFT_REPEAT(2093), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 2, 0, 0), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_arg, 3, 0, 0), - [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_const_ident, 2, 0, 0), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__module_path, 1, 0, 0), - [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__module_path, 1, 0, 0), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 3, 0, 0), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_at_ident, 2, 0, 0), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 5, 0, 0), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap_list, 1, 0, 0), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1579), - [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [3403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1579), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_right_constant_expr, 2, 0, 2), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_arg_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_arg_repeat1, 2, 0, 0), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path_element, 3, 0, 0), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 2, 0, 1), - [3425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1029), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 3, 0, 0), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 6, 0, 0), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface, 1, 0, 0), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_list, 3, 0, 0), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_param, 1, 0, 0), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path_element, 5, 0, 0), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 4, 0, 0), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_ident, 4, 0, 0), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 2, 0, 0), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_module_parameters, 3, 0, 0), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_type, 1, 0, 0), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ct_exec_stmt_repeat1, 2, 0, 0), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rel_or_lambda_expr, 1, 0, 0), - [3498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(990), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_arg_repeat1, 2, 0, 0), SHIFT_REPEAT(172), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 7, 0, 0), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ct_switch, 1, 0, 0), - [3530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_path, 2, 0, 0), SHIFT_REPEAT(2167), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 4, 0, 0), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_list, 4, 0, 0), - [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 4, 0, 0), - [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_unwrap_list_repeat1, 2, 0, 0), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_module_parameters, 4, 0, 0), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_list, 2, 0, 0), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 1, 0, 0), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_typedef, 3, 0, 0), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 5, 0, 0), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 9, 0, 0), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rel_or_lambda_expr, 3, 0, 0), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 8, 0, 0), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_operator_expr, 2, 0, 0), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [3643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(323), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_default, 1, 0, 24), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 0), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_type_ident, 2, 0, 0), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_block_param, 1, 0, 0), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_decl_or_expr, 2, 0, 0), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_or_expr, 2, 0, 0), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 3, 0, 12), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_statement_after_type, 1, 0, 0), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 2, 0, 0), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 1, 0, 0), - [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 1, 0, 0), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_var, 1, 0, 0), - [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_var, 1, 0, 0), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__try_unwrap_chain, 1, 0, 0), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [3794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 1, 0, 0), - [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 1, 0, 0), - [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_decl_or_expr, 1, 0, 0), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 2, 0, 39), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_statement_after_type, 2, 0, 0), - [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__cond_repeat1, 2, 0, 0), SHIFT_REPEAT(189), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cond_repeat1, 2, 0, 0), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [3821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ct_exec_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(252), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__try_unwrap_chain, 2, 0, 0), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 2, 0, 0), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(192), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2, 0, 0), - [3845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_module_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), - [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_module_parameters_repeat1, 2, 0, 0), - [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(986), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_impl_repeat1, 2, 0, 0), SHIFT_REPEAT(1347), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_impl_repeat1, 2, 0, 0), - [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fault_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), - [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fault_body_repeat1, 2, 0, 0), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_type_ident, 1, 0, 0), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap_list, 2, 0, 0), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 0), - [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 0), SHIFT_REPEAT(203), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1820), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_unwrap, 5, 0, 0), - [3905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_unwrap_list_repeat1, 2, 0, 0), SHIFT_REPEAT(341), - [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__cond_repeat1, 2, 0, 0), SHIFT_REPEAT(187), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 4, 0, 0), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_unwrap, 2, 0, 0), - [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1242), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_stmt_repeat1, 2, 0, 0), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_stmt, 4, 0, 0), - [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_stmt, 4, 0, 0), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_stmt, 2, 0, 0), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_stmt, 2, 0, 0), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_unwrap_list_repeat1, 2, 0, 0), SHIFT_REPEAT(340), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_unwrap, 4, 0, 0), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 3, 0, 48), - [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_case_stmt, 3, 0, 0), - [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__decl_statement_after_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1655), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__decl_statement_after_type_repeat1, 2, 0, 0), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1054), - [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_param_list_repeat1, 2, 0, 0), - [3989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(310), - [3992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [4005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_stmt, 3, 0, 0), - [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_stmt, 3, 0, 0), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_case_stmt, 4, 0, 0), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_declaration, 3, 0, 11), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface, 2, 0, 0), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_var, 3, 0, 0), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 1), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 3, 0, 0), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 1, 0, 0), - [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 4, 0, 0), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 3, 0, 0), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ct_switch, 2, 0, 0), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_switch_cond, 3, 0, 0), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 4, 0, 0), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap, 4, 0, 0), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_var, 2, 0, 0), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_param, 1, 0, 0), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_operator_expr, 3, 0, 0), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap, 2, 0, 0), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, 0, 31), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap, 5, 0, 0), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__func_macro_name, 1, 0, 0), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 5, 0, 0), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_block_param, 2, 0, 0), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_header, 2, 0, 5), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shift_op, 1, 0, 0), - [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 1, 0, 1), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 3, 0, 17), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_path, 2, 0, 0), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4621] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_header, 4, 0, 26), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_comment, 3, 0, 0), - [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 1, 0, 0), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_expr, 2, 0, 12), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_expr, 2, 0, 12), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_stmt, 2, 0, 0), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_stmt, 2, 0, 0), + [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 2, 0, 0), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 3, 0, 0), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_op, 1, 0, 0), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_op, 1, 0, 0), + [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_expr, 3, 0, 35), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_expr, 3, 0, 35), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 2, 0, 60), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 1, 0, 0), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_body, 1, 0, 56), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_body, 1, 0, 56), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_stmt, 3, 0, 0), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_stmt, 3, 0, 0), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_assert_stmt, 5, 0, 62), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_assert_stmt, 5, 0, 62), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 3, 0, 53), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 3, 0, 53), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 3, 0, 54), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 3, 0, 54), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 3, 0, 55), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 3, 0, 55), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_stmt, 3, 0, 57), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_stmt, 3, 0, 57), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_stmt, 3, 0, 54), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_stmt, 3, 0, 54), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_stmt, 3, 0, 54), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_stmt, 3, 0, 54), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_stmt, 3, 0, 53), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_stmt, 3, 0, 53), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 3, 0, 0), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 3, 0, 0), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 3, 0, 0), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 3, 0, 0), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 3, 0, 0), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 3, 0, 0), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_for_stmt, 3, 0, 0), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_for_stmt, 3, 0, 0), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_stmt, 3, 0, 0), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_stmt, 3, 0, 0), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_switch_stmt, 3, 0, 0), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_switch_stmt, 3, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_stmt, 3, 0, 22), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_stmt, 3, 0, 22), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compound_stmt_repeat1, 1, 0, 0), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compound_stmt_repeat1, 1, 0, 0), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_stmt, 2, 0, 0), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_stmt, 2, 0, 0), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 4, 0, 70), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 4, 0, 70), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 4, 0, 71), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 4, 0, 71), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 4, 0, 72), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 4, 0, 72), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_stmt, 2, 0, 0), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_stmt, 2, 0, 0), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if_body, 2, 0, 56), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_body, 2, 0, 56), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_stmt, 4, 0, 73), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_stmt, 4, 0, 73), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_stmt, 2, 0, 0), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_stmt, 2, 0, 0), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_stmt, 2, 0, 0), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_stmt, 2, 0, 0), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_stmt, 4, 0, 23), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_stmt, 4, 0, 23), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_stmt, 4, 0, 23), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_stmt, 4, 0, 23), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_stmt, 4, 0, 74), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_stmt, 4, 0, 74), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 4, 0, 0), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 4, 0, 0), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 4, 0, 0), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 4, 0, 0), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 4, 0, 0), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 4, 0, 0), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_for_stmt, 4, 0, 0), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_for_stmt, 4, 0, 0), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_stmt, 4, 0, 0), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_stmt, 4, 0, 0), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_stmt, 4, 0, 27), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_stmt, 4, 0, 27), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 2, 0, 0), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 2, 0, 0), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 2, 0, 31), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 2, 0, 31), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_stmt, 5, 0, 39), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_stmt, 5, 0, 39), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, 0, 66), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, 0, 66), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 5, 0, 79), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 5, 0, 79), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_stmt, 1, 0, 0), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_stmt, 1, 0, 0), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_stmt, 3, 0, 14), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_stmt, 3, 0, 14), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_stmt, 3, 0, 0), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_stmt, 3, 0, 0), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_stmt, 5, 0, 83), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_stmt, 5, 0, 83), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_part, 2, 0, 31), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_part, 2, 0, 31), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_part, 2, 0, 0), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_part, 2, 0, 0), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_stmt, 3, 0, 0), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_stmt, 3, 0, 0), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 5, 0, 84), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 5, 0, 84), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 5, 0, 0), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 5, 0, 0), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 5, 0, 39), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 5, 0, 39), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 5, 0, 0), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 5, 0, 0), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_stmt, 3, 0, 0), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_stmt, 3, 0, 0), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 3, 0, 51), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 3, 0, 51), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_stmt, 6, 0, 69), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_stmt, 6, 0, 69), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_stmt, 2, 0, 0), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_stmt, 2, 0, 0), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_stmt, 2, 0, 2), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_stmt, 2, 0, 2), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 3, 0, 52), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 3, 0, 52), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_stmt, 6, 0, 92), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_stmt, 6, 0, 92), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_block_stmt, 6, 0, 39), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_block_stmt, 6, 0, 39), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_stmt, 6, 0, 0), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_stmt, 6, 0, 0), + [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, 0, 3), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, 0, 3), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_assert_stmt, 3, 0, 14), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_assert_stmt, 3, 0, 14), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_echo_stmt, 3, 0, 14), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_echo_stmt, 3, 0, 14), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, 0, 24), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, 0, 24), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, 0, 3), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, 0, 3), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, 0, 25), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, 0, 25), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, 0, 46), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, 0, 46), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, 0, 47), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, 0, 47), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, 0, 25), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, 0, 25), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nextcase_stmt, 5, 0, 78), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nextcase_stmt, 5, 0, 78), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_if_cond, 2, 0, 2), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_if_cond, 2, 0, 2), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_cond, 5, 0, 91), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_cond, 5, 0, 91), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 4, 0, 0), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 4, 0, 0), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 5, 0, 88), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 5, 0, 88), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 5, 0, 89), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 5, 0, 89), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 5, 0, 90), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 5, 0, 90), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 6, 0, 94), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 6, 0, 94), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 6, 0, 95), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 6, 0, 95), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 6, 0, 96), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 6, 0, 96), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_cond, 7, 0, 99), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 7, 0, 99), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_foreach_cond, 7, 0, 100), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_foreach_cond, 7, 0, 100), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_cond, 3, 0, 14), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_cond, 3, 0, 14), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_cond, 5, 0, 91), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_cond, 5, 0, 91), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_cond, 7, 0, 100), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_cond, 7, 0, 100), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 0), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 0), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3, 0, 0), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3, 0, 0), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_op, 1, 0, 0), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_op, 1, 0, 0), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), + [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1063), + [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1128), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1220), + [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1141), + [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1614), + [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1486), + [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1170), + [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1365), + [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2034), + [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), + [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1447), + [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2220), + [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2275), + [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2132), + [1786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), + [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1155), + [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1132), + [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(253), + [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), + [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2084), + [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), + [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1775), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_expr, 1, 0, 0), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_expr, 1, 0, 0), + [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(1505), + [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(2223), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 2, 0, 0), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_invocation, 3, 0, 0), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_invocation, 3, 0, 0), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_invocation, 2, 0, 0), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_invocation, 2, 0, 0), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expr, 3, 0, 34), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expr, 3, 0, 34), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expr, 3, 0, 34), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), + [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(218), + [1929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(888), + [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(329), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expr, 4, 0, 50), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expr, 4, 0, 50), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implies_body, 2, 0, 32), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_inline_attributes, 1, 0, 0), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_inline_attributes, 1, 0, 0), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expr, 2, 0, 15), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expr, 2, 0, 15), + [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(877), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 2, 0, 0), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 2, 0, 0), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expr, 5, 0, 76), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expr, 5, 0, 76), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elvis_orelse_expr, 3, 0, 36), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elvis_orelse_expr, 3, 0, 36), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 2, 0, 13), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 2, 0, 13), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bytes_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bytes_expr_repeat1, 2, 0, 0), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bytes_expr_repeat1, 2, 0, 0), + [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type, 1, 0, 0), + [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type, 1, 0, 0), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_expr_repeat1, 1, 0, 0), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 1, 0, 0), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 1, 0, 0), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bytes_expr, 1, 0, 0), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bytes_expr, 1, 0, 0), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_expr_repeat1, 1, 0, 0), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 1, 0, 0), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_call_inline_attributes_repeat1, 1, 0, 0), + [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type, 4, 0, 39), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type, 4, 0, 39), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 3, 0, 0), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 3, 0, 0), + [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 3, 0, 14), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 3, 0, 14), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_declaration, 5, 0, 0), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_declaration, 5, 0, 0), + [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 1, 0, 0), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1, 0, 0), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bytes_expr_repeat1, 1, 0, 0), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bytes_expr_repeat1, 1, 0, 0), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ident_expr, 1, 0, 0), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ident_expr, 1, 0, 0), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_invocation, 4, 0, 0), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_invocation, 4, 0, 0), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 1, 0, 0), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 1, 0, 0), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_declaration, 4, 0, 0), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_declaration, 4, 0, 0), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type, 2, 0, 0), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type, 2, 0, 0), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_suffix, 2, 0, 0), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_suffix, 2, 0, 0), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_ident, 2, 0, 0), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_ident, 2, 0, 0), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type_name, 1, 0, 0), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type_name, 1, 0, 0), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_arguments, 3, 0, 14), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_arguments, 3, 0, 14), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_func_body, 2, 0, 0), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_func_body, 2, 0, 0), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 4, 0, 39), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 4, 0, 39), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 3, 0, 37), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 3, 0, 37), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 7), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 7), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_block, 2, 0, 0), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_block, 2, 0, 0), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_ident_expr, 1, 0, 0), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_ident_expr, 1, 0, 0), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_access_expr, 3, 0, 38), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_access_expr, 3, 0, 38), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_ident, 1, 0, 0), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_ident, 1, 0, 0), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_ident_expr, 2, 0, 10), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_ident_expr, 2, 0, 10), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expr, 2, 0, 0), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expr, 2, 0, 0), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 2, 0, 11), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 2, 0, 11), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expr, 3, 0, 33), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expr, 3, 0, 33), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 5), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 5), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 4, 0, 0), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 4, 0, 0), + [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr, 1, 0, 0), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr, 1, 0, 0), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rethrow_expr, 2, 0, 12), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rethrow_expr, 2, 0, 12), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expr, 2, 0, 12), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expr, 2, 0, 12), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 5, 0, 3), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 5, 0, 3), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 3, 0, 0), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 3, 0, 0), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 1), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 1), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 6), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 6), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 3, 0, 0), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 3, 0, 0), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 2, 0, 1), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 2, 0, 1), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expr, 4, 0, 59), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expr, 4, 0, 59), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expr, 4, 0, 61), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expr, 4, 0, 61), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 5, 0, 0), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 5, 0, 0), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 5, 0, 39), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 5, 0, 39), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 46), + [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 46), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 40), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 40), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 47), + [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 47), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_declaration, 3, 0, 9), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_declaration, 3, 0, 9), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 25), + [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 25), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 63), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 63), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 3, 0, 0), + [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_body, 3, 0, 0), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, 0, 48), + [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, 0, 48), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 64), + [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 64), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 5, 0, 42), + [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 5, 0, 42), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 6, 0, 0), + [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 6, 0, 0), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 6, 0, 3), + [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 6, 0, 3), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_body, 2, 0, 0), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_body, 2, 0, 0), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_declaration, 6, 0, 67), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_declaration, 6, 0, 67), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_body, 4, 0, 0), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_body, 4, 0, 0), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, 0, 67), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, 0, 67), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 16), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 16), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 5, 0, 69), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 5, 0, 69), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_generic_expr, 2, 0, 12), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_generic_expr, 2, 0, 12), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 9), + [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 9), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 24), + [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 24), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 2, 0, 0), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 2, 0, 0), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 3), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 3), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 40), + [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 40), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_include_stmt, 3, 0, 0), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_include_stmt, 3, 0, 0), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 3), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 3), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 25), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 25), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_body, 2, 0, 0), + [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_body, 2, 0, 0), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 5, 0, 7), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 5, 0, 7), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 3, 0, 16), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 3, 0, 16), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 9), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 9), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 18), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 18), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 6), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 6), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_declaration, 5, 0, 48), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_declaration, 5, 0, 48), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 6, 0, 39), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 6, 0, 39), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 6, 0, 69), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 6, 0, 69), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 6, 0, 66), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 6, 0, 66), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 6, 0, 63), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 6, 0, 63), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 7, 0, 0), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 7, 0, 0), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 7, 0, 3), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 7, 0, 3), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_body, 3, 0, 0), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_body, 3, 0, 0), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_declaration, 7, 0, 77), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_declaration, 7, 0, 77), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_body, 5, 0, 0), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_body, 5, 0, 0), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 0), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 0), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 6, 0, 39), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 6, 0, 39), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 4, 0, 7), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 4, 0, 7), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 7), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 7), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 20), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 20), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_body, 3, 0, 0), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_body, 3, 0, 0), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_definition, 4, 0, 23), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_definition, 4, 0, 23), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_func_body, 1, 0, 0), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_func_body, 1, 0, 0), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 4, 0, 0), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 4, 0, 0), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_declaration, 5, 0, 48), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_declaration, 5, 0, 48), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_body, 2, 0, 0), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_body, 2, 0, 0), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_eval, 4, 0, 39), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_eval, 4, 0, 39), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fault_declaration, 4, 0, 26), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fault_declaration, 4, 0, 26), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_exec_stmt, 7, 0, 69), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ct_exec_stmt, 7, 0, 69), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_declaration, 8, 0, 3), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_declaration, 8, 0, 3), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 26), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 26), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 2, 0, 0), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 2, 0, 0), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_definition, 5, 0, 44), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_definition, 5, 0, 44), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_declaration, 4, 0, 23), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_declaration, 4, 0, 23), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 48), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 48), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 3, 0, 0), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_body, 3, 0, 0), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 41), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 41), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expr, 3, 0, 29), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expr, 3, 0, 29), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_expr, 3, 0, 14), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_expr, 3, 0, 14), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, 0, 26), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, 0, 26), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_declaration, 4, 0, 42), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_declaration, 4, 0, 42), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 20), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 20), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_block, 3, 0, 0), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_block, 3, 0, 0), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr, 1, 0, 2), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr, 1, 0, 2), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_declaration, 5, 0, 44), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_declaration, 5, 0, 44), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_declaration, 5, 0, 0), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_define_declaration, 5, 0, 0), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 3, 0, 7), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 3, 0, 7), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_expr, 4, 0, 0), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_expr, 4, 0, 0), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 9), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, 0, 9), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_loc, 1, 0, 2), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__range_loc, 2, 0, 14), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap_list, 1, 0, 2), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 2, 0, 14), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 1, 0, 2), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 3, 0, 75), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_stmt_repeat1, 2, 0, 14), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 1, 0, 2), + [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_right_expr, 2, 0, 4), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_or_expr, 1, 0, 2), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 4, 0, 85), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 1, 0, 2), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_arg, 2, 0, 14), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 3, 0, 39), + [2587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(231), + [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1134), + [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(298), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 14), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_unwrap, 2, 0, 14), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_unwrap, 2, 0, 14), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 14), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 14), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_unwrap, 4, 0, 86), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_unwrap, 4, 0, 86), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_expr, 1, 0, 0), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant_expr, 1, 0, 2), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_unwrap, 5, 0, 93), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_unwrap, 5, 0, 93), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_range, 3, 0, 80), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_path, 1, 0, 2), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 1, 0, 0), + [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_target, 1, 0, 0), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1945), + [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1063), + [2780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1128), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), + [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1199), + [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1447), + [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), + [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1132), + [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), + [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1775), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 4, 0, 0), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path_element, 2, 0, 14), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_path_element, 2, 0, 14), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 1, 0, 0), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1945), + [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1063), + [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1128), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), + [2844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1132), + [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), + [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1775), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 3, 0, 22), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 3, 0, 22), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_struct_body_repeat1, 1, 0, 0), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_body_repeat1, 1, 0, 0), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 3, 0, 54), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 3, 0, 54), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 4, 0, 27), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 4, 0, 27), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 4, 0, 23), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 4, 0, 23), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 4, 0, 22), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 4, 0, 22), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 3, 0, 27), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 3, 0, 27), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 2, 0, 31), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 2, 0, 31), + [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 5, 0, 44), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 5, 0, 44), + [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 5, 0, 27), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 5, 0, 27), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_member_declaration, 6, 0, 97), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_member_declaration, 6, 0, 97), + [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_member_declaration, 3, 0, 22), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_member_declaration, 3, 0, 22), + [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_member_declaration, 7, 0, 101), + [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_member_declaration, 7, 0, 101), + [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstruct_member_declaration, 5, 0, 98), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstruct_member_declaration, 5, 0, 98), + [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_bitstruct_body_repeat1, 1, 0, 0), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bitstruct_body_repeat1, 1, 0, 0), + [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_decl_storage, 1, 0, 0), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_storage, 1, 0, 0), + [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_storage, 1, 0, 0), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_storage, 1, 0, 0), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(215), + [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1240), + [2979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(325), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 1, 0, 1), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [2994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(1945), + [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(1313), + [3000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(1315), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 2, 0, 0), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1, 0, 0), + [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributes, 1, 0, 0), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 1, 0, 1), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 2, 0, 16), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 1, 0, 1), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 2, 0, 1), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 2, 0, 3), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 3, 0, 65), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 3, 0, 30), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 2, 0, 0), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 1, 0, 1), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_name, 1, 0, 0), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_name, 1, 0, 0), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_instr, 1, 0, 0), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_at_type_ident, 1, 0, 0), + [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_at_type_ident, 1, 0, 0), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_at_type_ident, 2, 0, 0), + [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_at_type_ident, 2, 0, 0), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_param_list, 3, 0, 0), + [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_param_list, 3, 0, 0), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 1), + [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2, 0, 1), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_param_list, 4, 0, 0), + [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_param_list, 4, 0, 0), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 1, 0, 0), + [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1, 0, 0), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_instr, 3, 0, 0), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 1, 0, 22), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__additive_op, 1, 0, 0), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_expr, 2, 0, 0), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 7, 0, 0), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 9, 0, 0), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_expr, 1, 0, 0), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 3, 0, 0), + [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_addr, 5, 0, 0), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fn_parameter_list, 2, 0, 0), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_ident, 2, 0, 0), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path, 1, 0, 0), + [3291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_path, 2, 0, 0), SHIFT_REPEAT(1945), + [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__module_path, 2, 0, 0), + [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__module_path, 2, 0, 0), + [3298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), SHIFT_REPEAT(304), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), + [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), SHIFT_REPEAT(307), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fn_parameter_list, 3, 0, 0), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_ident, 1, 0, 0), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2, 0, 0), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path_element, 5, 0, 62), + [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_path_element, 3, 0, 14), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_impl, 2, 0, 0), + [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 4, 0, 3), + [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 1, 0, 0), + [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), + [3352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1571), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_declaration, 3, 0, 17), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 2, 0, 27), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 21), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1, 0, 0), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_impl, 3, 0, 0), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_impl, 4, 0, 0), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 1, 0, 0), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 1, 0, 0), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [3417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [3420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2082), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multi_declaration_repeat1, 2, 0, 0), + [3425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multi_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2170), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_ident, 1, 0, 0), + [3432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1314), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 2, 0, 0), + [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_ident, 2, 0, 0), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_ident, 3, 0, 0), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 3, 0, 1), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_declaration, 2, 0, 3), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_or_union, 1, 0, 0), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 5, 0, 0), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 4, 0, 0), + [3457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 2, 0, 0), SHIFT_REPEAT(214), + [3460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 2, 0, 0), SHIFT_REPEAT(2018), + [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 2, 0, 0), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 2, 0, 1), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 2, 0, 0), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_path_repeat1, 2, 0, 0), SHIFT_REPEAT(278), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__module_path, 1, 0, 0), + [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__module_path, 1, 0, 0), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_ident, 4, 0, 0), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_at_ident, 4, 0, 0), + [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_const_ident, 1, 0, 0), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 2, 0, 3), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 0), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_at_ident, 1, 0, 0), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_parameter_list, 3, 0, 0), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 2, 0, 22), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_ident, 3, 0, 0), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_at_ident, 3, 0, 0), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_path_at_ident, 2, 0, 0), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_resolution, 2, 0, 0), + [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_resolution, 2, 0, 0), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_const_ident, 2, 0, 0), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 3, 0, 27), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 3, 0, 3), + [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1152), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 3, 0, 16), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 8, 0, 1), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_doc_comment_repeat1, 2, 0, 0), + [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_doc_comment_repeat1, 2, 0, 0), SHIFT_REPEAT(1641), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 19), + [3576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 19), SHIFT_REPEAT(198), + [3579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__cond_repeat1, 2, 0, 19), SHIFT_REPEAT(189), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cond_repeat1, 2, 0, 19), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface, 1, 0, 0), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_typedef, 3, 0, 30), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_type, 1, 0, 0), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 9, 0, 1), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 5, 0, 1), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1673), + [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [3623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1673), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 1), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 1, 0, 0), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_list, 2, 0, 0), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_list, 3, 0, 0), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 7, 0, 1), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_stmt_repeat1, 2, 0, 19), SHIFT_REPEAT(273), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_stmt_repeat1, 2, 0, 19), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__module_path, 2, 0, 0), SHIFT_REPEAT(2171), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 4, 0, 65), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 6, 0, 1), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_spec, 2, 0, 0), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__try_unwrap_chain, 2, 0, 14), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 2, 0, 19), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ct_switch, 1, 0, 0), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__try_unwrap_chain, 1, 0, 0), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_module_parameters, 3, 0, 0), + [3722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1172), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2, 0, 0), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_decl_or_expr, 2, 0, 19), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 1, 0, 2), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_ident, 4, 0, 0), + [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_module_parameters, 4, 0, 0), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_list, 4, 0, 0), + [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_decl_or_expr, 1, 0, 2), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_define_attribute, 4, 0, 1), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__call_arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__call_arg_list_repeat1, 2, 0, 0), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 3, 0, 1), + [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap_list, 2, 0, 19), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_case_stmt, 4, 0, 14), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_type_ident, 1, 0, 0), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 2, 0, 5), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_statement_after_type, 2, 0, 0), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1174), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_param_list_repeat1, 2, 0, 0), + [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 3, 0, 24), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ct_switch_body, 1, 0, 0), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__try_unwrap_chain_repeat1, 2, 0, 0), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__cond_repeat1, 2, 0, 14), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_statement_after_type, 1, 0, 0), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_comment_contract, 1, 0, 1), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ct_exec_stmt_repeat1, 2, 0, 19), SHIFT_REPEAT(242), + [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ct_exec_stmt_repeat1, 2, 0, 19), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_stmt, 3, 0, 0), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_stmt, 3, 0, 0), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_case_stmt, 4, 0, 0), + [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 4, 0, 0), + [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_or_expr, 1, 0, 0), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_param_list_repeat1, 2, 0, 0), + [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_module_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1716), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_module_parameters_repeat1, 2, 0, 0), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_block_param, 1, 0, 0), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_impl_repeat1, 2, 0, 0), SHIFT_REPEAT(1445), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_impl_repeat1, 2, 0, 0), + [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_stmt, 4, 0, 0), + [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_stmt, 4, 0, 0), + [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_asm_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(1307), + [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_stmt_repeat1, 2, 0, 0), + [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [3934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fault_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2184), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fault_body_repeat1, 2, 0, 0), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1773), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_decl, 4, 0, 3), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_var, 1, 0, 0), + [3982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_var, 1, 0, 0), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decl_or_expr, 2, 0, 0), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 1, 0, 0), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_operator_expr, 2, 0, 0), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 2, 0, 19), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 1, 0, 0), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_asm_block_stmt_repeat1, 1, 0, 0), + [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 19), SHIFT_REPEAT(292), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__generic_arg_list_repeat1, 2, 0, 19), + [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_stmt, 2, 0, 0), + [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_stmt, 2, 0, 0), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__generic_arg_list, 2, 0, 14), + [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_default, 1, 0, 43), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 21), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_case_stmt, 3, 0, 0), + [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_decl_after_type, 3, 0, 18), + [4086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__decl_statement_after_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1622), + [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__decl_statement_after_type_repeat1, 2, 0, 0), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_arg, 3, 0, 0), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_type_ident, 2, 0, 0), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 3, 0, 80), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 3, 0, 68), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 3, 0, 0), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ct_switch, 2, 0, 0), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap, 5, 0, 0), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_comment_contract, 2, 0, 1), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 2, 0, 58), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_param_declaration, 2, 0, 16), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_param, 1, 0, 2), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 1, 0, 0), + [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declaration, 4, 0, 30), + [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 1, 0, 0), + [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap, 2, 0, 0), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_operator_expr, 3, 0, 0), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_var, 2, 0, 0), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_constant, 2, 0, 49), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_param, 1, 0, 0), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_unwrap, 4, 0, 0), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 4, 0, 19), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ct_exec_stmt_repeat1, 2, 0, 14), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_switch_cond, 3, 0, 14), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ct_switch_cond, 3, 0, 0), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 4, 0, 87), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_doc_comment_repeat1, 1, 0, 0), + [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_var, 3, 0, 0), + [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_param, 1, 0, 0), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cond, 3, 0, 2), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expr, 3, 0, 34), + [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__func_macro_name, 1, 0, 0), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface, 2, 0, 0), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_block_param, 2, 0, 0), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4413] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 4, 0, 45), + [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shift_op, 1, 0, 0), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 1, 0, 1), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_path, 2, 0, 2), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 3, 0, 28), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_header, 2, 0, 8), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arg_list, 5, 0, 0), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_header, 4, 0, 45), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_header, 2, 0, 8), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_comment, 2, 0, 0), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_comment, 4, 0, 0), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 1, 0, 0), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc_comment, 3, 0, 0), }; enum ts_external_scanner_symbol_identifiers { ts_external_token_block_comment_text = 0, ts_external_token_doc_comment_text = 1, - ts_external_token_real_literal = 2, + ts_external_token_doc_comment_contract_text = 2, + ts_external_token_real_literal = 3, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_block_comment_text] = sym_block_comment_text, [ts_external_token_doc_comment_text] = sym_doc_comment_text, + [ts_external_token_doc_comment_contract_text] = sym_doc_comment_contract_text, [ts_external_token_real_literal] = sym_real_literal, }; -static const bool ts_external_scanner_states[5][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_block_comment_text] = true, [ts_external_token_doc_comment_text] = true, + [ts_external_token_doc_comment_contract_text] = true, [ts_external_token_real_literal] = true, }, [2] = { [ts_external_token_real_literal] = true, }, [3] = { - [ts_external_token_block_comment_text] = true, + [ts_external_token_doc_comment_text] = true, }, [4] = { - [ts_external_token_doc_comment_text] = true, + [ts_external_token_doc_comment_contract_text] = true, + }, + [5] = { + [ts_external_token_block_comment_text] = true, }, }; diff --git a/server/internal/lsp/cst/scanner.c b/server/internal/lsp/cst/scanner.c index 5f5c5d7e..eb3dd91a 100644 --- a/server/internal/lsp/cst/scanner.c +++ b/server/internal/lsp/cst/scanner.c @@ -3,6 +3,7 @@ enum TokenType { BLOCK_COMMENT_TEXT, DOC_COMMENT_TEXT, + DOC_COMMENT_CONTRACT_TEXT, REAL_LITERAL, }; @@ -12,11 +13,11 @@ void tree_sitter_c3_external_scanner_reset(void *p) {} unsigned tree_sitter_c3_external_scanner_serialize(void *p, char *buffer) { return 0; } void tree_sitter_c3_external_scanner_deserialize(void *p, const char *b, unsigned n) {} -static bool scan_block_comment(TSLexer *lexer, bool allow_eof) { +static bool scan_block_comment(TSLexer *lexer) { for (int stack = 0;;) { if (lexer->eof(lexer)) { lexer->mark_end(lexer); - return allow_eof; + return true; } int32_t c = lexer->lookahead; @@ -48,6 +49,68 @@ static bool is_whitespace(int32_t c) { return c == ' ' || c == '\t' || c == '\r' || c == '\n' || c == '\f' || c == '\v'; } +static bool scan_doc_comment_text(TSLexer *lexer) { + // We stop at EOF, '@' or '*>' + int32_t prev_c = '\n'; + bool has_docs_text = false; + while (true) { + if (lexer->eof(lexer)) { + lexer->mark_end(lexer); + return false; + } + + int32_t c = lexer->lookahead; + if (c == '@' && prev_c == '\n') { + return has_docs_text; + } else if (c == '*') { + lexer->advance(lexer, false); + if (lexer->lookahead == '>') { + return has_docs_text; + } + } + + lexer->advance(lexer, false); + if (!is_whitespace(c)) { + lexer->mark_end(lexer); + has_docs_text = true; + prev_c = c; + } else if (c == '\n') { + prev_c = c; + } + } + return false; +} + +static bool scan_doc_comment_contract_text(TSLexer *lexer) { + // We stop at EOF, newline or '*>' + bool has_text = false; + while (true) { + if (lexer->eof(lexer)) { + lexer->mark_end(lexer); + return false; + } + + int32_t c = lexer->lookahead; + if (c == '\n') { + return has_text; + } else if (c == '*') { + lexer->advance(lexer, false); + if (lexer->lookahead == '>') { + return has_text; + } + } + + bool whitespace = is_whitespace(c); + bool skip = !has_text && whitespace; + lexer->advance(lexer, skip); + if (!is_whitespace(c)) { + lexer->mark_end(lexer); + has_text = true; + } + } + return false; +} + static bool is_digit(int32_t c) { return c >= '0' && c <= '9'; } @@ -223,21 +286,29 @@ static bool scan_real_literal(TSLexer *lexer) { return true; } -bool tree_sitter_c3_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { - // Allow block comments ending at EOF, but not doc comments. - if (valid_symbols[BLOCK_COMMENT_TEXT] && scan_block_comment(lexer, true)) { +bool tree_sitter_c3_external_scanner_scan(void *payload, TSLexer *lexer, + const bool *valid_symbols) { + if (valid_symbols[BLOCK_COMMENT_TEXT] && scan_block_comment(lexer)) { lexer->result_symbol = BLOCK_COMMENT_TEXT; return true; } - if (valid_symbols[DOC_COMMENT_TEXT] && scan_block_comment(lexer, false)) { - lexer->result_symbol = DOC_COMMENT_TEXT; + + // Before consuming whitespace because we need newlines + if (valid_symbols[DOC_COMMENT_CONTRACT_TEXT] && scan_doc_comment_contract_text(lexer)) { + lexer->result_symbol = DOC_COMMENT_CONTRACT_TEXT; return true; } + // Consume all whitespace while (is_whitespace(lexer->lookahead)) { lexer->advance(lexer, true); } + if (valid_symbols[DOC_COMMENT_TEXT] && scan_doc_comment_text(lexer)) { + lexer->result_symbol = DOC_COMMENT_TEXT; + return true; + } + if (valid_symbols[REAL_LITERAL] && scan_real_literal(lexer)) { lexer->result_symbol = REAL_LITERAL; return true; diff --git a/server/internal/lsp/cst/tree_sitter/alloc.h b/server/internal/lsp/cst/tree_sitter/alloc.h index 1f4466d7..1abdd120 100644 --- a/server/internal/lsp/cst/tree_sitter/alloc.h +++ b/server/internal/lsp/cst/tree_sitter/alloc.h @@ -12,10 +12,10 @@ extern "C" { // Allow clients to override allocation functions #ifdef TREE_SITTER_REUSE_ALLOCATOR -extern void *(*ts_current_malloc)(size_t); -extern void *(*ts_current_calloc)(size_t, size_t); -extern void *(*ts_current_realloc)(void *, size_t); -extern void (*ts_current_free)(void *); +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); #ifndef ts_malloc #define ts_malloc ts_current_malloc diff --git a/server/internal/lsp/cst/tree_sitter/array.h b/server/internal/lsp/cst/tree_sitter/array.h index 15a3b233..a17a574f 100644 --- a/server/internal/lsp/cst/tree_sitter/array.h +++ b/server/internal/lsp/cst/tree_sitter/array.h @@ -14,6 +14,7 @@ extern "C" { #include #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -278,7 +279,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(default : 4101) +#pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif diff --git a/server/internal/lsp/cst/tree_sitter/parser.h b/server/internal/lsp/cst/tree_sitter/parser.h index 17f0e94b..799f599b 100644 --- a/server/internal/lsp/cst/tree_sitter/parser.h +++ b/server/internal/lsp/cst/tree_sitter/parser.h @@ -47,6 +47,7 @@ struct TSLexer { uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); }; typedef enum { diff --git a/server/internal/lsp/search/search_closest_declaration_test.go b/server/internal/lsp/search/search_closest_declaration_test.go index 10e53f0c..cda26db2 100644 --- a/server/internal/lsp/search/search_closest_declaration_test.go +++ b/server/internal/lsp/search/search_closest_declaration_test.go @@ -337,9 +337,9 @@ func TestLanguage_findClosestSymbolDeclaration_enums(t *testing.T) { state.registerDoc( "app.c3", `enum WindowStatus : int (int counter) { - OPEN(1), - BACKGROUND(2), - MINIMIZED(3) + OPEN = 1, + BACKGROUND = 2, + MINIMIZED = 3 } fn void main() { int status = WindowStatus.BACKGROUND.counter; @@ -380,7 +380,7 @@ func TestLanguage_findClosestSymbolDeclaration_enums(t *testing.T) { "app.c3", `enum WindowStatus { OPEN, BACKGROUND, MINIMIZED } fn bool WindowStatus.isOpen(){} - + fn void main() { WindowStatus val = OPEN; val.isOpen(); @@ -528,7 +528,7 @@ func TestLanguage_findClosestSymbolDeclaration_functions(t *testing.T) { state.registerDoc( "app.c3", `fn void init_window(int width, int height, char* title) @extern("InitWindow"); - + init_window(200, 200, "hello"); `, ) diff --git a/server/pkg/parser/node_to_bitstruct.go b/server/pkg/parser/node_to_bitstruct.go index e581d803..10d5cd5f 100644 --- a/server/pkg/parser/node_to_bitstruct.go +++ b/server/pkg/parser/node_to_bitstruct.go @@ -13,7 +13,9 @@ func (p *Parser) nodeToBitStruct(node *sitter.Node, currentModule *idx.Module, d name := nameNode.Content(sourceCode) var interfaces []string var bakedType idx.Type - structFields := []*idx.StructMember{} + + fieldsNode := node.ChildByFieldName("body") + structFields := p.nodeToBitStructMembers(fieldsNode, currentModule, docId, sourceCode) for i := 0; i < int(node.ChildCount()); i++ { child := node.Child(i) @@ -32,8 +34,6 @@ func (p *Parser) nodeToBitStruct(node *sitter.Node, currentModule *idx.Module, d // TODO attributes case "type": bakedType = p.typeNodeToType(child, currentModule, sourceCode) - case "bitstruct_body": - structFields = p.nodeToBitStructMembers(child, currentModule, docId, sourceCode) } } @@ -58,7 +58,7 @@ func (p *Parser) nodeToBitStructMembers(node *sitter.Node, currentModule *idx.Mo for i := 0; i < int(node.ChildCount()); i++ { bdefnode := node.Child(i) bType := bdefnode.Type() - if bType == "bitstruct_def" { + if bType == "bitstruct_member_declaration" { var memberType idx.Type var identity string for x := 0; x < int(bdefnode.ChildCount()); x++ { @@ -74,8 +74,11 @@ func (p *Parser) nodeToBitStructMembers(node *sitter.Node, currentModule *idx.Mo } bitRanges := [2]uint{} - lowBit, _ := strconv.ParseInt(bdefnode.Child(3).Content(sourceCode), 10, 32) - bitRanges[0] = uint(lowBit) + + if bdefnode.ChildCount() >= 4 { + lowBit, _ := strconv.ParseInt(bdefnode.Child(3).Content(sourceCode), 10, 32) + bitRanges[0] = uint(lowBit) + } if bdefnode.ChildCount() >= 6 { highBit, _ := strconv.ParseInt(bdefnode.Child(5).Content(sourceCode), 10, 32) @@ -91,8 +94,6 @@ func (p *Parser) nodeToBitStructMembers(node *sitter.Node, currentModule *idx.Mo idx.NewRangeFromTreeSitterPositions(bdefnode.Child(1).StartPoint(), bdefnode.Child(1).EndPoint()), ) structFields = append(structFields, &member) - } else if bType == "_bitstruct_simple_defs" { - // Could not make examples with these to parse. } } diff --git a/server/pkg/parser/node_to_type.go b/server/pkg/parser/node_to_type.go index 5fd89096..8737973c 100644 --- a/server/pkg/parser/node_to_type.go +++ b/server/pkg/parser/node_to_type.go @@ -10,15 +10,6 @@ import ( ) func (p *Parser) typeNodeToType(node *sitter.Node, currentModule *symbols.Module, sourceCode []byte) symbols.Type { - - if node.Type() == "optional_type" { - return p.extTypeNodeToType(node.Child(0), true, currentModule, sourceCode) - } - - return p.extTypeNodeToType(node, false, currentModule, sourceCode) -} - -func (p *Parser) extTypeNodeToType(node *sitter.Node, isOptional bool, currentModule *symbols.Module, sourceCode []byte) symbols.Type { //fmt.Println(node, node.Content(sourceCode)) baseTypeLanguage := false baseType := "" @@ -27,6 +18,9 @@ func (p *Parser) extTypeNodeToType(node *sitter.Node, isOptional bool, currentMo parsedType := symbols.Type{} + tailChild := node.Child(int(node.ChildCount()) - 1) + isOptional := !tailChild.IsNamed() && tailChild.Content(sourceCode) == "!" + //fmt.Println(node.Type(), node.Content(sourceCode), node.ChildCount()) isCollection := false collectionSize := option.None[int]() diff --git a/server/pkg/parser/parse_structs_test.go b/server/pkg/parser/parse_structs_test.go index 2d55fd7f..f328342b 100644 --- a/server/pkg/parser/parse_structs_test.go +++ b/server/pkg/parser/parse_structs_test.go @@ -260,12 +260,12 @@ func TestParse_struct_subtyping_members_should_be_flagged(t *testing.T) { module := symbols.Get("x") _, ok := module.Structs["ImportantPerson"] - assert.True(t, ok) + assert.False(t, ok) }) } func TestParse_Unions(t *testing.T) { - source := `module x; + source := `module x; union MyUnion{ short as_short; int as_int; @@ -332,3 +332,50 @@ func TestParse_bitstructs(t *testing.T) { assert.Same(t, found.Children()[2], members[2]) }) } + +func TestParse_incomplete_bitstructs(t *testing.T) { + source := `module x; + bitstruct Test : uint + { + ushort a; + ushort b; + bool c; + }` + doc := document.NewDocument("docId", source) + parser := createParser() + + t.Run("parses bitstruct", func(t *testing.T) { + + symbols, _ := parser.ParseSymbols(&doc) + + found := symbols.Get("x").Bitstructs["Test"] + assert.Same(t, symbols.Get("x").Children()[0], found) + assert.Equal(t, "Test", found.GetName()) + assert.Equal(t, "uint", found.Type().GetName()) + + members := found.Members() + assert.Equal(t, 3, len(members)) + + // Check field a + member := members[0] + assert.Equal(t, "a", member.GetName()) + assert.Equal(t, "ushort", members[0].GetType().GetName()) + assert.Equal(t, [2]uint{0}, members[0].GetBitRange()) + assert.Equal(t, idx.NewRange(3, 9, 3, 10), members[0].GetIdRange()) + assert.Same(t, found.Children()[0], member) + + // Check field b + assert.Equal(t, "b", members[1].GetName()) + assert.Equal(t, "ushort", members[1].GetType().GetName()) + assert.Equal(t, [2]uint{0}, members[1].GetBitRange()) + assert.Equal(t, idx.NewRange(4, 9, 4, 10), members[1].GetIdRange()) + assert.Same(t, found.Children()[1], members[1]) + + // Check field c + assert.Equal(t, "c", members[2].GetName()) + assert.Equal(t, "bool", members[2].GetType().GetName()) + assert.Equal(t, [2]uint{0}, members[2].GetBitRange()) + assert.Equal(t, idx.NewRange(5, 7, 5, 8), members[2].GetIdRange()) + assert.Same(t, found.Children()[2], members[2]) + }) +} diff --git a/server/pkg/parser/parser_functions_test.go b/server/pkg/parser/parser_functions_test.go index 9323bbe9..dcbf59ab 100644 --- a/server/pkg/parser/parser_functions_test.go +++ b/server/pkg/parser/parser_functions_test.go @@ -65,6 +65,24 @@ func TestExtractSymbols_Functions_Declaration(t *testing.T) { assert.Equal(t, idx.NewRange(0, 0, 0, 78), fn.Get().GetDocumentRange()) }) + t.Run("Finds function with doc comment", func(t *testing.T) { + source := `<* + abc + *> + fn void init_window(int width, int height, char* title) @extern("InitWindow");` + docId := "docId" + doc := document.NewDocument(docId, source) + parser := createParser() + symbols, _ := parser.ParseSymbols(&doc) + + fn := symbols.Get("docid").GetChildrenFunctionByName("init_window") + assert.True(t, fn.IsSome(), "Function was not found") + assert.Equal(t, "init_window", fn.Get().GetName(), "Function name") + assert.Equal(t, "void", fn.Get().GetReturnType().GetName(), "Return type") + assert.Equal(t, idx.NewRange(3, 10, 3, 21), fn.Get().GetIdRange()) + assert.Equal(t, idx.NewRange(3, 2, 3, 80), fn.Get().GetDocumentRange()) + }) + t.Run("Resolves function with unnamed parameters correctly", func(t *testing.T) { source := `fn void init_window(int, int, char*) @extern("InitWindow");` docId := "docId" @@ -135,6 +153,30 @@ func TestExtractSymbols_FunctionsWithArguments(t *testing.T) { assert.Equal(t, idx.NewRange(0, 0, 2, 2), fn.Get().GetDocumentRange()) }) + t.Run("Finds function with doc comment", func(t *testing.T) { + source := `<* + abc + @pure + @param [in] pointer + @require number > 0, number < 1000 : "invalid number" + @ensure return == 1 + *> + fn void test(int number, char ch, int* pointer) { + return 1; + }` + docId := "docId" + doc := document.NewDocument(docId, source) + parser := createParser() + symbols, _ := parser.ParseSymbols(&doc) + + fn := symbols.Get("docid").GetChildrenFunctionByName("test") + assert.True(t, fn.IsSome(), "Function was not found") + assert.Equal(t, "test", fn.Get().GetName(), "Function name") + assert.Equal(t, "void", fn.Get().GetReturnType().GetName(), "Return type") + assert.Equal(t, idx.NewRange(7, 10, 7, 14), fn.Get().GetIdRange()) + assert.Equal(t, idx.NewRange(7, 2, 9, 3), fn.Get().GetDocumentRange()) + }) + t.Run("Finds function arguments", func(t *testing.T) { symbols, _ := parser.ParseSymbols(&doc) diff --git a/server/pkg/parser/parser_test.go b/server/pkg/parser/parser_test.go index eb5e0a15..6d31f422 100644 --- a/server/pkg/parser/parser_test.go +++ b/server/pkg/parser/parser_test.go @@ -75,45 +75,6 @@ func TestParses_TypedEnums(t *testing.T) { assert.Same(t, enum.Children()[2], e) }) - t.Run("associate values < v6.0", func(t *testing.T) { - source := ` - enum State : int (String state_desc, bool active) - { - PENDING("pending start", false), - RUNNING("running", true), - TERMINATED("ended", false) - }` - doc := document.NewDocument("ass.c3", source) - parser := createParser() - - symbols, _ := parser.ParseSymbols(&doc) - - scope := symbols.Get("ass") - enum := scope.Enums["State"] - assert.NotNil(t, scope.Enums["State"]) - - e := enum.GetEnumerator("PENDING") - assert.Equal(t, "PENDING", e.GetName()) - assert.Equal(t, idx.NewRange(3, 3, 3, 10), e.GetIdRange()) - assert.Same(t, enum.Children()[0], e) - - assert.Equal(t, "state_desc", e.AssociatedValues[0].GetName()) - assert.Equal(t, "String", e.AssociatedValues[0].GetType().GetName()) - - assert.Equal(t, "active", e.AssociatedValues[1].GetName()) - assert.Equal(t, "bool", e.AssociatedValues[1].GetType().GetName()) - - e = enum.GetEnumerator("RUNNING") - assert.Equal(t, "RUNNING", e.GetName()) - assert.Equal(t, idx.NewRange(4, 3, 4, 10), e.GetIdRange()) - assert.Same(t, enum.Children()[1], e) - - e = enum.GetEnumerator("TERMINATED") - assert.Equal(t, "TERMINATED", e.GetName()) - assert.Equal(t, idx.NewRange(5, 3, 5, 13), e.GetIdRange()) - assert.Same(t, enum.Children()[2], e) - }) - t.Run("associate values >= v6.0", func(t *testing.T) { t.Skip() source := `